/* =========================================================
   Lumshot — stylesheet
   Organized: custom properties, reset/base, animations,
   layout shell, nav, hero, sections in page order, footer,
   responsive media queries.
   ========================================================= */

/* ---------- Custom properties ---------- */
:root {
  /* Surfaces — a touch of warmth in the black so it reads considered, not clinical */
  --color-bg: #0A0B0D;
  --color-bg-alt: #0E1013;
  --color-bg-card: #14161B;
  --color-bg-titlebar: #1A1D23;
  --color-bg-footer: #070809;

  /* Text — a disciplined 3-step ramp (+ hairline for decorative use only) */
  --text-primary: rgba(240, 242, 245, .94);
  --text-secondary: rgba(240, 242, 245, .74);
  --text-tertiary: rgba(240, 242, 245, .56);
  --text-hairline: rgba(240, 242, 245, .38);
  --color-text: var(--text-primary);

  /* Legacy aliases kept so existing rules resolve to the new ramp */
  --color-text-muted-66: var(--text-secondary);
  --color-text-muted-62: var(--text-secondary);
  --color-text-muted-6: var(--text-secondary);
  --color-text-muted-58: var(--text-secondary);
  --color-text-muted-55: var(--text-tertiary);
  --color-text-muted-5: var(--text-tertiary);
  --color-text-muted-45: var(--text-tertiary);
  --color-text-muted-4: var(--text-hairline);
  --color-text-muted-35: var(--text-hairline);
  --color-text-muted-32: var(--text-hairline);
  --color-text-muted-25: rgba(240, 242, 245, .28);

  /* Teal — the interface / action tone (from the logo) */
  --color-accent: #21D2BB;
  --color-accent-light: #5EE0CB;
  --color-accent-lighter: #9CEFE0;
  --color-accent-deep: #0F6E62;
  --color-accent-deeper: #0A4A42;
  --color-accent-deepest: #04201C;

  /* Warm light — the "captured light" tone. The counterweight to teal. */
  --color-warm: #FFB27A;
  --color-warm-light: #FFCBA3;
  --color-warm-deep: #C77A45;

  --color-violet: var(--color-warm-light);

  --border-subtle: rgba(255, 255, 255, .07);
  --border-subtle-2: rgba(255, 255, 255, .08);
  --border-faint: rgba(255, 255, 255, .05);
  --border-accent: rgba(33, 210, 187, .28);

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

  --container-lg: 1200px;
  --container-md: 1140px;
  --container-sm: 1100px;
  --container-xs: 980px;

  /* Signature glow for primary actions — ties buttons to the "light" idea */
  --glow-teal: 0 8px 30px rgba(33, 210, 187, .35);
}

/* ---------- Reset / base ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Visible keyboard focus everywhere — cheap, and part of feeling premium */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

:focus:not(:focus-visible) {
  outline: none;
}

img {
  max-width: 100%;
}

button {
  font-family: inherit;
}

::selection {
  background: rgba(33, 210, 187, .4);
  color: #fff;
}

/* ---------- Animations ---------- */
@keyframes lumPulse {
  0%, 100% { opacity: .5; }
  50% { opacity: .85; }
}

/* Hero: the plain screenshot drops in, then the Lumshot frame builds around it.
   Plays once on load — the transformation IS the pitch. */
@keyframes lumFrameBuild {
  0%   { transform: scale(.985); }
  100% { transform: scale(1); }
}

@keyframes lumCanvasBloom {
  0%   { padding: 8px; }
  100% { padding: clamp(30px, 5vw, 68px); }
}

@keyframes lumFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Signature "light sweep" — a specular highlight passing across a frame, like
   light catching glass. Used sparingly (hero + final CTA). */
@keyframes lumSweep {
  0%   { transform: translateX(-120%) skewX(-18deg); opacity: 0; }
  12%  { opacity: .55; }
  40%  { opacity: 0; }
  100% { transform: translateX(320%) skewX(-18deg); opacity: 0; }
}

/* Reduced motion: kill every looping/entrance animation and reveal offsets */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Page shell ---------- */
.page {
  position: relative;
  width: 100%;
  background: var(--color-bg);
  overflow-x: hidden;
}

.hero-glow {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 760px;
  background: radial-gradient(closest-side, rgba(33, 210, 187, .22), rgba(33, 210, 187, .06) 55%, transparent 72%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
  animation: lumPulse 7s ease-in-out infinite;
}

/* [data-reveal] elements are progressively enhanced by script.js
   (opacity/transform + IntersectionObserver). They render fully
   visible without JS. */

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 11px;
  font-size: 14.5px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all .2s;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  color: #04201C;
  background: linear-gradient(180deg, var(--color-accent-light), var(--color-accent));
  border-color: transparent;
  box-shadow: var(--glow-teal), inset 0 1px 0 rgba(255, 255, 255, .35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(33, 210, 187, .5), inset 0 1px 0 rgba(255, 255, 255, .45);
}

.btn-secondary {
  color: var(--color-text);
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .13);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .22);
}

.btn-disabled {
  color: var(--color-text-muted-4);
  background: rgba(255, 255, 255, .03);
  border-color: var(--border-subtle-2);
  cursor: default;
}

.btn-nav {
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 14px;
}

.btn-lg {
  min-width: 232px;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 15px;
}

.win-icon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5px;
  width: 17px;
  height: 17px;
}

.win-icon span {
  background: currentColor;
  border-radius: 1px;
}

.mac-icon {
  width: 17px;
  height: 17px;
  display: block;
  fill: var(--color-text-muted-4);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 16px 16px 0;
}

.nav-box {
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 14px 18px 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 18px;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}

.nav-box.is-scrolled {
  background: rgba(14, 15, 20, .82);
  border-color: rgba(255, 255, 255, .1);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .5);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.nav-logo {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.nav-logo-img {
  height: 26px;
  display: block;
}

.nav-beta {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--color-accent);
  line-height: 1;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14.5px;
  color: var(--color-text-muted-66);
  font-weight: 500;
}

.nav-links a {
  transition: color .2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle-2);
  background: rgba(255, 255, 255, .03);
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.nav-burger span {
  width: 16px;
  height: 1.6px;
  background: var(--color-text);
  display: block;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  margin: 8px 0 0;
  padding: 12px 20px 18px;
  border-radius: 18px;
  background: rgba(11, 11, 15, .96);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle-2);
}

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

.nav-mobile a {
  padding: 12px 8px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border-faint);
}

.nav-mobile-cta {
  margin-top: 12px;
  text-align: center;
  padding: 13px;
  border-radius: 11px;
  font-weight: 600;
  color: var(--color-bg);
  background: var(--color-accent);
  border-bottom: none !important;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 1;
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 180px 24px 96px;
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--color-accent-lighter);
  background: rgba(33, 210, 187, .1);
  border: 1px solid var(--border-accent);
  margin-bottom: 30px;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent);
  display: block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 66px);
  line-height: 1.03;
  letter-spacing: -.03em;
  font-weight: 700;
  margin: 0 auto;
  max-width: 18ch;
  text-wrap: balance;
}

.hero-title .accent-light {
  color: var(--color-warm-light);
}

.hero-sub {
  margin: 26px auto 0;
  max-width: 52ch;
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.55;
  color: var(--text-secondary);
  font-weight: 400;
}

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

.hero-note {
  margin: 40px 0 0;
  font-size: 13.5px;
  color: var(--color-text-muted-4);
}

.hero-shot {
  margin-top: 120px;
  will-change: transform;
}

.hero-shot-float {
  position: relative;
  animation: lumFrameBuild 1s cubic-bezier(.2, .7, .2, 1) both;
}

.hero-shot-glow {
  position: absolute;
  inset: -40px -10px -60px;
  background: radial-gradient(closest-side, rgba(33, 210, 187, .32), transparent 70%);
  filter: blur(34px);
  z-index: -1;
}

/* ---------- App window mock (hero) ---------- */
.app-window {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-bg-card);
  border: 1px solid var(--border-subtle-2);
  box-shadow: 0 44px 130px rgba(0, 0, 0, .65), 0 0 0 1px rgba(255, 255, 255, .02) inset;
}

/* Signature light-sweep — passes once, ~1.2s after the frame builds */
.app-window::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .16), transparent);
  pointer-events: none;
  z-index: 3;
  transform: translateX(-120%) skewX(-18deg);
  animation: lumSweep 1.6s ease-in 1.3s both;
}

.app-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: linear-gradient(#1A1A23, #14141B);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.app-titlebar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-name {
  font-weight: 600;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .62);
}

.app-titlebar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chip {
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--color-text-muted-4);
  border: 1px solid var(--border-subtle-2);
}

.chip-active {
  font-weight: 600;
  color: var(--color-accent-lighter);
  background: rgba(33, 210, 187, .16);
  border-color: rgba(33, 210, 187, .3);
}

.app-window-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .3);
  margin-left: 8px;
}

.ctrl-line {
  width: 11px;
  height: 1.5px;
  background: currentColor;
  display: block;
}

.ctrl-square {
  width: 9px;
  height: 9px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  display: block;
}

.ctrl-close {
  font-size: 12px;
  line-height: 1;
}

.app-canvas {
  padding: clamp(30px, 5vw, 68px);
  background: radial-gradient(120% 120% at 30% 0%, #0F6E62 0%, #0A4A42 46%, #04201C 100%);
  animation: lumCanvasBloom 1.1s cubic-bezier(.2, .7, .2, 1);
}

/* The frame fades in as the canvas blooms. Default state is fully visible, so
   the screenshot is never stuck hidden if the animation is skipped/interrupted. */
.shot-frame {
  opacity: 1;
  animation: lumFadeIn .7s ease .3s backwards;
}

.shot-frame {
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-bg-alt);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 34px 80px rgba(0, 0, 0, .55);
}

.shot-titlebar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: var(--color-bg-titlebar);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.shot-image {
  aspect-ratio: 16 / 9;
  background: var(--color-bg-alt);
}

.shot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Section heads (shared) ---------- */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.6vw, 42px);
  letter-spacing: -.025em;
  font-weight: 700;
  margin: 0;
  max-width: 26ch;
  margin-inline: auto;
  text-wrap: balance;
}

.section-sub {
  margin: 18px auto 0;
  max-width: 60ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.section-title-lg {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.8vw, 44px);
  letter-spacing: -.028em;
  font-weight: 700;
  margin: 0 auto;
  max-width: 24ch;
  text-wrap: balance;
}

.section-sub-lg {
  margin: 24px auto 0;
  max-width: 62ch;
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ---------- Credibility ---------- */
.credibility {
  position: relative;
  z-index: 1;
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 30px 24px 20px;
  text-align: center;
}

.credibility-text {
  font-size: 14.5px;
  color: var(--color-text-muted-5);
  font-weight: 500;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--color-text-muted-55);
  border: 1px solid var(--border-subtle-2);
  background: rgba(255, 255, 255, .02);
}

/* ---------- Workflow shift ---------- */
.workflow {
  position: relative;
  z-index: 1;
  max-width: var(--container-xs);
  margin: 0 auto;
  padding: 96px 24px 40px;
  text-align: center;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  text-align: left;
}

.workflow-card {
  padding: 26px 24px;
  border-radius: 18px;
  background: var(--color-bg-card);
  border: 1px solid var(--border-subtle);
  transition: border-color .25s, transform .25s;
}

.workflow-card:hover {
  border-color: rgba(33, 210, 187, .3);
  transform: translateY(-2px);
}

.workflow-num {
  font: 600 13px var(--font-mono);
  color: var(--color-accent);
  margin-bottom: 14px;
}

.workflow-text {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.workflow-sub {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-tertiary);
}

/* ---------- Features ---------- */
.features {
  position: relative;
  z-index: 1;
  max-width: var(--container-md);
  margin: 0 auto;
  padding: 140px 24px 60px;
}

.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 54px 0;
}


.feat-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: rgba(33, 210, 187, .12);
  border: 1px solid var(--border-accent);
  margin-bottom: 20px;
}

/* Shared icon glyph (Phosphor SVGs, inlined). Inherits accent color. */
.lum-icon {
  width: 22px;
  height: 22px;
  display: block;
  color: var(--color-accent-light);
  fill: currentColor;
}

/* Outline-style icons: stroke, not fill (paths already set fill="none") */
.lum-icon-stroke {
  fill: none;
}

.feat-more-icon .lum-icon,
.why-icon .lum-icon {
  width: 20px;
  height: 20px;
}

.lum-icon-toast {
  width: 15px;
  height: 15px;
  color: var(--color-accent-lighter);
}

.feat-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 30px);
  letter-spacing: -.02em;
  font-weight: 700;
  margin: 0;
}

.feat-desc {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 46ch;
}

/* "and more" compact grid for secondary features */
.feat-more {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 40px;
  padding-top: 54px;
  border-top: 1px solid var(--border-faint);
}

.feat-more-card {
  padding: 26px;
  border-radius: 18px;
  background: var(--color-bg-card);
  border: 1px solid var(--border-subtle);
  transition: border-color .25s, transform .25s;
}

.feat-more-card:hover {
  border-color: rgba(33, 210, 187, .3);
  transform: translateY(-2px);
}

.feat-more-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background: rgba(33, 210, 187, .12);
  border: 1px solid var(--border-accent);
  margin-bottom: 16px;
}

.feat-more-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
}

.feat-more-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ---------- Feature media mocks (shared frame) ---------- */
.feat-media-frame {
  border-radius: 20px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

.feat-media-gradient {
  background: radial-gradient(120% 120% at 30% 0%, #0F6E62, #0A4A42 55%, #04201C);
}

.feat-media-inner {
  border-radius: 11px;
  overflow: hidden;
  background: var(--color-bg-alt);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 26px 56px rgba(0, 0, 0, .5);
}

.mock {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-subtle-2);
  background: var(--color-bg-alt);
  aspect-ratio: 16 / 11;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

/* capture mock */
.mock-diagonal-fade {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .03) 0 16px, transparent 16px 32px);
  opacity: .6;
}

.mock-diagonal-fade-plain {
  opacity: 1;
}

.mock-scrim {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 15, .5);
}

.mock-select-box {
  position: absolute;
  left: 18%;
  top: 20%;
  width: 50%;
  height: 48%;
  border: 1.5px solid var(--color-accent);
  background: rgba(33, 210, 187, .08);
  box-shadow: 0 0 0 9999px rgba(11, 11, 15, .45);
}

.mock-select-label {
  position: absolute;
  top: -26px;
  left: 0;
  font: 600 11px var(--font-mono);
  color: var(--color-accent-lighter);
  background: var(--color-accent-deepest);
  padding: 3px 7px;
  border-radius: 5px;
  border: 1px solid rgba(33, 210, 187, .35);
}

.mock-select-handle {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--color-accent);
  border-radius: 2px;
}

.mock-select-handle-br { right: -5px; bottom: -5px; }
.mock-select-handle-tl { left: -5px; top: -5px; }

.mock-toolbar {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 7px;
  background: var(--color-bg-titlebar);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .5);
}

.toolbar-btn {
  padding: 6px 11px;
  border-radius: 8px;
  font: 500 11px var(--font-sans);
  color: rgba(255, 255, 255, .5);
}

.toolbar-btn-active {
  font-weight: 600;
  color: var(--color-bg);
  background: var(--color-accent);
}

/* OCR mock */
.mock-ocr-body {
  padding: 22px;
}

.mock-ocr-label {
  font: 600 12px var(--font-mono);
  color: var(--color-text-muted-4);
  margin-bottom: 14px;
}

.mock-ocr-lines {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ocr-line {
  height: 11px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .12);
}

.ocr-line-accent {
  background: rgba(33, 210, 187, .45);
}

.mock-ocr-toast {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  background: var(--color-bg-titlebar);
  border: 1px solid rgba(33, 210, 187, .35);
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .5);
}

.mock-ocr-toast-text {
  font: 600 12px var(--font-sans);
  color: var(--color-accent-lighter);
}

/* redact mock */
.mock-redact {
  aspect-ratio: 16 / 11;
  padding: 24px;
}

.redact-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.redact-label {
  font: 500 10.5px var(--font-mono);
  color: var(--color-text-muted-35);
  margin-bottom: 6px;
}

.redact-value {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 7px;
  background: rgba(33, 210, 187, .18);
  color: transparent;
  font: 600 13px var(--font-mono);
  position: relative;
  border: 1px solid rgba(33, 210, 187, .32);
  white-space: nowrap;
}

.redact-value-raw {
  color: var(--color-warm-light);
  background: rgba(255, 178, 122, .1);
  border-color: rgba(255, 178, 122, .28);
}

/* before/after: the "before" layer sits on top, clipped from the left */
.redact-before {
  position: absolute;
  inset: 0;
  padding: 24px;
  background: var(--color-bg-alt);
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}

.baf-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 40px;
  margin-left: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: ew-resize;
  z-index: 5;
  touch-action: none;
}

.baf-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  background: rgba(255, 255, 255, .5);
  box-shadow: 0 0 12px rgba(33, 210, 187, .5);
}

.baf-handle-grip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-bg-titlebar);
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--color-accent-lighter);
  font: 600 13px var(--font-sans);
  letter-spacing: 1px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .5);
}

.redact-blur {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(5px);
  border-radius: 7px;
}

.redact-badge {
  position: absolute;
  right: 16px;
  top: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  background: rgba(33, 210, 187, .16);
  border: 1px solid rgba(33, 210, 187, .32);
  border-radius: 999px;
  font: 600 11px var(--font-sans);
  color: var(--color-accent-lighter);
}

.redact-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 8px var(--color-accent);
}

/* ---------- Use cases ---------- */
.usecases {
  position: relative;
  z-index: 1;
  max-width: var(--container-md);
  margin: 0 auto;
  padding: 144px 24px 80px;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.usecase-card {
  padding: 30px 28px;
  border-radius: 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--border-subtle);
  transition: all .25s;
}

.usecase-card:hover {
  border-color: rgba(33, 210, 187, .45);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}

.usecase-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.usecase-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ---------- Why ---------- */
.why {
  position: relative;
  z-index: 1;
  max-width: var(--container-md);
  margin: 0 auto;
  padding: 160px 24px 96px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 56px;
}

.why-card {
  padding: 28px;
  border-radius: 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--border-subtle);
}

.why-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(33, 210, 187, .12);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
}

.why-text {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* comparison table */
.compare-wrap {
  border-radius: 20px;
  border: 1px solid var(--border-subtle-2);
  background: var(--color-bg-alt);
  overflow: hidden;
}

.compare-scroll {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  font-size: 14px;
}

.compare-table th {
  padding: 20px 16px;
  font-weight: 600;
  color: var(--color-text-muted-55);
}

.compare-th-label {
  text-align: left;
  padding: 20px 22px;
  font-weight: 500;
  color: var(--color-text-muted-45);
  font-size: 13px;
}

.compare-th-main {
  background: rgba(33, 210, 187, .1);
  border-left: 1px solid var(--border-accent);
  border-right: 1px solid var(--border-accent);
  font-weight: 700;
  color: #fff;
}

.compare-table tbody {
  color: var(--color-text-muted-6);
}

.compare-table td {
  padding: 16px 22px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.compare-td-main {
  text-align: center;
  background: rgba(33, 210, 187, .06);
  border-left: 1px solid rgba(33, 210, 187, .22);
  border-right: 1px solid rgba(33, 210, 187, .22);
  color: var(--color-accent-light);
  font-weight: 700;
}

.compare-td-no {
  text-align: center;
  color: rgba(255, 255, 255, .2);
}

.compare-td-dim {
  text-align: center;
  color: rgba(255, 255, 255, .4);
}

/* ---------- Roadmap ---------- */
.roadmap {
  position: relative;
  z-index: 1;
  max-width: var(--container-md);
  margin: 0 auto;
  padding: 140px 24px 60px;
}

.roadmap .section-head {
  margin-bottom: 18px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.roadmap-card {
  padding: 28px;
  border-radius: 20px;
  background: rgba(20, 22, 27, .4);
  border: 1px dashed rgba(255, 255, 255, .14);
  position: relative;
}

.roadmap-title {
  font-family: var(--font-display);
}

.badge-soon {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 10px;
  border-radius: 999px;
  font: 600 11px var(--font-sans);
  color: var(--color-accent-lighter);
  background: rgba(33, 210, 187, .16);
  border: 1px solid rgba(33, 210, 187, .32);
}

.roadmap-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  max-width: 62%;
}

.roadmap-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-text-muted-55);
}

/* Shared: waitlist status note (pricing early-bird + waitlist forms) */
.waitlist-note {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--text-hairline);
  transition: color .2s;
}

/* ---------- Early-bird / waitlist ---------- */
.early-bird {
  position: relative;
  z-index: 1;
  padding: 96px 24px;
}

.early-bird-card {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 24px;
  padding: clamp(40px, 5.5vw, 64px);
  text-align: center;
  background:
    radial-gradient(120% 130% at 50% 0%, rgba(33, 210, 187, .16), transparent 60%),
    var(--color-bg-card);
  border: 1px solid var(--border-accent);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
}

.early-bird-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.6vw, 46px);
  letter-spacing: -.03em;
  font-weight: 700;
  margin: 0;
}

.early-bird-text {
  margin: 20px auto 0;
  max-width: 54ch;
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.6;
  color: var(--text-secondary);
}

.waitlist-form {
  display: flex;
  justify-content: center;
  margin: 32px auto 0;
  max-width: 480px;
}

.waitlist-field {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 6px;
  border-radius: 999px;
  background: rgba(10, 11, 13, .6);
  border: 1px solid rgba(255, 255, 255, .14);
  transition: border-color .2s, box-shadow .2s;
}

.waitlist-field:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(33, 210, 187, .25);
}

.waitlist-field input {
  flex: 1;
  min-width: 0;
  padding: 12px 8px 12px 16px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
}

.waitlist-field input::placeholder {
  color: var(--text-secondary);
}

.waitlist-submit {
  flex-shrink: 0;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-size: 14.5px;
  font-weight: 600;
  font-family: inherit;
  color: #04201C;
  background: linear-gradient(180deg, var(--color-accent-light), var(--color-accent));
  box-shadow: var(--glow-teal), inset 0 1px 0 rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.waitlist-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(33, 210, 187, .5), inset 0 1px 0 rgba(255, 255, 255, .45);
}

.waitlist-submit:disabled {
  opacity: .6;
  cursor: default;
  transform: none;
}

@media (max-width: 480px) {
  .waitlist-field {
    flex-wrap: wrap;
    border-radius: 20px;
  }

  .waitlist-field input {
    flex-basis: 100%;
    padding: 12px 14px;
  }

  .waitlist-submit {
    flex: 1;
  }
}

/* ---------- Pricing ---------- */
.pricing {
  position: relative;
  z-index: 1;
  max-width: var(--container-md);
  margin: 0 auto;
  padding: 140px 24px 60px;
}

.pricing-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  width: 100%;
  padding: 34px 32px;
  border-radius: 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--border-subtle-2);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.pricing-card-launch {
  background:
    radial-gradient(120% 130% at 50% 0%, rgba(255, 178, 122, .1), transparent 60%),
    var(--color-bg-card);
  border-color: rgba(255, 178, 122, .28);
}

.pricing-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 11px;
  border-radius: 999px;
  font: 600 11px var(--font-sans);
  letter-spacing: .01em;
  color: var(--color-accent-lighter);
  background: rgba(33, 210, 187, .12);
  border: 1px solid var(--border-accent);
  margin-bottom: 20px;
}

.pricing-tag-warm {
  color: var(--color-warm-light);
  background: rgba(255, 178, 122, .12);
  border-color: rgba(255, 178, 122, .3);
}

.pricing-plan {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 10px 0 6px;
}

.pricing-amount span {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -.03em;
}

.pricing-was {
  font-size: 26px !important;
  font-weight: 500 !important;
  color: var(--text-hairline);
  text-decoration: line-through;
}

.pricing-now {
  color: var(--color-warm-light);
}

.pricing-per {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--text-tertiary);
  letter-spacing: 0 !important;
}

.pricing-desc {
  margin: 8px 0 24px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.pricing-btn {
  width: 100%;
}

.pricing-card-now .pricing-btn {
  margin-top: auto;
}

.pricing-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.pricing-form input {
  flex: 1;
  min-width: 160px;
  padding: 13px 16px;
  border-radius: 11px;
  background: rgba(10, 11, 13, .6);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.pricing-form input:focus {
  border-color: var(--color-warm);
  box-shadow: 0 0 0 3px rgba(255, 178, 122, .25);
}

.pricing-form .pricing-btn {
  width: auto;
  flex-shrink: 0;
}

.pricing-footnote {
  text-align: center;
  margin: 34px 0 0;
  font-size: 14px;
  color: var(--text-tertiary);
}

/* ---------- FAQ ---------- */
.faq {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 140px 24px 60px;
}

.faq .section-head {
  margin-bottom: 44px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border-subtle-2);
  border-radius: 14px;
  background: var(--color-bg-card);
  padding: 20px 22px;
  transition: border-color .3s;
}

.faq-item.is-open {
  border-color: rgba(33, 210, 187, .4);
}

.faq-question {
  all: unset;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 500;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--color-accent);
  font-size: 20px;
  line-height: 1;
  transition: transform .3s;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height .4s ease, opacity .35s ease, margin-top .35s ease;
}

.faq-answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted-6);
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  z-index: 1;
  padding: 160px 24px 170px;
  text-align: center;
  overflow: hidden;
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(closest-side, rgba(33, 210, 187, .28), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.4vw, 54px);
  letter-spacing: -.03em;
  font-weight: 700;
  margin: 0;
  line-height: 1.05;
  text-wrap: balance;
}

.final-cta-text {
  margin: 20px auto 0;
  font-size: 18px;
  color: var(--text-secondary);
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-subtle);
  background: var(--color-bg-footer);
}

.footer-grid {
  max-width: var(--container-md);
  margin: 0 auto;
  padding: 72px 24px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}

.footer-brand {
  min-width: 200px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo-img {
  height: 24px;
  display: block;
}

.footer-tagline {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted-5);
  line-height: 1.5;
  max-width: 30ch;
}

.footer-made-by {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--color-text-muted-32);
}

.footer-col-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(237, 237, 242, .85);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14px;
  color: var(--color-text-muted-5);
}

.footer-links a {
  transition: color .2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: var(--container-md);
  margin: 0 auto;
  padding: 22px 24px 36px;
  border-top: 1px solid var(--border-faint);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 13px;
  color: var(--color-text-muted-35);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted-5);
  font: 700 13px var(--font-sans);
  transition: all .2s;
}

.social-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .25);
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .nav-links,
  .btn-nav {
    display: none !important;
  }

  .nav-burger {
    display: inline-flex !important;
  }
}

@media (max-width: 820px) {
  .feat-row {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .feat-row .media {
    order: -1 !important;
  }

  .feat-row-reverse .feat-copy,
  .feat-row-reverse .media {
    order: unset;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 200px;
  }

  .hero-shot {
    margin-top: 96px;
  }

  .roadmap-title {
    max-width: 100%;
  }
}

/* ---------- Download modal ---------- */
.download-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.download-modal[hidden] {
  display: none;
}

.download-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 11, .72);
  backdrop-filter: blur(6px);
}

.download-modal-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  padding: clamp(36px, 5vw, 56px);
  border-radius: 22px;
  text-align: center;
  background: var(--color-bg-card);
  border: 1px solid var(--border-subtle-2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
  animation: lumModalIn .25s cubic-bezier(.2, .7, .2, 1);
}

@keyframes lumModalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.download-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border-subtle-2);
  color: var(--color-text-muted-66);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.download-modal-close:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--color-text);
}

.download-modal-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 700;
  letter-spacing: -.03em;
}

.download-modal-text {
  margin: 18px auto 0;
  max-width: 44ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted-65, rgba(237, 237, 242, .65));
}

.download-modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
  max-width: 420px;
  margin-inline: auto;
}

.download-modal-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(11, 11, 15, .6);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.download-modal-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(33, 210, 187, .28);
}

.download-modal-input:disabled {
  opacity: .6;
}

.btn-download-submit {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 11px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-bg);
  background: var(--color-accent);
  border: 1px solid rgba(255, 255, 255, .16);
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}

.btn-download-submit:hover:not(:disabled) {
  transform: translateY(-2px);
}

.btn-download-submit:disabled {
  opacity: .6;
  cursor: default;
  transform: none;
}

.download-modal-note {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-muted-4);
  transition: color .2s;
  min-height: 1em;
}

.download-modal-note.is-error {
  color: #ff8a8a;
}

.download-modal-note.is-success {
  color: #5EE0CB;
}

@media (max-width: 480px) {
  .download-modal-card {
    padding: 28px 22px;
  }
}

/* ---------- Contact page ---------- */
.contact {
  position: relative;
  z-index: 1;
  max-width: var(--container-md);
  margin: 0 auto;
  padding: 180px 24px 120px;
}

.contact-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 60px);
  line-height: 1.03;
  letter-spacing: -.03em;
  font-weight: 700;
  margin: 14px 0 0;
}

.contact-sub {
  margin: 20px auto 0;
  max-width: 52ch;
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.6;
  color: var(--text-secondary);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

/* left column */
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  padding: 28px;
  border-radius: 20px;
  background:
    radial-gradient(130% 130% at 0% 0%, rgba(33, 210, 187, .12), transparent 55%),
    var(--color-bg-card);
  border: 1px solid var(--border-accent);
}

.contact-info-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: rgba(33, 210, 187, .12);
  border: 1px solid var(--border-accent);
  margin-bottom: 18px;
}

.contact-info-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
}

.contact-info-text {
  margin: 8px 0 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.contact-info-link {
  display: inline-block;
  font: 600 15px var(--font-mono);
  color: var(--color-accent-light);
  border-bottom: 1px solid rgba(94, 224, 203, .35);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}

.contact-info-link:hover {
  color: var(--color-accent-lighter);
  border-color: var(--color-accent-lighter);
}

.contact-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-points li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.contact-point-icon {
  flex-shrink: 0;
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(33, 210, 187, .1);
  border: 1px solid var(--border-accent);
}

.contact-point-icon .lum-icon {
  width: 16px;
  height: 16px;
}

/* right column: form */
.contact-form-card {
  padding: clamp(28px, 4vw, 40px);
  border-radius: 22px;
  background: var(--color-bg-card);
  border: 1px solid var(--border-subtle-2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: .01em;
}

.contact-optional {
  font-weight: 400;
  color: var(--text-hairline);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(10, 11, 13, .6);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.contact-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.55;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--text-hairline);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(33, 210, 187, .25);
}

.contact-field input.is-invalid,
.contact-field textarea.is-invalid {
  border-color: rgba(255, 138, 138, .6);
  box-shadow: 0 0 0 3px rgba(255, 138, 138, .18);
}

/* honeypot — visually hidden but present for bots */
.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-submit {
  width: 100%;
  margin-top: 4px;
}

.contact-submit:disabled {
  opacity: .65;
  cursor: default;
  transform: none;
  box-shadow: var(--glow-teal);
}

.contact-note {
  margin: 0;
  min-height: 1.2em;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
  transition: color .2s;
}

.contact-note.is-error {
  color: #ff8a8a;
}

.contact-note.is-success {
  color: var(--color-accent-light);
}

@media (max-width: 820px) {
  .contact {
    padding-top: 150px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .contact-field-row {
    grid-template-columns: 1fr;
  }
}

@media print {
  .nav,
  .hero-glow,
  .final-cta-glow {
    display: none;
  }
}
