/* ------------------------------------------------------------------
   Keystone Infrastructure — dark, ember-orange, bento.
   ------------------------------------------------------------------ */
:root {
  --bg: #0b0b0d;
  --bg-2: #101013;
  --bg-3: #16161b;
  --ink: #f4efe8;
  --ink-2: #b6b0a8;
  --ink-3: #6f6a64;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.12);

  --o1: #ffb35c;
  --o2: #ff7a1a;
  --o3: #ff4d1c;
  --o4: #c92a0a;
  --grad: linear-gradient(110deg, var(--o1) 0%, var(--o2) 45%, var(--o3) 100%);
  --grad-soft: linear-gradient(135deg, rgba(255,179,92,.22), rgba(255,77,28,.08));

  --font-display: "Syne", "Helvetica Neue", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --r: 22px;
  --pad: clamp(20px, 5vw, 72px);
  --max: 1240px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.has-cursor { cursor: none; }
body.has-cursor a, body.has-cursor button, body.has-cursor input, body.has-cursor select, body.has-cursor textarea { cursor: none; }

h1, h2, h3 { font-family: var(--font-display); letter-spacing: 0; line-height: 1.12; margin: 0; font-weight: 700; }
h2 { font-size: clamp(34px, 5vw, 60px); }
h3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; letter-spacing: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
.mono { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .02em; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- atmosphere ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 9990; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 7s steps(6) infinite;
}
@keyframes grain { 0%{transform:translate(0,0)} 20%{transform:translate(-5%,3%)} 40%{transform:translate(4%,-6%)} 60%{transform:translate(-3%,7%)} 80%{transform:translate(6%,-2%)} 100%{transform:translate(0,0)} }

.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 9999; pointer-events: none; }
.progress span { display: block; height: 100%; width: 100%; background: var(--grad); transform-origin: 0 50%; transform: scaleX(0); }

/* custom cursor */
.cursor { position: fixed; inset: 0; z-index: 9995; pointer-events: none; display: none; }
.has-cursor .cursor { display: block; }
.cursor__dot, .cursor__ring { position: absolute; top: 0; left: 0; border-radius: 50%; transform: translate(-50%, -50%); will-change: transform; }
.cursor__dot { width: 6px; height: 6px; background: var(--o2); }
.cursor__ring { width: 34px; height: 34px; border: 1.5px solid rgba(255, 122, 26, .55); transition: width .25s var(--ease), height .25s var(--ease), border-color .25s, background .25s; }
.cursor--hover .cursor__ring { width: 56px; height: 56px; border-color: rgba(255,179,92,.9); background: rgba(255,122,26,.08); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; gap: 28px;
  padding: 18px var(--pad);
  transition: background .4s, backdrop-filter .4s, padding .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  padding: 12px var(--pad);
  background: rgba(11, 11, 13, .72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: 0; }
.brand-mark { width: 30px; height: 30px; border-radius: 8px; background: var(--bg-3); border: 1px solid var(--line-2); display: grid; place-items: center; }
.brand-mark svg { width: 22px; height: 22px; fill: none; stroke: url(#brandgrad); stroke: var(--o2); stroke-width: 3; stroke-linejoin: round; }
.nav__links { display: flex; gap: 6px; margin-left: auto; }
.nav__links a { position: relative; padding: 8px 14px; font-size: 14.5px; color: var(--ink-2); border-radius: 999px; transition: color .25s; }
.nav__links a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 1.5px; background: var(--grad); transform: scaleX(0); transform-origin: 0 50%; transition: transform .35s var(--ease); }
.nav__links a:hover, .nav__links a.active { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__burger { display: none; margin-left: auto; width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: 12px; background: transparent; position: relative; }
.nav__burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink); transition: transform .3s, top .3s; }
.nav__burger span:first-child { top: 15px; } .nav__burger span:last-child { top: 25px; }
.nav--open .nav__burger span:first-child { top: 20px; transform: rotate(45deg); }
.nav--open .nav__burger span:last-child { top: 20px; transform: rotate(-45deg); }

/* ---------- buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; border: 1px solid transparent;
  font: 600 15px/1 var(--font-body); color: var(--ink);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .3s, background .3s;
  will-change: transform; overflow: hidden; isolation: isolate; background: transparent;
}
.btn > span { position: relative; z-index: 2; }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 18px 30px; font-size: 16px; }
.btn__arrow { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; position: relative; z-index: 2; transition: transform .35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary { color: #140a04; background: var(--grad); box-shadow: 0 0 0 0 rgba(255,122,26,0), 0 10px 30px -10px rgba(255, 90, 20, .55); }
.btn--primary::before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, #fff 0%, transparent 40%); opacity: 0; transition: opacity .3s; z-index: 1; mix-blend-mode: soft-light; }
.btn--primary:hover { box-shadow: 0 0 0 6px rgba(255,122,26,.12), 0 18px 40px -12px rgba(255, 90, 20, .7); }
.btn--primary:hover::before { opacity: .8; }

.btn--ghost { border-color: var(--line-2); background: rgba(255,255,255,.02); }
.btn--ghost::before { content: ""; position: absolute; inset: 0; background: var(--grad-soft); opacity: 0; transition: opacity .3s; z-index: 1; }
.btn--ghost:hover { border-color: rgba(255,122,26,.5); }
.btn--ghost:hover::before { opacity: 1; }

/* ---------- eyebrow ---------- */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font: 500 12.5px/1 var(--font-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--o1); }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--o2); box-shadow: 0 0 0 0 rgba(255,122,26,.6); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,122,26,.65)} 70%{box-shadow:0 0 0 12px rgba(255,122,26,0)} 100%{box-shadow:0 0 0 0 rgba(255,122,26,0)} }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; padding: 140px var(--pad) 90px; overflow: hidden; }
.hero__mesh { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: .9; }
.hero__glow {
  position: absolute; z-index: 0; pointer-events: none;
  width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  right: -20vw; top: -15vw;
  background: radial-gradient(circle at center, rgba(255,122,26,.28) 0%, rgba(255,77,28,.12) 30%, transparent 62%);
  filter: blur(20px);
  animation: drift 14s ease-in-out infinite alternate;
}
@keyframes drift { from { transform: translate(0,0) scale(1); } to { transform: translate(-6vw, 6vw) scale(1.12); } }
.hero__inner { position: relative; z-index: 1; max-width: 1240px; }
.hero__title { font-size: clamp(38px, 6.5vw, 90px); margin: 26px 0 30px; line-height: 1.08; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: .12em; margin-bottom: -.08em; }
.hero__title .word { display: inline-block; transform: translateY(110%) rotate(3deg); opacity: 0; animation: wordIn 1s var(--ease) forwards; }
@keyframes wordIn { to { transform: translateY(0) rotate(0); opacity: 1; } }
.hero__lede { max-width: 620px; font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-2); font-weight: 300; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__status { margin-top: 56px; display: inline-flex; flex-direction: column; gap: 6px; padding: 14px 18px; border-radius: 14px; border: 1px solid var(--line); background: rgba(16,16,19,.55); backdrop-filter: blur(8px); }
.status__row { display: flex; align-items: center; gap: 10px; }
.status__row--muted { color: var(--ink-3); flex-wrap: wrap; }
.status__row b { color: var(--ink); font-weight: 600; }
.status__dot { width: 8px; height: 8px; border-radius: 50%; background: #55e08a; box-shadow: 0 0 12px #55e08a; }
.hero__scroll { position: absolute; z-index: 1; right: var(--pad); bottom: 36px; display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--ink-3); }
.hero__scroll-line { width: 1px; height: 54px; background: linear-gradient(to bottom, var(--o2), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; inset: 0; background: var(--bg); animation: scrollLine 2s var(--ease) infinite; }
@keyframes scrollLine { from { transform: translateY(-100%);} to { transform: translateY(100%);} }

/* reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; background: var(--bg-2); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 34px; width: max-content; padding: 16px 0; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-2); white-space: nowrap; }
.marquee__track i { width: 6px; height: 6px; border-radius: 50%; background: var(--o2); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { position: relative; padding: clamp(80px, 10vw, 140px) var(--pad); max-width: calc(var(--max) + var(--pad) * 2); margin: 0 auto; }
.section--alt { max-width: none; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--alt > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section__head { max-width: 760px; margin-bottom: 56px; }
.section__head h2 { margin-top: 16px; }
.section__sub { margin-top: 18px; color: var(--ink-2); font-size: 18px; font-weight: 300; }

/* ---------- bento ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(250px, auto); gap: 16px; }
.card, .plan {
  position: relative; overflow: hidden; border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)), var(--bg-2);
  border: 1px solid var(--line);
  transform-style: preserve-3d; transition: border-color .4s, box-shadow .5s;
}
.card::before, .plan::before {
  /* gradient border that follows the cursor */
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(255,160,70,.85), rgba(255,77,28,.25) 40%, transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .4s;
}
.card:hover::before, .plan:hover::before { opacity: 1; }
.card:hover, .plan:hover { box-shadow: 0 30px 60px -30px rgba(255,90,20,.35); }
.card__spot { position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .4s;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(255,122,26,.16), transparent 60%); }
.card:hover .card__spot, .plan:hover .card__spot { opacity: 1; }
.card { grid-column: span 2; display: flex; flex-direction: column; }
.card--wide { grid-column: span 4; }
.card--tall { grid-row: span 2; }
.card__body { position: relative; z-index: 2; padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.card__body p { color: var(--ink-2); font-size: 15.5px; }
.card__icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid rgba(255,122,26,.25); margin-bottom: 6px; }
.card__icon svg { width: 22px; height: 22px; fill: none; stroke: var(--o1); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.chips li { font: 500 12px/1 var(--font-mono); padding: 7px 10px; border-radius: 8px; border: 1px solid var(--line-2); color: var(--ink-2); background: rgba(255,255,255,.02); }
.card__art { position: relative; z-index: 1; margin-top: auto; pointer-events: none; }

/* card art: rack */
.card--wide .card__body { max-width: 62%; }
.card__art--rack { position: absolute; right: 26px; top: 26px; bottom: 26px; width: 30%; }
.rack { height: 100%; display: flex; flex-direction: column; gap: 8px; padding: 10px; border-radius: 12px; border: 1px solid var(--line-2); background: #0c0c0f; }
.ru { flex: 1; border-radius: 6px; background: #17171c; border: 1px solid var(--line); display: flex; align-items: center; gap: 6px; padding: 0 10px; }
.ru i { width: 6px; height: 6px; border-radius: 50%; background: #2a2a31; }
.ru--sw i { background: var(--o2); opacity: .25; animation: blink 1.6s infinite; }
.ru--sw i:nth-child(2n) { animation-delay: .35s; } .ru--sw i:nth-child(3n) { animation-delay: .7s; } .ru--sw i:nth-child(5n) { animation-delay: 1.1s; }
@keyframes blink { 0%,100%{opacity:.2} 50%{opacity:1} }
.ru--srv b { flex: 1; height: 5px; border-radius: 3px; background: #26262c; }
.ru--srv i { background: #55e08a; box-shadow: 0 0 6px #55e08a; }
.ru--srv i:last-child { background: var(--o1); box-shadow: 0 0 6px var(--o1); }

/* card art: camera sweep */
.card__art--cam { height: 110px; margin: 0 28px 24px; border-radius: 12px; border: 1px solid var(--line); background: #0c0c0f; overflow: hidden; position: relative;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 22px 22px; }
.cam-sweep { position: absolute; left: 50%; bottom: -10px; width: 260px; height: 260px; transform: translateX(-50%); border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255,122,26,.0) 0deg, rgba(255,122,26,.45) 40deg, transparent 41deg); animation: sweep 4s linear infinite; }
@keyframes sweep { to { transform: translateX(-50%) rotate(360deg); } }
.rec { position: absolute; right: 12px; top: 10px; color: #ff4d4d; animation: blink 1.2s steps(2) infinite; }

/* card art: terminal */
.card__art--term { margin: 0 28px 24px; height: 118px; border-radius: 12px; border: 1px solid var(--line); background: #0a0a0c; padding: 12px 14px; overflow: hidden; color: #9ce6b3; font-size: 12px; line-height: 1.55; }
.card__art--term pre { margin: 0; white-space: pre-wrap; font: inherit; }
.card__art--term .p { color: var(--o1); }
.card__art--term .c { color: var(--ink-3); }
.card__art--term .cur { display: inline-block; width: 7px; height: 13px; background: var(--o2); vertical-align: -2px; animation: blink 1s steps(2) infinite; }

/* card art: orbit */
.card__art--orbit { flex: 1; min-height: 240px; display: grid; place-items: center; }
.orbit { position: relative; width: 210px; height: 210px; }
.orbit__core { position: absolute; left: 50%; top: 50%; width: 26px; height: 26px; border-radius: 50%; transform: translate(-50%,-50%); background: var(--grad); box-shadow: 0 0 40px rgba(255,122,26,.7); }
.orbit__ring { position: absolute; inset: 0; border-radius: 50%; border: 1px dashed rgba(255,255,255,.14); animation: spin linear infinite; }
.orbit__ring i { position: absolute; top: -5px; left: 50%; width: 10px; height: 10px; margin-left: -5px; border-radius: 50%; background: var(--o1); box-shadow: 0 0 12px var(--o1); }
.r1 { inset: 20%; animation-duration: 6s; } .r2 { inset: 8%; animation-duration: 11s; animation-direction: reverse; } .r3 { inset: -4%; animation-duration: 18s; }
@keyframes spin { to { transform: rotate(360deg); } }

/* card art: bars */
.card__art--bars { margin: 0 28px 24px; height: 90px; }
.bars { display: flex; align-items: flex-end; gap: 6px; height: 100%; }
.bars i { flex: 1; height: 30%; border-radius: 4px 4px 0 0; background: linear-gradient(to top, rgba(255,77,28,.35), var(--o2)); animation: bar 2.4s ease-in-out infinite; transform-origin: bottom; }
.bars i:nth-child(n) { animation-delay: calc(var(--i, 0) * .12s); }
@keyframes bar { 0%,100%{transform:scaleY(.4)} 50%{transform:scaleY(1)} }

/* card art: graph */
.card__art--graph { position: absolute; right: 0; bottom: 0; width: 55%; height: 130px; }
.graph { width: 100%; height: 100%; }
.graph__fill { fill: url(#gfill); }
.graph__line { fill: none; stroke: var(--o1); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 2000; stroke-dashoffset: 2000; }
.in .graph__line { animation: draw 2.4s var(--ease) forwards .3s; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: s; }
.step { position: relative; padding: 34px 30px 30px; border-radius: var(--r); border: 1px solid var(--line); background: var(--bg); display: flex; flex-direction: column; gap: 22px; transition: transform .5s var(--ease), border-color .4s; }
.step:hover { transform: translateY(-6px); border-color: rgba(255,122,26,.45); }
.step__num { font-size: 46px; font-weight: 600; letter-spacing: 0; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.step h3 { margin-bottom: 10px; }
.step p { color: var(--ink-2); font-size: 15.5px; }
.step::after { content: ""; position: absolute; right: -16px; top: 50%; width: 16px; height: 1px; background: var(--line-2); }
.step:last-child::after { display: none; }

/* ---------- plans ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.plan { padding: 34px 30px; display: flex; flex-direction: column; gap: 18px; }
.plan > * { position: relative; z-index: 2; }
.plan--featured { background: linear-gradient(180deg, rgba(255,122,26,.12), rgba(255,77,28,.03)), var(--bg-2); border-color: rgba(255,122,26,.4); }
.plan__badge { position: absolute; top: 18px; right: 18px; padding: 6px 10px; border-radius: 999px; background: var(--grad); color: #140a04; font-weight: 600; }
.plan__price { font-family: var(--font-display); font-weight: 700; font-size: 44px; letter-spacing: 0; display: flex; align-items: baseline; gap: 8px; }
.plan__from { font-size: 12px; color: var(--ink-3); font-weight: 400; letter-spacing: .05em; }
.plan__per { font-size: 16px; color: var(--ink-3); font-family: var(--font-body); font-weight: 400; }
.plan ul { display: flex; flex-direction: column; gap: 10px; margin: 6px 0 14px; flex: 1; }
.plan li { position: relative; padding-left: 22px; color: var(--ink-2); font-size: 15px; }
.plan li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 10px; border-radius: 3px; background: var(--grad); transform: rotate(45deg) scale(.7); }
.plan .btn { justify-content: center; }

/* install-only */
.install { margin-top: 16px; padding: 34px 30px; display: grid; grid-template-columns: 1.1fr 1fr; grid-template-areas: "copy rates"; gap: 32px; align-items: center; transform: none !important; }
.install > .card__spot { position: absolute; grid-area: auto; }
.install__copy { grid-area: copy; }
.install__rates { grid-area: rates; }
.install .btn { justify-content: center; align-self: flex-start; }
.install li.install__rate { padding: 12px 14px; font-size: inherit; }
.install li::before { display: none; }
.install__copy h3 { margin: 10px 0 12px; }
.install__copy p { color: var(--ink-2); font-size: 15.5px; max-width: 46ch; }
.install__rates { display: flex; flex-direction: column; gap: 10px; margin: 0; }
.install__rate { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 12px 14px; border: 1px solid var(--line-2); border-radius: 12px; background: rgba(255,255,255,.02); }
.install__rate strong { font-family: var(--font-display); font-weight: 700; font-size: 20px; white-space: nowrap; }
.install__rate span { color: var(--ink-2); font-size: 14px; }
.install__rate small { display: block; color: var(--ink-3); font-size: 12px; margin-top: 2px; }

/* ---------- booking ---------- */
.section--booking { padding-top: 0; }
.booking { position: relative; border: 1px solid var(--line-2); border-radius: 22px; background: var(--bg-2); overflow: hidden; }
.booking__frame { position: relative; min-height: 640px; background: var(--bg-2); }
.booking--live .booking__frame { background: #fff; }
.booking__frame iframe { display: block; width: 100%; height: 100%; min-height: 640px; border: 0; }
.booking__empty { min-height: 640px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 14px; padding: 40px 24px; background: radial-gradient(60% 50% at 50% 40%, rgba(255,122,26,.10), transparent 70%); }
.booking__empty h3 { font-size: clamp(24px, 3vw, 36px); }
.booking__empty > p:not(.eyebrow) { color: var(--ink-2); max-width: 44ch; font-size: 16px; }
.booking__empty .btn { margin-top: 10px; }
.booking__alt { padding: 14px 20px; color: var(--ink-3); border-top: 1px solid var(--line-2); }
.booking__link { color: var(--o1); text-decoration: underline; text-underline-offset: 3px; }
.booking__link:hover { color: var(--ink); }

/* ---------- contact ---------- */
.section--contact { padding-bottom: clamp(60px, 8vw, 120px); }
.contact { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(30px, 6vw, 90px); align-items: start; }
.contact__copy h2 { margin: 16px 0 18px; }
.contact__copy > p { color: var(--ink-2); font-size: 18px; font-weight: 300; }
.contact__meta { margin-top: 30px; display: flex; flex-direction: column; gap: 8px; color: var(--ink-3); }
.contact__meta li::before { content: "//"; color: var(--o2); margin-right: 10px; }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 28px; border-radius: var(--r); border: 1px solid var(--line); background: var(--bg-2); }
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field input, .field select, .field textarea {
  width: 100%; padding: 22px 16px 10px; border-radius: 12px; border: 1px solid var(--line-2); background: var(--bg);
  color: var(--ink); font: 400 15px/1.4 var(--font-body); outline: none; transition: border-color .25s, box-shadow .25s; appearance: none; resize: vertical;
}
.field select { padding-right: 40px; background-image: linear-gradient(45deg, transparent 50%, var(--ink-3) 50%), linear-gradient(135deg, var(--ink-3) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.field label { position: absolute; left: 16px; top: 17px; font-size: 14.5px; color: var(--ink-3); pointer-events: none; transition: transform .25s var(--ease), color .25s, font-size .25s; transform-origin: 0 0; }
.field input:focus ~ label, .field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label, .field textarea:not(:placeholder-shown) ~ label,
.field select:focus ~ label, .field select:valid ~ label { transform: translateY(-10px); font-size: 11.5px; color: var(--o1); letter-spacing: .06em; text-transform: uppercase; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(255,122,26,.6); box-shadow: 0 0 0 4px rgba(255,122,26,.12); }
.field.error input, .field.error select { border-color: #ff4d4d; }
.form .btn { justify-content: center; margin-top: 6px; }
.form__note { grid-column: 1 / -1; color: var(--ink-3); min-height: 1em; text-align: center; }
.form__note.ok { color: #55e08a; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); }
.footer__inner { max-width: var(--max); margin: 0 auto; padding: 30px var(--pad); display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer__copy { color: var(--ink-3); margin-left: auto; }
.footer__top { color: var(--ink-2); padding: 8px 12px; border: 1px solid var(--line-2); border-radius: 999px; transition: border-color .3s, color .3s; }
.footer__top:hover { border-color: var(--o2); color: var(--o1); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .card--wide { grid-column: span 4; }
  .card { grid-column: span 2; }
  .card--tall { grid-row: span 1; }
  .card__art--orbit { height: 200px; }
}
@media (max-width: 860px) {
  .nav__links { position: fixed; inset: 0; z-index: -1; flex-direction: column; justify-content: center; align-items: center; gap: 10px; background: rgba(11,11,13,.96); backdrop-filter: blur(20px); opacity: 0; pointer-events: none; transition: opacity .3s; }
  .nav__links a { font-size: 28px; font-family: var(--font-display); font-weight: 700; letter-spacing: 0; }
  .nav--open .nav__links { opacity: 1; pointer-events: auto; z-index: 1; }
  .nav--open { background: transparent; border-color: transparent; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }
  .steps, .plans { grid-template-columns: 1fr; }
  .install { grid-template-columns: 1fr; grid-template-areas: "copy" "rates"; }
  .step::after { display: none; }
  .contact { grid-template-columns: 1fr; }
  .card--wide .card__body { max-width: 100%; }
  .card__art--rack { display: none; }
  .card__art--graph { position: relative; width: 100%; height: 100px; }
  .hero__scroll { display: none; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .card, .card--wide { grid-column: span 1; }
  .form { grid-template-columns: 1fr; padding: 20px; }
  .hero { padding-top: 120px; }
  .hero__status { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero__title .word, .reveal { opacity: 1; transform: none; }
}
