  /* ─── TOKENS ─────────────────────────────────────────── */
  :root {
    /* light surfaces — cool blue / coral brand palette */
    --page:      #F7F8FA;
    --panel:     #FFFFFF;
    --tint:      #EEF1F7;
    --card:      #FFFFFF;
    --ink:       #0A132E;
    --ink-2:     #15275F;
    --muted:     #5A6478;
    --faint:     #8C94A8;
    --line:      #E4E8F0;
    --line-2:    #D3DAE6;

    /* coral accent system (named --green for legacy reuse) */
    --green:     #FF6B5C;   /* coral — buttons, marks, accents */
    --green-600: #F0503F;   /* deeper coral (hover) */
    --green-700: #1E3A8A;   /* royal blue — accent text on light surfaces */
    --green-br:  #FF8475;   /* bright coral — accents on dark */
    --mint:      #FF9488;   /* light coral highlight on dark */
    --glow:      rgba(255,107,92,.30);
    --terra:     #1E3A8A;   /* blue secondary accent */
    --sand:      #C7D0E4;   /* muted blue-gray */

    /* dark accents (console, cta panel, footer) — brand navy */
    --d-bg:      #0A132E;
    --d-bg-2:    #0E1A3D;
    --d-bg-3:    #15275F;
    --d-text:    #F7F8FA;
    --d-muted:   #9AA4BE;
    --d-faint:   #5E6A8A;
    --d-line:    rgba(247,248,250,.09);
    --d-line-2:  rgba(247,248,250,.16);
    --red:       #FF6B5C;
    --amber:     #FF9488;

    --display: 'Space Grotesk','Inter','Noto Sans Georgian', system-ui, sans-serif;
    --sans:    'Inter','Noto Sans Georgian', system-ui, sans-serif;
    --mono:    'JetBrains Mono','Noto Sans Georgian', ui-monospace, monospace;
    --maxw: 1180px;
    --grid: rgba(10,19,46,.05);
    --console-bd: rgba(10,19,46,.12);
    --input-bg: var(--page);
    --nav-bg: rgba(247,248,250,.82);
  }

  :root[data-theme="dark"] {
    --page:      #0A132E;
    --panel:     #0E1A3D;
    --tint:      #0C1635;
    --card:      #15275F;
    --ink:       #F7F8FA;
    --ink-2:     #D6DCEC;
    --muted:     #9AA4BE;
    --faint:     #5E6A8A;
    --line:      rgba(247,248,250,.09);
    --line-2:    rgba(247,248,250,.15);
    --green-700: #FF9488;
    --green-600: #FF9488;
    --grid:      rgba(247,248,250,.05);
    --console-bd: rgba(247,248,250,.15);
    --input-bg:  rgba(247,248,250,.03);
    --nav-bg:    rgba(10,19,46,.80);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); color: var(--ink); background: var(--page); line-height: 1.62; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
  img { display: block; max-width: 100%; }
  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }
  ::selection { background: var(--green); color: #0A132E; }
  :focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

  /* ─── kicker / headings / lede ───────────────────────── */
  .eyebrow { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--green-700); display: inline-flex; align-items: center; gap: 10px; }
  .eyebrow::before { content: ''; width: 7px; height: 7px; background: var(--green); flex-shrink: 0; }
  .eyebrow.center { justify-content: center; }
  .h-display { font-family: var(--display); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); }
  .h-display em { font-style: normal; color: var(--green-700); }
  .lede { font-size: 18px; line-height: 1.7; color: var(--muted); font-weight: 400; }

  .btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: .01em; padding: 13px 24px; border-radius: 8px; cursor: pointer; border: 1px solid transparent; transition: all .22s ease; }
  .btn .ar { transition: transform .22s ease; }
  .btn:hover .ar { transform: translateX(4px); }
  .btn--solid { background: var(--green); color: #0A132E; border-color: var(--green); }
  .btn--solid:hover { background: var(--green-600); box-shadow: 0 10px 26px -12px rgba(255,107,92,.55); }
  .btn--line { background: transparent; color: var(--ink); border-color: var(--line-2); }
  .btn--line:hover { border-color: var(--green); color: var(--green-700); background: rgba(255,107,92,.05); }
  .btn--ghost-light { background: transparent; color: var(--d-text); border-color: var(--d-line-2); }
  .btn--ghost-light:hover { border-color: var(--green-br); color: var(--mint); background: rgba(255,107,92,.07); }
  .btn--solid-light { background: var(--green); color: #0A132E; border-color: var(--green); }
  .btn--solid-light:hover { background: var(--green-br); box-shadow: 0 10px 28px -10px var(--glow); }
  .btn--brass { background: var(--green); color: #0A132E; }
  .btn--brass:hover { background: var(--green-600); }

  /* ─── NAV ────────────────────────────────────────────── */
  nav { position: fixed; inset: 0 0 auto 0; z-index: 100; background: var(--nav-bg); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
  .nav-row { display: flex; align-items: center; justify-content: space-between; height: 72px; }
  .brand { display: flex; align-items: center; gap: 12px; }
  .brand-mark { width: 40px; height: 40px; border-radius: 9px;  display: grid; place-items: center; padding: 5px; }
  .brand-mark img { width: 100%; height: 100%; object-fit: contain; grid-area: 1 / 1; }
  .brand-mark .logo-dark { display: none; }
  :root[data-theme="dark"] .brand-mark .logo-light { display: none; }
  :root[data-theme="dark"] .brand-mark .logo-dark { display: block; }
  /* dark theme: peach logo sits directly on the dark surface, no light chip */
  :root[data-theme="dark"] nav .brand-mark,
  :root[data-theme="dark"] .foot-brand .brand-mark { background: transparent; border-color: transparent; }
  .brand-name { font-family: var(--display); font-size: 19px; font-weight: 600; color: var(--ink); letter-spacing: -.01em; }
  .brand-name em { font-style: normal; color: var(--green-700); }
  .nav-links { display: flex; align-items: center; gap: 20px; }
  .nav-links a { font-family: var(--mono); font-size: 12.5px; font-weight: 400; letter-spacing: .02em; color: var(--muted); position: relative; padding: 4px 0; transition: color .2s; }
  .nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--green); transition: width .26s ease; }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a:hover::after { width: 100%; }
  .nav-right { display: flex; align-items: center; gap: 16px; }
  .nav-right .btn { padding: 9px 18px; display:flex; justify-content: center;align-items: center;width: 165px; }
  .lang { display: flex; align-items: center; border: 1px solid var(--line-2); border-radius: 8px; overflow: hidden; }
  .lang button { display: grid; place-items: center; padding: 7px 9px; background: transparent; border: none; cursor: pointer; transition: background .18s ease; }
  .lang button + button { border-left: 1px solid var(--line); }
  .lang button img { width: 22px; height: 15px; border-radius: 2px; object-fit: cover; box-shadow: 0 0 0 1px rgba(0,0,0,.08); transition: opacity .18s ease, filter .18s ease, box-shadow .18s ease; }
  .lang button:not(.on) img { opacity: .4; filter: grayscale(.6); }
  .lang button:hover:not(.on) img { opacity: .85; filter: grayscale(0); }
  .lang button.on { background: rgba(255,107,92,.12); }
  .lang button.on img { opacity: 1; filter: none; box-shadow: 0 0 0 1.5px var(--green); }
  .theme-btn { width: 38px; height: 38px; border: 1px solid var(--line-2); border-radius: 8px; background: transparent; display: grid; place-items: center; cursor: pointer; color: var(--muted); transition: color .18s ease, border-color .18s ease; }
  .theme-btn:hover { color: var(--ink); border-color: var(--green); }
  .theme-btn svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .ic-sun { display: none; }
  :root[data-theme="dark"] .ic-moon { display: none; }
  :root[data-theme="dark"] .ic-sun { display: block; }

  /* ─── HERO (light) ───────────────────────────────────── */
  #hero { position: relative; padding: 160px 0 104px; overflow: hidden; background: radial-gradient(820px 480px at 84% 4%, rgba(255,107,92,.12), transparent 62%), var(--page); }
  #hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px); background-size: 44px 44px; -webkit-mask-image: radial-gradient(ellipse 80% 72% at 50% 42%, #000 28%, transparent 80%); mask-image: radial-gradient(ellipse 80% 72% at 50% 42%, #000 28%, transparent 80%); }
  .hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 480px; gap: 64px; align-items: center; position: relative; }
  .hero-title { font-size: clamp(40px, 5.2vw, 66px); margin: 24px 0 26px; max-width: 15ch; line-height: 1.05; }
  .hero-lede { max-width: 46ch; margin-bottom: 38px; }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

  /* console mock (dark accent element) */
  .hero-visual { position: relative; }
  .console { background: var(--d-bg-3); border: 1px solid var(--console-bd); border-radius: 14px; overflow: hidden; box-shadow: 0 40px 90px -42px rgba(10,19,46,.5), 0 0 60px -34px var(--glow); }
  .console-bar { display: flex; align-items: center; gap: 12px; height: 46px; padding: 0 16px; background: rgba(255,255,255,.025); border-bottom: 1px solid var(--d-line); }
  .console-dots { display: flex; gap: 7px; }
  .console-dot { width: 11px; height: 11px; border-radius: 50%; opacity: .85; }
  .console-dot.d1 { background: var(--red); } .console-dot.d2 { background: var(--amber); } .console-dot.d3 { background: var(--green-br); }
  .console-title { font-family: var(--mono); font-size: 12px; color: var(--d-faint); }
  .console-live { margin-left: auto; font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--mint); display: inline-flex; align-items: center; gap: 7px; }
  .live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-br); animation: pulse 2.2s infinite; }
  @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,107,92,.5); } 70% { box-shadow: 0 0 0 7px rgba(255,107,92,0); } 100% { box-shadow: 0 0 0 0 rgba(255,107,92,0); } }
  .console-body { padding: 18px; display: grid; gap: 12px; }
  .console-tabs { display: flex; gap: 7px; }
  .console-tab { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: var(--d-faint); padding: 6px 12px; border: 1px solid var(--d-line); border-radius: 7px; }
  .console-tab.on { color: var(--mint); border-color: rgba(255,107,92,.35); background: rgba(255,107,92,.08); }
  .job { display: grid; grid-template-columns: auto 1fr auto; gap: 13px; align-items: center; padding: 13px; border: 1px solid var(--d-line); border-radius: 10px; background: rgba(255,255,255,.02); }
  .job-ico { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--d-line-2); display: grid; place-items: center; color: var(--mint); }
  .job-ico svg { width: 19px; height: 19px; stroke: currentColor; }
  .job-name { font-size: 13.5px; font-weight: 600; color: var(--d-text); }
  .job-sub { font-family: var(--mono); font-size: 11px; color: var(--d-faint); margin-top: 2px; }
  .job-status { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; padding: 4px 9px; border-radius: 6px; white-space: nowrap; }
  .job-status.ok { color: var(--mint); background: rgba(255,107,92,.12); border: 1px solid rgba(255,107,92,.25); }
  .console-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 2px; }
  .metric-chip { border: 1px solid var(--d-line); border-radius: 9px; padding: 12px; background: rgba(255,255,255,.015); }
  .chip-k { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; color: var(--d-faint); margin-bottom: 6px; }
  .chip-v { font-family: var(--display); font-size: 19px; font-weight: 600; color: var(--d-text); }
  .float-badge { position: absolute; right: -14px; bottom: -45px; display: flex; align-items: center; gap: 10px; background: var(--panel); border: 1px solid var(--line-2); border-radius: 11px; padding: 11px 15px; box-shadow: 0 16px 36px -18px rgba(10,19,46,.4); }
  .float-meta strong { display: block; font-family: var(--display); font-size: 15px; color: var(--ink); line-height: 1; }
  .float-meta span { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: var(--faint); }
  .console-cap { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); text-align: center; margin-top: 22px; }

  /* ─── HERO boot choreography ("Booting Instrument") ───── */
  .hero--boot { --gap: 1.6; }
  #hero.hero--boot { background: radial-gradient(820px 480px at 84% 4%, rgba(255,107,92,.23), transparent 62%), var(--page); }
  .hero--boot::before { opacity: 0; animation: ov-rise .9s ease both; animation-delay: calc(.02s * var(--gap)); }
  .hero--boot .eyebrow      { animation: ov-rise .7s cubic-bezier(.16,1,.3,1) both; animation-delay: calc(.06s * var(--gap)); }
  .hero--boot .hero-title   { animation: ov-clip .9s cubic-bezier(.16,1,.3,1) both; animation-delay: calc(.16s * var(--gap)); }
  .hero--boot .hero-lede    { animation: ov-rise .75s cubic-bezier(.16,1,.3,1) both; animation-delay: calc(.30s * var(--gap)); }
  .hero--boot .hero-actions { animation: ov-rise .75s cubic-bezier(.16,1,.3,1) both; animation-delay: calc(.42s * var(--gap)); }
  .hero--boot .console      { position: relative; animation: ov-console .95s cubic-bezier(.16,1,.3,1) both; animation-delay: calc(.34s * var(--gap)); }
  .hero--boot .console::after { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 38%; pointer-events: none; background: linear-gradient(180deg, rgba(255,107,92,.18), transparent); animation: ov-scan 1.5s ease-out both; animation-delay: calc(.7s * var(--gap)); }
  .hero--boot .console-body .job:nth-of-type(2) { animation: ov-rise .6s ease both; animation-delay: calc(.78s * var(--gap)); }
  .hero--boot .console-body .job:nth-of-type(3) { animation: ov-rise .6s ease both; animation-delay: calc(.90s * var(--gap)); }
  .hero--boot .job-status   { animation: ov-chip .55s cubic-bezier(.16,1,.3,1) both; animation-delay: calc(1.04s * var(--gap)); }
  .hero--boot .console-metrics { animation: ov-rise .6s ease both; animation-delay: calc(1.02s * var(--gap)); }
  .hero--boot .float-badge  { animation: ov-pop .7s cubic-bezier(.16,1,.3,1) both; animation-delay: calc(1.16s * var(--gap)); }
  .hero--boot .console-cap  { animation: ov-rise .6s ease both; animation-delay: calc(1.2s * var(--gap)); }
  @keyframes ov-rise    { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
  @keyframes ov-clip    { from { opacity: 0; clip-path: inset(0 100% 0 0); transform: translateY(10px); } to { opacity: 1; clip-path: inset(0 0 0 0); transform: none; } }
  @keyframes ov-console { from { opacity: 0; transform: translateY(26px) scale(.965); } to { opacity: 1; transform: none; } }
  @keyframes ov-pop     { 0% { opacity: 0; transform: translateY(10px) scale(.9); } 60% { transform: translateY(0) scale(1.04); } 100% { opacity: 1; transform: none; } }
  @keyframes ov-chip    { from { opacity: 0; transform: translateX(8px); filter: saturate(.3) brightness(1.4); } to { opacity: 1; transform: none; filter: none; } }
  @keyframes ov-scan    { 0% { transform: translateY(-100%); opacity: 0; } 12% { opacity: 1; } 100% { transform: translateY(900%); opacity: 0; } }
  /* keep the grid visible when motion is suppressed */
  @media (prefers-reduced-motion: reduce) { .hero--boot::before { opacity: 1; } }

  /* ─── HERO CTA cluster (amplified scale & weight) ────── */
  .hero-actions--bold { gap: 16px; }
  .hero-actions--bold .btn { padding: 14px 26px; font-size: 14.5px; border-radius: 10px; font-weight: 600; }
  .hero-actions--bold .btn--solid { box-shadow: 0 14px 30px -14px rgba(255,107,92,.5); }
  .hero-actions--bold .btn--solid:hover { box-shadow: 0 18px 38px -12px rgba(255,107,92,.6); transform: translateY(-2px); }
  .hero-actions--bold .btn--solid .ar { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.16); }
  .hero-actions--bold .btn--line { border-width: 1.5px; }

  /* ─── HERO headline (geometric authority) ───────────── */
  .hero-title--type { font-family: var(--display); font-weight: 500; letter-spacing: -0.03em; line-height: 1.04; font-size: clamp(38px, 5.13vw, 68.4px); }
  .hero-title--type em { font-style: normal; font-weight: 700; color: var(--green-700); }

  /* ─── ABOUT · committed green panel ──────────────────── */
  .about--committed .about-grid > div:first-child { background: rgba(255,107,92,.06); border: 1px solid rgba(255,107,92,.072); border-radius: 16px; padding: 40px; }
  .about--committed .place { background: rgba(255,107,92,.084); border-color: rgba(255,107,92,.10); }
  .about--committed .place-v { color: var(--green-700); }
  .about--committed .about-body strong { color: var(--green-700); }

  /* ─── HERITAGE (white) ───────────────────────────────── */
  #heritage { background: var(--panel); padding: 88px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .heritage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .heritage-head { font-family: var(--display); font-weight: 600; letter-spacing: -.02em; font-size: clamp(26px, 3.2vw, 38px); margin: 20px 0 18px; color: var(--ink); }
  .heritage-copy { color: var(--muted); font-size: 16px; line-height: 1.75; max-width: 46ch; }
  .heritage-copy a { color: var(--green-700); border-bottom: 1px solid rgba(30,58,138,.35); }
  .heritage-copy a:hover { border-color: var(--green-700); }
  .stats { display: grid; border-top: 1px solid var(--line); }
  .stat { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: baseline; padding: 22px 4px; border-bottom: 1px solid var(--line); }
  .stat-fig { font-family: var(--display); font-size: 38px; font-weight: 600; color: var(--green-700); line-height: 1; white-space: nowrap; letter-spacing: -.02em; }
  .stat-txt strong { display: block; font-size: 14px; font-weight: 600; color: var(--ink); }
  .stat-txt span { font-family: var(--mono); font-size: 12px; color: var(--faint); }

  /* ─── ABOUT (page tint) ──────────────────────────────── */
  #about { padding: 104px 0; background: var(--page); color: var(--ink); }
  .about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 76px; align-items: center; }
  .about-head { font-size: clamp(28px, 3.6vw, 44px); margin: 20px 0 0; color: var(--ink); }
  .about-body p { font-size: 17px; line-height: 1.8; color: var(--ink-2); margin-bottom: 20px; }
  .about-body p:last-child { margin-bottom: 0; }
  .about-body strong { font-weight: 600; color: var(--ink); }
  .about-places { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
  .place { border: 1px solid var(--line); border-radius: 10px; padding: 14px 20px; background: var(--card); display: flex; flex-direction: column; gap: 2px; min-width: 150px; }
  .place-k { font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--green-700); }
  .place-v { font-family: var(--display); font-size: 21px; font-weight: 600; color: var(--ink); }
  .place-n { font-family: var(--mono); font-size: 11px; color: var(--faint); }

  /* ─── SERVICES (tinted band, white cards) ────────────── */
  #services {
    padding: 104px 0;
    position: relative;
    background:
      radial-gradient(920px 520px at 14% -10%, rgba(255,107,92,.16), transparent 58%),
      radial-gradient(780px 520px at 94% 112%, rgba(30,58,138,.55), transparent 60%),
      linear-gradient(165deg, #0A132E 0%, #15275F 100%);
    border-top: 1px solid var(--d-line);
    border-bottom: 1px solid var(--d-line);
    /* re-scope tokens so all children render for a dark surface */
    --ink:     #F7F8FA;
    --ink-2:   #D6DCEC;
    --muted:   #9AA4BE;
    --faint:   #6E7A9C;
    --line:    rgba(247,248,250,.10);
    --line-2:  rgba(247,248,250,.17);
    --card:    rgba(247,248,250,.035);
    --tint:    rgba(247,248,250,.05);
    --green-700: #FF9488;
  }
  .svc-intro { text-align: center; max-width: 640px; margin: 0 auto 56px; }
  .svc-intro .h-display { font-size: clamp(28px, 3.6vw, 44px); margin-top: 18px; }
  .svc-intro .lede { margin-top: 14px; }
  .svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 34px 34px 30px; display: flex; flex-direction: column; position: relative; transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }
  .card:hover { transform: translateY(-4px); border-color: rgba(255,107,92,.4); box-shadow: 0 26px 50px -34px rgba(10,19,46,.32); }
  .card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 20px; }
  .card-glyph { width: 50px; height: 50px; border-radius: 11px; border: 1px solid var(--line-2); background: rgba(255,107,92,.07); display: grid; place-items: center; flex-shrink: 0; }
  .card-glyph svg { width: 26px; height: 26px; stroke: var(--green-700); fill: none; stroke-width: 1.4; }
  .card-label { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
  .card-name { font-family: var(--display); font-size: 30px; font-weight: 600; color: var(--ink); line-height: 1; margin-top: 8px; letter-spacing: -.01em; }
  .card-desc { font-size: 14.5px; line-height: 1.7; color: var(--muted); margin-bottom: 24px; }
  .card-feats { border-top: 1px solid var(--line); margin-bottom: 28px; }
  .card-feats li { display: flex; align-items: center; gap: 11px; padding: 11px 2px; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--ink-2); font-weight: 500; }
  .card-feats li svg { width: 14px; height: 14px; stroke: var(--green); flex-shrink: 0; }
  .card-cta { margin-top: auto; }
  .card-cta a { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 13px; font-weight: 500; letter-spacing: .02em; color: var(--green-700); padding: 11px 16px; border: 1px solid rgba(255,107,92,.35); border-radius: 8px; transition: all .22s ease; }
  .card-cta a:hover { background: rgba(255,107,92,.07); border-color: var(--green); }
  .card-cta a .ar { transition: transform .22s ease; }
  .card-cta a:hover .ar { transform: translateX(4px); }

  /* ─── ECOSYSTEM (white) ──────────────────────────────── */
  #ecosystem { padding: 104px 0; background: var(--panel); color: var(--ink); }
  .eco-head { max-width: 640px; margin-bottom: 52px; }
  .eco-head .h-display { font-size: clamp(26px, 3.3vw, 40px); margin-top: 16px; color: var(--ink); }
  .eco-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
  .eco-item { padding: 28px 28px 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .24s ease; }
  .eco-item:hover { background: var(--tint); }
  .eco-num { font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--green-700); letter-spacing: .1em; }
  .eco-name { font-family: var(--display); font-size: 21px; font-weight: 600; color: var(--ink); margin: 12px 0 8px; letter-spacing: -.01em; }
  .eco-desc { font-size: 14px; line-height: 1.6; color: var(--muted); }
  .eco-foot { margin-top: 38px; font-family: var(--mono); font-size: 13px; color: var(--muted); }
  .eco-foot a { color: var(--green-700); border-bottom: 1px solid rgba(30,58,138,.4); padding-bottom: 2px; font-weight: 500; }
  .eco-foot a:hover { color: var(--ink); }

  /* ─── INSIGHTS (tinted band, white cards) ────────────── */
  #insights {
    padding: 104px 0;
    position: relative;
    color: var(--ink);
    background:
      radial-gradient(880px 520px at 88% -10%, rgba(255,107,92,.15), transparent 58%),
      radial-gradient(760px 500px at 6% 110%, rgba(30,58,138,.55), transparent 60%),
      linear-gradient(195deg, #0A132E 0%, #15275F 100%);
    border-top: 1px solid var(--d-line);
    border-bottom: 1px solid var(--d-line);
    /* re-scope tokens so all children render for a dark surface */
    --ink:     #F7F8FA;
    --ink-2:   #D6DCEC;
    --muted:   #9AA4BE;
    --faint:   #6E7A9C;
    --line:    rgba(247,248,250,.10);
    --line-2:  rgba(247,248,250,.17);
    --card:    rgba(247,248,250,.035);
    --tint:    rgba(247,248,250,.05);
    --green-700: #FF9488;
  }
  .ins-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 48px; flex-wrap: wrap; }
  .ins-head .h-display { font-size: clamp(26px, 3.3vw, 42px); margin-top: 16px; color: var(--ink); }
  .ins-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .journal { border: 1px solid var(--line); border-radius: 13px; padding: 28px 26px 26px; background: var(--card); display: flex; flex-direction: column; min-height: 280px; transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease; }
  .journal:hover { transform: translateY(-4px); border-color: rgba(255,107,92,.35); box-shadow: 0 24px 48px -34px rgba(10,19,46,.3); }
  .journal-meta { display: flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--green-700); }
  .journal-meta .dot { width: 3px; height: 3px; background: var(--faint); border-radius: 50%; }
  .journal-meta span:last-child { color: var(--faint); }
  .journal-title { font-family: var(--display); font-size: 21px; font-weight: 600; line-height: 1.22; color: var(--ink); margin: 16px 0 12px; letter-spacing: -.01em; }
  .journal-blurb { font-size: 14px; line-height: 1.65; color: var(--muted); margin-bottom: 20px; }
  .journal-link { margin-top: auto; font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .04em; color: var(--green-700); display: inline-flex; gap: 8px; align-items: center; }
  .journal-link .ar { transition: transform .24s ease; }
  .journal:hover .journal-link .ar { transform: translateX(4px); } 

  /* ─── CONTACT (light section, dark CTA panel) ────────── */
  #contact { padding: 104px 0; background: var(--page); }
  .cta-panel { background: radial-gradient(720px 320px at 82% -20%, rgba(255,107,92,.12), transparent 60%), var(--d-bg-3); border: 1px solid var(--d-line-2); border-radius: 16px; padding: 60px 56px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: center; position: relative; overflow: hidden; }
  .cta-panel .eyebrow { color: var(--mint); }
  .cta-panel .eyebrow::before { background: var(--green-br); }
  .cta-title { font-family: var(--display); font-size: clamp(26px, 3.2vw, 40px); font-weight: 600; color: var(--d-text); line-height: 1.08; margin: 18px 0 16px; letter-spacing: -.02em; }
  .cta-sub { color: var(--d-muted); font-size: 16px; line-height: 1.7; margin-bottom: 30px; max-width: 42ch; }
  .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .cta-details { display: grid; gap: 20px; }
  .cta-block-k { font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--mint); margin-bottom: 7px; }
  .cta-block-v { font-size: 14px; line-height: 1.6; color: var(--d-text); }
  .cta-block-v a { color: var(--d-text); border-bottom: 1px solid rgba(255,148,136,.4); }
  .cta-block-v a:hover { border-color: var(--mint); }

  /* contact form (light) */
  .form-card { margin-top: 26px; background: var(--card); border: 1px solid var(--line); border-top: 2px solid var(--green); border-radius: 14px; padding: 40px 44px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 44px; align-items: start; }
  .form-aside .h-display { font-size: 26px; margin: 14px 0 12px; }
  .form-aside p { font-size: 14px; line-height: 1.7; color: var(--muted); }
  .form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .field { display: flex; flex-direction: column; gap: 7px; }
  .field.full { grid-column: 1 / -1; }
  .field label { font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
  .field input, .field textarea { font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--input-bg); border: 1px solid var(--line-2); border-radius: 8px; padding: 12px 14px; width: 100%; transition: border-color .2s ease, box-shadow .2s ease; }
  .field textarea { resize: vertical; min-height: 106px; }
  .field input::placeholder, .field textarea::placeholder { color: var(--faint); }
  .field input:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(255,107,92,.12); }
  .field.err input, .field.err textarea { border-color: var(--red); }
  .field-err { font-size: 12px; color: #D84A3C; display: none; }
  .field.err .field-err { display: block; }
  .form-foot { grid-column: 1 / -1; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 4px; }
  .form-note { font-family: var(--mono); font-size: 12px; color: var(--muted); }
  .form-ok { grid-column: 1 / -1; border: 1px solid rgba(255,107,92,.35); background: rgba(255,107,92,.07); border-radius: 9px; padding: 15px 17px; font-size: 14px; color: var(--green-700); display: none; align-items: center; gap: 12px; }
  .form-ok.show { display: flex; }
  .form-ok svg { width: 18px; height: 18px; stroke: var(--green); flex-shrink: 0; }
  .form-err-box { grid-column: 1 / -1; border: 1px solid rgba(200,60,40,.4); background: rgba(200,60,40,.07); border-radius: 9px; padding: 15px 17px; font-size: 14px; color: #b23c2a; display: none; align-items: center; gap: 12px; }
  .form-err-box.show { display: flex; }
  .form-err-box svg { width: 18px; height: 18px; stroke: #c8422e; flex-shrink: 0; }
  .btn[disabled] { opacity: .6; cursor: default; pointer-events: none; }

  /* ─── FOOTER (dark accent) ───────────────────────────── */
  footer { background: var(--d-bg); padding: 68px 0 34px; position: relative; overflow: hidden; }
  footer .wrap::after { content: ''; position: absolute; top: 50%; right: 32px; transform: translateY(-50%); width: 440px; height: 440px; background: url('../images/newlogo.svg') no-repeat center / contain; opacity: .40; pointer-events: none; z-index: -1; }
  footer .wrap { position: relative; z-index: 1; }
  .foot-grid { display: grid; grid-template-columns: 1.6fr .9fr .9fr .9fr 1.7fr; gap: 26px; padding-bottom: 48px; border-bottom: 1px solid var(--d-line); }
  .foot-brand .brand-mark {  border-color: var(--d-line-2); }
  .foot-brand .brand-name { color: var(--d-text); }
  .foot-brand .brand-name em { color: var(--mint); }
  .foot-desc { font-size: 14px; line-height: 1.7; color: var(--d-muted); max-width: 32ch; margin-top: 16px; }
  .foot-col-t { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--mint); margin-bottom: 16px; }
  .foot-links { display: flex; flex-direction: column; gap: 11px; }
  .foot-links a { font-size: 14px; color: var(--d-muted); transition: color .2s; }
  .foot-links a:hover { color: var(--d-text); }
  .foot-bottom { padding-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
  .foot-copy, .foot-fine { font-family: var(--mono); font-size: 12px; color: var(--d-faint); }

  /* ─── lang tweaks ────────────────────────────────────── */
  [lang="ka"] .h-display { letter-spacing: 0; line-height: 1.2; }
  /* Georgian hero: slightly tightened so the buttons stay in view, but still roomy */
  [lang="ka"] #hero { padding: 140px 0 92px; }
  [lang="ka"] .hero-title--type { font-size: clamp(34px, 4.4vw, 54px); line-height: 1.16; }
  [lang="ka"] .hero-title { max-width: 19ch; margin: 20px 0 22px; }
  [lang="ka"] .hero-lede { font-size: 17px; line-height: 1.65; margin-bottom: 32px; }
  [lang="ka"] .eyebrow, [lang="ka"] .card-label, [lang="ka"] .place-k, [lang="ka"] .cta-block-k, [lang="ka"] .foot-col-t, [lang="ka"] .journal-meta, [lang="ka"] .field label, [lang="ka"] .nav-links a { letter-spacing: .04em; }

  /* ─── SCROLL REVEAL ──────────────────────────────────── */
  .reveal { opacity: 0; transform: translateY(24px); will-change: opacity, transform;
    transition: opacity .7s cubic-bezier(.16,1,.3,1) var(--d, 0ms),
                transform .7s cubic-bezier(.16,1,.3,1) var(--d, 0ms); }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

  /* ─── RESPONSIVE ─────────────────────────────────────── */
  @media (max-width: 980px) {
    .nav-links { display: none; }
    .hero-grid { grid-template-columns: 1fr; gap: 56px; }
    .console { max-width: 480px; }
    .heritage-grid, .about-grid { grid-template-columns: 1fr; gap: 44px; }
    .cta-panel { grid-template-columns: 1fr; gap: 40px; padding: 44px 32px; }
    .form-card { grid-template-columns: 1fr; gap: 26px; padding: 34px 28px; }
    .eco-grid { grid-template-columns: repeat(2, 1fr); }
    .ins-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 620px) {
    .wrap { padding: 0 22px; }
    #hero { padding: 124px 0 76px; }
    footer .wrap::after { right: 22px; }
    .svc-grid { grid-template-columns: 1fr; }
    .form-fields { grid-template-columns: 1fr; }
    .eco-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .nav-right .btn { display: none; }
    .float-badge { right: 0; }
    .hero-actions .btn, .cta-actions .btn { flex: 1; justify-content: center; }
  }
  @media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }
