/* ============================================================
   CENKER AJANS — V2 "AURORA GLASS"
   Dark midnight + glass + lime accent
   ============================================================ */

:root {
  --bg: #07060E;
  --bg-2: #0D0B1F;
  --bg-3: #131032;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-hi: rgba(255, 255, 255, 0.10);
  --ink: #F5F0E6;
  --ink-mid: #C0BAB0;
  --ink-dim: #807A72;
  --ink-faint: #4A4640;
  --line: rgba(255, 255, 255, 0.08);
  --line-mid: rgba(255, 255, 255, 0.16);
  --line-hi: rgba(255, 255, 255, 0.28);
  --line-grad: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));

  /* aurora accents */
  --lime: #D4FF4F;
  --lime-deep: #A8D232;
  --cyan: #5DE7FF;
  --magenta: #FF5DC8;
  --orange: #FF8A47;

  /* typography */
  --f-display: 'Hanken Grotesk', 'Helvetica Neue', system-ui, sans-serif;
  --f-serif: 'PP Editorial New', 'Instrument Serif', 'Times New Roman', serif;
  --f-body: 'Hanken Grotesk', 'Helvetica Neue', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --pad-x: clamp(20px, 5vw, 80px);
  --section-y: clamp(80px, 12vw, 140px);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-full: 999px;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
}

/* aurora mesh — fixed background gradients */
body::before {
  content: '';
  position: fixed;
  inset: -20vh -20vw;
  background:
    radial-gradient(60vw 60vh at 15% 18%, rgba(125, 75, 255, 0.35) 0%, transparent 55%),
    radial-gradient(50vw 50vh at 85% 12%, rgba(93, 231, 255, 0.18) 0%, transparent 55%),
    radial-gradient(45vw 45vh at 60% 75%, rgba(212, 255, 79, 0.10) 0%, transparent 55%),
    radial-gradient(70vw 70vh at 25% 85%, rgba(255, 93, 200, 0.10) 0%, transparent 55%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
  animation: auroraDrift 22s ease-in-out infinite alternate;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at center, rgba(255,255,255,0.015) 1px, transparent 1.4px);
  background-size: 4px 4px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
}
@keyframes auroraDrift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-3vw, 2vh) scale(1.05); }
  100% { transform: translate(3vw, -2vh) scale(1); }
}

::selection { background: var(--lime); color: var(--bg); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

/* ============================================================
   GLASS PRIMITIVE
   ============================================================ */
.glass {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.02));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-dim);
  display: inline-flex; gap: 8px; align-items: center;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}
.serif-i {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap {
  width: 100%;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  position: relative;
}
section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  position: relative;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  padding: 10px 14px 10px 22px;
  display: flex; align-items: center; gap: 24px;
  border-radius: 100px;
  background: rgba(20, 17, 40, 0.65);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--line-mid);
  width: min(960px, calc(100% - 32px));
  justify-content: space-between;
}
.nav .brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav .brand .mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 0 24px rgba(212, 255, 79, 0.5);
}
.nav .brand .mark-chip {
  width: 32px; height: 26px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  box-shadow: 0 0 18px rgba(212, 255, 79, 0.45);
  position: relative;
}
.nav .brand .mark-chip > span { transform: translateX(-1px); display: inline-block; }
.nav-links {
  display: flex; gap: 4px; align-items: center;
  list-style: none; margin: 0; padding: 0;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links a {
  padding: 8px 12px;
  border-radius: var(--r-full);
  color: var(--ink-mid);
  transition: color .2s, background-color .2s;
}
.nav-links a:hover { color: var(--ink); background: var(--surface); }
.nav-cta {
  display: inline-flex; gap: 8px; align-items: center;
  padding: 10px 16px;
  background: var(--lime);
  color: var(--bg);
  border-radius: var(--r-full);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .2s, background-color .2s, box-shadow .3s;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 0 24px rgba(212, 255, 79, 0.4);
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav { padding: 8px 8px 8px 18px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}
/* Backdrop sits at z:0; hero direct children stack above */
.hero > .hero-grid,
.hero > .hero-scroll {
  position: relative;
  z-index: 1;
}

/* Two-column grid: content on the left, live browser-frame showcase on the
   right. The right column scales like a card and lazily cycles through six
   real reference screenshots — immediate, concrete proof above the fold. */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.hero-col-content,
.hero-col-showcase {
  min-width: 0;
}
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-col-showcase { order: -1; max-width: 560px; margin: 0 auto 8px; width: 100%; }
}

.hero-col-content {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 32px);
}

.hero-eyebrow {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  margin: 0;
}
.hero-eyebrow .pill {
  padding: 8px 14px 8px 12px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  display: inline-flex; gap: 10px; align-items: center;
}
.hero-eyebrow .pill .live {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(212, 255, 79, .6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 255, 79, .6); }
  70% { box-shadow: 0 0 0 10px rgba(212, 255, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 255, 79, 0); }
}

.hero h1 {
  font-family: var(--f-display);
  font-weight: 600;
  /* Narrower than before because hero is now a 2-col grid — scale to fit
     the left column, not viewport width. */
  font-size: clamp(2.4rem, 5.4vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0;
}
.hero h1 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.hero h1 .outline {
  color: var(--ink);
}

.hero-lead {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.5;
  color: var(--ink-mid);
  max-width: 50ch;
  margin: 0;
}
.hero-lead em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--lime);
  font-weight: 400;
}

.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin: 0;
}
.btn {
  display: inline-flex;
  align-items: center; gap: 12px;
  padding: 16px 24px;
  border-radius: var(--r-full);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform .2s, background-color .25s, color .25s, border-color .25s, box-shadow .3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--lime);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 0 32px rgba(212,255,79,0.4);
}
.btn-secondary {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  color: var(--ink);
  border: 1px solid var(--line-mid);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--line-hi); }
.btn .arrow {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: currentColor;
  display: inline-grid; place-items: center;
  transition: transform .3s cubic-bezier(.7,.05,.2,1);
}
.btn .arrow::before {
  content: '↗';
  color: var(--lime);
  font-size: 12px;
}
.btn-primary .arrow::before { color: var(--bg); }
.btn-secondary .arrow { background: var(--lime); }
.btn:hover .arrow { transform: rotate(45deg); }

.hero-meta {
  display: flex; flex-direction: column; gap: 16px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
}
.hero-meta .row {
  display: flex; justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.hero-meta .row strong {
  color: var(--ink);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  text-transform: none;
}

/* ---------- HERO STATS V2 ---------- */
.hero-stats-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line-mid);
  margin: 0;
}
.hs-item { display: flex; flex-direction: column; gap: 6px; padding-right: 12px; }
.hs-num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.hs-num em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hs-num .hs-unit { font-size: 0.55em; opacity: 0.85; font-weight: 500; }
.hs-lbl {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.03em;
    color: var(--ink-dim);
}

/* ---------- HERO SHOWCASE (two-row scrolling marquee) ---------- */
/* The right column is two horizontal marquees stacked vertically; the top
   row scrolls left, the bottom row scrolls right. Edges are faded with a
   CSS mask so tiles dissolve in/out of the visible area. Hovering anywhere
   in the showcase pauses both rows so the visitor can read a tile. */
.hero-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  padding: 12px 0;
  /* Soft fade at left/right edges so tiles ease in and out of view. */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.hero-showcase-row {
  display: flex;
  gap: 18px;
  width: max-content;
  /* The duplicated row content makes -50% land exactly on the seam. */
  animation: heroShowcaseScroll 38s linear infinite;
  will-change: transform;
}
.hero-showcase-row.reverse { animation-direction: reverse; }
.hero-showcase:hover .hero-showcase-row { animation-play-state: paused; }

@keyframes heroShowcaseScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.hero-showcase-tile {
  flex-shrink: 0;
  width: clamp(220px, 22vw, 320px);
  aspect-ratio: 16/10;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--glass);
  position: relative;
  /* Smooth return to rest after pointer leaves. The on-move transform is
     applied inline by JS and overrides this transition for live updates. */
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, border-color .35s;
  cursor: pointer;
  will-change: transform;
}
.hero-showcase-tile:hover {
  z-index: 2;
  border-color: var(--line-mid);
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.75);
}
.hero-showcase-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  user-select: none;
  pointer-events: none;
}
.hero-showcase-tile-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: rgba(7, 6, 14, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 5px 10px;
  border-radius: var(--r-sm, 6px);
  text-align: center;
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.hero-showcase-tile:hover .hero-showcase-tile-label { opacity: 1; }

@media (max-width: 1100px) {
  .hero-showcase-row { animation-duration: 28s; }
  .hero-showcase-tile { width: clamp(180px, 38vw, 260px); }
}

/* ---------- HERO SCROLL INDICATOR ---------- */
.hero-scroll {
  margin-top: clamp(48px, 6vw, 80px);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
    color: var(--ink-dim);
}
.hero-scroll .scroll-line {
  flex: 1;
  margin: 0 24px;
  height: 1px;
  background: var(--line-mid);
  position: relative; overflow: hidden;
}
.hero-scroll .scroll-line::after {
  content: '';
  position: absolute; top: 0; left: -30%;
  width: 30%; height: 100%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
  animation: v2ScrollLine 2.4s ease-in-out infinite;
}
@keyframes v2ScrollLine {
  0% { left: -30%; }
  100% { left: 100%; }
}

/* ---------- MARQUEE ---------- */
.v2-marquee {
  position: relative;
  padding: clamp(10px, 1vw, 14px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  overflow: hidden;
  display: flex;
  white-space: nowrap;
}
.v2-marquee::before, .v2-marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.v2-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}
.v2-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg) 0%, transparent 100%);
}
.v2-marquee-track {
  display: inline-flex;
  gap: clamp(30px, 4vw, 56px);
  padding-right: clamp(30px, 4vw, 56px);
  animation: v2Marquee 42s linear infinite;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw, 1.4rem);
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
}
.v2-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: clamp(30px, 4vw, 56px);
}
.v2-marquee-track span::after {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  flex-shrink: 0;
}
.v2-marquee-track span:nth-child(even) { color: var(--ink-mid); }
.v2-marquee-track span:nth-child(3n) em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
@keyframes v2Marquee {
  to { transform: translateX(-50%); }
}

/* ---------- TRUST STRIP ---------- */
.v2-trust {
  padding: clamp(24px, 3vw, 36px) 0;
  border-bottom: 1px solid var(--line);
}
.v2-trust-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}
@media (max-width: 760px) {
  .v2-trust-row { grid-template-columns: 1fr; gap: 16px; }
}
.v2-trust-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
    color: var(--ink-dim);
  display: flex; gap: 10px; align-items: center;
}
.v2-trust-label .badge {
  display: inline-grid; place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--bg);
  font-family: var(--f-display);
  font-size: 13px; font-weight: 700;
  box-shadow: 0 0 14px rgba(212,255,79,0.45);
}
.v2-trust-logos {
  display: flex;
  gap: clamp(18px, 3vw, 48px);
  flex-wrap: wrap;
  align-items: center;
}
.v2-trust-logos .logo {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  letter-spacing: -0.02em;
  color: var(--ink-mid);
  display: inline-flex; gap: 8px; align-items: center;
  transition: color .25s;
}
.v2-trust-logos .logo:hover { color: var(--ink); }
.v2-trust-logos .logo .glyph {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15em;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ============================================================
   SECTORS — HEADER + ACCORDION LIST
   ============================================================ */
.sectors-head {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
}
@media (max-width: 860px) { .sectors-head { grid-template-columns: 1fr; gap: 18px; } }
.sectors-head h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.8vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 16px 0 0 0;
}
.sectors-head h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.sectors-head p {
  margin: 0; align-self: end;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--ink-mid);
  max-width: 50ch;
}

.sectors-chips {
  margin: 32px 0 40px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.chip {
  padding: 9px 14px;
  border-radius: var(--r-full);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-mid);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
    transition: all .2s;
}
.chip:hover { color: var(--ink); border-color: var(--line-hi); }
.chip.active { background: var(--lime); color: var(--bg); border-color: var(--lime); font-weight: 600; }

/* Single sector panel — replaces the previous accordion list.
   The chip selector above swaps active sector; only one panel renders. */
.sec-panel {
  border-radius: var(--r-lg);
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid var(--line-mid);
  overflow: hidden;
}

.sec-panel-head {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: clamp(16px, 3vw, 36px);
  align-items: center;
  padding: clamp(18px, 2.5vw, 26px) clamp(20px, 3vw, 32px);
  border-bottom: 1px solid var(--line);
}
.sec-panel .sr-num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--lime);
}
.sec-panel .sr-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
}
.sec-panel .sr-name em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.sec-panel .sr-cat {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--ink-dim);
  padding: 6px 12px;
  border-radius: var(--r-full);
  border: 1px solid var(--line-mid);
}
@media (max-width: 700px) {
  .sec-panel-head { grid-template-columns: 40px 1fr; }
  .sec-panel .sr-cat { display: none; }
}

.sec-panel-body {
  padding: clamp(24px, 3vw, 36px) clamp(20px, 3vw, 32px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}
@media (max-width: 900px) { .sec-panel-body { grid-template-columns: 1fr; } }

.sec-panel-mock {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.6);
}

.sec-panel-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sec-panel-meta .sec-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--ink-dim);
  display: flex; align-items: center; gap: 8px;
}
.sec-panel-meta .sec-tag .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime);
}
.sec-panel-meta p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-mid);
}
.sec-panel-meta h4 {
  margin: 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
}
.sec-panel-meta ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.sec-panel-meta ul li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13.5px;
  color: var(--ink-soft, var(--ink));
  line-height: 1.5;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.sec-panel-meta ul li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 8px;
  width: 14px; height: 1.5px;
  background: var(--lime);
}
.sec-panel-meta .sec-cta-row {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding-top: 6px;
}
.sec-panel-meta .sec-cta-row .btn { padding: 12px 18px; font-size: 11px; }

/* ============================================================
   SITE MOCK (looks like a real website screenshot)
   ============================================================ */
.site-mock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  font-family: var(--f-display);
  overflow: hidden;
}
.site-mock .site-frame {
  flex: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(10px, 1.5vw, 18px) clamp(14px, 2vw, 24px);
  position: relative;
}

/* nav */
.site-mock .site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: clamp(10px, 1.4vw, 18px);
}
.site-mock .site-brand {
  display: flex; gap: 10px; align-items: center;
}
.site-mock .site-logo {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.site-mock .site-brand-text {
  display: flex; flex-direction: column;
  line-height: 1;
}
.site-mock .site-brand-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: 0.02em;
}
.site-mock .site-brand-tag {
  font-family: var(--f-mono);
  font-size: clamp(7.5px, 0.7vw, 9px);
  letter-spacing: 0.04em;
  opacity: 0.55;
  margin-top: 3px;
}
.site-mock .site-nav-items {
  display: flex; gap: clamp(8px, 1.4vw, 16px);
  font-family: var(--f-mono);
  font-size: clamp(8.5px, 0.85vw, 11px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-mock .site-nav-items span {
  opacity: 0.55;
  padding-bottom: 3px;
  position: relative;
}
.site-mock .site-nav-items span.active {
  opacity: 1;
}
.site-mock .site-nav-items span.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
}
@media (max-width: 600px) {
  .site-mock .site-nav-items { display: none; }
}

/* hero */
.site-mock .site-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(12px, 2vw, 28px);
  align-items: center;
  padding: clamp(8px, 1.5vw, 18px) 0;
  flex: 1;
}
.site-mock .site-hero-content {
  display: flex; flex-direction: column;
  gap: clamp(8px, 1.2vw, 14px);
}
.site-mock .site-eyebrow {
  font-family: var(--f-mono);
  font-size: clamp(7.5px, 0.7vw, 9px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.95;
}
.site-mock .site-headline {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(18px, 3.4vw, 36px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0;
}
.site-mock .site-headline em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.site-mock .site-lead {
  margin: 0;
  font-family: var(--f-body);
  font-size: clamp(9px, 1vw, 12.5px);
  line-height: 1.5;
  opacity: 0.78;
  font-weight: 400;
}
.site-mock .site-cta {
  align-self: flex-start;
  display: inline-flex; gap: 8px; align-items: center;
  padding: clamp(8px, 1vw, 12px) clamp(14px, 1.6vw, 22px);
  border-radius: var(--r-full);
  font-family: var(--f-mono);
  font-size: clamp(8.5px, 0.85vw, 11px);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform .2s;
  margin-top: 4px;
}
.site-mock .site-cta:hover { transform: translateY(-2px); }
.site-mock .site-cta .arr {
  font-family: var(--f-display);
}
.site-mock .site-hero-art {
  position: relative;
  height: 100%;
  min-height: 120px;
}
.site-mock .site-hero-art svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* footer */
.site-mock .site-footer {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono);
  font-size: clamp(7.5px, 0.7vw, 9px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.5;
  padding-top: clamp(8px, 1vw, 14px);
}

@media (max-width: 600px) {
  .site-mock .site-hero { grid-template-columns: 1fr; gap: 8px; }
  .site-mock .site-hero-art { min-height: 80px; }
}

/* ============================================================
   FEATURED GRID (Services + Why)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.feat-card {
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 240px;
  min-width: 0;
  transition: transform .35s, border-color .25s;
}
.feat-card:hover { transform: translateY(-4px); border-color: var(--line-hi); }
.feat-card .feat-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
}
.feat-card h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}
.feat-card h3 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
}
.feat-card p { margin: 0; font-size: 14px; color: var(--ink-mid); line-height: 1.5; }
.feat-card .glow {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.feat-card.span-4 { grid-column: span 4; }
.feat-card.span-5 { grid-column: span 5; }
.feat-card.span-6 { grid-column: span 6; }
.feat-card.span-7 { grid-column: span 7; }
.feat-card.span-8 { grid-column: span 8; }
.feat-card.span-12 { grid-column: span 12; }
@media (max-width: 1100px) {
  .feat-card.span-4, .feat-card.span-5 { grid-column: span 6; }
  .feat-card.span-7, .feat-card.span-8 { grid-column: span 12; }
}
@media (max-width: 700px) {
  .feat-card.span-4, .feat-card.span-5, .feat-card.span-6,
  .feat-card.span-7, .feat-card.span-8, .feat-card.span-12 {
    grid-column: span 12;
  }
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.sec-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  margin-bottom: 56px;
  align-items: end;
}
@media (max-width: 860px) { .sec-head { grid-template-columns: 1fr; gap: 16px; align-items: start; } }
.sec-head h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 16px 0 0 0;
}
.sec-head h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.sec-head p { margin: 0; font-size: clamp(1rem, 1.3vw, 1.1rem); color: var(--ink-mid); max-width: 50ch; }

/* ============================================================
   PROCESS — vertical timeline
   ============================================================ */
/* Six-step process as a compact grid — was a vertical stack of full-width
   rows. Three columns on desktop, two on tablet, one on mobile. */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 1000px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .process-grid { grid-template-columns: 1fr; } }

.proc-card {
  padding: clamp(18px, 2vw, 24px);
  border-radius: var(--r-lg);
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .25s, transform .35s;
  min-width: 0;
}
.proc-card:hover {
  border-color: var(--line-mid);
  transform: translateY(-2px);
}
.proc-num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin: 0 0 2px;
}
.proc-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0;
}
.proc-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
}
.proc-desc {
  color: var(--ink-mid);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.proc-tags {
  display: flex; gap: 5px; flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 4px;
}
.proc-tags span {
  padding: 3px 7px;
  border-radius: var(--r-full);
  border: 1px solid var(--line-mid);
  color: var(--ink-dim);
}

/* ============================================================
   CTA
   ============================================================ */
.cta-block {
  border-radius: var(--r-xl);
  padding: clamp(48px, 7vw, 100px) clamp(28px, 4vw, 60px);
  background: var(--glass);
  backdrop-filter: blur(30px) saturate(160%);
  border: 1px solid var(--line-mid);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lime), transparent 70%);
  filter: blur(80px);
  opacity: 0.25;
  top: -300px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-block h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6.5vw, 5.6rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin: 0 0 32px 0;
  position: relative;
}
.cta-block h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.cta-row {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 80px var(--pad-x) 32px;
  display: flex; flex-direction: column; gap: 56px;
  border-top: 1px solid var(--line);
  margin-top: var(--section-y);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em; line-height: 0.95;
  margin: 0 0 14px 0;
}
.footer-brand h3 em { font-family: var(--f-serif); font-style: italic; font-weight: 400; color: var(--lime); }
.footer-brand p { margin: 0; color: var(--ink-mid); font-size: 14px; line-height: 1.55; max-width: 36ch; }
.footer-col h5 {
  margin: 0 0 14px 0;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-dim);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 14px; color: var(--ink-mid); transition: color .2s; }
.footer-col ul a:hover { color: var(--lime); }

.footer-sig {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(4rem, 18vw, 17rem);
  letter-spacing: -0.06em;
  line-height: 0.85;
  text-align: center;
  background: linear-gradient(180deg, var(--ink) 30%, transparent 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin: 0;
}
.footer-sig em { font-family: var(--f-serif); font-style: italic; font-weight: 400; color: var(--lime); -webkit-text-fill-color: var(--lime); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ============================================================
   VERSION SWITCHER (shown in both versions)
   ============================================================ */
.v-switch {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 90;
  display: flex; gap: 4px;
  padding: 4px;
  background: rgba(7,6,14,0.75);
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--line-mid);
  border-radius: var(--r-full);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.v-switch a {
  padding: 9px 14px;
  border-radius: var(--r-full);
  color: var(--ink-mid);
  white-space: nowrap;
  transition: all .2s;
}
.v-switch a.active { background: var(--lime); color: #07060E; font-weight: 600; }
.v-switch a:not(.active):hover { color: var(--ink); }
