/* =========================================================================
   Veldaron Labs — site styles (v2)
   Premium light studio theme with blue→indigo→violet→pink signature gradient.
   ========================================================================= */

:root {
  --black: #0d0e1a;
  --ink: #14152b;
  --graphite: #2e3142;
  --blue: #1259e8;
  --indigo: #4f46e5;
  --violet: #7c3aed;
  --pink: #ec4899;
  --blue-dark: #0c3fa9;
  --blue-soft: #eef3ff;
  --violet-soft: #f3efff;
  --line: #e5e8f2;
  --muted: #5b6479;
  --muted-2: #8b93a7;
  --bg: #ffffff;
  --bg-soft: #f6f8fd;
  --bg-tint: #f2f5fc;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --shadow: 0 30px 90px rgba(20, 21, 43, .12);
  --shadow-soft: 0 18px 55px rgba(20, 21, 43, .08);
  --shadow-glow: 0 24px 60px rgba(79, 70, 229, .28);
  --grad: linear-gradient(100deg, #1259e8 0%, #4f46e5 38%, #7c3aed 70%, #ec4899 100%);
  --grad-soft: linear-gradient(135deg, rgba(18,89,232,.14), rgba(124,58,237,.12) 55%, rgba(236,72,153,.12));
  --max: 1200px;
  --header-h: 78px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; text-size-adjust: 100%; scroll-padding-top: 96px; }

body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
ul { margin: 0; padding-left: 1.2rem; color: var(--muted); }
li + li { margin-top: .55rem; }

.container { width: min(var(--max), calc(100% - 44px)); margin-inline: auto; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 999;
  padding: 10px 14px; color: #fff; background: var(--ink);
  border-radius: 10px; transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

/* Utility ---------------------------------------------------------------- */
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* Announcement bar ------------------------------------------------------- */
.announce {
  position: relative; z-index: 101;
  background: var(--grad);
  color: #fff; text-align: center;
  font-size: .82rem; font-weight: 650; letter-spacing: .01em;
}
.announce a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 40px; padding: 6px 16px; color: #fff;
}
.announce strong { font-weight: 850; }
.announce .arw { transition: transform .2s ease; }
.announce a:hover .arw { transform: translateX(4px); }

/* Header ----------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(20,21,43,.07);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(20,21,43,.07); background: rgba(255,255,255,.9); }
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { width: 300px; max-width: 54vw; height: auto; }

.header-right { display: flex; align-items: center; gap: 10px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  min-height: 40px; padding: 0 14px;
  color: var(--graphite); font-size: .82rem; font-weight: 700;
  letter-spacing: .02em; border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.main-nav a:hover, .main-nav a:focus-visible, .main-nav a[aria-current="page"] {
  color: var(--indigo); background: var(--blue-soft);
}
.nav-cta { display: inline-flex; }

.nav-toggle {
  display: none; appearance: none; border: 1px solid var(--line);
  background: #fff; color: var(--ink); min-height: 42px; padding: 0 16px;
  border-radius: 999px; font-weight: 800; letter-spacing: .02em; font-size: .82rem;
  cursor: pointer;
}

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 52px; padding: 0 24px; border-radius: 999px;
  border: 1px solid transparent; font-size: .9rem; font-weight: 750;
  letter-spacing: .01em; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn-primary { color: #fff; background: var(--grad); background-size: 160% 160%; box-shadow: var(--shadow-glow); }
.btn-primary:hover { background-position: 100% 0; box-shadow: 0 28px 70px rgba(124,58,237,.36); }
.btn-secondary { color: var(--ink); background: #fff; border-color: var(--line); }
.btn-secondary:hover { border-color: rgba(79,70,229,.35); box-shadow: var(--shadow-soft); }
.btn-ghost { color: var(--indigo); background: var(--blue-soft); }
.btn-ghost:hover { background: #e3ecff; }
.btn-small { min-height: 44px; padding: 0 18px; font-size: .84rem; }
.btn-block { width: 100%; }

/* Sections --------------------------------------------------------------- */
.section { padding: 100px 0; }
.section-tight { padding: 66px 0; }
.section-soft {
  background:
    radial-gradient(60% 60% at 8% 0%, rgba(18,89,232,.08), transparent 60%),
    radial-gradient(50% 50% at 100% 0%, rgba(124,58,237,.08), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
  font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; border-radius: 999px; background: var(--grad); }
.eyebrow.on-dark { color: rgba(255,255,255,.85); -webkit-text-fill-color: rgba(255,255,255,.85); }
.eyebrow.on-dark::before { background: linear-gradient(90deg, #7c9cff, #d59bff); }

h1, h2, h3, h4 { margin: 0; color: var(--black); line-height: 1.04; letter-spacing: -.03em; font-weight: 800; }
h1 { max-width: 15ch; font-size: clamp(2.9rem, 6vw, 5.6rem); }
h2 { max-width: 18ch; font-size: clamp(2.15rem, 4vw, 3.9rem); }
h3 { font-size: clamp(1.25rem, 1.7vw, 1.7rem); letter-spacing: -.02em; }

.lede { max-width: 62ch; margin-top: 22px; font-size: clamp(1.05rem, 1.3vw, 1.24rem); color: #4a5266; }
.text-wrap { max-width: 780px; }

.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 10px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: .8rem; font-weight: 650; color: var(--graphite);
  box-shadow: var(--shadow-soft);
}
.badge-pill .dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--violet);
  box-shadow: 0 0 0 4px rgba(124,58,237,.16);
}
.badge-pill .dot.live { background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.18); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(34,197,94,0); } }

/* Hero ------------------------------------------------------------------- */
.hero { position: relative; overflow: clip; padding: 96px 0 90px; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(20,21,43,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,21,43,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 78%);
  pointer-events: none;
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; z-index: 0;
  pointer-events: none; animation: float 14s ease-in-out infinite alternate;
}
.orb-1 { width: 460px; height: 460px; top: -120px; right: -60px; background: radial-gradient(circle, rgba(124,58,237,.55), transparent 68%); }
.orb-2 { width: 420px; height: 420px; top: 120px; left: -140px; background: radial-gradient(circle, rgba(18,89,232,.5), transparent 68%); animation-delay: -4s; }
.orb-3 { width: 360px; height: 360px; bottom: -140px; right: 20%; background: radial-gradient(circle, rgba(236,72,153,.4), transparent 68%); animation-delay: -8s; }
@keyframes float { from { transform: translate3d(0,0,0); } to { transform: translate3d(24px, -26px, 0); } }

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero-copy { position: relative; }
.hero h1 { margin-top: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.trust { display: flex; align-items: center; gap: 22px; margin-top: 40px; flex-wrap: wrap; }
.trust-item { display: grid; }
.trust-item strong { font-size: 1.5rem; color: var(--black); line-height: 1.1; letter-spacing: -.02em; }
.trust-item span { font-size: .82rem; color: var(--muted); }
.trust-sep { width: 1px; height: 34px; background: var(--line); }

/* Hero visual: floating Orbill device + glass cards ---------------------- */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 540px; }
.hero-visual .glow-plate {
  position: absolute; inset: 6% 12%; border-radius: 40px;
  background: var(--grad); filter: blur(46px); opacity: .35;
}
.device {
  position: relative; z-index: 2;
  width: 264px; aspect-ratio: 1206 / 2622;
  border-radius: 44px; padding: 9px; background: #0b0b16;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 40px 90px rgba(20,21,43,.32), 0 0 0 1px rgba(20,21,43,.04);
  overflow: hidden;
}
.device img { width: 100%; height: 100%; object-fit: cover; border-radius: 36px; }
.device.tilt { transform: rotate(-4deg); }

.float-card {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 11px;
  padding: 13px 16px; border-radius: 16px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow);
  animation: bob 5s ease-in-out infinite;
}
.float-card .ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: #fff; }
.float-card b { display: block; font-size: .92rem; color: var(--ink); letter-spacing: -.01em; }
.float-card span { font-size: .76rem; color: var(--muted); }
.float-a { top: 12%; left: -6%; animation-delay: -1s; }
.float-b { bottom: 14%; right: -8%; animation-delay: -3s; }
@keyframes bob { 50% { transform: translateY(-12px); } }

/* App icon chip */
.app-icon {
  border-radius: 24%; display: block; box-shadow: 0 18px 40px rgba(79,70,229,.32);
}

/* Section head ----------------------------------------------------------- */
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 26px; margin-bottom: 46px; }
.section-head.center { display: block; text-align: center; }
.section-head.center .lede { margin-inline: auto; }
.section-head p { max-width: 46ch; margin-bottom: 0; }

/* Featured spotlight (Orbill on home) ------------------------------------ */
.spotlight {
  position: relative; overflow: hidden;
  border-radius: 36px; padding: 8px;
  background: var(--grad); box-shadow: var(--shadow-glow);
}
.spotlight-inner {
  position: relative; border-radius: 30px; padding: 54px 54px 0;
  background: #0b0b18; color: #fff; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: end;
}
.spotlight-inner::before {
  content: ""; position: absolute; width: 420px; height: 420px; top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(124,58,237,.6), transparent 66%); filter: blur(30px); pointer-events: none;
}
.spotlight-copy { position: relative; z-index: 1; padding-bottom: 54px; }
.spotlight-copy h2 { color: #fff; }
.spotlight-copy p { color: rgba(255,255,255,.72); }
.spot-feats { display: grid; gap: 12px; margin: 24px 0 28px; padding: 0; list-style: none; }
.spot-feats li { display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,.9); font-weight: 600; margin: 0; }
.spot-feats .chk {
  flex: none; width: 24px; height: 24px; border-radius: 8px; display: grid; place-items: center;
  background: rgba(255,255,255,.12); color: #a5b4fc;
}
.spotlight-visual { position: relative; z-index: 1; display: flex; justify-content: center; gap: 16px; align-items: flex-end; min-height: 420px; }
.spotlight-visual .device { width: 210px; }
.spotlight-visual .device.back { width: 190px; margin-bottom: 40px; opacity: .96; }

/* Portfolio grid --------------------------------------------------------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }

.card {
  position: relative; overflow: hidden; padding: 26px; min-height: 232px;
  border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff;
  box-shadow: 0 1px 0 rgba(20,21,43,.03);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(79,70,229,.28); }
.card::after {
  content: ""; position: absolute; left: 26px; right: 26px; top: 0; height: 3px;
  background: var(--grad); transform: scaleX(.2); transform-origin: left; transition: transform .28s ease;
}
.card:hover::after { transform: scaleX(1); }
.card .tag, .product-eyebrow {
  display: inline-flex; margin-bottom: 16px; font-size: .7rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.card p { margin-top: 12px; }
.card-icon {
  width: 52px; height: 52px; border-radius: 15px; margin-bottom: 18px;
  display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 1.3rem;
}
.card-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  color: var(--ink); font-weight: 800; letter-spacing: .01em; font-size: .84rem;
}
.card-link span { color: var(--violet); transition: transform .2s ease; }
.card-link:hover span { transform: translateX(4px); }

/* Featured product card (spans + horizontal) */
.card-feature {
  grid-column: span 2; display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px;
  align-items: center; min-height: 260px; padding: 30px;
  background:
    radial-gradient(70% 120% at 100% 0%, rgba(124,58,237,.1), transparent 60%),
    linear-gradient(180deg, #fff, #fbfcff);
}
.card-feature .cf-media { display: flex; justify-content: center; align-items: center; gap: 14px; }
.card-feature .device { width: 150px; }

/* Feature grid (icon tiles) --------------------------------------------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.feature-tile {
  padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: rgba(79,70,229,.24); }
.feature-tile .ft-ic {
  width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center;
  margin-bottom: 18px; color: #fff; background: var(--grad);
}
.feature-tile.alt2 .ft-ic { background: linear-gradient(135deg, #ec4899, #f97316); }
.feature-tile.alt3 .ft-ic { background: linear-gradient(135deg, #22c55e, #0ea5e9); }
.feature-tile.alt4 .ft-ic { background: linear-gradient(135deg, #4f46e5, #06b6d4); }
.feature-tile.alt5 .ft-ic { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.feature-tile h3 { font-size: 1.2rem; }
.feature-tile p { margin: 10px 0 0; font-size: .96rem; }

/* Home studio values + legacy feature rows ------------------------------ */
.value-row, .feature-row { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 20px;
  border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.value-icon, .feature-icon { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center;
  color: #fff; background: var(--grad); font-weight: 900; }
.value-row p, .feature-row p { margin: 8px 0 0; }
.list-panel { display: grid; gap: 16px; }

/* Two-column split that stacks on small screens. */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* Showcase strip (3 devices) -------------------------------------------- */
.device-showcase-3 {
  display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap;
}
.device-showcase-3 .device { width: 240px; transition: transform .3s ease; }
.device-showcase-3 .device:hover { transform: translateY(-8px); }
.device-showcase-3 .device.mid { width: 258px; }

/* Pricing ---------------------------------------------------------------- */
.pricing { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; max-width: 760px; margin-inline: auto; }
.price-card {
  position: relative; padding: 34px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: #fff;
}
.price-card.featured { border: none; background: #0b0b18; color: #fff; box-shadow: var(--shadow-glow); overflow: hidden; }
.price-card.featured::before { content: ""; position: absolute; width: 300px; height: 300px; top: -120px; right: -100px;
  background: radial-gradient(circle, rgba(124,58,237,.6), transparent 66%); filter: blur(26px); }
.price-card.featured > * { position: relative; z-index: 1; }
.price-tier { font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--violet); }
.price-card.featured .price-tier { color: #c4b5fd; }
.price-amt { display: flex; align-items: baseline; gap: 8px; margin: 14px 0 6px; }
.price-amt b { font-size: 2.9rem; letter-spacing: -.03em; color: var(--black); }
.price-card.featured .price-amt b { color: #fff; }
.price-amt span { color: var(--muted); font-weight: 600; }
.price-card.featured .price-amt span { color: rgba(255,255,255,.6); }
.price-card ul { list-style: none; padding: 0; margin: 20px 0 26px; }
.price-card li { display: flex; align-items: center; gap: 10px; color: var(--graphite); margin: 12px 0; }
.price-card.featured li { color: rgba(255,255,255,.86); }
.price-card li .chk { flex: none; width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center;
  background: var(--blue-soft); color: var(--indigo); }
.price-card.featured li .chk { background: rgba(255,255,255,.12); color: #a5b4fc; }
/* Higher specificity than `.price-card.featured > *` so it stays pinned. */
.price-card.featured .ribbon { position: absolute; top: 22px; right: 22px; padding: 6px 12px; border-radius: 999px;
  font-size: .72rem; font-weight: 800; letter-spacing: .06em; background: rgba(255,255,255,.16); color: #fff; z-index: 2; }

/* FAQ -------------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq details {
  border: 1px solid var(--line); border-radius: 16px; background: #fff; padding: 4px 22px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] { border-color: rgba(79,70,229,.3); box-shadow: var(--shadow-soft); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 0; font-weight: 750; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  background: var(--blue-soft); color: var(--indigo); font-weight: 900; transition: transform .2s ease; }
.faq details[open] summary .pm { transform: rotate(45deg); }
.faq p { margin: 0 0 18px; }

/* Page hero (sub-pages) -------------------------------------------------- */
.page-hero {
  position: relative; overflow: clip; padding: 88px 0 62px;
  background:
    radial-gradient(50% 70% at 88% 0%, rgba(124,58,237,.1), transparent 60%),
    radial-gradient(40% 60% at 0% 0%, rgba(18,89,232,.08), transparent 60%),
    linear-gradient(180deg, #fff, #f8faff);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.6rem); }
.page-hero .lede { margin-inline: 0; }

/* Product page ----------------------------------------------------------- */
.product-page-grid { display: grid; grid-template-columns: 1fr 380px; gap: 50px; align-items: start; }
.product-card-large {
  position: sticky; top: 100px; padding: 28px; border: 1px solid var(--line);
  border-radius: 28px; background: #fff; box-shadow: var(--shadow-soft);
}
.product-icon-large {
  width: 92px; height: 92px; border-radius: 24px; display: grid; place-items: center;
  color: #fff; background: var(--grad); font-size: 2rem; font-weight: 900; letter-spacing: -.04em;
  overflow: hidden;
}
.product-icon-large img { width: 100%; height: 100%; border-radius: 24px; }
.store-buttons { display: grid; gap: 12px; margin-top: 24px; }
.store-pill {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 14px 16px; border: 1px solid var(--line); border-radius: 15px; background: var(--bg-soft);
  font-weight: 700; color: var(--ink);
}
.store-pill span { color: var(--muted); font-size: .8rem; font-weight: 650; }
.store-badge {
  display: flex; align-items: center; gap: 12px; padding: 13px 18px; border-radius: 15px;
  background: #0b0b18; color: #fff; font-weight: 700;
}
.store-badge small { display: block; font-size: .68rem; opacity: .7; font-weight: 600; letter-spacing: .02em; }
.store-badge b { font-size: 1.02rem; letter-spacing: -.01em; }

.screenshot-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-top: 24px; }
.placeholder-shot {
  min-height: 250px; border: 1px solid var(--line); border-radius: 24px;
  background: radial-gradient(circle at 70% 20%, rgba(124,58,237,.16), transparent 40%), linear-gradient(180deg,#fff,#f4f7fc);
  display: grid; place-items: center; color: var(--muted); font-weight: 800;
}

.content-panel { padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: #fff; }
.content-panel + .content-panel { margin-top: 20px; }
.content-panel h2 { font-size: clamp(1.6rem, 2.6vw, 2.4rem); }
.content-panel h3 { margin-top: 22px; }
.content-panel p:first-of-type { margin-top: 16px; }
.content-panel a { color: var(--indigo); font-weight: 700; }

/* CTA panel -------------------------------------------------------------- */
.cta-panel {
  position: relative; overflow: hidden; border-radius: 36px; padding: 66px; color: #fff; background: #0b0b18;
}
.cta-panel::before { content: ""; position: absolute; inset: -40%;
  background:
    radial-gradient(circle at 78% 0%, rgba(124,58,237,.5), transparent 32%),
    radial-gradient(circle at 12% 100%, rgba(18,89,232,.4), transparent 34%);
  pointer-events: none; }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { color: #fff; }
.cta-panel p { color: rgba(255,255,255,.72); }
.cta-panel .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); }
.cta-panel .btn-secondary:hover { border-color: rgba(255,255,255,.55); }

/* Contact ---------------------------------------------------------------- */
.contact-box { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; }
.contact-method { padding: 32px; border: 1px solid var(--line); border-radius: 24px; background: #fff; }
.contact-method a { color: var(--indigo); font-weight: 800; word-break: break-word; }
.form-card { padding: 32px; border: 1px solid var(--line); border-radius: 24px; background: var(--bg-soft); }
.form-field { display: grid; gap: 8px; margin-bottom: 16px; }
label { color: var(--graphite); font-size: .76rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
input, textarea, select {
  width: 100%; border: 1px solid var(--line); border-radius: 14px; background: #fff; padding: 14px; color: var(--ink); font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, textarea:focus, select:focus { outline: 3px solid rgba(79,70,229,.16); border-color: var(--indigo); }
.contact-email-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  margin-top: 22px; padding: 22px 24px; border: 1px solid var(--line); border-radius: 22px; background: #fff;
}
.contact-email-strip strong { display: block; color: var(--black); font-size: 1.05rem; line-height: 1.25; }
.contact-email-strip span { display: block; margin-top: 4px; color: var(--muted); }

/* Footer ----------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); background: #fafbfe; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 44px; padding: 60px 0 34px; }
.footer-logo { display: block; width: min(100%, 310px); max-width: 310px; height: auto !important; aspect-ratio: 700 / 141; object-fit: contain; }
.footer-tagline { max-width: 46ch; margin-top: 20px; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px 36px; }
.footer-col h3 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; color: var(--ink); }
.footer-col a { display: block; color: var(--muted); margin: 8px 0; transition: color .2s ease; }
.footer-col a:hover { color: var(--indigo); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 20px; padding: 22px 0 40px;
  border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem;
}
.footer-bottom .grad { font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Reveal animation ------------------------------------------------------- */
/* Hidden state is gated behind .js so content stays visible without JavaScript. */
.reveal { transition: opacity .7s ease, transform .7s ease; }
.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

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

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1000px) {
  .header-inner { height: 70px; }
  .brand img { width: 240px; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .main-nav {
    position: absolute; left: 20px; right: 20px; top: 70px; display: grid; padding: 12px;
    border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .site-header.nav-open .main-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { justify-content: flex-start; min-height: 46px; }
  .hero-grid, .product-page-grid, .footer-inner, .contact-box, .spotlight-inner, .split { grid-template-columns: 1fr; }
  .split { gap: 36px; }
  .hero-visual { min-height: 460px; margin-top: 10px; }
  .product-card-large { position: static; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .card-feature { grid-column: span 2; grid-template-columns: 1fr; }
  .section-head { display: block; }
  .section-head p { margin-top: 16px; }
  .spotlight-inner { padding: 40px 34px 0; }
  .spotlight-copy { padding-bottom: 20px; }
  .spotlight-visual { min-height: 360px; padding-bottom: 20px; }
}

@media (max-width: 660px) {
  .container { width: min(var(--max), calc(100% - 32px)); }
  .brand img { width: 200px; }
  .section { padding: 68px 0; }
  .hero { padding-top: 64px; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .trust { gap: 16px; }
  .grid-3, .grid-4, .feature-grid, .pricing, .footer-links, .screenshot-grid { grid-template-columns: 1fr; }
  .card-feature { grid-column: span 1; }
  .cta-panel { padding: 40px 26px; border-radius: 26px; }
  .content-panel, .contact-method, .form-card { padding: 24px; }
  .footer-bottom { flex-direction: column; }
  .spotlight { border-radius: 26px; }
  .spotlight-visual .device { width: 168px; }
  .spotlight-visual .device.back { display: none; }
  .device-showcase-3 .device, .device-showcase-3 .device.mid { width: 210px; }
  .contact-email-strip { display: grid; }
}
