/* =========================================================
   Lupiapps — Mobile App Development Agency
   Editorial / quiet-luxury minimalism. Bone + ink + forest.
   ========================================================= */

:root{
  /* Theme B — Slate Studio (cool off-white + deep slate-ink + cobalt accent) */
  --bg:        #F3F4F6;
  --bg-alt:    #E7E9EE;
  --paper:     #FAFBFC;
  --ink:       #0B0E14;
  --ink-soft:  #2A2E3A;
  --muted:     #6B6F7A;
  --muted-2:   #A8ACB6;
  --line:      #D8DAE0;
  --line-soft: #E5E7EC;
  --accent:    #1E3FA8;        /* deep cobalt */
  --accent-2:  #2D58D6;        /* lighter cobalt */
  --tint:      #DDE5F5;        /* soft cobalt mist */
  --warn:      #B23B2C;

  --p-accent:       #1E3FA8;
  --p-accent-light: #DDE5F5;

  --container: 1180px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-display: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --t: cubic-bezier(.2,.7,.2,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img{ display:block; max-width:100%; height:auto; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; cursor:pointer; border: 0; background: transparent; color: inherit; }
input,select,textarea{ font: inherit; color: inherit; }

::selection{ background: var(--ink); color: var(--bg); }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* =====================================================
   TOPBAR
   ===================================================== */
/* Floating glass nav pill */
.topbar{
  position: sticky;
  top: 14px;
  z-index: 50;
  pointer-events: none;
  padding: 0 16px;
  transition: top .3s var(--t);
}
.topbar.scrolled{ top: 8px; }
.topbar-inner{
  pointer-events: auto;
  max-width: 1080px;
  margin: 0 auto;
  padding: 8px 8px 8px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.42) 0%, rgba(255,255,255,.18) 100%);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  backdrop-filter: saturate(180%) blur(28px);
  -webkit-backdrop-filter: saturate(180%) blur(28px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.55) inset,
    0 -1px 0 rgba(11,14,20,.05) inset,
    0 0 0 1px rgba(11,14,20,.03),
    0 14px 40px -16px rgba(11,14,20,.18);
  transition: background .3s var(--t), box-shadow .3s var(--t), border-color .3s var(--t);
}
.topbar.scrolled .topbar-inner{
  background:
    linear-gradient(135deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.30) 100%);
  border-color: rgba(255,255,255,.7);
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 -1px 0 rgba(11,14,20,.06) inset,
    0 0 0 1px rgba(11,14,20,.04),
    0 18px 50px -18px rgba(11,14,20,.25);
}

.brand{ display: inline-flex; align-items: center; gap: 9px; padding-right: 4px; }
.brand-mark{
  width: 22px; height: 22px;
  border-radius: 7px;
  background: radial-gradient(circle at 30% 30%, #2D58D6, #0F1F4D 75%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.18),
    0 4px 10px -2px rgba(30,63,168,.4);
}
.brand-mark.light{ background: linear-gradient(135deg,#E9E2D2,#FFF); }
.brand-text{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.nav{
  display: flex; gap: 2px;
  justify-self: center;
  padding: 0;
}
.nav a{
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 7px 14px;
  border-radius: 999px;
  transition: color .2s var(--t), background .2s var(--t);
}
.nav a:hover{
  color: var(--ink);
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(8px);
}
.nav a.active{
  color: var(--ink);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(8px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 1px 2px rgba(11,14,20,.04),
    0 6px 14px -6px rgba(11,14,20,.12);
}

.topbar-actions{ display: flex; align-items: center; gap: 8px; padding-right: 4px; }
.status{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-soft);
  font-family: var(--font-mono); letter-spacing: -0.01em;
}
.status-dot{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(44,90,67,.5);
  animation: pulse 2.4s var(--t) infinite;
}
@keyframes pulse{
  0%   { box-shadow: 0 0 0 0 rgba(44,90,67,.45); }
  70%  { box-shadow: 0 0 0 7px rgba(44,90,67,0); }
  100% { box-shadow: 0 0 0 0 rgba(44,90,67,0); }
}
.hamburger{
  display: none; width: 36px; height: 36px; position: relative;
}
.hamburger span{
  position:absolute; left: 8px; right: 8px;
  height: 1.5px; background: var(--ink);
}
.hamburger span:first-child{ top: 14px; }
.hamburger span:last-child{ bottom: 14px; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: -0.005em;
  transition: transform .2s var(--t), background .2s var(--t), color .2s var(--t), border-color .2s var(--t), box-shadow .25s var(--t);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-sm{ padding: 9px 16px; font-size: 13px; font-weight: 600; }
.btn-lg{ padding: 18px 28px; font-size: 15px; }
.btn-primary{
  background: var(--ink); color: var(--bg);
  box-shadow: 0 8px 24px -10px rgba(15,15,13,.4);
}
.btn-primary:hover{
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px rgba(26,58,42,.5);
}
.btn-ghost{
  border-color: var(--line); color: var(--ink); background: transparent;
}
.btn-ghost:hover{
  border-color: var(--ink); background: var(--ink); color: var(--bg);
}

/* =====================================================
   HERO — organic bleed (photo fades into text from right)
   ===================================================== */
.hero-org{
  position: relative;
  background:
    radial-gradient(ellipse 50% 55% at 90% 30%, var(--tint) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 0% 90%, #E5E9F0 0%, transparent 60%),
    var(--bg);
  /* pull above the floating glass nav so the photo bleeds under it */
  margin-top: -82px;
  padding: 154px 0 56px;
  min-height: 660px;
  border-bottom: 0;
  overflow: hidden;
  isolation: isolate;
}
.ho-fade{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
  pointer-events: none;
  z-index: 1;
}

/* photo bleed layer — absolute on the right, fades to transparent on the left.
   Mask is applied to the inner picture only so floating widgets aren't affected. */
.ho-photo{
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 64%;
  z-index: 0;
  pointer-events: none;
}
.ho-photo picture{
  position: absolute; inset: 0;
  display: block;
  -webkit-mask-image:
    linear-gradient(90deg,  transparent 0%, rgba(0,0,0,.35) 16%, rgba(0,0,0,.92) 38%, black 56%),
    linear-gradient(180deg, black 0%, black 70%, rgba(0,0,0,.4) 90%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-image:
    linear-gradient(90deg,  transparent 0%, rgba(0,0,0,.35) 16%, rgba(0,0,0,.92) 38%, black 56%),
    linear-gradient(180deg, black 0%, black 70%, rgba(0,0,0,.4) 90%, transparent 100%);
          mask-composite: intersect;
}
.ho-photo picture img{
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  object-position: 35% center;
  filter: saturate(1.05);
}
/* tint overlay — also masked so it follows the photo edge */
.ho-photo::after{
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(15,18,40,.20) 40%, rgba(15,18,40,.32) 100%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(30,63,168,.18) 0%, transparent 70%);
  -webkit-mask-image:
    linear-gradient(90deg,  transparent 0%, rgba(0,0,0,.35) 16%, rgba(0,0,0,.92) 38%, black 56%),
    linear-gradient(180deg, black 0%, black 70%, rgba(0,0,0,.4) 90%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-image:
    linear-gradient(90deg,  transparent 0%, rgba(0,0,0,.35) 16%, rgba(0,0,0,.92) 38%, black 56%),
    linear-gradient(180deg, black 0%, black 70%, rgba(0,0,0,.4) 90%, transparent 100%);
          mask-composite: intersect;
  pointer-events: none;
}

/* floating stat over photo (refined glass card) */
.ho-stat{
  position: absolute;
  top: 170px; right: 7%;
  z-index: 2;
  width: 240px;
  padding: 16px 18px 14px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.55) 100%);
  border: 1px solid rgba(255,255,255,.6);
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 -1px 0 rgba(11,14,20,.05) inset,
    0 0 0 1px rgba(11,14,20,.03),
    0 22px 48px -16px rgba(11,14,20,.28);
  display: flex; flex-direction: column;
  gap: 8px;
  animation: hoStatFloat 8s ease-in-out infinite alternate;
}
@keyframes hoStatFloat{
  to{ transform: translateY(-6px); }
}
.ho-stat-head{
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(11,14,20,.07);
}
.ho-stat-pulse{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(30,63,168,.5);
  animation: pulse 2s var(--t) infinite;
}
.ho-stat-tag{
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink);
  flex: 1;
}
.ho-stat-trend{
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: var(--tint);
  padding: 2px 7px;
  border-radius: 999px;
  font-weight: 600;
}
.ho-stat-num{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 52px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: baseline;
}
.ho-stat-num sup{
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: 6px;
  align-self: flex-end;
  padding-bottom: 8px;
}
.ho-stat-bar{
  height: 4px;
  background: rgba(11,14,20,.08);
  border-radius: 2px;
  overflow: hidden;
  margin: 2px 0;
}
.ho-stat-bar i{
  display: block;
  height: 100%;
  width: 88%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  animation: hoStatBar 5s ease-in-out infinite alternate;
}
@keyframes hoStatBar{
  0%   { width: 78%; }
  100% { width: 96%; }
}
.ho-stat-lbl{
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--ink-soft);
}

/* one-line micro proof under CTAs */
.ho-microline{
  margin: 6px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.ho-microline span{
  color: var(--muted-2);
  margin: 0 4px;
}

.ho-inner{
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.ho-text{
  max-width: 600px;
  display: flex; flex-direction: column;
  gap: 24px;
}

/* legacy reuse for older split selectors */
.hs-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hs-text{
  display: flex; flex-direction: column;
  gap: 24px;
}
.hs-eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: fit-content;
}
.hs-dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulse 2s var(--t) infinite;
}
.hs-sep{ color: var(--muted-2); }

.hs-h1{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
}
.hs-h1 em{
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}
.hs-period{ color: var(--accent-2); }
.hs-lede{
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 48ch;
}
.hs-lede strong{ color: var(--ink); font-weight: 600; }

.hs-cta{ display: flex; flex-wrap: wrap; gap: 12px; }

.hs-partners{
  margin-top: 8px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex; flex-direction: column;
  gap: 14px;
}
.hs-partners-label{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.hs-partners-logos{
  display: flex; flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  row-gap: 16px;
}
.hs-logo{
  display: inline-flex; align-items: center;
  height: 26px;
  opacity: .55;
  filter: grayscale(100%) brightness(0.45) contrast(1.15);
  transition: opacity .25s var(--t), filter .25s var(--t);
}
.hs-logo:hover{
  opacity: 1;
  filter: none;
}
.hs-logo img{
  height: 100%;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  display: block;
}

/* photo card */
.hs-visual{
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hs-card{
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 600px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--ink);
  box-shadow:
    0 40px 80px -28px rgba(15,15,13,.35),
    inset 0 0 0 1px rgba(255,255,255,.04);
}
.hs-card picture,
.hs-card picture img{
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.hs-card::after{
  /* subtle bottom gradient so floating widgets pop */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.45) 100%);
  pointer-events: none;
}

/* floating chat widget — used by both legacy hs-chat and new ho-chat */
.hs-chat,
.ho-chat{
  position: absolute;
  z-index: 2;
  display: inline-flex; align-items: center;
  gap: 10px;
  padding: 8px 12px 8px 10px;
  background: rgba(255,255,255,.96);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 18px 36px -12px rgba(0,0,0,.5);
  border: 1px solid rgba(0,0,0,.05);
  backdrop-filter: blur(6px);
  transition: transform .25s var(--t), box-shadow .25s var(--t);
}
.hs-chat{ bottom: 20px; right: 20px; }
.ho-chat{
  bottom: 32px;
  right: 32px;
  z-index: 3;
}
.hs-chat:hover,
.ho-chat:hover{ transform: translateY(-2px); box-shadow: 0 22px 48px -10px rgba(0,0,0,.55); }
.hsc-avatar{
  position: relative;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.hsc-pulse{
  position: absolute;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #4ADE80;
  border: 2px solid #fff;
  bottom: -1px; right: -1px;
  animation: pulse 2s var(--t) infinite;
}
.hsc-text{ display: flex; flex-direction: column; line-height: 1.2; padding-right: 2px; }
.hsc-text b{ font-size: 12.5px; font-weight: 600; color: var(--ink); }
.hsc-status{
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px;
  color: var(--muted);
  font-family: var(--font-mono);
}
.hsc-dot{ width: 5px; height: 5px; border-radius: 50%; background: #22C55E; }
.hsc-cta{
  background: var(--accent);
  color: #fff;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  transition: background .2s var(--t);
}
.hs-chat:hover .hsc-cta{ background: var(--accent-2); }

/* floating stat over photo card */
.hs-stat{
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex; flex-direction: column;
  gap: 2px;
  box-shadow: 0 18px 36px -12px rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
}
.hs-stat-num{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.hs-stat-num span{
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-left: 4px;
}
.hs-stat-lbl{
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 1100px){
  .ho-photo{ width: 70%; opacity: .55; }
  .ho-stat{ top: 32px; right: 24px; }
  .ho-chat{ bottom: 24px; right: 24px; }
  .hs-inner{ grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px){
  .hero-org{ margin-top: -70px; padding: 110px 0 56px; min-height: 0; }
  .ho-inner{ padding: 0 20px; }
  .ho-photo{ display: none; }
  .ho-stat{ display: none; }
  .ho-chat{
    position: relative;
    bottom: auto; right: auto;
    margin-top: 12px;
    width: fit-content;
  }
  .ho-microline{ font-size: 11px; }
  .hs-partners-logos{ gap: 20px; row-gap: 14px; }
  .hs-logo{ height: 20px; }
}

/* =====================================================
   HERO — photo overlay (legacy)
   ===================================================== */
.has-photo-hero{ background: var(--bg); }
.has-photo-hero .topbar.topbar-overlay{
  position: absolute;
  top: 0; left: 0; right: 0;
  background: transparent !important;
  border-bottom-color: transparent !important;
  z-index: 5;
  backdrop-filter: none;
}
.has-photo-hero .topbar.topbar-overlay .nav a,
.has-photo-hero .topbar.topbar-overlay .brand-text,
.has-photo-hero .topbar.topbar-overlay .status,
.has-photo-hero .topbar.topbar-overlay .hamburger span{
  color: rgba(255,255,255,.92);
  background: var(--bg);
}
.has-photo-hero .topbar.topbar-overlay .nav a{ color: rgba(255,255,255,.85); background: transparent; }
.has-photo-hero .topbar.topbar-overlay .nav a:hover{ color: #fff; }
.has-photo-hero .topbar.topbar-overlay .brand-mark{
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.3);
}
.has-photo-hero .topbar.topbar-overlay .brand-text{ color: #fff; }
.has-photo-hero .topbar.topbar-overlay .status{
  color: rgba(255,255,255,.7);
  background: transparent;
}
.has-photo-hero .topbar.topbar-overlay .hamburger span{ background: #fff; }
.has-photo-hero .topbar.topbar-overlay .btn-primary{
  background: rgba(255,255,255,.95);
  color: var(--ink);
}
.has-photo-hero .topbar.topbar-overlay .btn-primary:hover{
  background: #fff;
}
/* once user scrolls past hero, restore solid topbar */
.has-photo-hero .topbar.scrolled{
  position: fixed;
  background: rgba(243,244,246,.92) !important;
  border-bottom-color: var(--line) !important;
  backdrop-filter: saturate(140%) blur(14px);
}
.has-photo-hero .topbar.scrolled .nav a{ color: var(--ink-soft); }
.has-photo-hero .topbar.scrolled .brand-text{ color: var(--ink); }
.has-photo-hero .topbar.scrolled .status{ color: var(--ink-soft); }
.has-photo-hero .topbar.scrolled .hamburger span{ background: var(--ink); }
.has-photo-hero .topbar.scrolled .btn-primary{
  background: var(--ink);
  color: var(--bg);
}

.hero-photo{
  position: relative;
  height: 92vh;
  min-height: 640px;
  max-height: 880px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hp-bg{
  position: absolute; inset: 0;
  z-index: -2;
}
.hp-bg img,
.hp-bg picture{
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.hp-veil{
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    /* 1) hafif nötr karartma — fotoğraf canlı kalır ama beyaz yazıyla çatışmaz */
    linear-gradient(rgba(8,12,24,.28), rgba(8,12,24,.28)),
    /* 2) ALT ağırlıklı gradient — başlık + trust strip + chat widget bölgesi */
    linear-gradient(180deg,
      transparent 0%,
      transparent 28%,
      rgba(5,10,28,.55) 58%,
      rgba(3,7,22,.86) 85%,
      rgba(2,5,16,.94) 100%
    ),
    /* 3) sol kenara doğru hafif wedge — başlığın okunabilirliği için ekstra ipucu */
    linear-gradient(90deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.10) 35%, transparent 60%);
}
/* Yazılara hafif drop shadow — fotoğrafla rekabeti kazansın */
.hp-h1{ text-shadow: 0 2px 18px rgba(0,0,0,.45); }
.hp-lede{ text-shadow: 0 1px 10px rgba(0,0,0,.55); }
.hp-eyebrow{ text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.hp-trust-label,
.hp-trust-logos > span{ text-shadow: 0 1px 6px rgba(0,0,0,.55); }

.hp-inner{
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 110px 32px 56px;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.hp-top{
  display: flex; justify-content: flex-start;
}
.hp-eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hp-dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.6);
  animation: pulse 2s var(--t) infinite;
}
.hp-sep{ color: rgba(255,255,255,.3); }

.hp-center{
  display: flex; flex-direction: column;
  gap: 22px;
  max-width: 920px;
  margin-top: auto;
}
.hp-h1{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.hp-h1 em{
  font-style: normal;
  font-weight: 600;
  color: #B0C4F4;
}
.hp-period{ color: var(--accent-2); }
.hp-lede{
  margin: 0;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  max-width: 56ch;
}
.hp-lede strong{
  color: #fff;
  font-weight: 600;
}
.hp-cta{
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 4px;
}
.btn-photo-primary{
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
  border: 0;
  transition: transform .2s var(--t), background .2s var(--t);
}
.btn-photo-primary:hover{
  background: var(--accent-2);
  color: #fff;
  transform: translateY(-1px);
}
.btn-photo-ghost{
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  backdrop-filter: blur(6px);
  transition: background .2s var(--t), border-color .2s var(--t);
}
.btn-photo-ghost:hover{
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.5);
}

.hp-bottom{
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 20px;
}
.hp-trust{
  display: flex; align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hp-trust-label{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  flex-shrink: 0;
}
.hp-trust-logos{
  display: flex; align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hp-trust-logos > span{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.78);
}
.hp-trust-sep{ color: rgba(255,255,255,.25) !important; font-weight: 400 !important; }

/* floating chat widget */
.hp-chat{
  position: absolute;
  bottom: 24px; right: 24px;
  z-index: 4;
  display: inline-flex; align-items: center;
  gap: 12px;
  padding: 10px 14px 10px 12px;
  background: rgba(255,255,255,.96);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 16px 36px -10px rgba(0,0,0,.45);
  transition: transform .25s var(--t), box-shadow .25s var(--t);
  border: 1px solid rgba(0,0,0,.06);
}
.hp-chat:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 44px -12px rgba(0,0,0,.55);
}
.hpc-avatar{
  position: relative;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.hpc-pulse{
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #4ADE80;
  border: 2px solid #fff;
  bottom: -1px; right: -1px;
  animation: pulse 2s var(--t) infinite;
}
.hpc-text{
  display: flex; flex-direction: column;
  line-height: 1.2;
  padding-right: 4px;
}
.hpc-text b{
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.hpc-status{
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-mono);
}
.hpc-dot{
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #22C55E;
}
.hpc-cta{
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  transition: background .2s var(--t);
}
.hp-chat:hover .hpc-cta{ background: var(--accent-2); }

@media (max-width: 720px){
  .hero-photo{ height: auto; min-height: 100vh; max-height: none; }
  .hp-inner{ padding: 96px 20px 40px; gap: 16px; }
  .hp-trust{ flex-direction: column; align-items: flex-start; gap: 12px; }
  .hp-trust-logos{ gap: 10px; }
  .hp-trust-logos > span{ font-size: 12px; }
  .hp-chat{ bottom: 16px; right: 16px; left: 16px; justify-content: space-between; }
  .hpc-text b{ font-size: 12.5px; }
}

/* =====================================================
   HERO — poster (typographic + wax seal + ticker, legacy)
   ===================================================== */
.hero-poster{
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, var(--tint) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, #DCE2EC 0%, transparent 60%),
    var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-poster::before{
  /* subtle paper grain */
  content:"";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .5;
  pointer-events: none;
  z-index: 1;
}
.hero-poster > *{ position: relative; z-index: 2; }

.hero-masthead{
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 32px 14px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 12px;
}
.masthead-left, .masthead-right{
  display: inline-flex; align-items: center; gap: 10px;
}
.masthead-right{ color: var(--muted); }
.mh-dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulse 2s var(--t) infinite;
}
.mh-sep{ color: var(--muted-2); }
.masthead-left b{ font-weight: 600; color: var(--ink); }

.hero-inner-poster{
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px 32px 80px;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.hero-text-col{
  display: flex; flex-direction: column;
  gap: 24px;
}
.hero-eyebrow-num{
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.poster{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 4.6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
}
.poster em{
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}
.poster .period{ color: var(--accent-2); }

.hero-side-col{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-top: 12px;
}
.hero-side-meta{
  width: 100%;
  border-top: 1px solid var(--line);
}
.hero-side-meta > div{
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
}
.hero-side-meta > div:last-child{ border-bottom: 0; }
.hero-side-meta span{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-side-meta b{
  font-weight: 600;
  color: var(--ink);
  font-size: 13.5px;
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-side-meta .online{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulse 2s var(--t) infinite;
}

/* the wax seal */
.seal{
  position: relative;
  width: 200px; height: 200px;
  flex-shrink: 0;
  align-self: center;
  animation: sealRotateAlt 6s ease-in-out infinite alternate;
}
.seal-svg{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: sealRotate 30s linear infinite;
}
@keyframes sealRotate{ to{ transform: rotate(360deg); } }
@keyframes sealRotateAlt{
  to{ transform: translateY(-6px) rotate(2deg); }
}
.seal-text{
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  fill: var(--ink);
  text-transform: uppercase;
}
.seal-core{
  position: absolute;
  inset: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 2px solid var(--bg);
  box-shadow:
    0 0 0 1px var(--ink),
    0 14px 28px -10px rgba(15,15,13,.4);
}
.seal-num{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--bg);
}
.seal-label{
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-align: center;
  margin-top: 4px;
  color: rgba(255,255,255,.7);
}

/* typographic composition */
.hero-type{
  display: flex; flex-direction: column;
  gap: 6px;
  margin: 24px 0 64px;
}
.hero-row{
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}
.poster-line{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(54px, 8.4vw, 138px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0;
}
.poster-line .period{ color: var(--accent); }

.line-2{
  color: var(--accent);
  font-weight: 600;
  font-style: normal;
  position: relative;
}
.line-3{
  font-weight: 500;
  font-size: clamp(40px, 5.8vw, 96px);
}

.hr-num{
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: flex-start;
  padding-top: 18px;
  min-width: 60px;
}
.hr-stamp{
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 8px 14px;
  border-radius: 6px;
  transform: rotate(-3deg);
  background: var(--paper);
  align-self: center;
  margin-top: 12px;
}
.hr-stamp i{
  font-style: normal;
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.06em;
}

/* word rotator */
.hr-rotator{
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}
.rot-frame{
  position: relative;
  height: 1em;
  display: inline-block;
  overflow: hidden;
  vertical-align: baseline;
  /* will set min-width via JS, fallback ch */
  min-width: 6.5ch;
}
.rot-word{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5.8vw, 96px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--accent-2);
  position: absolute;
  top: 100%; left: 0;
  white-space: nowrap;
  transition: top .55s var(--t), opacity .4s var(--t);
  opacity: 0;
}
.rot-word.active{ top: 0; opacity: 1; }
.rot-word.exiting{ top: -100%; opacity: 0; }
.rot-comma{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5.8vw, 96px);
  color: var(--accent-2);
  letter-spacing: -0.035em;
}

/* hero bottom bar */
.hero-bar{
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.9fr;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  align-items: center;
}
.bar-lede p{
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 44ch;
}
.bar-lede strong{
  color: var(--ink);
  font-weight: 600;
}
.bar-cta{
  display: flex; gap: 10px; flex-wrap: wrap;
}
.bar-proof{
  display: inline-flex; align-items: center; gap: 14px;
  justify-self: end;
}
.bp-avatars{ display: inline-flex; }
.bp-avatars > span{
  width: 32px; height: 32px;
  border-radius: 50%;
  background-size: cover;
  background-position: top center;
  border: 2px solid var(--paper);
  margin-left: -10px;
  background-color: var(--accent);
}
.bp-avatars > span:first-child{ margin-left: 0; }
.bp-text{
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--ink-soft);
}
.bp-text b{ color: var(--ink); font-weight: 600; }

/* live ticker tape */
.ticker{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  position: relative;
}
.ticker::before, .ticker::after{
  content:""; position: absolute;
  top: 0; bottom: 0; width: 60px;
  z-index: 2; pointer-events: none;
}
.ticker::before{
  left: 0;
  background: linear-gradient(90deg, var(--ink), transparent);
}
.ticker::after{
  right: 0;
  background: linear-gradient(-90deg, var(--ink), transparent);
}
.ticker-track{
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 14px 0;
  gap: 24px;
  animation: tickerScroll 60s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.ticker-track:hover{ animation-play-state: paused; }
@keyframes tickerScroll{
  to{ transform: translateX(-50%); }
}
.tk-tag{
  background: var(--accent);
  color: var(--bg);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.tk-item{
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--bg);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tk-item em{
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,.55);
  font-size: 11.5px;
}
.tk-dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulse 2s var(--t) infinite;
}
.tk-sep{ color: rgba(255,255,255,.25); font-size: 8px; }

/* (legacy hero classes, no longer used on home but kept for compatibility) */
.hero{
  position: relative;
  padding: 32px 0 0;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg{
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.bg-orb{
  position: absolute;
  width: 720px; height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170,190,235,.55) 0%, transparent 65%);
  filter: blur(60px);
  top: -200px; right: -160px;
  animation: floatOrb 24s ease-in-out infinite alternate;
}
@keyframes floatOrb{
  to{ transform: translate(-40px, 60px) scale(1.06); }
}
.bg-grid{
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 60%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 60%, #000 30%, transparent 90%);
}

.hero-inner{
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 32px 64px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* editorial top row */
.hero-top{
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-edition{ display: inline-flex; align-items: center; gap: 12px; }
.ed-vol{ color: var(--ink); font-weight: 500; }
.ed-sep{ color: var(--muted-2); }
.ed-loc, .ed-yr{ color: var(--ink-soft); }
.hero-status{
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink-soft);
}
.hero-status .dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(44,90,67,.5);
  animation: pulse 2.4s var(--t) infinite;
}
.hero-status b{
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0;
}

/* main grid */
.hero-main{
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: center;
}
.hero-text{
  display: flex; flex-direction: column; gap: 24px;
  max-width: 560px;
}

.display{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 4.6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
}
.display .line{ display: block; position: relative; }
.display em{
  font-weight: 600;
  color: var(--accent);
}
.display .comma,
.display .period{
  color: var(--accent-2);
  display: inline-block;
}

.display-sm{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.1vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
}
.display-sm em{
  font-weight: 600;
  color: var(--accent);
}

.hero-lede{
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 48ch;
}
.hero-lede strong{
  color: var(--ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.hero-cta{ display: flex; flex-wrap: wrap; gap: 12px; }

/* microproof */
.hero-microproof{
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251,249,244,.7);
  backdrop-filter: blur(6px);
  max-width: fit-content;
}
.avatars{ display: inline-flex; }
.avatars > span{
  width: 32px; height: 32px;
  border-radius: 50%;
  background-size: cover;
  background-position: top center;
  border: 2px solid var(--paper);
  margin-left: -10px;
  display: inline-flex; align-items: center; justify-content: center;
  background-color: var(--accent);
  color: var(--paper);
  font-size: 11px;
  font-family: var(--font-mono);
}
.avatars > span:first-child{ margin-left: 0; }
.avatars > .more{ background-image:none !important; background-color: var(--ink); }
.microproof-text{ font-size: 13px; color: var(--ink-soft); }
.microproof-text b{ font-weight: 600; color: var(--ink); }

/* phone reel */
.hero-reel{
  position: relative;
  height: 460px;
  display: flex; align-items: center; justify-content: center;
}
.reel-frame{
  position: relative;
  width: 224px; height: 448px;
  border-radius: 36px;
  background: #0d0d0b;
  border: 7px solid #181816;
  overflow: hidden;
  box-shadow:
    0 36px 72px -28px rgba(15,15,13,.4),
    inset 0 0 0 1px rgba(255,255,255,.03);
  transform: rotate(-1.5deg);
  animation: reelTilt 20s ease-in-out infinite alternate;
}
@keyframes reelTilt{
  to{ transform: rotate(1.5deg) translateY(-6px); }
}
.reel-notch{
  position: absolute;
  top: 10px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 20px;
  background: #050504;
  border-radius: 0 0 12px 12px;
  z-index: 2;
}
.reel-track{
  display: flex;
  flex-direction: column;
  animation: reel 32s linear infinite;
}
.reel-track img{
  width: 100%;
  flex-shrink: 0;
  display: block;
  border-radius: 0;
}
@keyframes reel{
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.reel-frame::before{
  /* subtle gloss */
  content:"";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, transparent 30%, transparent 70%, rgba(0,0,0,.15) 100%);
  pointer-events: none;
  z-index: 3;
}

/* reel meta tags */
.reel-tag{
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 12px;
  z-index: 4;
  box-shadow: 0 16px 40px -16px rgba(15,15,13,.18);
  backdrop-filter: blur(8px);
}
.reel-tag-tl{
  top: 24px; left: -32px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  animation: tagFloat 7s ease-in-out infinite alternate;
}
.reel-tag-tl .t-dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(44,90,67,.5);
  animation: pulse 2s var(--t) infinite;
}
.reel-tag-br{
  bottom: 48px; right: -40px;
  border-radius: 22px;
  padding: 14px 18px;
  flex-direction: row;
  gap: 12px;
  animation: tagFloat 8s ease-in-out infinite alternate-reverse;
}
.reel-tag-br i{
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.reel-tag-br b{
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  line-height: 1.3;
}
@keyframes tagFloat{
  to{ transform: translateY(-10px); }
}

/* credentials bar */
.hero-credentials{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 0;
}
.cred{
  padding: 22px 22px;
  border-right: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 6px;
}
.cred:last-child{ border-right: 0; }
.cred b{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.cred b sup{
  font-size: 0.4em;
  color: var(--accent);
  font-weight: 400;
  margin-left: 2px;
}
.cred span{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* marquee */
.marquee{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper);
  position: relative; z-index: 1;
}
.marquee-track{
  display: inline-flex; white-space: nowrap; gap: 32px;
  padding: 18px 0;
  animation: marquee 50s linear infinite;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.marquee-track i{ font-style: normal; color: var(--muted-2); }
@keyframes marquee{ to{ transform: translateX(-50%); } }

/* =====================================================
   STATS
   ===================================================== */
.stats{ padding: 80px 0; background: var(--bg); }
.stats-grid{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat{
  padding: 36px 28px;
  border-right: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 10px;
}
.stat:last-child{ border-right: 0; }
.stat-num{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}
.stat-num sup, .stat-num sub{
  font-size: 0.4em; color: var(--accent);
  vertical-align: super; margin-left: 2px;
}
.stat-num sub{ vertical-align: baseline; }
.stat-label{ font-size: 13px; color: var(--muted); font-family: var(--font-mono); }

/* =====================================================
   SECTION
   ===================================================== */
.section{ padding: 96px 0; }
.section-alt{ background: var(--bg-alt); }
.section-head{ margin-bottom: 48px; max-width: 720px; }
.section-head.between{
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end;
  max-width: none;
}
.kicker{
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 18px;
}
.section-lede{
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
}
.section-lede.right{ margin-left: auto; }

/* =====================================================
   SERVICES — visual bento
   ===================================================== */
.bento{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bn{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  transition: transform .35s var(--t), border-color .25s var(--t), box-shadow .35s var(--t);
}
.bn:hover{
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 24px 60px -28px rgba(15,15,13,.16);
}
.bn:hover .bn-num{ color: var(--accent); }
.bn-visual{
  position: relative;
  height: 220px;
  background: var(--bg-alt);
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.bn-text{
  padding: 22px 24px 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.bn-num{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s var(--t);
}
.bn-text h3{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
  line-height: 1.1;
}
.bn-text p{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 44ch;
}

/* — visual: mobile (iPhone with app icon grid) — */
.bn-mobile .bn-visual{
  background: linear-gradient(135deg, #EEEAE0, #E5DFCF);
}
.mb-phone{
  position: absolute;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 130px; height: 220px;
  border-radius: 22px;
  background: #0d0d0b;
  border: 5px solid #1a1a17;
  box-shadow: 0 18px 36px -10px rgba(15,15,13,.4);
}
.mb-notch{
  position: absolute;
  top: 5px; left: 50%; transform: translateX(-50%);
  width: 38px; height: 9px;
  background: #050504;
  border-radius: 0 0 6px 6px;
}
.mb-screen{
  position: absolute; inset: 6px;
  border-radius: 16px;
  background: linear-gradient(180deg, #1E3FA8, #0E1F5A);
  display: flex; flex-direction: column;
  padding: 18px 12px 12px;
  gap: 12px;
}
.mb-bar{
  align-self: center;
  width: 28px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,.4);
}
.mb-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  flex: 1;
}
.mb-grid span{
  border-radius: 8px;
  display: block;
  animation: mbPop .6s var(--t) backwards;
}
.mb-grid span:nth-child(1){ animation-delay: .05s; }
.mb-grid span:nth-child(2){ animation-delay: .1s; }
.mb-grid span:nth-child(3){ animation-delay: .15s; }
.mb-grid span:nth-child(4){ animation-delay: .2s; }
.mb-grid span:nth-child(5){ animation-delay: .25s; }
.mb-grid span:nth-child(6){ animation-delay: .3s; }
.mb-grid span:nth-child(7){ animation-delay: .35s; }
.mb-grid span:nth-child(8){ animation-delay: .4s; }
@keyframes mbPop{
  from{ opacity: 0; transform: scale(.6); }
  to  { opacity: 1; transform: scale(1); }
}
.mb-badge{
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--ink);
  box-shadow: 0 6px 16px -6px rgba(0,0,0,.12);
}
.mb-badge.ios{ top: 24px; left: 24px; animation: mbFloat 6s ease-in-out infinite alternate; }
.mb-badge.android{ bottom: 24px; right: 24px; animation: mbFloat 7s ease-in-out infinite alternate-reverse; }
@keyframes mbFloat{
  to{ transform: translateY(-6px); }
}

/* — visual: web/saas (browser + chart) — */
.bn-web .bn-visual{
  background: linear-gradient(135deg, #ECE7DC, #E2DCC9);
}
.wb-window{
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 78%;
  background: var(--paper);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(15,15,13,.25);
  border: 1px solid var(--line);
}
.wb-bar{
  display: flex; align-items: center; gap: 5px;
  padding: 8px 12px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line-soft);
}
.wb-bar span{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
}
.wb-bar span:first-child{ background: #FF5F57; }
.wb-bar span:nth-child(2){ background: #FEBC2E; }
.wb-bar span:last-child{ background: #28C840; }
.wb-body{
  display: flex;
  height: 130px;
}
.wb-side{
  width: 32px;
  background: var(--bg);
  display: flex; flex-direction: column;
  gap: 8px;
  padding: 12px 6px;
  border-right: 1px solid var(--line-soft);
}
.wb-side i{
  display: block;
  height: 6px;
  border-radius: 2px;
  background: var(--line);
}
.wb-side i:first-child{ background: var(--accent); }
.wb-content{
  flex: 1;
  padding: 12px;
  display: flex; flex-direction: column;
  gap: 12px;
}
.wb-row{
  height: 6px;
  width: var(--w);
  background: var(--line);
  border-radius: 3px;
}
.wb-chart{
  display: flex; align-items: flex-end;
  gap: 6px;
  height: 60px;
}
.wb-chart i{
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 3px 3px 0 0;
  transform-origin: bottom;
  animation: wbBar 1s var(--t) backwards;
}
.wb-chart i:nth-child(1){ animation-delay: .1s; }
.wb-chart i:nth-child(2){ animation-delay: .2s; }
.wb-chart i:nth-child(3){ animation-delay: .3s; }
.wb-chart i:nth-child(4){ animation-delay: .4s; }
.wb-chart i:nth-child(5){ animation-delay: .5s; }
.wb-chart i:nth-child(6){ animation-delay: .6s; }
@keyframes wbBar{
  from{ transform: scaleY(0); }
  to  { transform: scaleY(1); }
}

/* — visual: corporate (network grid) — */
.bn-corp .bn-visual{
  background: linear-gradient(135deg, #ECE7DC, #DDD6C5);
}
.cp-grid{
  position: absolute;
  inset: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  color: var(--accent);
}
.cp-lines{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: .35;
  pointer-events: none;
}
.cp-node{
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--accent);
  position: relative;
  z-index: 1;
}
.cp-node.active{
  width: 22px; height: 22px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(26,58,42,.4);
  animation: cpPulse 2s var(--t) infinite;
}
@keyframes cpPulse{
  0%   { box-shadow: 0 0 0 0 rgba(26,58,42,.45); }
  70%  { box-shadow: 0 0 0 12px rgba(26,58,42,0); }
  100% { box-shadow: 0 0 0 0 rgba(26,58,42,0); }
}

/* — visual: saas (subscription card) — */
.bn-saas .bn-visual{
  background: linear-gradient(135deg, #ECE7DC, #E2DCC9);
}
.ss-card{
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 78%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 18px 16px;
  display: flex; flex-direction: column;
  gap: 10px;
  box-shadow: 0 24px 48px -16px rgba(15,15,13,.18);
}
.ss-tag{
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  background: var(--accent);
  color: var(--paper);
  padding: 4px 9px;
  border-radius: 6px;
}
.ss-num{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.ss-num i{
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}
.ss-bars{ display: flex; flex-direction: column; gap: 5px; }
.ss-bars i{
  display: block;
  height: 5px;
  width: var(--w);
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform-origin: left;
  animation: wbBar 1s var(--t) backwards;
}
.ss-bars i:nth-child(1){ animation-delay: .1s; }
.ss-bars i:nth-child(2){ animation-delay: .2s; }
.ss-bars i:nth-child(3){ animation-delay: .3s; }
.ss-foot{
  display: flex; gap: 6px;
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}
.ss-foot span{
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: 2px solid var(--paper);
  margin-left: -8px;
}
.ss-foot span:first-child{ margin-left: 0; }
.ss-foot span:nth-child(2){ background: linear-gradient(135deg, #7A4A0F, #B07A2A); }
.ss-foot span:nth-child(3){ background: linear-gradient(135deg, #3B2A6B, #5A4A8B); }

/* — visual: growth (line chart) — */
.bn-growth .bn-visual{
  background: linear-gradient(135deg, #ECE7DC, #DFD8C5);
}
.gr-chart{
  position: absolute;
  inset: 28px;
  display: flex; flex-direction: column;
  gap: 6px;
  justify-content: flex-end;
}
.gr-chart svg{
  width: 100%;
  height: 70%;
  display: block;
}
.gr-line{
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 2s var(--t) forwards;
}
@keyframes drawLine{
  to{ stroke-dashoffset: 0; }
}
.gr-num{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.gr-lbl{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

/* — visual: brand (palette + logo) — */
.bn-brand .bn-visual{
  background: linear-gradient(135deg, #EBE5D6, #DDD6C5);
}
.br-stack{
  position: absolute;
  left: 22px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column;
  gap: 8px;
}
.br-swatch{
  width: 56px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 6px 16px -6px rgba(0,0,0,.12);
  animation: brSlide .6s var(--t) backwards;
}
.s1{ background: #1E3FA8; animation-delay: .05s; }
.s2{ background: #2D58D6; animation-delay: .15s; }
.s3{ background: #DDE5F5; animation-delay: .25s; }
.s4{ background: #FBF9F4; animation-delay: .35s; }
@keyframes brSlide{
  from{ opacity: 0; transform: translateX(-8px); }
  to  { opacity: 1; transform: translateX(0); }
}
.br-letter{
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  width: 96px; height: 96px;
  border-radius: 22px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 56px;
  line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  letter-spacing: -0.04em;
  box-shadow: 0 14px 32px -10px rgba(0,0,0,.3);
}
.br-tag{
  position: absolute;
  bottom: 22px; right: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
  background: var(--paper);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

/* =====================================================
   NEDEN LUPIAPPS?
   ===================================================== */
.section-why{
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.why-card{
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column;
  gap: 14px;
  background: var(--paper);
  transition: background .25s var(--t);
}
.why-card:hover{ background: var(--bg); }
.why-icon{
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--tint);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.why-card h3{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.why-card p{
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* =====================================================
   PROCESS — scroll-driven sticky stepper
   ===================================================== */
.section-process{
  overflow: visible;
  padding: 120px 0 0;
}
.proc-head{ padding-bottom: 32px; }
.proc-head .section-head{ margin-bottom: 0; }

/* tall outer wrap — drives the scroll progress */
.proc-wrap{
  position: relative;
  height: 540vh; /* 6 × 90vh — gives each step a comfortable scroll slice */
}
.proc-sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 24px 0;
}

.stepper{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px 48px 36px;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 40px 80px -40px rgba(15,15,13,.18);
}
.stepper::before{
  content:""; position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--tint) 0%, transparent 70%);
  top: -160px; right: -160px;
  pointer-events: none;
}

.scroll-hint{
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
  width: fit-content;
  transition: opacity .4s var(--t);
}
.scroll-hint svg{ animation: hintBounce 1.6s ease-in-out infinite; color: var(--accent); }
@keyframes hintBounce{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(4px); }
}

/* rail */
.stepper-rail{
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding: 0 24px;
  margin-bottom: 56px;
}
.rail-bg, .rail-fill{
  position: absolute;
  top: 16px; left: 24px; right: 24px;
  height: 1px;
  background: var(--line);
}
.rail-fill{
  background: var(--accent);
  width: 0%;
  transition: width .8s var(--t);
  z-index: 1;
}
.rail-dot{
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: 16px;
  padding-top: 0;
  z-index: 2;
}
.rail-dot::before{
  content:"";
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  margin-top: 9px;
  transition: all .35s var(--t);
}
.rail-dot.done::before{
  background: var(--accent);
  border-color: var(--accent);
  margin-top: 9px;
}
.rail-dot.active::before{
  background: var(--accent);
  border-color: var(--accent);
  width: 18px; height: 18px;
  margin-top: 7px;
  box-shadow: 0 0 0 6px rgba(26,58,42,.12);
}
.dot-num{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  transition: color .25s var(--t);
}
.rail-dot.active .dot-num{ color: var(--accent); }
.dot-tag{
  font-family: var(--font-display);
  
  font-size: 16px;
  color: var(--ink-soft);
  transition: color .25s var(--t);
}
.rail-dot.active .dot-tag{ color: var(--ink); }

/* panel */
.step-panel{
  position: relative;
  min-height: 360px;
}
.step-panel.flip .step-text,
.step-panel.flip .step-visual{
  animation: flipIn .65s var(--t);
}
.step-panel.flip .step-meta{
  animation: flipUp .55s var(--t);
}
@keyframes flipIn{
  from{ opacity: 0; transform: translateY(20px); }
  to{ opacity: 1; transform: translateY(0); }
}
@keyframes flipUp{
  from{ opacity: 0; transform: translateY(8px); }
  to{ opacity: 1; transform: translateY(0); }
}
.step-meta{
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 22px;
}
.step-current{
  font-weight: 600;
  font-size: 28px;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.step-sep{ color: var(--muted-2); font-size: 28px; }
.step-total{ color: var(--muted); font-size: 22px; font-variant-numeric: tabular-nums; }
.step-day{
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg);
}
.step-stage{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 8px;
}
.step-text{ display: flex; flex-direction: column; gap: 18px; }
.step-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 2.8vw, 40px);
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1.08;
}
.step-desc{
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 48ch;
}
.step-list{
  list-style: none; padding: 0; margin: 8px 0 0;
}
.step-list li{
  padding: 10px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 12px;
}
.step-list li::before{
  content: ""; width: 14px; height: 1px; background: var(--accent);
  flex-shrink: 0;
}

.step-visual{
  height: 320px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.vis{
  position: absolute; inset: 0;
  padding: 28px;
  display: flex;
}

/* visual: discovery — bubbles */
.vis-discovery{ flex-direction: column; gap: 12px; justify-content: flex-end; }
.vis-bubble{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px 16px;
  font-size: 14px;
  max-width: 80%;
  animation: pop .5s var(--t) backwards;
}
.bubble-a{ background: var(--ink); color: var(--bg); border-color: var(--ink); align-self: flex-start; border-bottom-left-radius: 4px; animation-delay: .15s; }
.bubble-b{ align-self: flex-end; border-bottom-right-radius: 4px; animation-delay: .35s; }
.bubble-c{ background: var(--tint); border-color: var(--tint); align-self: flex-start; border-bottom-left-radius: 4px; animation-delay: .55s; }
@keyframes pop{
  from{ opacity: 0; transform: translateY(8px) scale(.96); }
  to{ opacity: 1; transform: translateY(0) scale(1); }
}

/* visual: design — wireframe blocks */
.vis-design{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 28px; }
.dz{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.dz-1{ animation: dz 1.2s var(--t) backwards; }
.dz-2{
  display: flex; flex-direction: column; gap: 8px; padding: 16px;
  animation: dz 1.2s var(--t) .15s backwards;
}
.dz-2 span{ height: 8px; background: var(--line); border-radius: 4px; }
.dz-2 span:nth-child(1){ width: 60%; background: var(--accent); }
.dz-2 span:nth-child(2){ width: 80%; }
.dz-2 span:nth-child(3){ width: 40%; }
.dz-3{ background: var(--accent); border-color: var(--accent); animation: dz 1.2s var(--t) .3s backwards; }
.dz-4{ animation: dz 1.2s var(--t) .45s backwards; }
.dz-3::after{
  content:""; position:absolute; inset: 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
}
@keyframes dz{
  from{ opacity: 0; transform: translateY(10px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* visual: build — code + bars */
.vis-build{ flex-direction: column; gap: 16px; padding: 24px; justify-content: center; }
.code-block{
  background: var(--ink);
  color: #D6D2C4;
  font-family: var(--font-mono);
  font-size: 12.5px;
  padding: 18px;
  border-radius: 10px;
  margin: 0;
  line-height: 1.6;
  white-space: pre;
  overflow: hidden;
}
.code-block .kw{ color: #FFB47A; }
.code-block .fn{ color: #B5E0C8; }
.code-block .str{ color: #FFE4A1; }
.code-block .cm{ color: #6B7768;  }
.bars{ display: flex; flex-direction: column; gap: 8px; }
.bars i{
  display: block;
  height: 6px;
  width: var(--w);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 3px;
  transform-origin: left;
  animation: bar 1s var(--t) backwards;
}
.bars i:nth-child(1){ animation-delay: .1s; }
.bars i:nth-child(2){ animation-delay: .2s; }
.bars i:nth-child(3){ animation-delay: .3s; }
.bars i:nth-child(4){ animation-delay: .4s; }
@keyframes bar{
  from{ transform: scaleX(0); }
  to{ transform: scaleX(1); }
}

/* visual: qa — checklist */
.vis-qa{ flex-direction: column; gap: 8px; justify-content: center; padding: 28px; }
.qa-row{
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
  animation: pop .5s var(--t) backwards;
}
.qa-row:nth-child(1){ animation-delay: .05s; }
.qa-row:nth-child(2){ animation-delay: .15s; }
.qa-row:nth-child(3){ animation-delay: .25s; }
.qa-row:nth-child(4){ animation-delay: .35s; }
.qa-row:nth-child(5){ animation-delay: .45s; }
.qa-row b{
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.qa-row b.ok{ background: var(--tint); color: var(--accent); }

/* visual: launch — app card + rocket */
.vis-launch{
  align-items: center; justify-content: center; padding: 28px;
  position: relative;
}
.launch-card{
  width: 220px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center;
  animation: rise .8s var(--t) backwards;
}
.lc-bar{
  align-self: flex-start;
  display: flex; gap: 4px;
}
.lc-bar span{ width: 7px; height: 7px; border-radius: 50%; background: var(--line); }
.lc-icon{
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin-top: 8px;
  box-shadow: 0 8px 16px -4px rgba(26,58,42,.3);
}
.lc-title{
  font-family: var(--font-display);  font-size: 22px;
  color: var(--ink);
}
.lc-sub{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lc-cta{
  margin-top: 4px;
  font-size: 12px; font-weight: 500;
  background: var(--ink); color: var(--bg);
  padding: 6px 16px;
  border-radius: 999px;
}
.launch-rocket{
  position: absolute;
  bottom: 16px; right: 24px;
  font-size: 32px;
  color: var(--accent);
  font-family: var(--font-display);
  
  animation: rocket 2s var(--t) infinite alternate;
}
@keyframes rise{
  from{ opacity: 0; transform: translateY(20px); }
  to{ opacity: 1; transform: translateY(0); }
}
@keyframes rocket{
  to{ transform: translateY(-12px); }
}

/* visual: support */
.vis-support{ flex-direction: column; gap: 8px; justify-content: center; padding: 28px; }
.sp-row{
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
  animation: pop .5s var(--t) backwards;
}
.sp-row b{ font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.sp-row:nth-child(1){ animation-delay: .05s; }
.sp-row:nth-child(2){ animation-delay: .15s; }
.sp-row:nth-child(3){ animation-delay: .25s; }
.sp-shield{
  margin-top: 8px;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--tint);
  border-radius: 10px;
  color: var(--accent);
  animation: pop .5s var(--t) .35s backwards;
}
.sp-shield span{ font-weight: 600; font-size: 13px; }

/* (controls removed — now scroll-driven) */

/* =====================================================
   WORK BANNER (home)
   ===================================================== */
.banner{
  border-radius: var(--r-xl);
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
}
.banner-strip{
  position: relative;
  overflow: hidden;
  padding: 32px 0 28px;
  background:
    radial-gradient(circle at 20% 50%, var(--tint) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, #E5E9F0 0%, transparent 50%),
    var(--paper);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.strip-track{
  display: inline-flex;
  gap: 18px;
  padding: 0 18px;
  animation: stripScroll 50s linear infinite;
  will-change: transform;
}
.banner-strip:hover .strip-track{ animation-play-state: paused; }
@keyframes stripScroll{
  to{ transform: translateX(-50%); }
}
.strip-card{
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 200px;
  text-decoration: none;
  transition: transform .3s var(--t);
}
.strip-card:hover{ transform: translateY(-4px); }
.strip-tile{
  position: relative;
  width: 200px; height: 200px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px -12px rgba(15,15,13,.18);
  transition: border-color .25s var(--t), box-shadow .35s var(--t);
}
.strip-card:hover .strip-tile{
  border-color: var(--ink);
  box-shadow: 0 22px 44px -16px rgba(15,15,13,.25);
}
.strip-tile img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .8s var(--t);
}
.strip-card:hover .strip-tile img{ transform: scale(1.05); }
.strip-info{
  text-align: left;
  padding-left: 4px;
}
.strip-info{
  display: flex; flex-direction: column;
  gap: 2px;
}
.strip-info b{
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.strip-info span{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}

.banner-foot{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.banner-stats{
  display: flex;
  gap: 40px;
}
.banner-stats > div{
  display: flex; flex-direction: column; gap: 4px;
}
.banner-stats b{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.banner-stats b sup{
  font-size: 0.45em;
  color: var(--accent);
  font-weight: 500;
  margin-left: 2px;
}
.banner-stats span{
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* =====================================================
   WORK — interactive showcase (legacy)
   ===================================================== */
.showcase{
  --p-fg: var(--accent);
  --p-bg: var(--tint);
  position: relative;
}
.sc-stage{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 56px 56px;
  min-height: 540px;
  overflow: hidden;
  position: relative;
}
.sc-stage.flip .sc-info > *,
.sc-stage.flip .sc-phone,
.sc-stage.flip .sc-floater{
  animation: scFlip .65s var(--t);
}
.sc-stage.flip .sc-info > *:nth-child(1){ animation-delay: .04s; animation-fill-mode: backwards; }
.sc-stage.flip .sc-info > *:nth-child(2){ animation-delay: .10s; animation-fill-mode: backwards; }
.sc-stage.flip .sc-info > *:nth-child(3){ animation-delay: .14s; animation-fill-mode: backwards; }
.sc-stage.flip .sc-info > *:nth-child(4){ animation-delay: .18s; animation-fill-mode: backwards; }
.sc-stage.flip .sc-info > *:nth-child(5){ animation-delay: .22s; animation-fill-mode: backwards; }
.sc-stage.flip .sc-info > *:nth-child(6){ animation-delay: .26s; animation-fill-mode: backwards; }
@keyframes scFlip{
  from{ opacity: 0; transform: translateY(14px); }
  to  { opacity: 1; transform: translateY(0); }
}

.sc-info{
  display: flex; flex-direction: column;
  gap: 20px;
  position: relative; z-index: 2;
}
.sc-counter{
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.sc-counter span:first-child{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  color: var(--p-fg);
  margin-right: 4px;
}
.sc-sep{ color: var(--muted-2); font-size: 14px; }
.sc-name{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--p-fg);
  margin: 0;
}
.sc-tagline{
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 42ch;
}
.sc-meta{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.sc-meta > div{
  display: flex; flex-direction: column; gap: 4px;
}
.sc-meta span{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.sc-meta b{
  font-family: var(--font-display);
  
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
}
.sc-tags{ display: flex; flex-wrap: wrap; gap: 6px; }
.sc-tags span{
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--p-bg);
  color: var(--p-fg);
}
.sc-cta{ align-self: flex-start; margin-top: 4px; }

/* visual side */
.sc-visual{
  position: relative;
  height: 540px;
  display: flex; align-items: center; justify-content: center;
}
.sc-bg{
  position: absolute; inset: -40px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .9;
  transition: background .8s var(--t);
}
.sc-phone{
  position: relative;
  width: 280px; height: 540px;
  border-radius: 44px;
  background: #0d0d0b;
  border: 8px solid #1a1a17;
  overflow: hidden;
  box-shadow: 0 50px 100px -30px rgba(15,15,13,.5);
  transform: rotate(-3deg);
  transition: transform .8s var(--t);
}
.sc-stage:hover .sc-phone{ transform: rotate(0deg) translateY(-6px); }
.sc-notch{
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 22px;
  background: #050504;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.sc-screen{
  position: absolute; inset: 0;
  border-radius: 36px;
  overflow: hidden;
  background: var(--ink);
}
.sc-screen img{
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 36px;
  animation: imgIn .8s var(--t);
}
@keyframes imgIn{
  from{ opacity: 0; transform: scale(1.06); }
  to  { opacity: 1; transform: scale(1); }
}

.sc-floater{
  position: absolute;
  bottom: 24px; right: -12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: 0 16px 40px -16px rgba(15,15,13,.18);
  z-index: 4;
  animation: floaty 6s ease-in-out infinite alternate;
}
.sf-row{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sf-dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--p-fg);
  animation: pulse 2s var(--t) infinite;
}
.sf-num{
  font-family: var(--font-display);
  font-weight: 500;
  
  font-size: 28px;
  color: var(--p-fg);
  letter-spacing: -0.02em;
}
@keyframes floaty{
  to{ transform: translateY(-10px); }
}

/* thumbnail nav */
.sc-nav{
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.sc-thumb{
  --p-bg: var(--bg-alt);
  --p-fg: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: left;
  transition: border-color .25s var(--t), background .25s var(--t), transform .25s var(--t);
  position: relative;
  overflow: hidden;
}
.sc-thumb:hover{
  transform: translateY(-2px);
  border-color: var(--p-fg);
}
.sc-thumb.active{
  border-color: var(--p-fg);
  background: var(--p-bg);
}
.thumb-img{
  width: 28px; height: 44px;
  border-radius: 6px;
  background: var(--ink);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,.1);
}
.thumb-img img{ width: 100%; height: 100%; object-fit: cover; }
.thumb-meta{
  display: flex; flex-direction: column; gap: 0;
  min-width: 0;
}
.thumb-meta small{
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.thumb-meta b{
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sc-thumb.active .thumb-meta b{ color: var(--p-fg); }
.thumb-progress{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: transparent;
}
.thumb-progress i{
  display: block;
  height: 100%;
  width: 0%;
  background: var(--p-fg);
  transition: width 0s linear;
}
.sc-thumb.active .thumb-progress{
  background: rgba(0,0,0,.06);
}

/* =====================================================
   TESTIMONIALS — auto marquee
   ===================================================== */
.section-testimonials{
  padding: 96px 0;
}
.ts-head{
  text-align: center;
  margin-bottom: 48px;
}
.ts-head .kicker{
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: none;
  font-family: var(--font-mono);
}
.ts-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--ink);
}
.ts-title em{
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}

.ts-marquee{
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.ts-track{
  display: inline-flex;
  gap: 20px;
  padding: 8px 0;
  animation: tsScroll 70s linear infinite;
  will-change: transform;
}
.ts-marquee:hover .ts-track{ animation-play-state: paused; }
@keyframes tsScroll{
  to{ transform: translateX(-50%); }
}

.ts-card{
  --ts-accent: var(--accent);
  flex-shrink: 0;
  width: 360px;
  padding: 24px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 24px -16px rgba(15,15,13,.1);
  transition: transform .25s var(--t), box-shadow .25s var(--t);
}
.ts-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -16px rgba(15,15,13,.15);
}

.ts-head-row{
  display: flex; align-items: center; gap: 12px;
}
.ts-avatar{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ts-accent);
  color: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.ts-avatar.photo{ color: transparent; }
.ts-id{ display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.ts-name{
  display: inline-flex; align-items: center; gap: 6px;
}
.ts-name b{
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
.ts-li{
  display: inline-flex; align-items: center; justify-content: center;
  color: #0A66C2;
}
.ts-role{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.ts-text{
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ts-stars{
  display: inline-flex; gap: 3px;
  color: #F7B500;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-container{ max-width: 920px; }
.faq{ border-top: 1px solid var(--line); }
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color .2s var(--t);
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary:hover{ color: var(--accent); }
.plus{ width: 22px; height: 22px; position: relative; flex-shrink: 0; }
.plus::before, .plus::after{
  content:""; position: absolute; inset: 0; margin: auto;
  background: var(--ink-soft);
  transition: transform .3s var(--t), background .2s var(--t);
}
.plus::before{ width: 14px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.plus::after { width: 1.5px; height: 14px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-item[open] .plus::after{ transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-body{
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  padding: 0 0 22px;
  max-width: 64ch;
}

/* =====================================================
   CONTACT CTA on home + dedicated CONTACT page
   ===================================================== */
.section-contact-cta{
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-cta-card{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 48px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 56px -28px rgba(15,15,13,.12);
}
.contact-cta-card::before{
  content:""; position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--tint) 0%, transparent 70%);
  filter: blur(50px);
  bottom: -200px; right: -100px;
  pointer-events: none;
  opacity: .9;
}
.contact-cta-card .cca-text{ position: relative; z-index: 1; }
.contact-cta-card .kicker{ color: var(--muted); margin-bottom: 12px; }
.contact-cta-card h2{
  color: var(--ink);
  margin: 0;
}
.contact-cta-card h2 em{ color: var(--accent); font-style: normal; font-weight: 600; }
.contact-cta-card p{
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 50ch;
  line-height: 1.55;
}
.cca-actions{
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-end;
  text-align: right;
}
.cca-meta{
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.cca-meta span{ display: inline-flex; align-items: center; gap: 8px; justify-content: flex-end; }
.cca-meta .cb-online{ background: var(--accent-2); }
.cca-meta a{ color: var(--ink-soft); }
.cca-meta a:hover{ color: var(--ink); }

/* dedicated contact page */
.page-contact{ background: var(--bg); }
.contact-main{
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px 32px 64px;
}
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: 56px;
  align-items: start;
}
.contact-side{
  position: sticky;
  top: 96px;
  display: flex; flex-direction: column;
  gap: 24px;
}
.contact-h1{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 8px 0 0;
}
.contact-h1 em{ font-style: normal; font-weight: 600; color: var(--accent); }
.contact-lede{
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 48ch;
}

.contact-info{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 8px;
}
.contact-info > div{
  padding: 14px 0;
  display: flex; flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--line-soft);
  padding-right: 18px;
}
.contact-info > div:nth-child(2n){ border-right: 0; padding-right: 0; padding-left: 18px; }
.contact-info > div:nth-child(-n+2){ border-bottom: 1px solid var(--line-soft); padding-top: 14px; padding-bottom: 18px; }
.contact-info > div:nth-child(n+3){ padding-top: 18px; }
.contact-info span{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-info a, .contact-info b{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.015em;
  display: inline-flex; align-items: center; gap: 8px;
}
.contact-info .online-dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulse 2s var(--t) infinite;
}

.contact-trust{
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.trust-item{
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.trust-item:last-child{ border-bottom: 0; }
.trust-item h4{
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.trust-item p{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* full-page chatbot variant */
.contact-chat{ position: relative; }
.chatbot.full{
  height: 720px;
  max-height: calc(100vh - 160px);
}

.chatbot{
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px -30px rgba(15,15,13,.18);
  height: 580px;
}
.cb-bar{
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.cb-bar-left{ display: flex; align-items: center; gap: 12px; }
.cb-avatar{
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--paper);
  font-family: var(--font-display);
  
  font-weight: 600;
  font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
}
.cb-id{ display: flex; flex-direction: column; gap: 2px; }
.cb-id b{ font-size: 14px; font-weight: 600; }
.cb-id span{
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.cb-online{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(44,90,67,.5);
  animation: pulse 2s var(--t) infinite;
}
.cb-dots{ display: flex; gap: 5px; }
.cb-dots span{
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line);
}
.cb-dots span:first-child{ background: #FF5F57; }
.cb-dots span:nth-child(2){ background: #FEBC2E; }
.cb-dots span:last-child{ background: #28C840; }

.cb-body{
  flex: 1;
  overflow-y: auto;
  padding: 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}
.cb-body::-webkit-scrollbar{ width: 6px; }
.cb-body::-webkit-scrollbar-thumb{
  background: var(--line);
  border-radius: 3px;
}
.cb-msg{
  max-width: 80%;
  display: flex;
  animation: msgIn .3s var(--t);
}
@keyframes msgIn{
  from{ opacity: 0; transform: translateY(8px); }
  to  { opacity: 1; transform: translateY(0); }
}
.cb-msg p{
  margin: 0;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.5;
  word-wrap: break-word;
}
.cb-msg.bot{
  align-self: flex-start;
}
.cb-msg.bot p{
  background: var(--paper);
  border: 1px solid var(--line-soft);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.cb-msg.user{
  align-self: flex-end;
}
.cb-msg.user p{
  background: var(--ink);
  color: var(--bg);
  border-bottom-right-radius: 4px;
}
.cb-msg.bot.typing p{
  display: inline-flex; align-items: center; gap: 4px;
  padding: 14px 16px;
}
.cb-dot{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--muted-2);
  animation: cbDot 1.2s ease-in-out infinite;
}
.cb-dot:nth-child(2){ animation-delay: .15s; }
.cb-dot:nth-child(3){ animation-delay: .3s; }
@keyframes cbDot{
  0%,80%,100%{ opacity: .3; transform: translateY(0); }
  40%        { opacity: 1;  transform: translateY(-3px); }
}

.cb-suggestions{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 24px;
  margin-top: 4px;
  margin-bottom: 16px;
  min-height: 0;
}
.cb-sg{
  font-size: 13px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition: background .2s var(--t), color .2s var(--t), border-color .2s var(--t), transform .2s var(--t);
}
.cb-sg:hover{
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-1px);
}

.cb-input{
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.cb-prompt{
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 16px;
}
.cb-input input{
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: var(--ink);
}
.cb-input input::placeholder{ color: var(--muted); }
.cb-send{
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s var(--t), transform .2s var(--t);
}
.cb-send:hover{ background: var(--accent); transform: translateX(2px); }
.cb-send:disabled{ opacity: .5; cursor: not-allowed; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer{
  background: var(--ink); color: #BDB7A6;
  padding: 88px 0 32px;
}
.footer .brand-text{ color: #F4F1EA; }
.footer-top{
  display: grid; grid-template-columns: 1.4fr 2fr;
  gap: 72px;
  padding-bottom: 56px;
  border-bottom: 1px solid #2A2926;
}
.footer-brand p{
  margin: 20px 0 0; font-size: 14px; line-height: 1.6;
  color: #8C887D; max-width: 38ch;
}
.footer-cols{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-cols h4{
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6A6759;
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-cols a, .footer-cols span{
  display: block; font-size: 14px;
  color: #BDB7A6; padding: 6px 0;
  transition: color .2s var(--t);
}
.footer-cols a:hover{ color: #FFFFFF; }
.footer-bot{
  margin-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  color: #6A6759; font-size: 12.5px;
  font-family: var(--font-mono); flex-wrap: wrap; gap: 12px;
}
.footer-meta{ display: flex; gap: 8px; }

/* =====================================================
   BLOG
   ===================================================== */
.page-blog, .page-blog-post{ background: var(--bg); }
.blog-hero{
  position: relative;
  padding: 56px 0 40px;
  overflow: hidden;
}
.blog-hero::before{
  content:""; position: absolute; pointer-events: none;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--tint) 0%, transparent 65%);
  filter: blur(60px);
  top: -160px; right: -80px;
  opacity: .8;
}
.blog-hero .container{ position: relative; z-index: 1; }
.blog-hero .display{ margin: 14px 0 0; }
.blog-lede{
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

.blog-section{ padding-top: 24px; }
.blog-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.post-card{
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  transition: transform .35s var(--t), border-color .25s var(--t), box-shadow .35s var(--t);
  animation: plIn .5s var(--t) backwards;
}
.post-card:hover{
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 24px 56px -28px rgba(15,15,13,.18);
}
.post-cover{
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-alt);
}
.post-cover img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--t);
}
.post-card:hover .post-cover img{ transform: scale(1.04); }
.post-cat{
  position: absolute;
  top: 14px; left: 14px;
  background: var(--paper);
  color: var(--ink);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--line);
}
.post-cat.sm{
  position: static;
  display: inline-block;
  margin-bottom: 8px;
}
.post-info{
  padding: 22px 24px 24px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.post-meta{
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.post-info h2{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.post-info p{
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.post-read{
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-top: 4px;
}

/* single post */
.post-hero{
  position: relative;
  padding: 32px 0 40px;
  border-bottom: 1px solid var(--line);
}
.post-hero-grid{
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
}
.post-hero-text{ display: flex; flex-direction: column; gap: 18px; }
.post-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
}
.post-lede{
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}
.post-author{
  display: flex; align-items: center; gap: 12px;
  margin-top: 8px;
}
.post-author > div{ display: flex; flex-direction: column; gap: 2px; }
.post-author b{ font-size: 14px; font-weight: 600; color: var(--ink); }
.post-author span{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}
.post-cover-img{
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  aspect-ratio: 4/3;
}
.post-cover-img img{
  width: 100%; height: 100%;
  object-fit: cover;
}

.post-body{
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  gap: 64px;
  padding: 64px 32px;
}
.post-content{
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.post-content h2{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 40px 0 14px;
}
.post-content h3{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin: 32px 0 10px;
  color: var(--ink);
}
.post-content p{
  margin: 0 0 18px;
}
.post-content strong{ color: var(--ink); font-weight: 600; }
.post-content a{ color: var(--accent); text-decoration: underline; }

.post-cta{
  position: sticky;
  top: 96px;
  align-self: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.post-cta h3{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.post-cta p{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.post-cta .btn{ margin-top: 4px; align-self: flex-start; }

.post-related{
  background: var(--bg-alt);
  padding: 64px 0;
}
.post-related h3{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink);
}
.related-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform .25s var(--t), border-color .2s var(--t);
}
.related-card:hover{ transform: translateY(-2px); border-color: var(--ink); }
.related-card img{
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.related-card > div{
  padding: 16px 18px 18px;
}
.related-card h4{
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--ink);
}
.post-loading{ padding: 80px 32px; text-align: center; }

/* =====================================================
   PROJECTS LIST PAGE
   ===================================================== */
.page-projects{ background: var(--bg); }
.proj-list-hero{
  position: relative;
  padding: 64px 0 56px;
  overflow: hidden;
}
.proj-list-hero::before{
  content:""; position: absolute; pointer-events: none;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--tint) 0%, transparent 65%);
  filter: blur(60px);
  top: -180px; right: -100px;
  opacity: .8;
}
.proj-list-hero .container{ position: relative; z-index: 1; }
.proj-list-hero .display{ margin-top: 18px; }
.proj-list-lede{
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}
.filters{
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.filter{
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--paper);
  transition: background .2s var(--t), color .2s var(--t), border-color .2s var(--t), transform .2s var(--t);
}
.filter:hover{ transform: translateY(-1px); }
.filter.active{
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.proj-list-section{ padding-top: 24px; }
.proj-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pl-card{
  --p-bg: var(--bg-alt);
  --p-fg: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform .35s var(--t), border-color .25s var(--t), box-shadow .35s var(--t);
  animation: plIn .5s var(--t) backwards;
}
@keyframes plIn{
  from{ opacity: 0; transform: translateY(16px); }
  to  { opacity: 1; transform: translateY(0); }
}
.pl-card:hover{
  transform: translateY(-4px);
  border-color: var(--p-fg);
  box-shadow: 0 24px 56px -28px rgba(15,15,13,.18);
}
.pl-visual{
  position: relative;
  aspect-ratio: 4/3;
  background: var(--p-bg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pl-phone{
  position: relative;
  width: 130px; height: 240px;
  border-radius: 22px;
  background: #0d0d0b;
  border: 5px solid #1a1a17;
  overflow: hidden;
  box-shadow: 0 16px 32px -10px rgba(15,15,13,.3);
  transform: translateY(20px);
  transition: transform .5s var(--t);
}
.pl-card:hover .pl-phone{ transform: translateY(12px); }
.pl-phone img{
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.pl-notch{
  position: absolute;
  top: 5px; left: 50%; transform: translateX(-50%);
  width: 38px; height: 9px;
  background: #050504;
  border-radius: 0 0 6px 6px;
  z-index: 2;
}
.pl-arrow{
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: rotate(-45deg) scale(.85);
  transition: opacity .25s var(--t), transform .35s var(--t), background .2s var(--t), color .2s var(--t);
}
.pl-card:hover .pl-arrow{
  opacity: 1; transform: rotate(0deg) scale(1);
  background: var(--ink); color: var(--bg);
}
.pl-info{
  padding: 20px 22px 22px;
  display: flex; flex-direction: column; gap: 6px;
  border-top: 1px solid var(--line-soft);
}
.pl-meta{
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 4px;
}
.pl-info h3{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
  color: var(--ink);
}
.pl-info p{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.pl-tags{
  margin-top: 10px;
  display: flex; flex-wrap: wrap; gap: 5px;
}
.pl-tags span{
  font-family: var(--font-mono);
  font-size: 10.5px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

.proj-list-empty{
  grid-column: 1 / -1;
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  padding: 60px 20px;
}

.proj-list-cta{
  text-align: center;
  padding: 88px 0;
}
.end-cta{
  max-width: 640px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 18px;
}
.end-cta p{
  margin: 0;
  font-size: 16px;
  color: var(--ink-soft);
}

/* =====================================================
   SERVICE DETAIL PAGE
   ===================================================== */
.page-service{ background: var(--bg); }
.svc-hero{
  position: relative;
  padding: 40px 0 56px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, var(--p-accent-light) 0%, transparent 65%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.svc-hero .container{ position: relative; z-index: 1; }
.svc-h1{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 14px 0 18px;
  max-width: 18ch;
}
.svc-h1 em{
  font-style: normal;
  color: var(--p-accent);
  font-weight: 600;
}
.svc-lede{
  margin: 0 0 32px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}
.svc-meta{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 0 32px;
}
.svc-meta > div{
  padding: 16px 18px;
  border-right: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 4px;
}
.svc-meta > div:last-child{ border-right: 0; }
.svc-meta span{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.svc-meta b{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.svc-cta{
  display: flex; flex-wrap: wrap; gap: 10px;
}

/* intro section */
.svc-intro-grid{
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
}
.svc-intro-text{
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.svc-callout{
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.svc-callout > div{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
}
.svc-callout h4{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--p-accent);
  margin: 0 0 8px;
  font-weight: 500;
}
.svc-callout p{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* offerings */
.off-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.off-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .25s var(--t), border-color .25s var(--t);
}
.off-card:hover{
  transform: translateY(-2px);
  border-color: var(--p-accent);
}
.off-ico{
  font-size: 24px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--p-accent-light);
  display: inline-flex; align-items: center; justify-content: center;
}
.off-card h3{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.off-card p{
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* svc steps */
.svc-steps{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.svc-step{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
}
.svc-step-num{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
  color: var(--p-accent);
  letter-spacing: -0.03em;
}
.svc-step-day{
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.svc-step h4{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  color: var(--ink);
}
.svc-step p{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* CTA card */
.svc-contact-cta{ padding: 64px 0; }
.cta-card{
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-xl);
  padding: 48px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.cta-card .kicker{ color: rgba(255,255,255,.6); margin-bottom: 10px; }
.cta-card h2{
  color: var(--bg);
  margin: 0;
  text-transform: capitalize;
}
.cta-card p{
  margin: 12px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 16px;
  max-width: 50ch;
}
.cta-card .btn-primary{
  background: var(--bg);
  color: var(--ink);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.4);
}
.cta-card .btn-primary:hover{
  background: var(--accent);
  color: var(--bg);
}

/* related services */
.related-grid-svc{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.related-svc{
  --rs-bg: var(--bg-alt);
  --rs-fg: var(--ink);
  display: flex; align-items: center; gap: 14px;
  padding: 22px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: transform .25s var(--t), background .25s var(--t), border-color .25s var(--t);
}
.related-svc:hover{
  transform: translateY(-2px);
  background: var(--rs-bg);
  border-color: var(--rs-fg);
}
.rs-num{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--rs-fg);
  letter-spacing: -0.02em;
}
.related-svc h4{
  flex: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.rs-arr{
  font-family: var(--font-mono);
  color: var(--muted);
  transition: transform .2s var(--t), color .2s var(--t);
}
.related-svc:hover .rs-arr{
  color: var(--rs-fg);
  transform: translateX(4px);
}

/* =====================================================
   PROJECT DETAIL PAGE
   ===================================================== */
.page-project{ background: var(--bg); }
.proj-hero{
  position: relative;
  padding: 40px 0 64px;
  overflow: hidden;
}
.proj-hero-bg{
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 30%, var(--p-accent-light) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, var(--p-accent-light) 0%, transparent 70%);
  opacity: .8;
  pointer-events: none;
}
.back-link{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  margin-bottom: 32px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251,249,244,.7);
  backdrop-filter: blur(6px);
  transition: background .2s var(--t), color .2s var(--t);
}
.back-link:hover{ background: var(--ink); color: var(--bg); border-color: var(--ink); }
.proj-hero-grid{
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.proj-hero-text{ display: flex; flex-direction: column; gap: 18px; }
.proj-display{
  font-size: clamp(48px, 6vw, 88px) !important;
  color: var(--p-accent) !important;
  margin: 0;
  line-height: 1;
}
.proj-display .period{ color: var(--ink); }
.proj-lede{
  margin: 0;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 48ch;
}
.proj-meta{
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.proj-meta > div{
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.proj-meta span{
  font-family: var(--font-mono);
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--muted);
}
.proj-meta b{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.005em;
}

/* phones stack on project hero */
.proj-hero-visual{
  position: relative; height: 460px;
  display: flex; align-items: center; justify-content: center;
}
.phones-stack{
  position: relative; width: 240px; height: 420px;
}
.ph-card{
  position: absolute;
  border-radius: 30px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 24px 48px -16px rgba(15,15,13,.35);
  border: 5px solid #1c1c1a;
}
.ph-card::after{
  content:""; position:absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 14px; background: #0a0a09; border-radius: 0 0 10px 10px;
}
.ph-card img{ width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }
.ph-card.ph-1{
  width: 220px; height: 420px;
  left: 50%; transform: translateX(-50%) rotate(-3deg);
  z-index: 3;
  animation: phFloat 6s ease-in-out infinite alternate;
}
.ph-card.ph-2{
  width: 180px; height: 360px;
  left: -8%; top: 28px; transform: rotate(-12deg);
  z-index: 2; opacity: .85;
}
.ph-card.ph-3{
  width: 180px; height: 360px;
  right: -8%; top: 28px; transform: rotate(10deg);
  z-index: 2; opacity: .85;
  animation: phFloat 7s ease-in-out infinite alternate-reverse;
}
@keyframes phFloat{
  to{ transform: translateX(-50%) rotate(-1deg) translateY(-10px); }
}

/* about */
.proj-about{ padding-top: 64px; }
.about-grid{
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px;
}
.proj-h2{ margin-top: 4px; }
.about-text{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
}
.proj-callout{
  margin-top: 32px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.callout-row{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
}
.callout-row h4{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--p-accent);
  margin: 0 0 10px;
  font-weight: 500;
}
.callout-row p{
  margin: 0; font-size: 14.5px; line-height: 1.55;
  color: var(--ink-soft);
}

/* features + tech */
.ft-grid{
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
}
.ft-list{
  list-style: none; padding: 0; margin: 24px 0 0;
  border-top: 1px solid var(--line);
}
.ft-list li{
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.ft-list li::before{
  content: ""; width: 16px; height: 1px; background: var(--p-accent);
  flex-shrink: 0;
}
.ft-tech{
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px;
}
.ft-tech span{
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--p-accent-light);
  color: var(--p-accent);
}
.ft-stat{
  margin-top: 32px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ft-stat > div{
  padding: 24px 16px;
  border-right: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 6px;
}
.ft-stat > div:last-child{ border-right: 0; }
.ft-stat b{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  color: var(--p-accent);
}
.ft-stat span{
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
}

/* gallery — compact phone rail */
.proj-gallery-section{ padding-top: 56px; padding-bottom: 56px; }
.gallery-rail{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  padding: 32px 24px;
  background: var(--p-accent-light);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.gallery-phone{
  position: relative;
  margin: 0;
  flex-shrink: 0;
  width: 150px; height: 320px;
  border-radius: 24px;
  background: #0d0d0b;
  border: 5px solid #1a1a17;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 16px 32px -10px rgba(15,15,13,.3);
  transition: transform .35s var(--t), box-shadow .35s var(--t);
}
.gallery-phone:hover{
  transform: translateY(-4px);
  box-shadow: 0 28px 56px -16px rgba(15,15,13,.35);
}
.gallery-phone img{
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.gp-notch{
  position: absolute;
  top: 5px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 10px;
  background: #050504;
  border-radius: 0 0 7px 7px;
  z-index: 2;
}
.gallery-item{
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  aspect-ratio: 4/5;
  cursor: zoom-in;
  transition: transform .35s var(--t), box-shadow .35s var(--t);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.gallery-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(15,15,13,.18);
}
.gallery-item img{
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  box-shadow: 0 16px 32px -12px rgba(0,0,0,.2);
}

/* lightbox */
.lightbox{
  position: fixed; inset: 0; z-index: 200;
  display: none;
}
.lightbox.open{ display: flex; align-items: center; justify-content: center; }
.lb-bg{ position: absolute; inset: 0; background: rgba(15,15,13,.85); backdrop-filter: blur(10px); }
.lightbox img{
  position: relative;
  max-width: 88vw; max-height: 88vh;
  border-radius: 16px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.5);
  animation: rise .4s var(--t);
}
.lb-close{
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  z-index: 1;
}

/* next project */
.proj-nextwrap{ padding: 64px 0 80px; }
.proj-next{
  display: flex; flex-direction: column; gap: 48px;
}
.proj-next-row{
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.next-link{
  display: flex; flex-direction: column; gap: 8px;
  padding: 16px 0;
  transition: transform .25s var(--t);
}
.next-link.next{ text-align: right; align-items: flex-end; }
.next-link:hover{ transform: translateX(8px); }
.next-link.prev:hover{ transform: translateX(-8px); }
.next-tag{
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.next-name{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.next-link:hover .next-name{ color: var(--accent); }

.proj-cta{
  display: flex;
  flex-direction: column; align-items: center;
  text-align: center;
  gap: 20px;
  padding: 48px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
}
.proj-cta h3{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 26ch;
  line-height: 1.15;
}

/* =====================================================
   REVEAL
   ===================================================== */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--t), transform .8s var(--t);
  will-change: opacity, transform;
}
.reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px){
  .nav{ display: none; }
  .hamburger{ display: block; }
  .topbar-inner{ grid-template-columns: 1fr auto auto; }
  .hero-main{ grid-template-columns: 1fr; gap: 56px; }
  .hero-reel{ height: 500px; }
  .reel-frame{ width: 240px; height: 480px; }
  .display{ font-size: clamp(56px, 8vw, 96px); }
  .hero-text{ max-width: 100%; }
  .hero-grid{ grid-template-columns: 1fr; gap: 40px; }
  .seal{ width: 160px; height: 160px; }
  .seal-num{ font-size: 36px; }
  .seal-label{ font-size: 8px; }
  .seal-text{ font-size: 10px; }
  .hero-side-col{ flex-direction: row; align-items: flex-start; gap: 32px; }
  .hero-side-meta{ border-top: 0; flex: 1; }
  .hero-credentials{ grid-template-columns: repeat(2,1fr); }
  .cred:nth-child(2){ border-right: 0; }
  .cred:nth-child(1), .cred:nth-child(2){ border-bottom: 1px solid var(--line-soft); }
  .sc-stage{ grid-template-columns: 1fr; gap: 40px; padding: 40px 32px; }
  .sc-visual{ height: 480px; }
  .sc-nav{ grid-template-columns: repeat(3, 1fr); }
  .ts-card{ width: 320px; }
  .contact-grid{ grid-template-columns: 1fr; gap: 32px; }
  .contact-side{ position: relative; top: 0; }
  .svc-intro-grid{ grid-template-columns: 1fr; gap: 24px; }
  .svc-callout{ grid-template-columns: 1fr; }
  .off-grid{ grid-template-columns: repeat(2, 1fr); }
  .svc-steps{ grid-template-columns: 1fr; }
  .svc-meta{ grid-template-columns: repeat(2, 1fr); }
  .related-grid-svc{ grid-template-columns: 1fr; }
  .cta-card{ grid-template-columns: 1fr; padding: 32px 28px; }
  .post-hero-grid{ grid-template-columns: 1fr; gap: 24px; }
  .post-body{ grid-template-columns: 1fr; gap: 24px; padding: 40px 32px; }
  .post-cta{ position: relative; top: 0; }
  .related-grid{ grid-template-columns: 1fr; }
  .banner-foot{ flex-direction: column; align-items: stretch; padding: 24px; }
  .banner-stats{ gap: 32px; flex-wrap: wrap; justify-content: space-between; }
  .proj-list{ grid-template-columns: repeat(2, 1fr); }
  .stats-grid{ grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2){ border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2){ border-bottom: 1px solid var(--line-soft); }
  .bento{ grid-template-columns: repeat(2, 1fr); }
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .why-card:nth-child(2){ border-right: 0; }
  .section-head.between{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr; gap: 48px; }
  .step-stage{ grid-template-columns: 1fr; gap: 24px; }
  .step-visual{ height: 220px; }
  .stepper{ padding: 28px 24px 24px; }
  .stepper-rail{ padding: 0 8px; margin-bottom: 36px; }
  .dot-tag{ font-size: 13px; }
  .proc-wrap{ height: 480vh; }
  .proj-hero-grid{ grid-template-columns: 1fr; gap: 32px; }
  .proj-hero-visual{ height: 460px; }
  .about-grid{ grid-template-columns: 1fr; gap: 40px; }
  .proj-callout{ grid-template-columns: 1fr; }
  .ft-grid{ grid-template-columns: 1fr; gap: 56px; }
  .gallery-rail{ padding: 24px 16px; gap: 12px; justify-content: center; }
  .gallery-phone{ width: 130px; height: 280px; }
}

@media (max-width: 720px){
  .container{ padding: 0 20px; }
  .topbar{ top: 8px; padding: 0 12px; }
  .topbar-inner{ padding: 6px 6px 6px 14px; gap: 8px; }
  .nav{ display: none; }
  .brand-text{ font-size: 15px; }
  .topbar-actions .btn{ display: none; }
  .topbar-actions .status{ display: none; }
  .hero{ padding-top: 16px; }
  .hero-inner{ padding: 12px 20px 56px; gap: 40px; }
  .hero-inner-poster{ padding: 32px 20px 56px; }
  .hero-masthead{ padding: 14px 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .seal{ width: 130px; height: 130px; }
  .seal-num{ font-size: 28px; }
  .seal-label{ font-size: 7px; }
  .seal-text{ font-size: 8.5px; letter-spacing: 0.14em; }
  .seal-core{ inset: 22px; }
  .hero-side-col{ flex-direction: column; gap: 24px; }
  .poster{ font-size: clamp(38px, 10vw, 60px); }
  .display{ font-size: clamp(54px, 15vw, 96px); }
  .hero-reel{ height: 460px; }
  .reel-frame{ width: 220px; height: 460px; border-width: 7px; border-radius: 38px; }
  .reel-tag-tl{ left: -6px; top: 16px; }
  .reel-tag-br{ right: -8px; bottom: 32px; padding: 12px 14px; }
  .reel-tag-br i{ font-size: 40px; }
  .hero-credentials{ grid-template-columns: 1fr; }
  .cred{ border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .cred:last-child{ border-bottom: 0; }
  .section{ padding: 80px 0; }
  .section-head{ margin-bottom: 40px; }
  .sc-stage{ padding: 32px 24px; min-height: auto; }
  .sc-visual{ height: 420px; }
  .sc-phone{ width: 220px; height: 440px; }
  .sc-nav{ grid-template-columns: repeat(2, 1fr); }
  .sc-meta{ grid-template-columns: 1fr 1fr; }
  .stats-grid{ grid-template-columns: 1fr; }
  .bn-visual{ height: 200px; }
  .bento{ grid-template-columns: 1fr; }
  .why-grid{ grid-template-columns: 1fr; }
  .why-card{ border-right: 0; }
  .proj-list{ grid-template-columns: 1fr; }
  .blog-list{ grid-template-columns: 1fr; }
  .stat{ border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .stat:last-child{ border-bottom: 0; }
  .chatbot{ height: 540px; }
  .chatbot.full{ height: 600px; max-height: 75vh; }
  .footer-cols{ grid-template-columns: 1fr 1fr; gap: 24px; }
  .contact-cta-card{ grid-template-columns: 1fr; padding: 32px 28px; gap: 24px; }
  .cca-actions{ align-items: stretch; text-align: left; }
  .cca-meta span{ justify-content: flex-start; }
  .stepper-rail{ grid-template-columns: repeat(6, 1fr); padding: 0 4px; margin-bottom: 24px; }
  .dot-tag{ display: none; }
  .step-meta{ font-size: 16px; margin-bottom: 14px; }
  .step-current{ font-size: 28px; }
  .step-title{ font-size: 28px !important; }
  .step-desc{ font-size: 15px; }
  .step-visual{ height: 180px; }
  .stepper{ padding: 22px 18px 20px; }
  .proc-wrap{ height: 420vh; }
  .proj-display{ font-size: clamp(56px, 16vw, 100px) !important; }
  .ph-card.ph-1{ width: 220px; height: 420px; }
  .ph-card.ph-2, .ph-card.ph-3{ width: 180px; height: 360px; }
  .gallery-phone{ width: 110px; height: 240px; }
  .proj-meta{ grid-template-columns: 1fr; }
  .proj-next-row{ grid-template-columns: 1fr; gap: 16px; }
  .next-link.next{ text-align: left; align-items: flex-start; }
  .ft-stat{ grid-template-columns: 1fr; }
  .ft-stat > div{ border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .ft-stat > div:last-child{ border-bottom: 0; }
}

/* =====================================================
   404 PAGE
   ===================================================== */
.page-404{ background: var(--bg); }
.err-main{
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex; align-items: center; justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.err-bg{
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 30%, var(--tint) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 80%, #E5E9F0 0%, transparent 60%);
  pointer-events: none;
}
.err-card{
  position: relative;
  z-index: 1;
  max-width: 640px;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 18px;
}
.err-tag{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.err-tag-dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--warn);
  animation: pulse 2s var(--t) infinite;
}
.err-num{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(120px, 22vw, 220px);
  line-height: .9;
  letter-spacing: -0.06em;
  color: var(--ink);
  margin: 12px 0;
}
.err-zero{
  display: inline-flex; align-items: center; justify-content: center;
  width: 1em; height: 1em;
  color: var(--accent);
  animation: errSpin 14s linear infinite;
}
.err-zero svg{ width: 100%; height: 100%; }
@keyframes errSpin{
  to{ transform: rotate(360deg); }
}
.err-card h1{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
.err-card p{
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 44ch;
}
.err-cta{
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-top: 8px;
}
.err-quick{
  margin-top: 24px;
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center;
  font-size: 13px;
  color: var(--muted);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: 480px;
}
.err-quick > span{
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.err-quick > a{
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--line);
  transition: color .2s var(--t), text-decoration-color .2s var(--t);
}
.err-quick > a:hover{ color: var(--accent); text-decoration-color: var(--accent); }

/* =====================================================
   COOKIE BANNER (KVKK)
   ===================================================== */
.cookie{
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 90;
  max-width: 760px;
  margin: 0 auto;
  padding: 18px 22px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  backdrop-filter: blur(20px) saturate(170%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 0 0 1px rgba(11,14,20,.05),
    0 22px 60px -20px rgba(11,14,20,.25);
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  animation: cookieIn .5s cubic-bezier(.2,.7,.2,1);
}
@keyframes cookieIn{
  from{ opacity: 0; transform: translateY(20px); }
  to  { opacity: 1; transform: translateY(0); }
}
.cookie[hidden]{ display: none !important; }
.cookie-text{
  flex: 1;
  min-width: 240px;
}
.cookie-text b{
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.cookie-text p{
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.cookie-text a{
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-actions{
  display: flex; gap: 8px;
  flex-shrink: 0;
}
.cookie-btn{
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  cursor: pointer;
  transition: background .2s var(--t), color .2s var(--t), border-color .2s var(--t);
  white-space: nowrap;
}
.cookie-btn:hover{
  background: var(--bg-alt);
  color: var(--ink);
}
.cookie-btn-primary{
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.cookie-btn-primary:hover{
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

@media (max-width: 720px){
  .cookie{ flex-direction: column; align-items: stretch; padding: 16px 18px; }
  .cookie-actions{ justify-content: flex-end; flex-wrap: wrap; }
}

/* =====================================================
   LEGAL PAGES (privacy / terms)
   ===================================================== */
.page-legal{ background: var(--bg); }
.legal-hero{
  padding: 56px 0 32px;
  border-bottom: 1px solid var(--line);
}
.legal-hero h1{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 14px 0 0;
  color: var(--ink);
}
.legal-hero .legal-meta{
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.legal-body{
  padding: 56px 0 96px;
}
.legal-body .container{
  max-width: 760px;
}
.legal-body h2{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 36px 0 12px;
  color: var(--ink);
}
.legal-body h3{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  margin: 24px 0 8px;
  color: var(--ink);
}
.legal-body p{
  margin: 0 0 16px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.legal-body ul, .legal-body ol{
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.legal-body li{ margin: 4px 0; }
.legal-body strong{ color: var(--ink); font-weight: 600; }
.legal-body a{ color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* =====================================================
   BLOG — featured + toolbar + newsletter
   ===================================================== */
.blog-featured-wrap{
  padding: 24px 0 8px;
}
.post-featured{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-decoration: none;
  transition: transform .35s var(--t), border-color .25s var(--t), box-shadow .35s var(--t);
}
.post-featured:hover{
  transform: translateY(-2px);
  border-color: var(--ink);
  box-shadow: 0 32px 64px -28px rgba(11,14,20,.18);
}
.pf-cover{
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: var(--bg-alt);
}
.pf-cover img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--t);
}
.post-featured:hover .pf-cover img{ transform: scale(1.04); }
.featured-cat{
  position: absolute;
  top: 18px; left: 18px;
}
.pf-text{
  padding: 32px 36px;
  display: flex; flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.pf-tag{
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--tint);
  padding: 5px 11px;
  border-radius: 999px;
  width: fit-content;
}
.pf-text h2{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.pf-text p{
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.pf-meta{
  display: inline-flex; align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.pf-author{ display: inline-flex; align-items: center; gap: 7px; color: var(--ink-soft); }
.pf-avatar{
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: -0.02em;
}
.pf-cta{
  margin-top: 4px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  transition: transform .2s var(--t);
}
.post-featured:hover .pf-cta{ transform: translateX(4px); }

.blog-toolbar{
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.blog-section-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

/* newsletter card */
.blog-newsletter{ padding: 96px 0; }
.nl-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 48px 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.nl-card::before{
  content:""; position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--tint) 0%, transparent 70%);
  filter: blur(40px);
  bottom: -180px; right: -100px;
  pointer-events: none;
}
.nl-text{ position: relative; z-index: 1; display: flex; flex-direction: column; gap: 8px; }
.nl-text h2{ margin: 6px 0 0; }
.nl-text p{
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 50ch;
}
.nl-form{
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  gap: 10px;
}
.nl-form input{
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  font-size: 15px;
  outline: none;
  transition: border-color .2s var(--t), background .2s var(--t);
  font-family: inherit;
}
.nl-form input:focus{
  border-color: var(--ink);
  background: var(--paper);
}
.nl-form .btn{
  align-self: flex-start;
  padding: 12px 22px;
  font-size: 14px;
}
.nl-status{
  font-size: 13px;
  min-height: 18px;
  color: var(--accent);
}
.nl-status.error{ color: var(--warn); }
.nl-status.ok{ color: var(--accent); }

@media (max-width: 1100px){
  .post-featured{ grid-template-columns: 1fr; }
  .pf-cover{ min-height: 240px; aspect-ratio: 16/9; }
  .pf-text{ padding: 24px 28px 28px; }
  .nl-card{ grid-template-columns: 1fr; padding: 32px 28px; gap: 24px; }
}

/* =====================================================
   FOOTER (rich)
   ===================================================== */
.footer-rich{
  background: var(--ink);
  color: rgba(255,255,255,.65);
  padding: 80px 0 28px;
  margin-top: 0;
}
.footer-rich .container{ position: relative; }
.footer-rich-top{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.fr-brand{ display: flex; flex-direction: column; gap: 14px; }
.fr-brand .brand{ display: inline-flex; align-items: center; gap: 10px; }
.fr-brand .brand-text{ color: #fff; font-size: 22px; font-weight: 600; }
.fr-brand-tag{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.55);
}
.fr-brand p{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  max-width: 36ch;
}
.fr-status{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: rgba(74,222,128,.12);
  border: 1px solid rgba(74,222,128,.2);
  border-radius: 999px;
  font-size: 12px;
  color: #B7F3CB;
  width: fit-content;
}
.fr-status .fs-dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  animation: pulse 2s var(--t) infinite;
}

.fr-col h4{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin: 0 0 18px;
  font-weight: 500;
}
.fr-col a, .fr-col span{
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  padding: 5px 0;
  transition: color .2s var(--t), transform .2s var(--t);
  text-decoration: none;
}
.fr-col a:hover{ color: #fff; transform: translateX(2px); }

.fr-contact-block{ display: flex; flex-direction: column; gap: 14px; }
.fr-contact-pill{
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 16px 12px 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  text-decoration: none;
  transition: background .2s var(--t);
  width: 100%;
}
.fr-contact-pill:hover{ background: rgba(255,255,255,.08); }
.fr-contact-icon{
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fr-contact-pill > div{ display: flex; flex-direction: column; gap: 1px; }
.fr-contact-pill > div span{
  display: block; padding: 0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.4);
}
.fr-contact-pill > div b{
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.fr-socials{
  display: flex; gap: 8px;
  margin-top: 4px;
}
.fr-social{
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .2s var(--t), color .2s var(--t), transform .2s var(--t);
}
.fr-social:hover{
  background: rgba(255,255,255,.12);
  color: #fff;
  transform: translateY(-2px);
}

.footer-rich-mid{
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.fr-cta{
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
}
.fr-cta-arrow{
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .25s var(--t), background .25s var(--t);
}
.fr-cta:hover .fr-cta-arrow{ transform: rotate(-45deg); background: #fff; color: var(--ink); }
.fr-cta-meta{
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,.5);
  text-align: right;
}

.footer-rich-bot{
  margin-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: rgba(255,255,255,.4);
}
.footer-rich-bot a{ color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.footer-rich-bot a:hover{ color: #fff; }
.fr-legal{ display: inline-flex; gap: 14px; }
.fr-version{ display: inline-flex; gap: 6px; align-items: center; }

@media (max-width: 1100px){
  .footer-rich-top{ grid-template-columns: 1fr 1fr 1fr; }
  .fr-brand{ grid-column: 1 / -1; }
  .fr-contact-block{ grid-column: 1 / -1; }
}
@media (max-width: 720px){
  .footer-rich{ padding: 56px 0 24px; }
  .footer-rich-top{ grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 36px; }
  .fr-brand, .fr-contact-block{ grid-column: 1 / -1; }
  .footer-rich-mid{ flex-direction: column; align-items: flex-start; }
  .fr-cta-meta{ text-align: left; }
}

/* =====================================================
   LANG SWITCHER (topbar)
   ===================================================== */
.lang-switch{
  display: inline-flex;
  background: rgba(15,18,28,.05);
  border: 1px solid rgba(15,18,28,.05);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-opt{
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s var(--t), color .2s var(--t);
}
.lang-opt img{
  width: 14px; height: 10px;
  border-radius: 2px;
  display: block;
}
.lang-opt:hover{ color: var(--ink); background: rgba(255,255,255,.6); }
.lang-opt.active{
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(11,14,20,.05), 0 4px 10px -4px rgba(11,14,20,.1);
}
@media (max-width: 720px){
  .lang-opt span{ display: none; }
  .lang-opt{ padding: 6px 8px; }
}
