:root {
  color-scheme: dark;
  --space: #07090d;
  --space-2: #0b0e13;
  --panel: #11151b;
  --panel-2: #161b22;
  --panel-3: #1b2129;
  --lunar: #f2efe7;
  --lunar-2: #e7e2d8;
  --regolith: #a7a39a;
  --muted: #777b80;
  --line: rgba(242, 239, 231, .14);
  --line-strong: rgba(242, 239, 231, .25);
  --signal: #d94b3d;
  --signal-hover: #ef5a49;
  --amber: #d59a32;
  --green: #79a881;
  --paper: #f1eee6;
  --paper-2: #e8e3d9;
  --paper-ink: #17191c;
  --paper-muted: #606268;
  --paper-line: rgba(23, 25, 28, .16);
  --max: 1180px;
  --radius: 18px;
  --radius-sm: 11px;
  --shadow: 0 30px 80px rgba(0, 0, 0, .34);
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", "SF Mono", ui-monospace, Menlo, Monaco, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--space);
  color: var(--lunar);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body, button, input, textarea { font-family: var(--sans); }
img { max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(213, 154, 50, .8); outline-offset: 3px; }
::selection { background: rgba(217, 75, 61, .4); color: #fff; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--lunar);
  color: var(--space);
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus { transform: none; }
.wrap { width: min(var(--max), calc(100% - 44px)); margin-inline: auto; }
.narrow { width: min(760px, calc(100% - 44px)); margin-inline: auto; }
.section { padding: clamp(76px, 9vw, 124px) 0; }
.section[id], .demo-console[id] { scroll-margin-top: 92px; }
.section--paper { color-scheme: light; background: var(--paper); color: var(--paper-ink); }
.section--soft { background: var(--space-2); }
.section--line { border-block: 1px solid var(--line); }
.center { text-align: center; }
.center .section-lead { margin-inline: auto; }

.kicker,
.telemetry,
.micro-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.45;
  text-transform: uppercase;
}
.kicker { color: var(--signal); margin: 0 0 18px; }
.section--paper .kicker { color: #a42f26; }
.telemetry { color: var(--regolith); }
.telemetry .live,
.status-live { color: var(--green); }
.status-live::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 14px currentColor; vertical-align: 1px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.035em; line-height: 1.06; }
h1 { font-size: clamp(46px, 6.6vw, 82px); max-width: 900px; margin-bottom: 26px; }
h2 { font-size: clamp(34px, 4.7vw, 58px); margin-bottom: 20px; }
h3 { font-size: clamp(20px, 2.1vw, 28px); }
.section-lead { max-width: 720px; color: var(--regolith); font-size: clamp(17px, 1.7vw, 21px); line-height: 1.55; }
.section--paper .section-lead { color: var(--paper-muted); }
.lede { color: var(--lunar-2); font-size: clamp(18px, 2vw, 23px); max-width: 720px; line-height: 1.55; }
.muted { color: var(--regolith); }
.paper-muted { color: var(--paper-muted); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--lunar);
  border-radius: 9px;
  background: var(--lunar);
  color: var(--space);
  padding: 12px 19px;
  font-size: 15px;
  font-weight: 780;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
}
.button:hover { background: var(--lunar-2); border-color: var(--lunar-2); transform: translateY(-1px); }
.button--quiet { border-color: var(--line-strong); background: transparent; color: var(--lunar); }
.button--quiet:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.4); }
.button--ink { background: var(--paper-ink); border-color: var(--paper-ink); color: var(--paper); }
.button--ink:hover { background: #2c3035; border-color: #2c3035; }
.button--text { min-height: auto; padding: 7px 0; border: 0; background: transparent; color: var(--lunar); }
.button--text:hover { background: transparent; color: #fff; transform: none; }
.button[disabled] { opacity: .55; cursor: wait; transform: none; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.announcement {
  position: relative;
  z-index: 80;
  border-bottom: 1px solid rgba(213, 154, 50, .22);
  background: #0d1015;
  color: var(--regolith);
  font-size: 12px;
  text-align: center;
}
.announcement a { display: block; padding: 8px 16px; text-decoration: none; }
.announcement b { color: var(--lunar); }
.announcement span { color: var(--amber); }
.site-nav {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 13, .88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.nav-inner { min-height: 72px; display: flex; align-items: center; gap: 30px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--lunar);
  font-weight: 820;
  letter-spacing: -.025em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.brand-mark { width: 25px; height: 25px; position: relative; display: inline-block; border: 1px solid var(--line-strong); border-radius: 50%; }
.brand-mark::before { content: ""; position: absolute; width: 7px; height: 7px; right: -2px; top: 7px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 14px rgba(217,75,61,.75); }
.brand-mark::after { content: ""; position: absolute; width: 32px; height: 1px; left: -4px; top: 12px; background: var(--line-strong); transform: rotate(-17deg); }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 27px; }
.nav-links a { color: var(--regolith); font-size: 14px; font-weight: 650; text-decoration: none; }
.nav-links a:hover { color: var(--lunar); }
.nav-mobile-only { display: none; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .button { min-height: 40px; padding: 10px 14px; font-size: 13px; }
.nav-toggle { display: none; width: 42px; height: 42px; margin-left: auto; border: 1px solid var(--line); border-radius: 8px; background: transparent; color: var(--lunar); font-size: 20px; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  padding: clamp(70px, 9vw, 132px) 0 86px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--space);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image: url('/assets/brand/lunar-horizon.webp');
  background-size: min(1000px, 76vw) auto;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  opacity: .62;
  filter: saturate(.7) contrast(1.05);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(700px 400px at 78% 18%, rgba(217,75,61,.08), transparent 60%),
    linear-gradient(90deg, var(--space) 0%, rgba(7,9,13,.95) 43%, rgba(7,9,13,.24) 82%),
    linear-gradient(0deg, rgba(7,9,13,.2), var(--space) 96%);
}
.trajectory { position: absolute; z-index: -1; inset: 0; pointer-events: none; opacity: .48; }
.trajectory::before { content: ""; position: absolute; width: 72vw; height: 36vw; max-height: 500px; right: -5vw; top: 45px; border: 1px solid transparent; border-top-color: rgba(242,239,231,.22); border-radius: 50%; transform: rotate(-8deg); }
.trajectory::after { content: ""; position: absolute; right: 14%; top: 16%; width: 8px; height: 8px; background: var(--signal); border-radius: 50%; box-shadow: 0 0 24px rgba(217,75,61,.9); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.07fr) minmax(390px, .73fr); gap: clamp(42px, 7vw, 88px); align-items: start; }
.hero-copy { padding-top: 34px; }
.hero h1 .accent { color: var(--lunar); position: relative; }
.hero h1 .accent::after { content: ""; position: absolute; left: 0; bottom: -.08em; width: 26%; height: 3px; background: var(--signal); }
.hero-note { margin: 22px 0 0; color: var(--regolith); font-size: 13px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 13px 22px; margin: 28px 0 31px; color: var(--regolith); font-size: 13px; }
.trust-row span { display: inline-flex; gap: 8px; align-items: center; }
.trust-row span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }

.demo-console {
  position: relative;
  background: rgba(17,21,27,.94);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.demo-console::before { content: ""; display: block; height: 3px; background: linear-gradient(90deg, var(--signal) 0 22%, var(--line) 22%); }
.console-bar { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 20px; border-bottom: 1px solid var(--line); }
.console-bar .telemetry { font-size: 9px; }
.console-body { padding: 27px 25px 25px; }
.console-body h2 { font-size: clamp(25px, 3vw, 34px); margin-bottom: 10px; }
.console-body > p { color: var(--regolith); font-size: 14px; }
.con-ex { min-height: 24px; margin: 10px 0 18px; color: #d7d2c7 !important; font-size: 13px !important; font-style: italic; }
.prompt-examples { display: flex; gap: 7px; margin: -6px 0 16px; padding-bottom: 2px; overflow-x: auto; scrollbar-width: thin; }
.prompt-chip { min-height: 44px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 999px; background: #0a0d12; color: var(--lunar-2); padding: 9px 12px; font-size: 12px; font-weight: 720; cursor: pointer; }
.prompt-chip:hover { border-color: var(--amber); background: var(--panel-2); }
.demo-form { display: grid; gap: 10px; }
.field,
.demo-form textarea,
.demo-form input,
.checkout-page input[type="text"] {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #0a0d12;
  color: var(--lunar);
  padding: 13px 14px;
  font-size: 15px;
  line-height: 1.45;
}
.demo-form textarea { min-height: 76px; resize: vertical; }
.demo-form input::placeholder, .demo-form textarea::placeholder { color: #74777a; }
.demo-form input:focus, .demo-form textarea:focus { border-color: var(--amber); outline: 1px solid var(--amber); outline-offset: 0; }
.demo-form .button { width: 100%; margin-top: 2px; }
.form-error { min-height: 20px; margin: 0; color: #ff8a7d !important; font-size: 12px !important; }
.demo-form [aria-invalid="true"] { border-color: #ff8a7d; }
.demo-alt { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 7px 12px; margin-top: 13px; font-size: 12px; color: var(--regolith); }
.voice-button { border: 0; background: transparent; color: var(--lunar-2); cursor: pointer; font-weight: 700; padding: 4px; }
.voice-button:hover { color: #fff; }
.voice-button:disabled { color: var(--muted); cursor: wait; }
.console-fine { margin: 17px 0 0; padding-top: 15px; border-top: 1px solid var(--line); color: #878a8e !important; font-size: 12px !important; }
.wcresult { margin-top: 16px; padding: 15px; border: 1px solid var(--line-strong); border-radius: 9px; background: #0a0d12; }
.wcr-eye { color: var(--green); font-size: 13px; }
.wcr-link { display: block; margin-top: 11px; border: 1px solid var(--signal); border-radius: 8px; padding: 10px 12px; color: var(--lunar); font-weight: 750; text-align: center; text-decoration: none; overflow-wrap: anywhere; }
#wcrShare a { display: inline-block; margin: 10px 8px 0 0; border: 1px solid var(--line-strong); border-radius: 7px; padding: 7px 10px; color: var(--lunar); font-size: 12px; text-decoration: none; }
.con-shake { animation: shake .32s; }
@keyframes shake { 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }

.metric-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--panel); }
.metric { min-height: 125px; padding: 24px; border-right: 1px solid var(--line); }
.metric:last-child { border: 0; }
.metric strong { display: block; margin-bottom: 8px; font-size: clamp(21px, 2.5vw, 30px); line-height: 1.1; }
.metric span { color: var(--regolith); font-size: 13px; }

.workflow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 50px; border: 1px solid var(--paper-line); border-radius: var(--radius); overflow: hidden; background: var(--paper-line); }
.workflow article { min-height: 245px; padding: 30px; background: var(--paper); }
.workflow .num { display: block; margin-bottom: 48px; color: #a42f26; font-family: var(--mono); font-size: 12px; font-weight: 800; }
.workflow h3 { margin-bottom: 12px; }
.workflow p { color: var(--paper-muted); font-size: 15px; }

.control-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(38px, 7vw, 86px); align-items: center; }
.feature-list { display: grid; gap: 0; margin-top: 28px; border-top: 1px solid var(--line); }
.feature-item { display: grid; grid-template-columns: 32px 1fr; gap: 13px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.feature-item b { display: block; margin-bottom: 3px; font-size: 15px; }
.feature-item p { margin: 0; color: var(--regolith); font-size: 14px; }
.feature-icon { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--green); font-family: var(--mono); font-size: 11px; }
.product-window { border: 1px solid var(--line-strong); border-radius: var(--radius); overflow: hidden; background: #0b0e13; box-shadow: var(--shadow); }
.product-window img { display: block; width: 100%; height: auto; }
.product-caption { display: flex; justify-content: space-between; gap: 16px; padding: 13px 17px; border-top: 1px solid var(--line); color: var(--regolith); font-size: 11px; }

.app-card { position: relative; display: grid; grid-template-columns: 1fr .78fr; gap: 50px; align-items: center; overflow: hidden; border: 1px solid var(--paper-line); border-radius: 24px; padding: clamp(30px, 6vw, 72px); background: #17191d; color: var(--lunar); box-shadow: 0 28px 80px rgba(15,15,15,.18); }
.app-card::after { content: ""; position: absolute; right: -5%; bottom: -35%; width: 58%; height: 110%; background: url('/assets/brand/lunar-horizon.webp') bottom right / 100% auto no-repeat; opacity: .34; pointer-events: none; }
.app-copy, .phone { position: relative; z-index: 1; }
.app-copy h2 { max-width: 620px; }
.app-copy .section-lead { color: #bbb7ae; }
.preview-notice { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; border: 1px solid rgba(213,154,50,.45); border-radius: 999px; padding: 7px 11px; color: #e2bc72; font-family: var(--mono); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.phone { width: min(310px, 78%); margin-inline: auto; border: 1px solid rgba(255,255,255,.26); border-radius: 38px; padding: 9px; background: #050609; box-shadow: 0 30px 70px rgba(0,0,0,.55); transform: rotate(3deg); }
.phone-screen { min-height: 520px; overflow: hidden; border-radius: 30px; padding: 23px 18px; background: linear-gradient(180deg,#11151b,#090b0f); }
.phone-island { width: 82px; height: 21px; margin: -13px auto 26px; border-radius: 20px; background: #000; }
.phone-head { display: flex; justify-content: space-between; color: #85898f; font-family: var(--mono); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.phone-title { margin: 21px 0 5px; font-size: 21px; font-weight: 800; letter-spacing: -.03em; }
.phone-domain { color: var(--regolith); font-size: 11px; }
.phone-health { display: flex; justify-content: space-between; gap: 8px; margin: 21px 0 13px; padding: 13px; border: 1px solid var(--line); border-radius: 10px; background: #131820; font-size: 11px; }
.phone-health b { color: var(--green); }
.phone-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.phone-stat { padding: 13px; border: 1px solid var(--line); border-radius: 10px; background: #10141a; }
.phone-stat b { display: block; font-size: 20px; }
.phone-stat span { color: var(--regolith); font-size: 9px; }
.phone-log { margin-top: 10px; padding: 13px; border: 1px solid var(--line); border-radius: 10px; background: #10141a; }
.phone-log span { color: var(--regolith); font-family: var(--mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.phone-log p { margin: 10px 0 0; color: #d7d3ca; font-size: 10px; line-height: 1.5; }
.platform-flow { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin: 28px 0; color: #cbc7bd; font-size: 13px; }
.platform-flow span { padding: 8px 10px; border: 1px solid var(--line); border-radius: 7px; }
.platform-flow i { color: var(--signal); font-style: normal; }

.proof-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 45px; }
.proof-head .section-lead { max-width: 520px; margin-bottom: 4px; }
.flagship { display: grid; grid-template-columns: 1.18fr .82fr; border: 1px solid var(--paper-line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: 0 24px 70px rgba(20,20,20,.1); }
.flag-shot { position: relative; min-height: 370px; background: #bbb7af; }
.flag-shot img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.pill { position: absolute; z-index: 1; left: 14px; top: 14px; border-radius: 999px; padding: 7px 11px; background: rgba(7,9,13,.88); color: #b8d6bd; font-family: var(--mono); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.flag-copy { display: flex; flex-direction: column; justify-content: center; padding: 36px; }
.flag-copy h3 { margin-bottom: 14px; }
.flag-copy p { color: var(--paper-muted); font-size: 14px; }
.text-link { color: inherit; font-weight: 800; text-underline-offset: 4px; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 14px; }
.gallery--fresh { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 580px; margin-inline: auto; }
.gcard { overflow: hidden; border: 1px solid var(--paper-line); border-radius: 13px; background: #fff; color: var(--paper-ink); text-decoration: none; transition: transform .15s ease, box-shadow .15s ease; }
.gcard:hover { transform: translateY(-3px); box-shadow: 0 18px 46px rgba(20,20,20,.12); }
.gshot { aspect-ratio: 4 / 3; overflow: hidden; background: #bbb7af; }
.gshot img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.gmeta { padding: 15px; }
.gmeta b { display: block; margin-bottom: 5px; font-size: 14px; }
.gmeta p { min-height: 41px; margin-bottom: 9px; color: var(--paper-muted); font-size: 12px; line-height: 1.45; }
.gmeta small { color: #4c7052; font-family: var(--mono); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.proof-cta { margin: 31px 0 0; color: var(--paper-muted); text-align: center; }
.mobile-swipe { display: none; }

.pricing-head { display: grid; grid-template-columns: 1fr .8fr; gap: 50px; align-items: end; margin-bottom: 42px; }
.billing-note { justify-self: end; max-width: 380px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 11px; color: var(--regolith); font-size: 13px; }
.billing-note b { color: var(--lunar); }
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.plan-card { position: relative; display: flex; flex-direction: column; min-height: 480px; padding: 27px 23px 23px; border: 1px solid var(--line); border-radius: 15px; background: var(--panel); }
.plan-card--featured { border-color: rgba(217,75,61,.68); box-shadow: inset 0 3px var(--signal); }
.plan-label { min-height: 25px; color: var(--regolith); font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.plan-card--featured .plan-label { color: #ec887e; }
.plan-card h3 { margin: 13px 0 15px; font-size: 23px; }
.plan-price { font-size: 38px; font-weight: 830; letter-spacing: -.045em; line-height: 1; }
.plan-price small { color: var(--regolith); font-size: 12px; font-weight: 600; letter-spacing: 0; }
.plan-sub { min-height: 40px; margin: 9px 0 20px; color: var(--regolith); font-size: 12px; }
.plan-card ul { flex: 1; list-style: none; margin: 0 0 23px; padding: 0; border-top: 1px solid var(--line); }
.plan-card li { position: relative; padding: 10px 0 10px 19px; border-bottom: 1px solid var(--line); color: #c4c0b7; font-size: 13px; }
.plan-card li::before { content: "+"; position: absolute; left: 0; color: var(--green); font-family: var(--mono); font-weight: 800; }
.plan-card .button { width: 100%; }
.plan-card--featured .button,
.checkout-submit { border-color: var(--signal); background: var(--signal); color: var(--space); }
.plan-card--featured .button:hover,
.checkout-submit:hover { border-color: var(--signal-hover); background: var(--signal-hover); color: var(--space); }
.pricing-fine { max-width: 900px; margin: 27px auto 0; color: var(--regolith); font-size: 12px; text-align: center; }

.faq { margin-top: 38px; border-top: 1px solid var(--paper-line); }
.faq details { border-bottom: 1px solid var(--paper-line); }
.faq summary { position: relative; cursor: pointer; list-style: none; padding: 23px 48px 23px 0; font-size: 17px; font-weight: 750; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 3px; top: 18px; color: #a42f26; font-family: var(--mono); font-size: 25px; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq .answer { max-width: 760px; padding: 0 0 23px; color: var(--paper-muted); }

.final-cta { position: relative; overflow: hidden; text-align: center; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: url('/assets/brand/lunar-horizon.webp') bottom center / min(1100px, 100%) auto no-repeat; opacity: .32; pointer-events: none; }
.final-cta .wrap { position: relative; z-index: 1; }
.final-cta h2 { max-width: 800px; margin-inline: auto; }
.final-cta .section-lead { margin: 0 auto 29px; }
.brandline { margin-top: 38px; color: var(--regolith); font-family: var(--mono); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.site-footer { border-top: 1px solid var(--line); padding: 50px 0; background: #050609; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, .7fr); gap: 42px; }
.footer-note { max-width: 360px; margin-top: 17px; color: var(--regolith); font-size: 13px; }
.footer-col b { display: block; margin-bottom: 15px; color: var(--lunar); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a { display: block; width: fit-content; margin: 8px 0; color: var(--regolith); font-size: 13px; text-decoration: none; }
.footer-col a:hover { color: var(--lunar); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 45px; padding-top: 23px; border-top: 1px solid var(--line); color: #73767b; font-size: 11px; }

/* The existing help widget remains functional, with the storefront system
   winning over its legacy inline presentation through deliberately stronger selectors. */
body #gcw-btn { width: 48px; height: 48px; border: 1px solid var(--line-strong); border-radius: 11px; background: var(--panel-2); color: var(--lunar); font: 800 20px/46px var(--mono); box-shadow: 0 15px 42px rgba(0,0,0,.34); }
body #gcw-btn:hover { background: var(--signal); transform: translateY(-1px); }
body #gcw { color-scheme: dark; border-color: var(--line-strong); border-radius: 13px; background: var(--panel); box-shadow: var(--shadow); }
body #gcw .gcw-head { border-bottom-color: var(--line); color: var(--lunar); }
body #gcw #gcw-x { color: var(--regolith); }
body #gcw .gcw-hint, body #gcw .gcw-foot { color: var(--regolith); }
body #gcw .gcw-hint a, body #gcw .gcw-foot a, body #gcw #gcw-ans a { color: #ec887e; }
body #gcw .gcw-links a { border-color: var(--line); background: #0d1015; color: var(--lunar-2); }
body #gcw .gcw-links a:hover { border-color: var(--signal); color: #fff; }
body #gcw textarea { border-color: var(--line-strong); background: #090b0f; color: var(--lunar); }
body #gcw textarea:focus { border-color: var(--amber); outline-color: var(--amber); }
body #gcw button { background: var(--lunar); color: var(--space); }
body #gcw #gcw-ans { border-left-color: var(--signal); background: #0d1015; color: var(--lunar-2); }

/* Checkout and transactional pages */
.checkout-page { min-height: 100vh; background: var(--space); color: var(--lunar); }
.checkout-page::before { content: ""; position: fixed; z-index: -1; inset: 0; background: url('/assets/brand/lunar-horizon.webp') 100% 100% / min(800px, 78vw) auto no-repeat; opacity: .18; }
.checkout-shell { width: min(930px, calc(100% - 36px)); margin: 0 auto; padding: 28px 0 70px; }
.checkout-shell--narrow { width: min(680px, calc(100% - 36px)); }
.checkout-brand { margin-bottom: 40px; }
.checkout-title { max-width: 740px; font-size: clamp(33px, 5vw, 52px); }
.checkout-sub { max-width: 690px; color: var(--regolith); font-size: 16px; }
.checkout-intro-grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 38px; margin-bottom: 30px; }
.checkout-price-lockup { min-width: 205px; padding: 22px 24px; border: 1px solid var(--line-strong); border-radius: 14px; background: rgba(17,21,27,.9); }
.checkout-price-lockup strong { display: inline; color: var(--lunar); font-size: 48px; letter-spacing: -.06em; line-height: 1; }
.checkout-price-lockup > span { margin-left: 6px; color: var(--regolith); font-size: 14px; font-weight: 700; }
.checkout-price-lockup small { display: block; margin-top: 9px; color: var(--green); font-size: 11px; }
.ladder { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 30px 0 10px; }
.rung { position: relative; display: block; min-height: 118px; padding: 17px; border: 1px solid var(--line); border-radius: 10px; background: rgba(17,21,27,.8); color: var(--lunar); text-decoration: none; }
.rung:hover { border-color: var(--line-strong); background: var(--panel-2); }
.rung.on { border-color: var(--signal); box-shadow: inset 0 3px var(--signal); }
.rung .rn, .rung .rp, .rung .rd { display: block; }
.rung .rn { margin: 8px 0 4px; font-weight: 800; }
.rung .rp { font-size: 20px; font-weight: 820; }
.rung .rp small, .rung .rd { color: var(--regolith); font-size: 11px; font-weight: 500; }
.rung .tick { position: absolute; top: 9px; right: 9px; display: none; color: #ec887e; font-family: var(--mono); font-size: 8px; font-weight: 800; letter-spacing: .08em; }
.rung.on .tick { display: block; }
.whole-price { margin: 0 0 23px; color: var(--regolith); font-size: 12px; }
.whole-price b { color: var(--green); }
.checkout-card { border: 1px solid var(--line-strong); border-radius: var(--radius); padding: clamp(23px, 4vw, 38px); background: rgba(17,21,27,.95); box-shadow: var(--shadow); }
.checkout-card h2 { font-size: 25px; margin-bottom: 5px; }
.plan-topline { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 17px; color: var(--green); font: 700 10px/1.4 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.plansub { color: var(--regolith); font-size: 13px; }
.incl { list-style: none; margin: 20px 0 26px; padding: 6px 15px; border: 1px solid var(--line); border-radius: 10px; background: #0b0e13; }
.incl li { position: relative; padding: 10px 0 10px 23px; border-bottom: 1px solid var(--line); color: var(--regolith); font-size: 13px; }
.incl li:last-child { border: 0; }
.incl li::before { content: "+"; position: absolute; left: 0; color: var(--green); font-family: var(--mono); }
.incl li b { color: var(--lunar); }
.incl--columns { display: grid; grid-template-columns: 1fr 1fr; column-gap: 30px; margin-bottom: 30px; }
.checkout-fieldset { margin: 0; padding: 0; border: 0; }
.field-label { display: block; margin: 18px 0 7px; font-size: 13px; font-weight: 750; }
.domain-field { display: flex; align-items: center; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 9px; background: #090b0f; }
.domain-field:focus-within { border-color: var(--amber); }
.domain-field input { min-width: 0; width: 0; flex: 1; border: 0 !important; outline: 0 !important; background: transparent !important; color: var(--lunar); padding: 13px 14px; font: 600 15px/1.45 var(--mono) !important; }
.domain-field input::placeholder { color: #74777a; }
.domain-field .suf { padding-right: 13px; color: var(--regolith); font-family: var(--mono); font-size: 12px; }
.domain-protocol { padding-left: 14px; color: var(--muted); font: 600 12px/1.4 var(--mono); }
.domain-guidance { margin: 9px 0 21px; color: var(--regolith); font-size: 12px; }
.modes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 7px; }
.mode { display: block; padding: 14px; border: 1px solid var(--line); border-radius: 10px; background: #0d1015; color: var(--regolith); cursor: pointer; font-size: 12px; }
.mode:has(input:checked) { border-color: var(--amber); color: var(--lunar-2); }
.mode input { accent-color: var(--signal); }
.mode b { display: block; margin-bottom: 5px; color: var(--lunar); font-size: 13px; }
.mode .cost { display: block; margin-top: 7px; color: var(--green); font-weight: 800; }
.terms-check { display: grid; grid-template-columns: 20px minmax(0, 1fr); gap: 11px; align-items: start; margin-top: 20px; color: var(--regolith); font-size: 12px; line-height: 1.55; }
.terms-check input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--signal); }
.terms-check a { color: var(--lunar); text-underline-offset: 3px; }
.upsell { display: block; margin-top: 14px; padding: 13px 15px; border: 1px dashed rgba(213,154,50,.55); border-radius: 9px; background: rgba(213,154,50,.04); color: var(--regolith); font-size: 12px; text-decoration: none; }
.upsell b { color: #e2bc72; }
.checkout-submit { width: 100%; margin-top: 22px; }
.checkout-fine { margin-top: 13px; color: var(--regolith); font-size: 12px; line-height: 1.55; text-align: center; }
.checkout-back { display: block; margin-top: 19px; color: var(--regolith); font-size: 12px; text-align: center; text-decoration: none; }
.app-included { margin: 20px 0 0; padding: 13px 15px; border-left: 2px solid var(--amber); background: rgba(213,154,50,.05); color: var(--regolith); font-size: 12px; }
.app-included b { color: var(--lunar); }

.order-summary { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 24px 0 14px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 10px; background: var(--panel); }
.order-summary strong, .order-summary span { display: block; }
.order-summary span { color: var(--regolith); font-size: 12px; overflow-wrap: anywhere; }
.order-price { color: var(--green); font-weight: 820; white-space: nowrap; }
.payment-module { min-height: 340px; padding: 8px; border: 1px solid var(--line-strong); border-radius: 14px; background: #fff; box-shadow: var(--shadow); }
.loading { min-height: 324px; display: flex; align-items: center; justify-content: center; gap: 10px; color: #666; font-size: 13px; }
.loading-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--signal); animation: pulse 1.3s ease infinite; }
.error-card { margin-top: 20px; padding: 22px; border: 1px solid var(--line-strong); border-radius: 12px; background: var(--panel); }
.error-card p { color: var(--regolith); }
.error-card a { color: #ec887e; font-weight: 800; }

.welcome-card { width: min(680px, calc(100% - 36px)); margin: clamp(28px, 7vh, 80px) auto; padding: clamp(27px, 6vw, 48px); border: 1px solid var(--line-strong); border-radius: var(--radius); background: rgba(17,21,27,.96); box-shadow: var(--shadow); }
.welcome-card h1 { font-size: clamp(36px, 7vw, 54px); }
.welcome-card > p { color: var(--regolith); }
.sequence { margin: 23px 0 8px; padding: 5px 18px; border: 1px solid var(--line); border-radius: 10px; background: #0b0e13; }
.sequence-row { display: flex; align-items: center; gap: 11px; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--lunar-2); font-size: 13px; }
.sequence-row:last-child { border: 0; }
.sequence-row i { width: 15px; color: var(--green); font-style: normal; }
.sequence-row .loading-dot { margin: 0 3px; }
.next-step { margin: 14px 0; padding: 17px 19px; border: 1px solid var(--line); border-radius: 10px; background: #0d1015; }
.next-step b { display: block; margin-bottom: 4px; }
.next-step p { margin: 0; color: var(--regolith); font-size: 13px; }
.next-step code { color: #acd1b2; font-family: var(--mono); font-size: 12px; overflow-wrap: anywhere; }
.reference { margin-top: 25px !important; color: var(--muted) !important; font-family: var(--mono); font-size: 10px !important; overflow-wrap: anywhere; }
.dns-record { margin-top: 14px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 9px; background: #090b0f; font-family: var(--mono); font-size: 13px; }
.dns-row { display: grid; grid-template-columns: 80px 1fr; gap: 15px; padding: 7px 0; border-bottom: 1px solid var(--line); }
.dns-row:last-child { border: 0; }
.dns-row span { color: var(--regolith); }
.dns-row b { color: #acd1b2; overflow-wrap: anywhere; }
.connection-list { list-style: none; margin: 10px 0 0; padding: 0; }
.connection-list li { position: relative; padding: 11px 0 11px 22px; border-bottom: 1px solid var(--line); color: var(--regolith); font-size: 13px; }
.connection-list li:last-child { border: 0; }
.connection-list li::before { content: "+"; position: absolute; left: 0; color: var(--signal); font-family: var(--mono); }
.connection-list b { color: var(--lunar); }

.profile-page { display: grid; min-height: 100vh; place-items: center; padding: 28px; background: var(--space); }
.profile-card { width: min(680px, 100%); padding: clamp(28px, 6vw, 48px); border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--panel); box-shadow: var(--shadow); }
.profile-card h1 { margin: 14px 0 8px; font-size: clamp(37px, 7vw, 58px); }
.profile-tag { color: #cbc7bd; font-size: 18px; }
.profile-alt { margin-top: 15px; color: var(--regolith); font-size: 12px; }
.profile-rule { width: 100%; height: 1px; margin: 26px 0; background: var(--line); }
.profile-rule::before { content: ""; display: block; width: 62px; height: 2px; background: var(--signal); }
.profile-build { color: var(--lunar-2); font-size: 17px; }
.profile-plan { display: inline-flex; gap: 8px; margin-top: 20px; padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--regolith); font-size: 12px; }
.profile-plan b { color: var(--green); }
.profile-reason { color: var(--regolith); font-size: 13px; }
.profile-footer { margin-top: 25px; color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; line-height: 1.8; text-align: center; }
.profile-footer a { color: var(--regolith); }

@keyframes pulse { 0%, 100% { opacity: .55; transform: scale(.9); } 50% { opacity: 1; transform: scale(1.25); } }
@media (max-width: 980px) {
  .hero-grid, .control-grid, .app-card { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy { padding-top: 0; }
  .hero::before { background-size: 1000px auto; opacity: .42; }
  .demo-console { max-width: 650px; }
  .metric-strip, .plans { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .phone { width: min(310px, 90%); }
  .gallery { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 780px) {
  .nav-links { display: none; position: absolute; top: 71px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 22px 18px; border-bottom: 1px solid var(--line); background: rgba(7,9,13,.98); }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 11px 0; }
  .nav-links a.nav-mobile-only { display: block; }
  .nav-toggle { display: block; }
  .nav-actions .button--quiet { display: none; }
  .hero::after { background: linear-gradient(180deg, rgba(7,9,13,.98), rgba(7,9,13,.72) 64%, rgba(7,9,13,.45)); }
  .hero::before { background-size: 900px auto; background-position: 62% 100%; opacity: .35; }
  .workflow { grid-template-columns: 1fr; }
  .workflow article { min-height: 0; }
  .workflow .num { margin-bottom: 25px; }
  .proof-head, .pricing-head { display: block; }
  .billing-note { margin-top: 24px; }
  .flagship { grid-template-columns: 1fr; }
  .flag-shot { min-height: 290px; }
  .ladder { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .checkout-intro-grid { grid-template-columns: 1fr; gap: 18px; }
  .checkout-price-lockup { width: 100%; }
  .incl--columns { grid-template-columns: 1fr; }
  .wrap, .narrow { width: min(100% - 30px, var(--max)); }
  .section { padding: 70px 0; }
  .announcement { font-size: 10px; }
  .nav-inner { min-height: 64px; }
  .nav-links { top: 63px; }
  .nav-actions .button { display: none; }
  h1 { font-size: clamp(42px, 13vw, 58px); }
  .hero { padding-top: 62px; }
  .hero-grid { grid-template-columns: minmax(0,1fr); }
  .demo-console { min-width: 0; }
  .console-body { padding: 23px 18px 20px; }
  .metric-strip, .modes { grid-template-columns: 1fr; }
  .gallery--fresh { grid-template-columns: 1fr; }
  .metric { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .metric:nth-child(3) { border-bottom: 1px solid var(--line); }
  .plans, .gallery { display: flex; gap: 12px; margin-inline: -15px; padding: 0 15px 13px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .plan-card { min-width: min(82vw, 330px); min-height: 0; scroll-snap-align: start; }
  .gcard { min-width: min(78vw, 305px); scroll-snap-align: start; }
  .mobile-swipe { display: block; margin: 4px 0 0; color: var(--paper-muted); font-family: var(--mono); font-size: 11px; text-align: right; }
  .app-card { padding: 28px 20px; }
  .phone { display: none; }
  .demo-form textarea, .demo-form input, .checkout-page input[type="text"] { font-size: 16px; }
  .flag-copy { padding: 27px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 7px; }
  .ladder { gap: 7px; }
  .rung { min-height: 102px; padding: 13px; }
  .checkout-shell { width: min(100% - 24px, 930px); }
  .checkout-brand { margin-bottom: 30px; }
  .order-summary { align-items: flex-start; flex-direction: column; }
  .profile-page { padding: 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; }
}
