/* ============================================================
   EPIK OCEAN — systems layer
   Workflow canvas · capabilities · pipeline · configurator ·
   work showcase · pricing · FAQ
   ============================================================ */

/* ============================================================
   WORKFLOW CANVAS (hero centerpiece)
   ============================================================ */
/* no box / window chrome — the workflow graph sits directly on the page bg */
.canvas {
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  isolation: isolate;
}
.canvas::before { display: none; }
.canvas__bar { display: none; }
.canvas__dots { display: none; }
.flowdot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 10px rgba(var(--glow), .7);
  flex: none;
}
.canvas__title { margin-left: 2px; letter-spacing: .02em; }
.canvas__run {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 7px;
  border: 1px solid var(--line-2);
  background: rgba(237, 241, 247, .03);
}
.canvas__run i { width: 6px; height: 6px; border-radius: 50%; background: #2FE08A; box-shadow: 0 0 8px #2FE08A; animation: pulse2 2.4s var(--ease) infinite; }

.canvas__stage {
  position: relative;
  z-index: 2;
  height: clamp(340px, 42vw, 460px);
}
/* the node graph overflows narrow screens — hide it on mobile (decorative) */
@media (max-width: 640px) { #canvas { display: none; } }
.canvas__svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.wire { fill: none; stroke: var(--line-2); stroke-width: 1.6; }
.wire-lit {
  fill: none;
  stroke: url(#wireGrad);
  stroke-width: 2;
  stroke-dasharray: 6 220;
  filter: drop-shadow(0 0 4px rgba(var(--glow), .6));
}

.node {
  position: absolute;
  z-index: 2;
  width: clamp(116px, 13.5vw, 146px);
  transform: translate(-50%, -50%);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .01)), var(--panel-2);
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, .8);
  padding: 11px 12px;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease),
              transform .55s var(--ease), opacity .5s var(--ease);
}
.node--enter { opacity: 0; transform: translate(-50%, -50%) scale(.84) translateY(10px); }
.node--exit  { opacity: 0; transform: translate(-50%, -50%) scale(.92); }
.node.is-hot {
  border-color: rgba(var(--glow), .6);
  box-shadow: 0 0 0 1px rgba(var(--glow), .35), 0 22px 50px -22px rgba(var(--glow), .5);
}
.node__top { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.node__ico {
  width: 24px; height: 24px; border-radius: 7px;
  display: grid; place-items: center;
  background: rgba(var(--glow), .14);
  border: 1px solid rgba(var(--glow), .3);
  color: var(--accent);
  flex: none;
}
.node__ico svg { width: 13px; height: 13px; }
.node__kind { font-family: var(--mono); font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.node__name { font-size: 13px; font-weight: 600; letter-spacing: -.01em; }
.node__sub { font-size: 11px; color: var(--mute); margin-top: 3px; }
.node__port {
  position: absolute;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--panel-2);
  border: 1.5px solid var(--line-2);
  top: 50%; transform: translateY(-50%);
}
.node__port--in { left: -5px; }
.node__port--out { right: -5px; }
.node.is-hot .node__port { border-color: var(--accent); background: var(--accent); box-shadow: 0 0 8px rgba(var(--glow), .8); }

@media (max-width: 980px) {
  .canvas__stage { height: 380px; }
}
@media (max-width: 600px) {
  .node { width: 112px; }
  .canvas__stage { height: 330px; }
}

/* ============================================================
   CAPABILITIES — vertical interactive index
   ============================================================ */
/* full-width hover-expand accordion (no side box) */
.caps { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-2); }
.cap { position: relative; border-bottom: 1px solid var(--line-2); }
.cap::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--grad); transform: scaleY(0); transform-origin: top;
  transition: transform .5s var(--ease);
}
.cap.is-open::before { transform: scaleY(1); }
.cap__row {
  width: 100%; display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: clamp(16px, 2.4vw, 34px);
  padding: clamp(20px, 2.8vw, 36px) 0;
  background: none; border: 0; cursor: pointer; text-align: left; font: inherit;
  color: var(--mute);
  transition: color .4s var(--ease), padding-left .5s var(--ease);
}
.cap.is-open .cap__row, .cap__row:hover { color: var(--ink); padding-left: clamp(10px, 1.5vw, 24px); }
.cap__n { font-family: var(--mono); font-size: 13px; color: var(--faint); font-weight: 500; }
.cap.is-open .cap__n { color: var(--accent); }
.cap__t { font-size: clamp(1.4rem, 3vw, 2.6rem); font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.cap__chev { position: relative; width: 16px; height: 16px; flex: none; color: var(--faint); }
.cap.is-open .cap__chev { color: var(--accent); }
.cap__chev::before, .cap__chev::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: currentColor;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.cap__chev::before { width: 15px; height: 1.5px; transform: translate(-50%, -50%); }
.cap__chev::after  { width: 1.5px; height: 15px; transform: translate(-50%, -50%); }
.cap.is-open .cap__chev::after { transform: translate(-50%, -50%) scaleY(0); opacity: 0; }
.cap__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s var(--ease); }
.cap.is-open .cap__panel { grid-template-rows: 1fr; }
.cap__inner { overflow: hidden; min-height: 0; }
.cap__panel p {
  margin: 0; max-width: 62ch; color: var(--mute);
  font-size: clamp(15px, 1.4vw, 18px); line-height: 1.65;
  padding: 0 0 clamp(8px, 1.4vw, 16px) clamp(36px, 4vw, 60px);
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s var(--ease) .1s, transform .5s var(--ease) .1s;
}
.cap__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 0 0 clamp(26px, 3vw, 38px) clamp(36px, 4vw, 60px);
  opacity: 0; transition: opacity .5s var(--ease) .16s;
}
.cap.is-open .cap__panel p, .cap.is-open .cap__chips { opacity: 1; transform: none; }
@media (max-width: 620px) {
  .cap__t { font-size: clamp(1.25rem, 6vw, 1.7rem); }
  .cap__panel p, .cap__chips { padding-left: 30px; }
}

/* ============================================================
   PIPELINE — sticky stacking cards
   ============================================================ */
/* ============================================================
   FLOW (story-scroll) — full-screen panels pin + rotate-stack
   ============================================================ */
.flow { position: relative; }
.flowsec {
  position: sticky;
  top: 0;
  min-height: 100vh;
  background: var(--fbg, var(--bg));
  display: flex;
  align-items: center;
  padding: clamp(56px, 9vh, 110px) var(--pad);
  transform-origin: 0% 100%;
  will-change: transform;
  overflow: hidden;
}
.flowsec--accent { background: linear-gradient(155deg, var(--accent), #0a2a66); }
.flowsec--light { background: #ffffff; }
.flowsec--light .flowsec__h { color: #06070A; }
.flowsec--light .flowsec__p { color: rgba(6, 7, 10, .66); }
.flowsec--light .flowsec__k { color: var(--accent-2); }
.flowsec--light .flowsec__lede { color: rgba(6, 7, 10, .5); }
.flowsec--light .flowsec__rule { border-top-color: rgba(6, 7, 10, .18); }
.flowsec__in { width: 100%; max-width: var(--maxw); margin: 0 auto; display: flex; flex-direction: column; }
.flowsec__top { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 12px; }
.flowsec__k { font-family: var(--mono); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.flowsec--accent .flowsec__k { color: #fff; }
.flowsec__lede { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: rgba(237, 241, 247, .5); }
.flowsec__rule { border: none; border-top: 1px solid rgba(255, 255, 255, .16); margin: clamp(20px, 3.2vh, 40px) 0; width: 100%; }
.flowsec--accent .flowsec__rule { border-top-color: rgba(255, 255, 255, .35); }
.flowsec__h { margin: 0; font-size: clamp(2.8rem, 11vw, 9rem); font-weight: 800; line-height: .85; letter-spacing: -.045em; text-transform: uppercase; color: var(--ink); }
.flowsec--accent .flowsec__h { color: #fff; }
.flowsec__p { margin: 0; max-width: 56ch; font-size: clamp(1.05rem, 1.9vw, 1.7rem); line-height: 1.5; color: var(--mute); }
.flowsec--accent .flowsec__p { color: rgba(255, 255, 255, .85); }
@media (prefers-reduced-motion: reduce) { .flowsec { transform: none !important; } }

.stack__cards { position: relative; }
.stack__card {
  position: sticky;
  top: clamp(96px, 13vh, 130px);
  margin-bottom: clamp(16px, 2vw, 26px);
  min-height: clamp(220px, 32vh, 320px);
  display: grid;
  grid-template-columns: clamp(110px, 15vw, 210px) 1fr auto;
  align-items: center;
  gap: clamp(18px, 4vw, 64px);
  padding: clamp(26px, 3.2vw, 52px);
  /* near-black card (not navy), brighter + slightly thicker white border, no blue */
  border: 1.5px solid rgba(255, 255, 255, .16);
  border-radius: 20px;
  background: var(--bg);
  box-shadow: 0 40px 80px -50px rgba(0, 0, 0, .85);
  transform-origin: center top;
}
.stack__l { display: flex; flex-direction: column; gap: 14px; }
.stack__n {
  font-family: var(--mono);
  font-size: clamp(2.2rem, 4.4vw, 3.6rem); font-weight: 500; letter-spacing: -.04em; line-height: .8;
  color: var(--ink);
}
.stack__day {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
  color: var(--accent); border: 1px solid rgba(var(--glow), .35); border-radius: 999px; padding: 6px 12px; width: fit-content;
  background: rgba(var(--glow), .08);
}
.stack__c h3 { margin: 0 0 12px; font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.stack__c p { margin: 0; color: var(--mute); font-size: clamp(15px, 1.4vw, 18px); line-height: 1.55; max-width: 46ch; }
.stack__r {
  font-size: clamp(24px, 3.4vw, 44px); color: var(--faint);
  width: clamp(52px, 6vw, 76px); height: clamp(52px, 6vw, 76px);
  border: 1px solid var(--line-2); border-radius: 14px;
  display: grid; place-items: center;
}
.stack__r svg { width: 40%; height: 40%; color: var(--accent); }
@media (max-width: 760px) {
  .stack__card { grid-template-columns: 1fr; gap: 16px; min-height: 0; }
  .stack__r { display: none; }
}

/* ============================================================
   CONFIGURATOR — build your stack
   ============================================================ */
.build__grid { display: grid; grid-template-columns: 1.35fr .85fr; gap: clamp(20px, 3vw, 44px); align-items: start; }
@media (max-width: 900px) { .build__grid { grid-template-columns: 1fr; } }

.chips { display: flex; flex-wrap: wrap; gap: 11px; }
.chip {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 11px;
  border: 1px solid var(--line);
  font-size: clamp(13.5px, 1.1vw, 15px);
  font-weight: 500;
  color: var(--mute);
  background: rgba(237, 241, 247, .02);
  white-space: nowrap;
  transition: transform .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease), background .35s var(--ease);
  user-select: none;
}
.chip:hover { transform: translateY(-2px); color: var(--ink); border-color: var(--line-2); }
.chip:active { transform: scale(.95); }
.chip__dot {
  width: 15px; height: 15px; border-radius: 5px;
  border: 1px solid var(--faint);
  position: relative; flex: none;
  transition: background .35s var(--ease), border-color .35s var(--ease);
}
.chip.on { color: var(--ink); border-color: rgba(var(--glow), .4); background: rgba(var(--glow), .1); }
.chip.on .chip__dot { background: var(--grad); border-color: transparent; }
.chip.on .chip__dot::after {
  content: ""; position: absolute; inset: 0;
  background: no-repeat center / 9px url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'><path d='M1 4.2 3.6 7 9 1.2' fill='none' stroke='%2304121a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.readout {
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: clamp(22px, 2.4vw, 32px);
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01)), var(--panel);
  position: sticky;
  top: 100px;
  box-shadow: 0 40px 90px -60px rgba(0, 0, 0, .9);
}
.readout__big {
  font-family: var(--mono);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 600; letter-spacing: -.04em; line-height: .9;
  display: flex; align-items: baseline; gap: 8px;
}
.readout__big .of { font-size: .26em; color: var(--faint); letter-spacing: 0; white-space: nowrap; }
.readout__cap { color: var(--mute); margin: 8px 0 22px; font-size: 14px; line-height: 1.5; min-height: 2.6em; }
.readout hr { border: 0; border-top: 1px solid var(--line); margin: 20px 0; }
.readout__metric { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 8px 0; }
.readout__metric .k { font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--faint); }
.readout__metric .v { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.readout__metric .v em { font-style: normal; font-size: .6em; color: var(--mute); font-weight: 500; margin-left: 3px; }
.bar { height: 7px; border-radius: 999px; background: rgba(237, 241, 247, .07); overflow: hidden; margin-top: 8px; }
.bar__fill { height: 100%; width: 50%; background: var(--grad); border-radius: 999px; transition: width .6s var(--ease); }

/* ============================================================
   WORK SHOWCASE — numbered, with result metric
   ============================================================ */
.show__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 64px); align-items: start; }
.show__stage {
  position: sticky; top: clamp(96px, 13vh, 130px);
  aspect-ratio: 5 / 4; border-radius: 24px; overflow: hidden;
  /* transparent (page black shows through), just a clean white hairline — no box fill */
  border: 1px solid rgba(255, 255, 255, .12);
  background: transparent;
  box-shadow: none;
}
.show__panel {
  position: absolute; inset: 0;
  opacity: 0; transform: scale(1.02);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  display: flex; flex-direction: column;
}
.show__panel.is-active { opacity: 1; transform: none; z-index: 2; }
.show__panelhd {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px; border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-size: 11.5px; color: var(--mute);
}
.show__panelhd .pill { margin-left: auto; color: var(--accent); white-space: nowrap; }
.show__panelbody {
  flex: 1;
  padding: clamp(28px, 3.4vw, 52px);
  display: flex; flex-direction: column; justify-content: center; gap: clamp(20px, 3vw, 40px);
  background: none;
}
.show__metric { display: flex; align-items: baseline; gap: 8px; }
.show__metric .big { font-size: clamp(4rem, 12vw, 9rem); font-weight: 800; letter-spacing: -.05em; line-height: .82; }
.show__metric .unit { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 700; color: var(--mute); }
.show__metriclbl { margin-top: 12px; color: var(--mute); font-size: clamp(14px, 1.3vw, 16px); max-width: 30ch; }
.show__chips { display: flex; flex-wrap: wrap; gap: 8px; }

.show__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.showrow {
  display: grid; grid-template-columns: auto 1fr auto; align-items: start;
  gap: clamp(14px, 2vw, 28px); padding: clamp(20px, 2.4vw, 30px) 0;
  border-bottom: 1px solid var(--line); cursor: pointer; opacity: .5;
  transition: opacity .5s var(--ease), padding-left .5s var(--ease); outline: none;
}
.showrow.is-active, .showrow:hover, .showrow:focus-visible { opacity: 1; padding-left: clamp(10px, 1.4vw, 22px); }
.showrow__n { font-family: var(--mono); font-size: 12px; color: var(--faint); padding-top: .5em; }
.showrow.is-active .showrow__n { color: var(--accent); }
.showrow__t { margin: 0; font-size: clamp(1.4rem, 2.8vw, 2.3rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.05; }
.showrow__c .seg { font-family: var(--mono); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--faint); margin-top: 8px; }
.showrow__c p {
  margin: 0; color: var(--mute); font-size: clamp(14px, 1.3vw, 16px); line-height: 1.55; max-width: 42ch;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .55s var(--ease), opacity .5s var(--ease), margin .5s var(--ease);
}
.showrow.is-active .showrow__c p { max-height: 90px; opacity: 1; margin-top: 10px; }
.showrow__arrow { font-size: clamp(20px, 2vw, 26px); color: var(--faint); align-self: center; justify-self: end; transition: transform .5s var(--ease), color .5s var(--ease); }
.showrow.is-active .showrow__arrow, .showrow:hover .showrow__arrow { color: var(--ink); transform: translate(3px, -3px); }
@media (max-width: 880px) {
  .show__grid { grid-template-columns: 1fr; gap: 26px; }
  .show__stage { position: relative; aspect-ratio: 4/3; order: -1; }
}

/* ============================================================
   PRICING — engagement models
   ============================================================ */
.price__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.8vw, 26px); }
@media (max-width: 900px) { .price__grid { grid-template-columns: 1fr; max-width: 460px; } }
.pcard {
  position: relative;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  background: var(--panel);
  padding: clamp(24px, 2.6vw, 36px);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), border-color .5s var(--ease);
}
.pcard:hover { transform: translateY(-5px); border-color: rgba(237, 241, 247, .28); }
.pcard--feat {
  border-color: rgba(var(--glow), .4);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(var(--glow), .14), transparent 60%),
    var(--panel);
  box-shadow: 0 40px 100px -50px rgba(var(--glow), .5);
}
.pcard__badge {
  position: absolute; top: 16px; right: 16px; white-space: nowrap;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  color: #04121a; background: var(--grad); padding: 5px 10px; border-radius: 999px; font-weight: 600;
}
.pcard__kind { font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); }
.pcard__name { margin: 14px 0 6px; font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 700; letter-spacing: -.03em; }
.pcard__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.pcard__price .amt { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -.04em; }
.pcard__price .per { color: var(--mute); font-size: 14px; }
.pcard__desc { color: var(--mute); font-size: 14px; line-height: 1.55; margin: 0 0 20px; }
.pcard__list { list-style: none; margin: 0 0 26px; padding: 20px 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pcard__list li { display: flex; gap: 11px; font-size: 14.5px; color: var(--ink); line-height: 1.4; }
.pcard__list li svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--accent); }
.pcard .btn { width: 100%; }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 50px); border-top: 1px solid var(--line); padding-top: clamp(34px, 4vw, 56px); }
.stat__num {
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 800; letter-spacing: -.05em; line-height: .9;
  display: flex; align-items: baseline;
}
.stat__num .unit { font-size: .4em; margin-left: .04em; color: var(--accent); }
.stat__label { margin-top: 12px; color: var(--mute); font-size: clamp(14px, 1.2vw, 16px); max-width: 24ch; }
@media (max-width: 820px) { .stats { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq__grid { display: grid; grid-template-columns: .8fr 1.4fr; gap: clamp(24px, 4vw, 80px); }
@media (max-width: 860px) { .faq__grid { grid-template-columns: 1fr; } }
.faq__head h2 { margin: 14px 0 0; font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 800; letter-spacing: -.04em; line-height: 1.02; position: sticky; top: 110px; }
.faq__list { border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa__q {
  all: unset; box-sizing: border-box; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  width: 100%; padding: clamp(20px, 2.2vw, 30px) 0;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem); font-weight: 600; letter-spacing: -.02em;
  color: var(--ink);
  transition: color .4s var(--ease);
}
.qa__q:hover { color: #fff; }
.qa__q:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 4px; }
.qa__pm { position: relative; width: 24px; height: 24px; flex: none; }
.qa__pm::before, .qa__pm::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 15px; height: 2px; background: var(--ink); transform: translate(-50%, -50%);
  transition: transform .45s var(--ease);
}
.qa__pm::after { transform: translate(-50%, -50%) rotate(90deg); }
.qa.open .qa__pm::after { transform: translate(-50%, -50%) rotate(0); opacity: 0; }
.qa__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s var(--ease); }
.qa.open .qa__a { grid-template-rows: 1fr; }
.qa__ain { overflow: hidden; }
.qa__a p { margin: 0; padding: 0 0 clamp(22px, 2.4vw, 30px); color: var(--mute); font-size: clamp(15px, 1.3vw, 17px); line-height: 1.65; max-width: 58ch; }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  padding: clamp(110px, 16vh, 200px) 0;
  text-align: center;
}
.cta__eyebrow { justify-content: center; margin-bottom: clamp(22px, 3vw, 34px); }
.cta h2 {
  margin: 0 auto;
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 7rem);
  line-height: .92;
  letter-spacing: -.05em;
  max-width: 16ch;
}
.cta__row {
  margin-top: clamp(34px, 4.5vh, 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta__contact {
  margin-top: clamp(40px, 6vh, 80px);
  display: flex; align-items: center; justify-content: center; gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--mute);
}
.cta__contact a { position: relative; transition: color .4s var(--ease); white-space: nowrap; }
.cta__contact a:hover { color: var(--ink); }
.cta__contact span { white-space: nowrap; }
