:root {
  /* Premium neutral palette (less “AI neon”) */
  --bg: #0b0c10;
  --bg-2: #12141a;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.09);
  --stroke: rgba(255, 255, 255, 0.12);
  --stroke-2: rgba(255, 255, 255, 0.18);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --muted-2: rgba(255, 255, 255, 0.56);
  --shadow: 0 18px 70px rgba(0, 0, 0, 0.55);

  /* Accent */
  --a: #d6b56a; /* warm gold */
  --b: #f1e7d1; /* warm ivory */
  --c: #8aa0b2; /* cool steel (subtle) */
  --danger: #fb7185;
  --ok: #34d399;

  --radius: 18px;
  --radius-lg: 26px;
  --container: 1160px;
  --pad: clamp(18px, 2.2vw, 26px);

  --font: "Instrument Sans", "Onest", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(1000px 700px at 18% 12%, rgba(214, 181, 106, 0.16), transparent 62%),
    radial-gradient(900px 700px at 86% 8%, rgba(138, 160, 178, 0.10), transparent 58%),
    radial-gradient(900px 700px at 70% 90%, rgba(214, 181, 106, 0.08), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(44px, 4.5vw, 66px);
}

h2 {
  font-size: clamp(30px, 3.1vw, 44px);
}

h3 {
  font-size: 20px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--stroke);
  color: white;
  z-index: 9999;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 12px;
  outline: none;
  box-shadow: 0 0 0 3px rgba(214, 181, 106, 0.32);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 9, 18, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 9, 18, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.brand:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-name {
  font-weight: 650;
  letter-spacing: -0.02em;
}

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

.nav-link {
  font-size: 14px;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav-link.is-active {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(214, 181, 106, 0.10);
  border-color: rgba(214, 181, 106, 0.22);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: white;
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(214, 181, 106, 0.32);
}

.nav-toggle-icon {
  width: 20px;
  height: 2px;
  background: currentColor;
  display: block;
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  user-select: none;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(214, 181, 106, 0.24);
}

.btn:active {
  transform: translateY(1px);
}

.btn-full {
  width: 100%;
}

.btn-primary {
  color: #081018;
  background: linear-gradient(90deg, var(--a), var(--b));
  box-shadow: 0 18px 60px rgba(214, 181, 106, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 20px 70px rgba(214, 181, 106, 0.24);
}

.btn-secondary {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

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

.btn-ghost {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

/* Hero */
.hero {
  padding: clamp(56px, 7vw, 96px) 0 34px;
  position: relative;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 520px;
  background: radial-gradient(circle at 28% 38%, rgba(214, 181, 106, 0.16), transparent 58%),
    radial-gradient(circle at 74% 28%, rgba(138, 160, 178, 0.12), transparent 60%);
  filter: blur(24px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.lead {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.55vw, 18px);
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.bullet {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.bullet-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(214, 181, 106, 0.92);
}

.logos {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.hero-visual {
  position: relative;
}

.glass-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(600px 300px at 25% 6%, rgba(214, 181, 106, 0.14), transparent 50%),
    radial-gradient(640px 340px at 82% 12%, rgba(138, 160, 178, 0.12), transparent 60%);
  pointer-events: none;
}

.glass-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(14px);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.dot-green {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ok);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.18);
}

.mini-actions {
  display: flex;
  gap: 6px;
}

.mini-btn {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.glass-body {
  position: relative;
  padding: 12px;
}

.hero-img {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

.glass-foot {
  position: relative;
  padding: 14px 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.10);
}

.kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.kpi-value {
  font-weight: 750;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.kpi-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.64);
}

.hero-glow {
  position: absolute;
  inset: auto -30% -30% -30%;
  height: 260px;
  background: radial-gradient(circle at 50% 40%, rgba(214, 181, 106, 0.16), transparent 68%),
    radial-gradient(circle at 65% 50%, rgba(138, 160, 178, 0.10), transparent 74%);
  filter: blur(22px);
  pointer-events: none;
}

/* Stats */
.stats {
  padding: 18px 0 10px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 18px 16px;
}

.stat-value {
  font-weight: 800;
  font-size: 22px;
}

.stat-title {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.stat-sub {
  margin-top: 2px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
}

/* Sections */
.section {
  padding: clamp(54px, 6vw, 86px) 0;
}

.section-alt {
  background: radial-gradient(900px 520px at 18% 10%, rgba(214, 181, 106, 0.06), transparent 64%),
    radial-gradient(900px 520px at 82% 0%, rgba(138, 160, 178, 0.06), transparent 64%),
    rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
  max-width: 70ch;
  margin-bottom: clamp(18px, 2.4vw, 28px);
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.sub {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(214, 181, 106, 0.92);
  font-weight: 650;
}

.text-link::after {
  content: "→";
  opacity: 0.9;
  transform: translateX(0);
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(3px);
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}

.feature-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  aspect-ratio: 3 / 2;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-kicker {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.64);
}

.feature-card h3 {
  margin-top: 6px;
  font-size: 18px;
}

.feature-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.feature-card .text-link {
  margin-top: auto;
  padding-top: 16px;
}

/* Trio tiles */
.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.tile {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.tile-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  aspect-ratio: 3 / 2;
}

.tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile h3 {
  margin-top: 12px;
}

.tile p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

/* Steps */
.steps {
  margin-top: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.step {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  padding: 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.step:first-child {
  border-top: 0;
}

.step-num {
  font-weight: 850;
  font-size: 14px;
  color: rgba(214, 181, 106, 0.90);
  letter-spacing: 0.06em;
}

.step-body h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.step-body p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.plan {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px 16px;
  position: relative;
  overflow: hidden;
}

.plan-top {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.currency {
  font-weight: 750;
  color: rgba(255, 255, 255, 0.70);
}

.amount {
  font-weight: 880;
  font-size: 34px;
  letter-spacing: -0.03em;
}

.plan-meta {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.plan-mid {
  padding-top: 14px;
  display: grid;
  gap: 10px;
}

.plan-mid p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.plan-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.plan-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.plan-list li::before {
  content: "✓";
  color: rgba(214, 181, 106, 0.90);
  flex: 0 0 auto;
  margin-top: 1px;
}

.plan-featured {
  border-color: rgba(214, 181, 106, 0.26);
  background: linear-gradient(180deg, rgba(214, 181, 106, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 80px rgba(214, 181, 106, 0.10);
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 10px;
  font-size: 12px;
  border-radius: 999px;
  background: rgba(214, 181, 106, 0.14);
  border: 1px solid rgba(214, 181, 106, 0.22);
  color: rgba(255, 255, 255, 0.92);
}

/* Quote */
.quote {
  position: relative;
  padding: clamp(54px, 6vw, 86px) 0;
  overflow: clip;
}

.quote-bg {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  filter: saturate(1.15);
}

.quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 18, 0.92), rgba(7, 9, 18, 0.65));
}

.quote-inner {
  position: relative;
  display: grid;
  gap: 18px;
  justify-items: start;
}

blockquote {
  margin: 0;
  padding: 0;
  max-width: 78ch;
}

blockquote p {
  font-size: clamp(18px, 2.0vw, 22px);
  line-height: 1.45;
}

blockquote footer {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: rgba(255, 255, 255, 0.75);
}

blockquote footer strong {
  color: rgba(255, 255, 255, 0.92);
}

/* Resources */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.resource-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  display: grid;
  grid-template-rows: 160px 1fr;
  min-height: 320px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.resource-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
}

.resource-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-body {
  padding: 14px;
  display: grid;
  gap: 10px;
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  font-size: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.78);
}

.chip.ghost {
  color: rgba(255, 255, 255, 0.62);
}

.resource-body h3 {
  font-size: 18px;
}

.resource-body p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 2px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 16px;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.chev {
  width: 14px;
  height: 14px;
  position: relative;
  opacity: 0.9;
}

.chev::before,
.chev::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 14px;
  height: 2px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 2px;
}

.chev::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.faq-item[open] .chev::after {
  transform: rotate(0deg);
}

.faq-content {
  padding: 0 14px 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
}

.contact-ico {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(214, 181, 106, 0.92);
}

.contact-title {
  font-weight: 760;
}

.contact-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  margin-top: 2px;
}

.contact-form {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.form-head h3 {
  margin-top: 6px;
  font-size: 20px;
}

.form {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.66);
  margin-bottom: 6px;
}

input,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(214, 181, 106, 0.45);
  box-shadow: 0 0 0 3px rgba(214, 181, 106, 0.16);
  background: rgba(0, 0, 0, 0.28);
}

input:invalid[data-touched="true"] {
  border-color: rgba(251, 113, 133, 0.55);
  box-shadow: 0 0 0 3px rgba(251, 113, 133, 0.16);
}

.fineprint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 10px;
}

/* Footer */
.footer {
  padding: 42px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 18px;
  align-items: start;
}

.footer-brand .muted {
  margin-top: 10px;
}

.muted {
  color: rgba(255, 255, 255, 0.68);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.footer-col {
  display: grid;
  gap: 10px;
}

.footer-title {
  font-weight: 760;
  color: rgba(255, 255, 255, 0.82);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.92);
}

.subscribe {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.92);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  max-width: min(520px, calc(100vw - 28px));
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.92);
  z-index: 200;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(0.6px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 600ms ease, transform 600ms ease, filter 600ms ease;
}

/* Responsive */
@media (max-width: 1060px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: var(--pad);
    left: var(--pad);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(7, 9, 18, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 22px 80px rgba(0, 0, 0, 0.55);
  }

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

  .nav-cta {
    margin: 8px 0 0;
    padding: 10px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link {
    padding: 12px 12px;
  }

  .trio {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .resource-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-cols {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .reveal.is-visible,
  .text-link::after,
  .btn {
    transition: none !important;
  }
}

