/* ============================================================
   Orbit — marketing site
   ============================================================ */

:root {
  --bg: #06070c;
  --bg-elev: #0c0f18;
  --bg-elev-2: #10141f;
  --card: rgba(255, 255, 255, 0.035);
  --card-border: rgba(255, 255, 255, 0.09);
  --card-border-hover: rgba(255, 255, 255, 0.18);
  --text: #eef1f8;
  --text-dim: #a3aabc;
  --text-dimmer: #6b7284;

  --violet: #8b6bff;
  --violet-soft: #a892ff;
  --teal: #34e0c8;
  --amber: #ffb454;
  --coral: #ff7a7a;

  /* fixed brand gradient — always the vivid dark-mode stops, not the
     text-safe themed --violet/--teal, since this is used as a background
     (buttons, the orbit core label) rather than text sitting on the page */
  --grad: linear-gradient(120deg, #8b6bff 0%, #34e0c8 100%);

  /* neutral hairlines/grid, relative to --bg — themed below */
  --grid-line: rgba(255, 255, 255, 0.035);
  --hairline: rgba(255, 255, 255, 0.09);
  --hairline-strong: rgba(255, 255, 255, 0.14);

  /* fixed light-on-dark text for the header + photo hero, which always
     keep a dark glass/scrim background regardless of site theme */
  --on-dark-text: #eef1f8;
  --on-dark-text-dim: #a3aabc;
  --on-dark-text-dimmer: #6b7284;

  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 24px;

  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --maxw: 1180px;
}

:root[data-theme="light"] {
  --bg: #f6f7fb;
  --bg-elev: #ffffff;
  --bg-elev-2: #eef0f6;
  --card: rgba(10, 14, 30, 0.035);
  --card-border: rgba(10, 14, 30, 0.1);
  --card-border-hover: rgba(10, 14, 30, 0.22);
  --text: #12131a;
  --text-dim: #4b5165;
  --text-dimmer: #757c90;

  --violet: #6d4fe0;
  --violet-soft: #5d3fd6;
  --teal: #0c8e7c;
  --amber: #b5650f;
  --coral: #d1374a;

  --grid-line: rgba(10, 14, 30, 0.05);
  --hairline: rgba(10, 14, 30, 0.1);
  --hairline-strong: rgba(10, 14, 30, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal);
  color: #06070c;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 999;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* background grid + glow, sits behind everything */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--text-dim); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

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

.section-kicker {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--teal);
  margin: 0 0 0.9em;
}

.lede {
  max-width: 640px;
  font-size: 1.05rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #06070c;
  box-shadow: 0 8px 24px -8px rgba(139, 107, 255, 0.55);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(139, 107, 255, 0.7); }
.btn-ghost {
  background: rgba(127,132,150,0.08);
  color: var(--text);
  border-color: var(--card-border);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--card-border-hover); background: rgba(127,132,150,0.14); }
/* the hero always sits on a dark photo scrim, independent of site theme */
.hero .btn-ghost {
  color: var(--on-dark-text);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
}
.hero .btn-ghost:hover { background: rgba(255,255,255,0.11); border-color: rgba(255,255,255,0.28); }
.btn-orange {
  background: linear-gradient(120deg, #ff9a3d 0%, #ff6a1a 100%);
  color: #1a0800;
  box-shadow: 0 8px 24px -8px rgba(255, 122, 26, 0.55);
}
.btn-orange:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(255, 122, 26, 0.7); }
.btn-small { padding: 9px 18px; font-size: 0.85rem; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  /* solid, not translucent — over the hero it still reads as glass thanks to
     the blur, but scrolled past it (light theme especially) it must stay a
     flat dark bar rather than blending with whatever is behind it */
  background: #06070c;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  margin-right: auto;
}
/* header always keeps its dark glass background, so its logo text
   stays fixed light regardless of site theme (footer logo still themes) */
.site-header .logo { color: var(--on-dark-text); }
.logo-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.logo-mark {
  position: relative;
  width: 26px;
  height: 26px;
  flex: none;
}
.logo-core {
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px 1px rgba(52, 224, 200, 0.7);
}
.logo-ring {
  position: absolute;
  inset: 0;
  border: 1.4px dashed rgba(139, 107, 255, 0.75);
  border-radius: 50%;
  animation: spin 7s linear infinite;
}
.logo-node {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
  border-radius: 50%;
  background: var(--violet-soft);
  animation: spin 7s linear infinite;
  transform-origin: -12px 2.5px;
}

.site-nav {
  display: flex;
  gap: 28px;
}
.site-nav a {
  color: var(--on-dark-text-dim);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color .15s ease;
}
.site-nav a:hover { color: var(--on-dark-text); }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  color: var(--on-dark-text);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.theme-toggle:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.26); }
.theme-toggle svg { width: 17px; height: 17px; }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="light"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: block; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  height: 1.6px;
  background: var(--on-dark-text);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 28px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav a:not(.btn) {
  color: var(--on-dark-text-dim);
  text-decoration: none;
  padding: 10px 4px;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav .btn { margin-top: 10px; align-self: flex-start; }

body.nav-open .mobile-nav { display: flex; }

@media (max-width: 860px) {
  .site-nav, .header-inner > .btn-small { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.62);
  transform: scale(1.04);
  /* runs continuously and independently of which slide is active — only
     opacity is tied to .is-active. If the zoom were scoped to .is-active,
     it would get cancelled mid-cycle on every crossfade and the outgoing
     image would visibly snap back to its resting scale while fading out. */
  animation: kenburns 26s ease-in-out infinite alternate;
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}
@keyframes kenburns {
  from { transform: scale(1.0); }
  to { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide img { animation: none; }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 55% at 20% 15%, rgba(139,107,255,0.28), transparent 60%),
    radial-gradient(45% 40% at 85% 85%, rgba(52,224,200,0.18), transparent 60%),
    linear-gradient(180deg, rgba(6,7,12,0.55) 0%, rgba(6,7,12,0.75) 55%, rgba(6,7,12,0.96) 100%);
}

.hero-inner {
  padding-top: 70px;
  padding-bottom: 90px;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-text-dim);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  margin: 0 0 22px;
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34e0c8;
  box-shadow: 0 0 8px 1px rgba(52,224,200,0.8);
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  color: var(--on-dark-text);
  font-size: clamp(2.2rem, 5.4vw, 3.7rem);
  margin-bottom: 0.42em;
}
.hero-sub {
  font-size: 1.12rem;
  color: #c7cddd;
  max-width: 620px;
  margin-bottom: 34px;
}
.hero-sub em { color: #34e0c8; font-style: normal; }

/* fake terminal / chat console with typewriter prompts */
.hero-console {
  background: rgba(10, 12, 20, 0.72);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-m);
  backdrop-filter: blur(10px);
  max-width: 560px;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
}
.console-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.console-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.14);
}
.console-label {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--on-dark-text-dimmer);
}
.console-body {
  padding: 18px 18px 20px;
  font-family: var(--font-mono);
  font-size: 1rem;
  /* reserved for the longest prompt at ~3 wrapped lines (padding + 3 line-
     heights, box-sizing: border-box), so the box never jumps taller/shorter
     as shorter/longer prompts type in */
  min-height: 116px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.console-prompt { flex: none; color: #34e0c8; }
/* text + caret share one wrapping box so the caret is a genuine part of the
   text flow — it always trails the real last character, on whichever line
   that ends up on, instead of sitting in its own fixed flex column */
.console-line { flex: 1 1 auto; min-width: 0; }
.console-text { color: var(--on-dark-text); }
.console-caret {
  display: inline-block;
  width: 8px;
  height: 1.1em;
  background: #a892ff;
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-ctas.center { justify-content: center; }

.hero-slide-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-slide-dots span {
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,0.22);
  transition: background .3s ease;
}
.hero-slide-dots span.is-active { background: #34e0c8; }

/* ============================================================
   Reframe section
   ============================================================ */
.reframe { padding: 100px 0 60px; }
.reframe-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.reframe-not { display: flex; flex-direction: column; gap: 18px; }
.not-item {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--text-dimmer);
  margin: 0;
  padding: 14px 18px;
  border: 1px dashed var(--hairline-strong);
  border-radius: var(--radius-s);
}
.strike { position: relative; }
.strike::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; top: 50%;
  height: 1.5px;
  background: var(--coral);
  transform: rotate(-2deg);
}
.reframe-is h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.reframe-is .lede { max-width: 560px; font-size: 1rem; }

@media (max-width: 820px) {
  .reframe-grid { grid-template-columns: 1fr; gap: 34px; }
}

/* ============================================================
   Ask it anything
   ============================================================ */
.ask { padding: 70px 0 110px; }
.ask h2 { max-width: 720px; }
.ask .lede { max-width: 620px; margin-bottom: 44px; }

.ask-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ask-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-m);
  padding: 20px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.ask-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-3px);
  background: rgba(127,132,150,0.09);
}
.ask-card p {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  color: var(--text);
  margin: 12px 0 0;
  line-height: 1.5;
}
.ask-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
}
.tag-overview { background: rgba(168,146,255,0.16); color: var(--violet-soft); }
.tag-sales    { background: rgba(52,224,200,0.15); color: var(--teal); }
.tag-marketing{ background: rgba(255,180,84,0.16); color: var(--amber); }
.tag-time     { background: rgba(255,122,122,0.15); color: var(--coral); }
.tag-inbox    { background: rgba(139,107,255,0.18); color: var(--violet-soft); }

@media (max-width: 980px) { .ask-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ask-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Products + Orbit visual
   ============================================================ */
.products { padding: 40px 0 110px; }
.products h2 { max-width: 640px; }

.orbit-visual {
  position: relative;
  width: 340px;
  height: 340px;
  margin: 50px auto 70px;
}
.orbit-ring {
  position: absolute;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  top: 50%; left: 50%;
}
.ring-1 { width: 140px; height: 140px; margin: -70px 0 0 -70px; }
.ring-2 { width: 240px; height: 240px; margin: -120px 0 0 -120px; border-style: dashed; border-color: rgba(139,107,255,0.22); }
.ring-3 { width: 340px; height: 340px; margin: -170px 0 0 -170px; }

.orbit-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 84px; height: 84px;
  margin: -42px 0 0 -42px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #221a3d, #0c0f18 70%);
  border: 1px solid rgba(139,107,255,0.5);
  box-shadow: 0 0 40px 4px rgba(139,107,255,0.35), inset 0 0 20px rgba(52,224,200,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseCore 3.2s ease-in-out infinite;
}
.orbit-core-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  text-align: center;
  line-height: 1.25;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.orbit-node {
  position: absolute;
  top: 50%; left: 50%;
  width: 240px; height: 240px;
  margin: -120px 0 0 -120px;
  border-radius: 50%;
  pointer-events: none;
}
.orbit-node span {
  position: absolute;
  top: -6px; left: 50%;
  width: 12px; height: 12px;
  margin-left: -6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px 2px rgba(52,224,200,0.7);
}
.node-1 { animation: spin 14s linear infinite; }
.node-2 { width: 340px; height: 340px; margin: -170px 0 0 -170px; animation: spin 20s linear infinite reverse; }
.node-2 span { background: var(--violet-soft); box-shadow: 0 0 12px 2px rgba(168,146,255,0.7); }
.node-3 { width: 140px; height: 140px; margin: -70px 0 0 -70px; animation: spin 9s linear infinite; }
.node-3 span { background: var(--amber); box-shadow: 0 0 12px 2px rgba(255,180,84,0.7); width: 9px; height: 9px; margin-left: -4.5px; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulseCore {
  0%, 100% { box-shadow: 0 0 40px 4px rgba(139,107,255,0.35), inset 0 0 20px rgba(52,224,200,0.15); }
  50% { box-shadow: 0 0 56px 10px rgba(139,107,255,0.5), inset 0 0 26px rgba(52,224,200,0.25); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (max-width: 560px) {
  .orbit-visual { width: 260px; height: 260px; margin: 40px auto 56px; }
  .ring-3, .node-2 { width: 260px; height: 260px; margin: -130px 0 0 -130px; }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-l);
  padding: 28px 26px 30px;
  transition: border-color .2s ease, transform .2s ease;
}
.product-card:hover { border-color: var(--card-border-hover); transform: translateY(-4px); }

.product-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.product-icon {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--card-border);
}
.product-icon svg { width: 20px; height: 20px; }
.icon-sales { color: var(--teal); background: rgba(52,224,200,0.08); }
.icon-marketing { color: var(--amber); background: rgba(255,180,84,0.08); }
.icon-inbox { color: var(--violet-soft); background: rgba(139,107,255,0.1); }

.product-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.product-card h3 { margin: 0; }
.product-desc { font-size: 0.95rem; margin-bottom: 18px; }

.product-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-features li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.product-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--grad);
  transform: rotate(45deg);
}

@media (max-width: 980px) { .product-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Data / GDPR
   ============================================================ */
.data { padding: 40px 0 110px; }
.data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 880px;
  margin: 40px auto 0;
}
.data-card {
  background: var(--bg-elev);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-l);
  padding: 30px 28px;
}
.data-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  color: var(--teal);
  background: rgba(52,224,200,0.08);
  border: 1px solid var(--card-border);
  margin-bottom: 16px;
}
.data-icon svg { width: 22px; height: 22px; }
.data-card:nth-child(2) .data-icon { color: var(--violet-soft); background: rgba(139,107,255,0.1); }
.data-card p { font-size: 0.95rem; margin: 0; }

@media (max-width: 760px) { .data-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA band + footer
   ============================================================ */
.cta-band {
  padding: 90px 0;
  text-align: center;
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(139,107,255,0.14), transparent 70%),
    var(--bg-elev);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.cta-inner { max-width: 620px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }

/* ============================================================
   Contact form
   ============================================================ */
.contact { padding: 90px 0 110px; }
.contact h2 { max-width: 640px; }
.contact .lede { margin-bottom: 10px; }

.contact-form {
  max-width: 640px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field > label,
.interest-field legend {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.field input,
.field select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-elev);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-s);
  padding: 12px 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder { color: var(--text-dimmer); }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--violet-soft);
  box-shadow: 0 0 0 3px rgba(139,107,255,0.18);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5l5 5 5-5' stroke='%23a3aabc' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.interest-field { border: none; margin: 0; padding: 0; }
.interest-field legend { padding: 0; margin-bottom: 10px; }
.interest-options { display: flex; flex-wrap: wrap; gap: 10px; }
.interest-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--card-border);
  background: var(--card);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dim);
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.interest-chip input {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.interest-chip:has(input:focus-visible) { outline: 2px solid var(--violet-soft); outline-offset: 2px; }
.interest-chip.chip-overview:has(input:checked) { border-color: var(--violet-soft); color: var(--violet-soft); background: rgba(139,107,255,0.12); }
.interest-chip.chip-sales:has(input:checked)    { border-color: var(--teal); color: var(--teal); background: rgba(52,224,200,0.12); }
.interest-chip.chip-marketing:has(input:checked){ border-color: var(--amber); color: var(--amber); background: rgba(255,180,84,0.14); }
.interest-chip.chip-inbox:has(input:checked)    { border-color: var(--violet-soft); color: var(--violet-soft); background: rgba(139,107,255,0.12); }

.contact-submit { align-self: flex-start; }
.form-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--teal);
  min-height: 1.2em;
}

@media (max-width: 620px) {
  .form-row { grid-template-columns: 1fr; }
}

.site-footer { padding: 44px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { color: var(--text-dim); text-decoration: none; font-size: 0.88rem; }
.footer-nav a:hover { color: var(--text); }
.footer-copy { color: var(--text-dimmer); font-size: 0.85rem; margin: 0; }

@media (max-width: 700px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
