/* =====================================================================
   APSIS STUDIO — main stylesheet
   A modern, dark, glassmorphic design system for the portfolio site.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --bg: #07070c;
  --bg-soft: #0d0d16;
  --bg-elev: #12121d;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #f4f5fb;
  --text-soft: #b9bbcd;
  --text-dim: #6f7287;

  --brand: #7c5cff;       /* violet */
  --brand-2: #00e5d0;     /* cyan   */
  --brand-3: #ff5c93;     /* pink   */
  --glow: rgba(124, 92, 255, 0.45);

  --grad: linear-gradient(120deg, #7c5cff 0%, #00e5d0 100%);
  --grad-soft: linear-gradient(120deg, rgba(124,92,255,.18), rgba(0,229,208,.18));
  --grad-text: linear-gradient(100deg, #b9a6ff 0%, #7c5cff 35%, #00e5d0 100%);

  --radius: 18px;
  --radius-lg: 28px;
  --radius-sm: 12px;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font: "Sora", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "Space Grotesk", ui-monospace, "Cascadia Code", monospace;

  --shadow: 0 24px 64px -28px rgba(0, 0, 0, 0.66);
  --shadow-glow: 0 0 60px -10px var(--glow);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* Lenis smooth scroll */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--brand); color: #fff; }

/* ---------- Ambient background glows ---------- */
.bg-orbs { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.bg-orbs span {
  position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.34;
  animation: drift 32s ease-in-out infinite;
}
.bg-orbs span:nth-child(1){ width: 520px; height: 520px; background: #4b2fae; top: -160px; left: -120px; }
.bg-orbs span:nth-child(2){ width: 460px; height: 460px; background: #006f66; bottom: -140px; right: -100px; animation-delay: -7s; }
.bg-orbs span:nth-child(3){ width: 380px; height: 380px; background: #7c1f55; top: 40%; left: 55%; animation-delay: -13s; opacity:.22; }
@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(40px,-30px) scale(1.12); }
}
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding: clamp(80px, 12vh, 160px) 0; scroll-margin-top: 84px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brand-2); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--brand-2); display: inline-block; }
h1, h2, h3 { line-height: 1.05; font-weight: 600; letter-spacing: -0.025em; }
.h-section { font-size: clamp(2rem, 5vw, 3.4rem); max-width: 16ch; }
.lead { color: var(--text-soft); font-size: clamp(1rem, 1.4vw, 1.18rem); max-width: 54ch; line-height: 1.65; }
.gradient-text { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  --pad: 15px 26px;
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: var(--pad); border-radius: 999px; font-weight: 500; font-size: 0.96rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad); color: #0a0a12; font-weight: 600; box-shadow: 0 8px 26px -10px var(--glow); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -10px var(--glow); }
.btn-ghost { border: 1px solid var(--border-strong); color: var(--text); background: var(--surface); }
.btn-ghost:hover { background: var(--surface-2); transform: translateY(-3px); }
.btn-lg { --pad: 18px 34px; font-size: 1.02rem; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background .4s var(--ease), backdrop-filter .4s, padding .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 7, 12, 0.72); backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--border); padding-block: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: -0.01em; font-size: 1.12rem; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 50%; background: var(--grad);
  display: grid; place-items: center; color: #08080f; font-weight: 800; box-shadow: var(--shadow-glow);
  font-family: var(--mono);
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 16px; border-radius: 999px; color: var(--text-soft); font-size: 0.94rem;
  transition: color .25s, background .25s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px auto; transition: .3s; }

@media (max-width: 920px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; right: var(--gutter);
    background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 14px; gap: 4px; box-shadow: var(--shadow); min-width: 220px;
  }
  .nav-links.open a { width: 100%; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 80% at 50% 0%, transparent 40%, var(--bg) 92%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--border-strong); background: var(--surface); font-size: 0.84rem; color: var(--text-soft);
  margin-bottom: 28px; backdrop-filter: blur(8px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-2); box-shadow: 0 0 12px var(--brand-2); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1 } 50%{ opacity:.35 } }
.hero h1 { font-size: clamp(2.6rem, 7vw, 5.6rem); font-weight: 600; max-width: 15ch; margin-bottom: 26px; }
.hero .lead { font-size: clamp(1.05rem, 1.6vw, 1.32rem); margin-bottom: 38px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-actions .note { color: var(--text-dim); font-size: 0.88rem; }
.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-dim); font-size: 0.74rem;
  font-family: var(--mono); letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-cue .mouse { width: 22px; height: 36px; border: 1px solid var(--border-strong); border-radius: 12px; position: relative; }
.scroll-cue .mouse::after { content:""; position:absolute; top:7px; left:50%; transform:translateX(-50%); width:3px; height:7px; border-radius:3px; background: var(--brand-2); animation: scrolly 1.8s infinite; }
@keyframes scrolly { 0%{ opacity:0; transform:translate(-50%,0) } 30%{opacity:1} 100%{ opacity:0; transform:translate(-50%,12px) } }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--border); background: var(--bg-soft); overflow: hidden; padding: 22px 0; }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scrollx 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--mono); font-size: 1.05rem; color: var(--text-dim); display: inline-flex; align-items: center; gap: 56px; white-space: nowrap; }
.marquee-track span::after { content: "✦"; color: var(--brand); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- Section header ---------- */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 64px; }
.section-head p { color: var(--text-soft); max-width: 42ch; }

/* ---------- Work / Demos grid ---------- */
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.work-card {
  position: relative; grid-column: span 6; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); background: var(--bg-elev); min-height: 420px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .6s var(--ease), border-color .4s, box-shadow .6s var(--ease);
  isolation: isolate;
}
.work-card.feature { grid-column: span 12; min-height: 480px; }
.work-card:hover { transform: translateY(-8px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.work-card .thumb { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.work-card .thumb::before { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 30%, rgba(7,7,12,.55) 65%, rgba(7,7,12,.95) 100%); z-index:1; }
.work-card .thumb .preview { width: 100%; height: 100%; transition: transform 1.1s var(--ease); }
.work-card:hover .thumb .preview { transform: scale(1.06); }
.work-card .body { position: relative; z-index: 2; padding: 30px; }
.work-card .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.tag { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.04em; padding: 5px 11px; border-radius: 999px; border: 1px solid var(--border-strong); background: rgba(0,0,0,.3); color: var(--text-soft); backdrop-filter: blur(6px); }
.work-card h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); margin-bottom: 8px; }
.work-card p { color: var(--text-soft); max-width: 46ch; margin-bottom: 18px; }
.work-card .open { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: var(--brand-2); }
.work-card .open svg { transition: transform .4s var(--ease); }
.work-card:hover .open svg { transform: translate(5px,-5px); }
.work-card .corner { position: absolute; top: 24px; right: 24px; z-index: 2; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border-strong); display: grid; place-items: center; background: rgba(0,0,0,.35); backdrop-filter: blur(6px); transition: .4s var(--ease); }
.work-card:hover .corner { background: var(--grad); color: #08080f; transform: rotate(45deg); }

/* Decorative gradient "screenshots" rendered with CSS so the site is fully self-contained */
.preview { background-size: cover; background-position: center; position: relative; }
.preview.saas      { background: radial-gradient(130% 90% at 20% 10%, #1b2a6b 0%, #0a0f2a 55%, #06070f 100%); }
.preview.restaurant{ background: radial-gradient(120% 90% at 80% 10%, #5a2316 0%, #2a130c 55%, #120806 100%); }
.preview.ecommerce { background: radial-gradient(120% 90% at 30% 20%, #0c4a3e 0%, #08231f 60%, #05100d 100%); }
.preview.studio    { background: radial-gradient(120% 100% at 70% 0%, #3a1a6b 0%, #1a0e34 55%, #0a0712 100%); }
.preview .mock { position: absolute; inset: 28px; border-radius: 14px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.03); overflow: hidden; }
.preview .mock .bar { height: 30px; background: rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.07); display:flex; align-items:center; gap:6px; padding-inline:12px; }
.preview .mock .bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.2); display:inline-block; }
.preview .mock .lines { padding: 18px; display: grid; gap: 11px; }
.preview .mock .lines b { display:block; height: 12px; border-radius: 6px; background: rgba(255,255,255,.13); }
.preview .mock .lines b.w1{ width: 55%; height: 22px; background: var(--grad); opacity:.85;}
.preview .mock .lines b.w2{ width: 78%; }
.preview .mock .lines b.w3{ width: 64%; }
.preview .mock .lines b.w4{ width: 40%; }

@media (max-width: 860px) {
  .work-card, .work-card.feature { grid-column: span 12; min-height: 360px; }
}

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.service {
  padding: 32px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface);
  transition: transform .5s var(--ease), border-color .4s, background .4s; position: relative; overflow: hidden;
}
.service::after { content:""; position:absolute; inset:0; background: var(--grad-soft); opacity:0; transition:.5s; }
.service:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.service:hover::after { opacity: 1; }
.service > * { position: relative; z-index: 1; }
.service .ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--border-strong); margin-bottom: 22px; }
.service .ico svg { width: 26px; height: 26px; color: var(--brand-2); }
.service h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service p { color: var(--text-soft); font-size: 0.96rem; }
.service .num { position: absolute; top: 22px; right: 26px; font-family: var(--mono); color: var(--text-dim); font-size: 0.8rem; }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 28px; counter-reset: step; }
.step { position: relative; padding-top: 30px; border-top: 1px solid var(--border); }
.step::before { counter-increment: step; content: "0" counter(step); position: absolute; top: -1px; left: 0; padding-top: 14px; font-family: var(--mono); color: var(--brand-2); font-size: 0.9rem; }
.step .bar { position: absolute; top: -1px; left: 0; width: 56px; height: 2px; background: var(--grad); }
.step h3 { font-size: 1.2rem; margin: 8px 0 10px; }
.step p { color: var(--text-soft); font-size: 0.94rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 24px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); padding: clamp(30px,5vw,56px); }
.stat { text-align: center; }
.stat .val { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; letter-spacing: -0.03em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .label { color: var(--text-soft); font-size: 0.92rem; margin-top: 6px; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 22px; }
.quote { padding: 34px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-elev); }
.quote p { font-size: 1.1rem; color: var(--text); margin-bottom: 22px; }
.quote .who { display: flex; align-items: center; gap: 14px; }
.quote .av { width: 46px; height: 46px; border-radius: 50%; background: var(--grad); display:grid; place-items:center; font-weight:700; color:#0a0a12; }
.quote .who b { display: block; font-size: 0.96rem; }
.quote .who span { color: var(--text-dim); font-size: 0.85rem; }
.stars { color: var(--brand-3); margin-bottom: 16px; letter-spacing: 3px; font-size: .9rem; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; border-radius: var(--radius-lg); border: 1px solid var(--border-strong); background: var(--grad-soft); padding: clamp(48px, 8vw, 96px) var(--gutter); position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:-2px; background: radial-gradient(60% 120% at 50% 0%, var(--glow), transparent 70%); opacity:.5; }
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.6rem); margin-bottom: 18px; }
.cta-band p { color: var(--text-soft); max-width: 50ch; margin: 0 auto 34px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h2 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 18px; }
.contact-info p { color: var(--text-soft); margin-bottom: 30px; max-width: 40ch; }
.contact-list li { display: flex; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-list .ico { width: 42px; height: 42px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); display:grid; place-items:center; color: var(--brand-2); flex: none; }
.contact-list span { color: var(--text-dim); font-size: .8rem; display:block; }
.contact-list b { font-weight: 500; }
.form { display: grid; gap: 18px; padding: 36px; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--bg-elev); }
.field { display: grid; gap: 8px; }
.field label { font-size: 0.85rem; color: var(--text-soft); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm); background: var(--bg-soft);
  border: 1px solid var(--border); color: var(--text); font-family: inherit; font-size: 0.96rem; transition: border-color .3s, box-shadow .3s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(124,92,255,.18); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form .btn { justify-content: center; }
.form .msg { font-size: .9rem; color: var(--brand-2); min-height: 1.2em; }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } .form .row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 64px 0 40px; background: var(--bg-soft); }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 48px; }
.footer .col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-dim); margin-bottom: 16px; font-family: var(--mono); }
.footer .col a { display: block; color: var(--text-soft); padding: 6px 0; transition: color .25s; }
.footer .col a:hover { color: var(--text); }
.footer .about { max-width: 320px; }
.footer .about p { color: var(--text-soft); margin: 16px 0; font-size: 0.94rem; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); display:grid; place-items:center; color: var(--text-soft); transition:.3s; }
.socials a:hover { color: var(--text); border-color: var(--border-strong); transform: translateY(-3px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--border); color: var(--text-dim); font-size: 0.86rem; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay:.08s } .reveal[data-d="2"]{ transition-delay:.16s }
.reveal[data-d="3"]{ transition-delay:.24s } .reveal[data-d="4"]{ transition-delay:.32s }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; } }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 9999; mix-blend-mode: difference; }
.cursor-dot { width: 7px; height: 7px; background: #fff; transform: translate(-50%,-50%); }
.cursor-ring { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.6); transform: translate(-50%,-50%); transition: width .3s, height .3s, background .3s, border-color .3s; }
.cursor-ring.hover { width: 60px; height: 60px; background: rgba(255,255,255,.1); border-color: transparent; }
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- Scroll progress + loader ---------- */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--grad); z-index: 200; box-shadow: 0 0 10px var(--glow); border-radius: 0 2px 2px 0; }
.loader { position: fixed; inset: 0; z-index: 1000; background: var(--bg); display: grid; place-items: center; transition: opacity .8s var(--ease), visibility .8s; }
.loader.done { opacity: 0; visibility: hidden; }
.loader .l-inner { text-align: center; }
.loader .l-mark { font-family: var(--mono); letter-spacing: .3em; color: var(--text-soft); font-size: .8rem; margin-bottom: 18px; }
.loader .l-bar { width: 220px; height: 2px; background: var(--border); border-radius: 2px; overflow: hidden; }
.loader .l-bar i { display: block; height: 100%; width: 0; background: var(--grad); transition: width .3s ease; }

/* ---------- Utility ---------- */
.split { display:grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
@media (max-width: 900px){ .split { grid-template-columns: 1fr; } }
.center { text-align: center; }
.mt { margin-top: 40px; }

/* ---------- About: honest value list + founder card ---------- */
.expect { display: grid; gap: 15px; margin-top: 4px; }
.expect li { display: flex; gap: 12px; color: var(--text-soft); font-size: 1.02rem; line-height: 1.5; }
.expect .ck { flex: none; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--border-strong); color: var(--brand-2); font-weight: 700; font-size: .76rem; margin-top: 2px; }
.quote.founder { display: flex; align-items: center; gap: 16px; }
.quote.founder p { margin: 0; font-size: 1rem; }
.quote.founder .av { flex: none; }
