:root {
  --ink: #07111a;
  --ink-2: #0c1822;
  --ink-3: #112332;
  --paper: #f3f0e9;
  --paper-2: #e8e5dd;
  --text: #f4f8f7;
  --muted: #a8b8c1;
  --dark-text: #12232d;
  --dark-muted: #5c6b72;
  --mint: #63e6d2;
  --gold: #f2c66d;
  --blue: #7db4ff;
  --coral: #ff927d;
  --line: rgba(176, 214, 223, 0.18);
  --dark-line: rgba(18, 35, 45, 0.14);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  --shell: min(1280px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--mint);
  color: var(--ink);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}
.site-header.is-scrolled {
  background: rgba(7, 17, 26, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(20px);
}
.header-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 500; letter-spacing: -0.02em; }
.brand img { border-radius: 12px; box-shadow: 0 0 28px rgba(99, 230, 210, 0.14); }
.brand b { font-weight: 800; }
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a { padding: 10px 13px; color: #c7d2d7; text-decoration: none; font-size: 13px; font-weight: 700; border-radius: 10px; transition: color 180ms ease, background 180ms ease; }
.site-nav a:hover { color: white; background: rgba(255, 255, 255, 0.05); }
.site-nav .nav-cta { margin-left: 6px; padding: 11px 17px; background: var(--mint); color: var(--ink); }
.site-nav .nav-cta:hover { color: var(--ink); background: #8ff0e0; }
.menu-button { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); background: rgba(255,255,255,.04); border-radius: 12px; }
.menu-button > span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 4px auto; background: white; transition: transform 180ms ease, opacity 180ms ease; }

.hero { position: relative; min-height: 780px; padding: 150px 0 90px; overflow: hidden; isolation: isolate; }
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.18;
  background-image: linear-gradient(rgba(125,180,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(125,180,255,.16) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 85%);
}
.hero-glow { position: absolute; z-index: -2; border-radius: 50%; filter: blur(90px); opacity: .18; }
.hero-glow-one { width: 520px; height: 520px; left: -240px; top: 180px; background: var(--mint); }
.hero-glow-two { width: 460px; height: 460px; right: -100px; top: 90px; background: var(--blue); }
.hero-layout { display: grid; grid-template-columns: .96fr 1.04fr; gap: 72px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: var(--mint); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow > span { width: 26px; height: 1px; background: currentColor; }
.eyebrow-dark { color: #137d73; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.052em; line-height: .98; }
h1 { max-width: 760px; margin-bottom: 28px; font-size: clamp(58px, 6.1vw, 86px); font-weight: 800; }
h1 em, h2 em { color: var(--gold); font-family: "Instrument Serif", Georgia, serif; font-weight: 400; }
.hero-lead { max-width: 650px; margin-bottom: 30px; color: #bdc9ce; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 14px 20px; border: 1px solid transparent; border-radius: 13px; text-decoration: none; font-size: 14px; font-weight: 800; cursor: pointer; transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--mint); color: var(--ink); box-shadow: 0 12px 34px rgba(99,230,210,.15); }
.button-primary:hover { background: #8ff0e0; box-shadow: 0 16px 42px rgba(99,230,210,.22); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.035); color: white; }
.button-ghost:hover { border-color: rgba(99,230,210,.55); background: rgba(99,230,210,.06); }
.capability-list { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 0; padding: 0; list-style: none; color: #9fb0b8; font-size: 12px; font-weight: 700; }
.capability-list li { display: flex; align-items: center; gap: 8px; }
.capability-list li::before { content: ""; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

.system-stage { position: relative; min-height: 570px; padding: 22px; border: 1px solid rgba(125,180,255,.23); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(17,35,50,.9), rgba(7,17,26,.68)); box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.05); overflow: hidden; }
.system-stage::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; background: linear-gradient(145deg, rgba(99,230,210,.17), transparent 30%, transparent 70%, rgba(242,198,109,.13)); pointer-events: none; }
.stage-topline { position: relative; display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--line); color: #80939d; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.stage-topline > div { display: flex; align-items: center; gap: 8px; color: var(--mint); }
.live-dot { width: 7px; height: 7px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 0 5px rgba(99,230,210,.1); }
.stage-message { position: relative; padding: 24px 4px 16px; }
.stage-message span { display: block; margin-bottom: 5px; color: #7f929c; font-size: 11px; }
.stage-message strong { font-size: 20px; letter-spacing: -.03em; }
.route-map { position: relative; height: 360px; margin: 4px 0 18px; border: 1px solid var(--line); border-radius: 20px; background: rgba(4,12,18,.55); overflow: hidden; }
.route-map::before { content: ""; position: absolute; inset: 0; opacity: .24; background-image: radial-gradient(rgba(125,180,255,.35) .8px, transparent .8px); background-size: 19px 19px; }
.route-line { position: absolute; border: 1px dashed rgba(99,230,210,.35); }
.route-line-a { left: 25%; top: 28%; width: 50%; height: 46%; border-left: 0; border-right: 0; }
.route-line-b { left: 50%; top: 28%; height: 46%; border-top: 0; border-bottom: 0; }
.route-node { position: absolute; z-index: 2; width: 178px; min-height: 98px; padding: 14px; border: 1px solid rgba(176,214,223,.2); border-radius: 14px; background: rgba(17,35,50,.94); box-shadow: 0 12px 30px rgba(0,0,0,.24); }
.route-node b, .route-node small, .node-kicker { display: block; }
.node-kicker { margin-bottom: 7px; color: var(--mint); font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.route-node b { margin-bottom: 3px; font-size: 13px; }
.route-node small { color: #82959e; font-size: 10px; }
.node-site { top: 20px; left: 20px; }
.node-intake { top: 20px; right: 20px; }
.node-ops { left: 20px; bottom: 20px; }
.node-follow { right: 20px; bottom: 20px; }
.node-intake .node-kicker { color: var(--blue); }
.node-ops .node-kicker { color: var(--gold); }
.node-follow .node-kicker { color: var(--coral); }
.mini-bars { display: flex; align-items: end; gap: 4px; height: 22px; margin-top: 9px; }
.mini-bars i { flex: 1; height: 55%; background: var(--gold); border-radius: 2px 2px 0 0; opacity: .8; }
.mini-bars i:nth-child(2) { height: 80%; }.mini-bars i:nth-child(3) { height: 42%; }.mini-bars i:nth-child(4) { height: 100%; }
.route-pulse { position: absolute; z-index: 3; width: 9px; height: 9px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 6px rgba(99,230,210,.08), 0 0 20px var(--mint); }
.pulse-one { left: 48%; top: 27%; animation: routePulseA 7s linear infinite; }
.pulse-two { left: 48%; bottom: 25%; background: var(--gold); animation: routePulseB 8s linear infinite; }
.stage-footer { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.stage-footer span { padding: 12px; border: 1px solid var(--line); border-radius: 11px; color: #81949d; font-size: 9px; text-transform: uppercase; letter-spacing: .07em; }
.stage-footer b { display: block; margin-bottom: 2px; color: white; font-size: 18px; letter-spacing: -.04em; }
@keyframes routePulseA { 0% { transform: translateX(-155px); } 48% { transform: translateX(155px); } 52% { transform: translate(155px, 165px); } 100% { transform: translate(-155px,165px); } }
@keyframes routePulseB { 0% { transform: translateX(155px); } 48% { transform: translateX(-155px); } 52% { transform: translate(-155px,-165px); } 100% { transform: translate(155px,-165px); } }

.outcome-ribbon { border-block: 1px solid var(--line); background: #09141d; }
.outcome-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.outcome-grid article { display: flex; align-items: center; gap: 16px; padding: 25px 30px; border-right: 1px solid var(--line); }
.outcome-grid article:first-child { border-left: 1px solid var(--line); }
.outcome-grid article > span { color: var(--gold); font-family: "Instrument Serif", Georgia, serif; font-size: 28px; }
.outcome-grid b, .outcome-grid small { display: block; }
.outcome-grid b { font-size: 13px; }
.outcome-grid small { margin-top: 2px; color: #82959e; font-size: 10px; }

.section { position: relative; padding: 112px 0; }
.section-light, .section-porcelain { background: var(--paper); color: var(--dark-text); }
.section-porcelain { background: #e9e6de; }
.section-heading { margin-bottom: 52px; }
.split-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 80px; align-items: end; }
.section-heading h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(42px, 4.5vw, 62px); font-weight: 750; }
.section-heading > p { max-width: 460px; margin-bottom: 0; color: var(--dark-muted); font-size: 16px; line-height: 1.75; }
.section-heading-dark > p { color: var(--muted); }
.section-heading-dark h2 { color: white; }
.centered-heading { max-width: 820px; margin-inline: auto; text-align: center; }
.centered-heading .eyebrow { justify-content: center; }
.centered-heading h2 { margin-inline: auto; }
.centered-heading > p { max-width: 660px; margin: 24px auto 0; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.service-card { position: relative; min-height: 480px; padding: 30px; border: 1px solid var(--dark-line); border-radius: var(--radius); background: rgba(255,255,255,.38); overflow: hidden; transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease; }
.service-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.7); box-shadow: 0 20px 48px rgba(18,35,45,.09); }
.service-card-featured { background: var(--ink-2); color: white; border-color: var(--ink-2); }
.service-card-featured:hover { background: #10212d; }
.service-number { position: absolute; top: 22px; right: 26px; color: rgba(18,35,45,.08); font-family: "Instrument Serif", Georgia, serif; font-size: 72px; line-height: 1; }
.service-card-featured .service-number { color: rgba(255,255,255,.07); }
.service-label { margin-bottom: 22px; color: #167d73; font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.service-card h3 { position: relative; max-width: 260px; margin-bottom: 18px; font-size: 26px; line-height: 1.15; letter-spacing: -.035em; }
.service-card > p:not(.service-label) { color: var(--dark-muted); font-size: 14px; }
.service-card-featured > p:not(.service-label) { color: var(--muted); }
.service-card ul { margin: 26px 0 28px; padding: 0; list-style: none; }
.service-card li { position: relative; padding: 9px 0 9px 23px; border-top: 1px solid var(--dark-line); color: #344850; font-size: 12px; }
.service-card-featured li { color: #c7d1d5; border-color: var(--line); }
.service-card li::before { content: "↗"; position: absolute; left: 0; color: #16877b; font-weight: 800; }
.best-for { position: absolute; inset: auto 30px 26px; padding-top: 18px; border-top: 1px solid var(--dark-line); color: var(--dark-muted); font-size: 11px; }
.best-for span { display: block; color: var(--dark-text); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.service-card-featured .best-for { border-color: var(--line); color: #98a9b1; }
.service-card-featured .best-for span { color: var(--gold); }
.path-finder { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 30px; align-items: center; margin-top: 24px; padding: 30px; border: 1px solid var(--dark-line); border-radius: var(--radius); background: #dedbd2; }
.path-finder h3 { max-width: 340px; margin-bottom: 0; font-size: 22px; line-height: 1.25; letter-spacing: -.035em; }
.path-finder .eyebrow { margin-bottom: 10px; font-size: 9px; }
.path-controls { display: flex; flex-direction: column; gap: 7px; }
.path-choice { min-height: 44px; padding: 10px 14px; border: 1px solid rgba(18,35,45,.16); border-radius: 10px; background: transparent; color: #42545b; text-align: left; font-size: 11px; font-weight: 700; cursor: pointer; }
.path-choice:hover, .path-choice.is-active { border-color: var(--dark-text); background: var(--dark-text); color: white; }
.path-result { min-height: 160px; padding: 22px; border-radius: 15px; background: var(--paper); }
.path-result span { display: block; margin-bottom: 8px; color: #16877b; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.path-result b { font-size: 18px; }
.path-result p { margin: 10px 0 0; color: var(--dark-muted); font-size: 11px; }

.studio-section { background: var(--ink); overflow: hidden; }
.studio-aura { position: absolute; width: 860px; height: 520px; left: 50%; top: 340px; transform: translateX(-50%); border-radius: 50%; background: rgba(41,127,119,.18); filter: blur(120px); }
.studio-shell { position: relative; border: 1px solid rgba(176,214,223,.22); border-radius: 24px; background: #0a151e; box-shadow: 0 32px 100px rgba(0,0,0,.35); overflow: hidden; }
.studio-chrome { min-height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; border-bottom: 1px solid var(--line); background: #0e1b25; }
.chrome-brand { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 800; }
.chrome-brand img { border-radius: 9px; }
.chrome-status { display: flex; align-items: center; gap: 8px; color: #8da0a9; font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.chrome-status i { width: 7px; height: 7px; background: var(--mint); border-radius: 50%; }
.chrome-status button { min-height: 36px; margin-left: 9px; padding: 6px 12px; border: 1px solid var(--line); border-radius: 8px; background: transparent; color: white; font-size: 9px; font-weight: 800; cursor: pointer; }
.studio-body { min-height: 680px; display: grid; grid-template-columns: 220px 1fr; }
.studio-rail { padding: 22px 14px; border-right: 1px solid var(--line); background: #0b171f; }
.studio-rail > p { margin: 0 10px 12px; color: #667b85; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.studio-tabs { display: flex; flex-direction: column; gap: 6px; }
.studio-tab { min-height: 72px; display: grid; grid-template-columns: 34px 1fr; grid-template-rows: 1fr 1fr; gap: 0 9px; align-items: end; padding: 10px; border: 1px solid transparent; border-radius: 11px; background: transparent; color: #b3c0c6; text-align: left; cursor: pointer; transition: background 160ms ease, border-color 160ms ease; }
.studio-tab > span { grid-row: 1 / 3; width: 34px; height: 34px; display: grid; place-items: center; align-self: center; border: 1px solid var(--line); border-radius: 9px; color: #89a0aa; font-size: 9px; font-weight: 800; }
.studio-tab b { align-self: end; font-size: 11px; }
.studio-tab small { align-self: start; color: #667a83; font-size: 8px; }
.studio-tab:hover { background: rgba(255,255,255,.03); }
.studio-tab.is-active { border-color: rgba(99,230,210,.2); background: rgba(99,230,210,.07); color: white; }
.studio-tab.is-active > span { border-color: rgba(99,230,210,.3); background: rgba(99,230,210,.09); color: var(--mint); }
.studio-build-link { display: flex; justify-content: space-between; gap: 8px; margin: 20px 7px 0; padding: 14px 8px 0; border-top: 1px solid var(--line); color: var(--mint); text-decoration: none; font-size: 9px; font-weight: 800; }
.demo-panel { min-width: 0; padding: 24px; background: #eff1ed; color: var(--dark-text); }
.demo-loading { min-height: 560px; display: grid; place-items: center; color: #68777d; font-size: 12px; }
.studio-note { display: flex; align-items: center; gap: 8px; margin: 16px 3px 0; color: #71868f; font-size: 9px; }
.studio-note span { width: 6px; height: 6px; background: var(--mint); border-radius: 50%; }

/* Shared live-demo UI */
.demo-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 20px; }
.demo-title span { display: block; margin-bottom: 5px; color: #198075; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.demo-title h3 { margin: 0; font-size: 23px; line-height: 1.1; letter-spacing: -.04em; }
.demo-title p { margin: 6px 0 0; color: #66777e; font-size: 10px; }
.demo-actions { display: flex; gap: 7px; flex-wrap: wrap; justify-content: flex-end; }
.demo-button { min-height: 38px; padding: 8px 12px; border: 1px solid rgba(18,35,45,.16); border-radius: 9px; background: white; color: var(--dark-text); font-size: 9px; font-weight: 800; cursor: pointer; }
.demo-button:hover { border-color: #17867b; }
.demo-button.primary { border-color: var(--dark-text); background: var(--dark-text); color: white; }
.demo-button.mint { border-color: #16877b; background: #16877b; color: white; }
.demo-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; margin-bottom: 14px; }
.demo-kpi { padding: 14px; border: 1px solid rgba(18,35,45,.09); border-radius: 11px; background: rgba(255,255,255,.76); }
.demo-kpi span { display: block; margin-bottom: 8px; color: #718087; font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.demo-kpi strong { font-size: 22px; letter-spacing: -.05em; }
.demo-kpi small { margin-left: 5px; color: #188276; font-size: 8px; }
.demo-grid { display: grid; grid-template-columns: 1.55fr .8fr; gap: 12px; }
.demo-card { border: 1px solid rgba(18,35,45,.1); border-radius: 12px; background: white; overflow: hidden; }
.demo-card-head { min-height: 46px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 14px; border-bottom: 1px solid rgba(18,35,45,.08); }
.demo-card-head b { font-size: 10px; }
.demo-card-head span { color: #718087; font-size: 8px; }
.demo-toolbar { display: flex; gap: 7px; flex-wrap: wrap; padding: 10px; border-bottom: 1px solid rgba(18,35,45,.08); background: #f7f7f4; }
.demo-input, .demo-select { min-height: 36px; padding: 7px 10px; border: 1px solid rgba(18,35,45,.14); border-radius: 8px; background: white; color: var(--dark-text); font-size: 9px; }
.demo-input { min-width: 170px; flex: 1; }
.demo-table { width: 100%; border-collapse: collapse; font-size: 9px; }
.demo-table th { padding: 10px 12px; color: #74848b; background: #f9f9f6; text-align: left; font-size: 7px; letter-spacing: .06em; text-transform: uppercase; }
.demo-table td { padding: 11px 12px; border-top: 1px solid rgba(18,35,45,.07); color: #43555c; }
.demo-table tr:hover td { background: #fbfcfa; }
.demo-link-button { padding: 0; border: 0; background: transparent; color: var(--dark-text); text-align: left; font-weight: 800; cursor: pointer; }
.status-pill { display: inline-flex; align-items: center; gap: 5px; padding: 4px 7px; border-radius: 100px; background: #edf4f1; color: #17776e; font-size: 7px; font-weight: 800; }
.status-pill::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.status-pill.gold { background: #faf2df; color: #946d18; }
.status-pill.red { background: #fae8e4; color: #aa4937; }
.progress-track { width: 80px; height: 5px; border-radius: 20px; background: #e4e7e3; overflow: hidden; }
.progress-track i { display: block; height: 100%; border-radius: inherit; background: #16877b; }
.activity-list, .action-list, .milestone-list, .file-list { margin: 0; padding: 0; list-style: none; }
.activity-list li, .action-list li, .milestone-list li, .file-list li { display: flex; gap: 9px; padding: 11px 13px; border-top: 1px solid rgba(18,35,45,.07); color: #4c5f66; font-size: 9px; }
.activity-list li:first-child, .action-list li:first-child { border-top: 0; }
.activity-list i { flex: 0 0 auto; width: 7px; height: 7px; margin-top: 4px; background: #16877b; border-radius: 50%; }
.activity-list small { display: block; color: #87949a; font-size: 7px; }
.queue-badge { min-width: 22px; height: 22px; display: grid; place-items: center; margin-left: auto; border-radius: 7px; background: #f2f0ea; font-size: 8px; font-weight: 800; }
.empty-state { padding: 40px 20px; color: #78888e; text-align: center; font-size: 10px; }
.timeline-list { padding: 14px; }
.timeline-row { display: grid; grid-template-columns: 120px 1fr 38px; gap: 9px; align-items: center; margin: 11px 0; font-size: 8px; }
.timeline-track { height: 10px; border-radius: 10px; background: #eceeea; overflow: hidden; }
.timeline-bar { height: 100%; border-radius: inherit; background: linear-gradient(90deg,#16877b,#63e6d2); }

.portal-welcome { position: relative; padding: 22px; border-radius: 14px; background: linear-gradient(120deg,#112b36,#163f45); color: white; overflow: hidden; }
.portal-welcome::after { content: ""; position: absolute; width: 180px; height: 180px; right: -60px; top: -80px; border: 1px solid rgba(99,230,210,.18); border-radius: 50%; box-shadow: 0 0 0 30px rgba(99,230,210,.04), 0 0 0 60px rgba(99,230,210,.03); }
.portal-welcome span { color: var(--mint); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.portal-welcome h4 { max-width: 380px; margin: 7px 0 8px; font-size: 20px; line-height: 1.2; }
.portal-welcome p { max-width: 440px; margin: 0; color: #bbcbcf; font-size: 9px; }
.quick-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 12px; }
.quick-card { min-height: 86px; padding: 13px; border: 1px solid rgba(18,35,45,.1); border-radius: 11px; background: white; }
.quick-card span { display: grid; width: 28px; height: 28px; place-items: center; margin-bottom: 8px; border-radius: 8px; background: #e7f6f2; color: #167b71; font-size: 10px; font-weight: 800; }
.quick-card b { display: block; font-size: 9px; }
.quick-card small { color: #74858c; font-size: 7px; }
.check-item { display: flex; align-items: center; gap: 9px; width: 100%; padding: 11px 13px; border: 0; border-top: 1px solid rgba(18,35,45,.07); background: white; color: #41535a; text-align: left; font-size: 9px; cursor: pointer; }
.check-item i { width: 17px; height: 17px; display: grid; place-items: center; border: 1px solid rgba(18,35,45,.2); border-radius: 5px; font-style: normal; }
.check-item.done { color: #7a898f; text-decoration: line-through; }.check-item.done i { background: #16877b; color: white; border-color: #16877b; }

.request-trends { display: flex; align-items: end; gap: 8px; height: 130px; padding: 17px 14px 10px; }
.trend-bar { flex: 1; position: relative; min-width: 20px; height: var(--bar); border-radius: 6px 6px 2px 2px; background: linear-gradient(#7db4ff,#326fbd); }
.trend-bar::after { content: attr(data-label); position: absolute; left: 50%; bottom: -17px; transform: translateX(-50%); color: #7b8b92; font-size: 7px; }
.filter-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-pill { min-height: 34px; padding: 7px 10px; border: 1px solid rgba(18,35,45,.12); border-radius: 100px; background: white; color: #52656c; font-size: 8px; font-weight: 700; cursor: pointer; }.filter-pill.is-active { background: var(--dark-text); color: white; }

.service-preview { border-radius: 14px; background: #fffaf1; overflow: hidden; }
.service-preview-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 17px; background: #17393b; color: white; }
.service-preview-head b { font-family: "Instrument Serif", Georgia, serif; font-size: 16px; font-weight: 400; }.service-preview-head span { font-size: 8px; }
.service-hero-mini { display: grid; grid-template-columns: 1.15fr .85fr; gap: 16px; align-items: center; padding: 24px; background: #fff9ee; }
.service-hero-mini small { color: #ba7f34; font-size: 7px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.service-hero-mini h4 { margin: 6px 0 8px; font-family: "Instrument Serif", Georgia, serif; font-size: 30px; font-weight: 400; line-height: .95; color: #17393b; }
.service-hero-mini p { margin: 0; color: #6d746e; font-size: 8px; }
.service-photo { min-height: 140px; border-radius: 12px; background: linear-gradient(145deg,rgba(99,230,210,.4),rgba(23,57,59,.95)), radial-gradient(circle at 30% 20%,#f2c66d,transparent 30%); position: relative; overflow: hidden; }
.service-photo::before, .service-photo::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; }.service-photo::before { width: 150px;height:150px;right:-50px;top:-40px; }.service-photo::after { width: 90px;height:90px;left:-20px;bottom:-30px; }
.estimator { display: grid; grid-template-columns: 1fr .82fr; gap: 12px; margin-top: 12px; }
.estimator-controls { padding: 15px; border: 1px solid rgba(18,35,45,.1); border-radius: 12px; background: white; }
.estimator-controls fieldset { margin: 0 0 13px; padding: 0; border: 0; }.estimator-controls legend { margin-bottom: 7px; font-size: 8px; font-weight: 800; }
.option-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.option-button { min-height: 46px; padding: 6px; border: 1px solid rgba(18,35,45,.12); border-radius: 8px; background: white; color: #52636a; font-size: 8px; cursor: pointer; }.option-button.is-active { border-color: #167d73; background: #e9f6f3; color: #126b63; font-weight: 800; }
.addon-list label { display: flex; align-items: center; gap: 7px; padding: 5px 0; color: #506169; font-size: 8px; }.addon-list input { accent-color: #16877b; }
.estimate-card { padding: 18px; border-radius: 12px; background: #17393b; color: white; }.estimate-card > span { color: #a4c6c3; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }.estimate-card strong { display: block; margin: 9px 0 3px; font-family: "Instrument Serif", Georgia, serif; font-size: 30px; font-weight: 400; }.estimate-card p { color: #b8cecc; font-size: 8px; }.estimate-card .demo-button { width: 100%; margin-top: 10px; }
.faq-mini { margin-top: 12px; }.faq-button { width: 100%; display: flex; justify-content: space-between; padding: 10px 0; border: 0; border-top: 1px solid rgba(18,35,45,.11); background: transparent; color: var(--dark-text); text-align: left; font-size: 8px; font-weight: 800; cursor: pointer; }.faq-answer { display: none; padding: 0 0 10px; color: #66777e; font-size: 8px; }.faq-item.is-open .faq-answer { display: block; }

.system-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 12px; align-items: center; margin-bottom: 54px; }
.system-flow article { min-height: 150px; padding: 22px; border: 1px solid var(--dark-line); border-radius: var(--radius-sm); background: rgba(255,255,255,.4); }
.system-flow article span, .system-flow article b, .system-flow article small { display: block; }
.system-flow article span { margin-bottom: 22px; color: #188177; font-size: 9px; font-weight: 800; }
.system-flow article b { margin-bottom: 7px; font-size: 17px; }
.system-flow article small { color: var(--dark-muted); font-size: 10px; }
.system-flow > i { color: #8d9999; font-style: normal; }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.process-card { padding: 28px; border-top: 1px solid var(--dark-text); background: rgba(255,255,255,.2); }
.process-card > span { color: #67767d; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.process-icon { width: 54px; height: 54px; display: grid; place-items: center; margin: 30px 0; border: 1px solid var(--dark-line); border-radius: 50%; color: #138177; font-size: 20px; }
.process-card h3 { margin-bottom: 10px; font-size: 22px; letter-spacing: -.035em; }.process-card p { margin: 0; color: var(--dark-muted); font-size: 12px; }

.pricing-section { background: #0a151e; overflow: hidden; }
.pricing-section::before { content: ""; position: absolute; width: 700px; height: 700px; right: -350px; top: -350px; border: 1px solid var(--line); border-radius: 50%; box-shadow: 0 0 0 80px rgba(125,180,255,.025), 0 0 0 160px rgba(125,180,255,.018); }
.pricing-grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.price-card { min-height: 330px; display: flex; flex-direction: column; padding: 25px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.025); }
.price-card > span { color: var(--mint); font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }.price-card h3 { min-height: 55px; margin: 18px 0 25px; font-size: 20px; line-height: 1.2; }.price-card strong { padding: 20px 0; border-block: 1px solid var(--line); font-size: 30px; letter-spacing: -.05em; }.price-card strong small { color: #7f929b; font-size: 9px; letter-spacing: 0; text-transform: uppercase; }.price-card p { margin: auto 0 0; color: #95a7af; font-size: 11px; }.price-card-accent { border-color: rgba(242,198,109,.4); background: linear-gradient(145deg,rgba(242,198,109,.09),rgba(255,255,255,.02)); }.price-card-accent > span { color: var(--gold); }
.support-band { display: flex; justify-content: space-between; gap: 20px; margin-top: 14px; padding: 20px 24px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.025); }.support-band span { color: var(--gold); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }.support-band b { color: #c5d0d4; font-size: 11px; }

.contact-section { background: var(--ink); overflow: hidden; }
.contact-orbit { position: absolute; width: 720px; height: 720px; left: -420px; top: -180px; border: 1px solid rgba(99,230,210,.12); border-radius: 50%; box-shadow: 0 0 0 80px rgba(99,230,210,.025), 0 0 0 160px rgba(99,230,210,.018); }
.contact-layout { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.contact-copy h2 { max-width: 600px; margin-bottom: 24px; font-size: clamp(44px,5vw,66px); }.contact-copy > p:not(.eyebrow) { max-width: 560px; color: var(--muted); font-size: 16px; }.next-list { margin: 36px 0; padding: 0; list-style: none; }.next-list li { display: flex; gap: 16px; padding: 17px 0; border-top: 1px solid var(--line); }.next-list > li > span { color: var(--gold); font-family: "Instrument Serif",Georgia,serif; font-size: 22px; }.next-list b,.next-list small { display: block; }.next-list b { font-size: 12px; }.next-list small { margin-top: 3px; color: #82959e; font-size: 9px; }.email-link { color: var(--mint); text-decoration: none; font-size: 11px; font-weight: 800; }
.contact-card { padding: 30px; border: 1px solid rgba(176,214,223,.22); border-radius: var(--radius); background: #0e1c26; box-shadow: var(--shadow); }.form-intro { margin-bottom: 23px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }.form-intro span,.form-intro b { display: block; }.form-intro span { margin-bottom: 5px; color: var(--mint); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }.form-intro b { font-size: 18px; }.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }.contact-card label:not(.consent) { display: block; margin-bottom: 13px; }.contact-card label > span { display: flex; justify-content: space-between; margin-bottom: 6px; color: #b8c5ca; font-size: 9px; font-weight: 700; }.contact-card label small { color: #647983; font-size: 8px; }.contact-card input:not([type=checkbox]), .contact-card select, .contact-card textarea { width: 100%; min-height: 47px; padding: 11px 12px; border: 1px solid rgba(176,214,223,.16); border-radius: 9px; background: #09151e; color: white; font-size: 11px; outline: none; transition: border-color 160ms ease, box-shadow 160ms ease; }.contact-card textarea { resize: vertical; }.contact-card input:focus, .contact-card select:focus, .contact-card textarea:focus { border-color: var(--mint); box-shadow: 0 0 0 3px rgba(99,230,210,.08); }.contact-card select { color-scheme: dark; }.contact-card textarea::placeholder { color: #536872; }.consent { display: flex; align-items: flex-start; gap: 9px; margin: 16px 0; color: #94a6ae; font-size: 9px; }.consent input { margin-top: 2px; accent-color: var(--mint); }.form-submit { width: 100%; border: 0; }.form-status { margin: 10px 0 0; color: #748992; text-align: center; font-size: 8px; }.honeypot { position: absolute; left: -9999px; }

.site-footer { padding: 42px 0; border-top: 1px solid var(--line); background: #050c12; }.footer-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 24px 40px; align-items: center; }.footer-inner > p { margin: 0; color: #82949d; font-size: 10px; }.footer-links { display: flex; gap: 18px; }.footer-links a { color: #a6b5bb; text-decoration: none; font-size: 9px; font-weight: 700; }.footer-links a:hover { color: var(--mint); }.footer-inner > small { grid-column: 1/-1; padding-top: 22px; border-top: 1px solid var(--line); color: #52656e; font-size: 8px; }

.demo-dialog { width: min(560px,calc(100% - 32px)); max-height: calc(100dvh - 40px); padding: 0; border: 1px solid rgba(176,214,223,.25); border-radius: 18px; background: #f5f4ef; color: var(--dark-text); box-shadow: 0 35px 100px rgba(0,0,0,.45); }.demo-dialog::backdrop { background: rgba(3,9,14,.78); backdrop-filter: blur(7px); }.dialog-head { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid var(--dark-line); }.dialog-head span { color: #168177; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }.dialog-head h3 { margin: 3px 0 0; font-size: 20px; }.dialog-head button { width: 40px; height: 40px; border: 1px solid var(--dark-line); border-radius: 10px; background: white; color: var(--dark-text); font-size: 22px; cursor: pointer; }.dialog-content,.demo-dialog form { padding: 20px; }.dialog-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }.demo-dialog label { display: block; margin-bottom: 12px; color: #52646b; font-size: 9px; font-weight: 700; }.demo-dialog input,.demo-dialog select,.demo-dialog textarea { width: 100%; min-height: 42px; display: block; margin-top: 5px; padding: 9px 10px; border: 1px solid var(--dark-line); border-radius: 8px; background: white; color: var(--dark-text); font-size: 10px; }.dialog-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 18px; }
.toast { position: fixed; z-index: 300; right: 20px; bottom: 20px; max-width: 320px; padding: 14px 18px; border: 1px solid rgba(99,230,210,.3); border-radius: 11px; background: #112932; color: white; box-shadow: var(--shadow); font-size: 10px; font-weight: 700; opacity: 0; transform: translateY(20px); pointer-events: none; transition: opacity 180ms ease, transform 180ms ease; }.toast.is-visible { opacity: 1; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(8px); transition: opacity 520ms ease, transform 520ms ease; }.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .hero-layout { gap: 38px; }
  .system-stage { min-height: 530px; }
  .route-map { height: 325px; }
  .route-node { width: 145px; }
  .studio-body { grid-template-columns: 190px 1fr; }
  .demo-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .contact-layout { gap: 50px; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 34px, 720px); }
  .menu-button { display: block; }
  .menu-button[aria-expanded=true] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded=true] > span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded=true] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 78px 0 auto; max-height: calc(100dvh - 78px); display: none; flex-direction: column; align-items: stretch; gap: 3px; padding: 20px; border-bottom: 1px solid var(--line); background: rgba(7,17,26,.98); }
  .site-nav.is-open { display: flex; }.site-nav a { min-height: 48px; display: flex; align-items: center; padding-inline: 16px; }.site-nav .nav-cta { justify-content: center; margin: 8px 0 0; }
  .hero { min-height: auto; padding-top: 132px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; }
  .system-stage { width: 100%; max-width: 640px; justify-self: center; }
  .outcome-grid { grid-template-columns: 1fr; }.outcome-grid article { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }.outcome-grid article:last-child { border-bottom: 0; }
  .section { padding: 86px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .service-grid { grid-template-columns: 1fr; }.service-card { min-height: 430px; }
  .path-finder { grid-template-columns: 1fr; }
  .path-controls { flex-direction: row; flex-wrap: wrap; }.path-choice { flex: 1 1 160px; }
  .studio-body { grid-template-columns: 1fr; }.studio-rail { padding: 12px; border-right: 0; border-bottom: 1px solid var(--line); }.studio-rail > p { display: none; }.studio-tabs { display: grid; grid-template-columns: repeat(4,1fr); }.studio-tab { min-height: 68px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; text-align: center; }.studio-tab > span { display: none; }.studio-tab small { display: none; }.studio-build-link { display: none; }.studio-body { min-height: 0; }
  .demo-panel { padding: 18px; }
  .system-flow { grid-template-columns: 1fr 1fr; }.system-flow > i { display: none; }
  .process-grid { grid-template-columns: 1fr; }.process-card { min-height: 260px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-copy { max-width: 680px; }
  .footer-inner { grid-template-columns: 1fr; }.footer-links { flex-wrap: wrap; }.footer-inner > small { grid-column: auto; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); }
  .header-inner { height: 70px; }.site-nav { top: 70px; max-height: calc(100dvh - 70px); }.brand span { font-size: 14px; }
  .hero { padding: 120px 0 70px; }.hero h1 { font-size: clamp(52px,15vw,72px); }.hero-lead { font-size: 16px; }.hero-actions { flex-direction: column; }.hero-actions .button { width: 100%; }.capability-list { gap: 8px 12px; }
  .system-stage { min-height: 610px; padding: 16px; }.stage-message strong { font-size: 17px; }.route-map { height: 410px; }.route-node { width: calc(100% - 34px); min-height: 80px; }.node-site { left: 17px; top: 17px; }.node-intake { left: 17px; right: auto; top: 112px; }.node-ops { left: 17px; bottom: 112px; }.node-follow { left: 17px; right: auto; bottom: 17px; }.route-line,.route-pulse { display: none; }.stage-footer { grid-template-columns: repeat(3,1fr); }.stage-footer span { padding: 9px; font-size: 7px; }.stage-footer b { font-size: 15px; }
  .section-heading h2 { font-size: 42px; }.section-heading { margin-bottom: 38px; }
  .service-card { padding: 24px; }.best-for { left: 24px; right: 24px; }
  .path-finder { padding: 22px; }
  .studio-shell { border-radius: 16px; }.studio-chrome { padding: 10px 12px; }.chrome-status { font-size: 0; }.chrome-status i { margin-right: 2px; }.studio-tabs { grid-template-columns: repeat(2,1fr); }.demo-panel { padding: 12px; }.demo-head { flex-direction: column; }.demo-actions { justify-content: flex-start; }.demo-kpis { grid-template-columns: repeat(2,1fr); }.demo-table thead { display: none; }.demo-table,.demo-table tbody,.demo-table tr,.demo-table td { display: block; }.demo-table tr { margin: 8px; padding: 8px; border: 1px solid rgba(18,35,45,.09); border-radius: 9px; }.demo-table td { display: flex; justify-content: space-between; gap: 10px; padding: 6px; border: 0; }.demo-table td::before { content: attr(data-label); color: #7b8b91; font-size: 7px; text-transform: uppercase; }.progress-track { width: 100px; }.quick-grid { grid-template-columns: 1fr; }.service-hero-mini,.estimator { grid-template-columns: 1fr; }.option-grid { grid-template-columns: 1fr 1fr; }
  .system-flow { grid-template-columns: 1fr; }.system-flow article { min-height: 130px; }
  .pricing-grid { grid-template-columns: 1fr; }.price-card { min-height: 285px; }.support-band { flex-direction: column; }
  .contact-card { padding: 21px; }.form-row { grid-template-columns: 1fr; }.dialog-form-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
