:root {
  --bg-cool-img: url("assets/aevium-bg-cool.jpg");
  --bg-warm-img: url("assets/aevium-bg-warm.jpg");
  --bg: #07090a;
  --ink: #f5f3ee;
  --ink-dim: #c7c3b8;
  --ink-muted: #8a8880;
  --line: rgba(245, 243, 238, 0.1);
  --line-strong: rgba(245, 243, 238, 0.2);
  --glass-bg: rgba(18, 22, 24, 0.35);
  --glass-bg-warm: rgba(30, 16, 14, 0.35);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-strong: rgba(255, 255, 255, 0.14);
  --glass-hl: rgba(255, 255, 255, 0.1);
  --teal: #4a9b87;
  --teal-soft: #6bb5a0;
  --amber: #d88a4a;
  --amber-glow: #f0a060;
  --danger: #d66a5a;
  --success: #7ac396;
  --font-display: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  background: var(--bg);
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  transition: opacity 3s cubic-bezier(0.4, 0, 0.4, 1);
  will-change: opacity;
}

.bg-cool {
  background-image: var(--bg-cool-img);
  opacity: 1;
}

.bg-warm {
  background-image: var(--bg-warm-img);
  opacity: 0;
}

.bg-scrim {
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(7, 9, 10, 0.25) 0%, rgba(7, 9, 10, 0.55) 70%, rgba(7, 9, 10, 0.75) 100%),
    linear-gradient(180deg, rgba(7, 9, 10, 0.3) 0%, rgba(7, 9, 10, 0.1) 50%, rgba(7, 9, 10, 0.3) 100%);
  pointer-events: none;
}

.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  opacity: 0.22;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--teal-soft));
}

main,
nav,
section,
footer {
  position: relative;
  z-index: 3;
}

.container-tight,
.container-narrow {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.container-narrow {
  width: min(820px, calc(100% - 40px));
}

.font-display,
h1,
h2,
h3,
.brand,
.btn-primary,
.btn-glass,
.eyebrow-pill,
.eyebrow-center,
.nav-link {
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1,
h2,
h3,
.brand,
.font-display,
.gradient-text-warm,
.gradient-text-cool {
  overflow: visible;
}

.block {
  display: block;
}

.text-center {
  text-align: center;
}

.muted,
.text-muted {
  color: var(--ink-muted);
}

.italic {
  font-style: italic;
}

.line-through {
  text-decoration: line-through;
}

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }

.section-pad,
.section-pad-lg,
.section-pad-sm {
  padding: 7rem 0;
}

.section-pad-lg {
  padding: 9rem 0;
}

.section-pad-sm {
  padding: 5rem 0;
}

main > section + section {
  border-top: 1px solid var(--line);
}

.nav-glass {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(7, 9, 10, 0.4);
  border-bottom: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
}

.brand span {
  color: var(--amber-glow);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  border: 0;
  background: transparent;
  color: var(--ink-dim);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-dropdown:hover .nav-link {
  color: var(--ink);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-chevron {
  transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 230px;
  padding: 0.55rem;
  border: 1px solid var(--glass-border-strong);
  border-radius: 6px;
  background: rgba(7, 9, 10, 0.92);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link,
.mobile-menu-link {
  display: block;
  padding: 0.8rem 0.9rem;
  border-radius: 4px;
  color: var(--ink-dim);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
}

.nav-dropdown-link:hover,
.mobile-menu-link:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
}

.nav-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border-strong);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-menu {
  display: none;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 1rem;
  padding: 0.7rem;
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  background: rgba(7, 9, 10, 0.88);
}

.mobile-menu.open {
  display: block;
}

.mobile-cta {
  width: 100%;
  margin-top: 0.65rem;
}

.btn-primary,
.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.5rem;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn-primary {
  border: 1px solid rgba(240, 160, 96, 0.6);
  color: #1a0e05;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-glow) 100%);
}

.btn-primary:hover,
.btn-glass:hover {
  transform: translateY(-2px);
}

.btn-primary.large {
  min-height: 56px;
  padding: 0 2.75rem;
  font-size: 1rem;
}

.btn-glass {
  border: 1px solid var(--glass-border-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.hero-section {
  min-height: 76svh;
  display: flex;
  align-items: center;
  padding: 4.5rem 0 0.8rem;
}

.hero-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow-pill {
  display: inline-block;
  padding: 0.72rem 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 4px 20px rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow-center {
  color: var(--amber-glow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.h-mega,
.h-section,
.h-sub {
  margin: 0;
  font-weight: 800;
}

.h-mega {
  font-size: 5.6rem;
  line-height: 1.08;
}

.h-section {
  font-size: 3.25rem;
  line-height: 1.18;
}

.h-sub {
  font-size: 1.55rem;
  line-height: 1.2;
}

.gradient-text-warm,
.gradient-text-cool {
  display: inline-block;
  padding-bottom: 0.06em;
  line-height: 1.08;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-warm.block,
.gradient-text-cool.block {
  display: block;
}

.gradient-word {
  display: inline-block;
}

.gradient-text-warm {
  background-image: linear-gradient(135deg, #f5f3ee 0%, #d88a4a 45%, #f0a060 100%);
}

.gradient-text-cool {
  background-image: linear-gradient(135deg, #f5f3ee 0%, #6bb5a0 100%);
}

.hero-sub {
  max-width: 720px;
  margin: 1.1rem auto 0;
  color: var(--ink-dim);
  font-size: 1.35rem;
}

.hero-showcase {
  width: 100vw;
  margin: 1rem calc(50% - 50vw) 0.6rem;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(245, 243, 238, 0.12);
  border-bottom: 1px solid rgba(245, 243, 238, 0.12);
  background: #050607;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 10, 0.08), rgba(7, 9, 10, 0.38));
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  height: min(20svh, 200px);
  object-fit: cover;
  object-position: center;
  opacity: 0.82;
}

.hero-action {
  margin-top: 2.25rem;
  text-align: center;
}

.hero-microcopy {
  max-width: 560px;
  margin: 1.1rem auto 0;
  color: var(--ink-dim);
  font-size: 0.98rem;
}

.proof-strip {
  background: rgba(7, 9, 10, 0.35);
}

.proof-strip-inner {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  padding-top: 1.25rem;
  text-align: center;
}

.proof-strip svg {
  color: var(--amber-glow);
}

.proof-strip p {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 600;
}

.proof-strip div div {
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.proof-strip span {
  margin: 0 0.55rem;
  opacity: 0.45;
}

.glass {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.5s ease, background 0.5s ease;
}

.glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--glass-hl) 50%, transparent 100%);
}

.glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 42%, transparent 60%, rgba(0, 0, 0, 0.08) 100%);
}

.glass:hover {
  background: rgba(26, 30, 32, 0.42);
  border-color: var(--glass-border-strong);
  transform: translateY(-3px);
}

.glass-warm {
  background: rgba(40, 18, 15, 0.3);
}

.glass-green {
  background: rgba(20, 40, 34, 0.35);
}

.glass-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.imagine-list {
  display: grid;
  gap: 0;
}

.intro-kicker,
.section-support,
.stat-support {
  max-width: 740px;
  margin: 1.6rem auto 0;
  color: var(--ink-dim);
  font-size: 1.2rem;
  line-height: 1.65;
}

.intro-kicker {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.stat-support {
  max-width: 680px;
  font-size: 1.08rem;
}

.imagine-item {
  position: relative;
  padding: 1.6rem 0 1.6rem 2rem;
  border-bottom: 1px solid var(--line);
}

.imagine-item:last-child {
  border-bottom: 0;
}

.imagine-item::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--amber-glow);
  border-radius: 50%;
  background: var(--amber);
}

.imagine-item p,
.outcome-item p,
.case-card p,
.steps-card p,
.story-body p,
.promise-box p,
.essentials-list p,
.value-grid p,
.faq-shell p,
.guarantee-list p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 1.05rem;
  line-height: 1.75;
}

.callout-line {
  margin: 0 0 1.2rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.stat-mega {
  font-family: var(--font-display);
  font-size: 7.2rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, #f5f3ee 0%, #8b8878 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  margin-top: 1rem;
  color: var(--ink-dim);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.case-card .glass-content {
  min-height: 250px;
}

.case-card.wide {
  grid-column: 1 / -1;
}

.case-kicker,
.step-top span,
.outcome-item > div,
.essentials-list span {
  color: var(--amber-glow);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.case-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 120px;
}

.stat-case {
  color: var(--amber-glow);
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
}

.stat-case-long {
  font-size: 2.2rem;
}

.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.steps-card .glass-content {
  min-height: 310px;
}

.step-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.step-top i {
  flex: 1;
  height: 1px;
  background: var(--line-strong);
}

.step-arrow {
  color: var(--amber-glow);
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.simple-stack {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

.outcome-list {
  display: grid;
  gap: 2.5rem;
}

.outcome-item h3 {
  margin: 0.75rem 0 0.9rem;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 10, 0.22);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}

.logo-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 86px;
  color: var(--ink-dim);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.quote-grid p {
  margin: 0 0 1.4rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.6;
}

.quote-grid span {
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: start;
}

.capability-card {
  padding: 0;
}

.capability-card summary {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 96px;
  padding: 1.35rem;
  cursor: pointer;
  list-style: none;
}

.capability-card summary::-webkit-details-marker {
  display: none;
}

.capability-card summary::after {
  content: "+";
  margin-left: auto;
  color: var(--amber-glow);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
}

.capability-card[open] summary::after {
  content: "-";
}

.capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(240, 160, 96, 0.34);
  border-radius: 50%;
  color: var(--amber-glow);
  background: rgba(216, 138, 74, 0.08);
}

.capability-icon svg {
  width: 25px;
  height: 25px;
}

.capability-card b {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.2;
}

.capability-card small {
  display: block;
  margin-top: 0.3rem;
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.capability-body {
  position: relative;
  z-index: 1;
  padding: 0 1.35rem 1.45rem 5.1rem;
}

.capability-body ul {
  display: grid;
  gap: 0.72rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.capability-body li {
  position: relative;
  color: var(--ink-dim);
  font-size: 0.98rem;
  line-height: 1.6;
}

.capability-body li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: -1rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber-glow);
}

.capability-body strong {
  color: var(--ink);
}

.transition-visual-section {
  min-height: 76svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.transition-visual-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.transition-visual-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.26;
  filter: saturate(0.92) contrast(1.05);
}

.transition-visual-bg div {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 10, 0.62);
}

.transition-content {
  position: relative;
  z-index: 1;
}

.transition-copy {
  margin: 2rem 0 0.5rem;
  color: var(--ink-dim);
  font-size: 1.35rem;
}

.transition-emphasis {
  margin: 0 0 3rem;
  font-size: 1.9rem;
  font-weight: 800;
}

.compare-table .compare-head,
.compare-row {
  display: grid;
  grid-template-columns: 0.55fr 1fr 1fr;
}

.compare-head > div,
.compare-row > div,
.compare-row > p {
  margin: 0;
  padding: 1.35rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.compare-head > div:last-child,
.compare-row > p:last-child {
  border-right: 0;
}

.compare-head {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
}

.compare-head > div:not(:first-child) {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.compare-row > div {
  color: var(--amber-glow);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.compare-row > p:nth-child(2) {
  color: var(--ink-muted);
}

.compare-row > p:nth-child(3) {
  color: var(--ink);
}

.icon-x,
.icon-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
}

.icon-x {
  color: var(--danger);
  background: rgba(214, 106, 90, 0.14);
}

.icon-check {
  color: var(--success);
  background: rgba(122, 195, 150, 0.14);
}

.guarantee-list {
  display: grid;
  gap: 1.2rem;
}

.guarantee-list .glass-content {
  display: flex;
  gap: 1.5rem;
}

.guarantee-list span {
  color: var(--amber-glow);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.mini-overline {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.reminder-line {
  margin: 0 0 1rem;
  font-size: 1.55rem;
  font-weight: 800;
}

.max-copy {
  max-width: 700px;
  margin: 0 auto;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 4rem;
  align-items: start;
}

.founder-panel .glass-content {
  min-height: 360px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, transparent, rgba(7, 9, 10, 0.36)),
    linear-gradient(135deg, rgba(216, 138, 74, 0.16), rgba(74, 155, 135, 0.18));
}

.story-title {
  margin: 0 0 2rem;
  font-size: 2.3rem;
  line-height: 1.2;
}

.story-body {
  display: grid;
  gap: 1.15rem;
}

.story-body .strong {
  color: var(--ink);
  font-weight: 700;
}

.story-close {
  margin: 2rem 0;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.35;
}

.promise-box .glass-content {
  padding: 3.5rem 2.5rem;
}

.promise-shield {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  border: 1px solid rgba(240, 160, 96, 0.45);
  border-radius: 50%;
  color: var(--amber-glow);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  background: rgba(216, 138, 74, 0.09);
}

.promise-shield svg {
  width: 36px;
  height: 36px;
}

.essentials-list {
  display: grid;
  gap: 1.5rem;
}

.essentials-list .glass-content {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: 2rem;
}

.value-grid,
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.savings-card {
  margin-bottom: 1.5rem;
}

.savings-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.savings-head h3 {
  margin: 0;
}

.savings-head strong {
  max-width: 310px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.35;
  text-align: right;
}

.savings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.savings-grid div {
  min-height: 76px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
}

.savings-grid span,
.savings-grid b {
  display: block;
  font-family: var(--font-display);
}

.savings-grid span {
  color: var(--ink-muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.savings-grid b {
  margin-top: 0.45rem;
  color: var(--amber-glow);
  font-size: 1.05rem;
  line-height: 1.2;
}

.value-grid .glass-content {
  min-height: 310px;
}

.value-grid h3 {
  margin-bottom: 1.5rem;
}

.value-grid strong {
  display: block;
  margin-top: 1.5rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.value-note {
  margin: 4rem auto 3rem;
  font-size: 1.1rem;
}

.value-box p:first-child {
  margin: 0;
  color: var(--ink);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.45;
}

.fit-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.fit-grid ul {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.fit-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--ink-dim);
}

.fit-close {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.35;
}

.faq-shell {
  padding: 1rem 2rem;
}

.faq-shell details {
  border-bottom: 1px solid var(--line);
}

.faq-shell details:last-child {
  border-bottom: 0;
}

.faq-shell summary {
  cursor: pointer;
  padding: 1.4rem 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-shell summary::after {
  content: "+";
  float: right;
  color: var(--amber-glow);
}

.faq-shell details[open] summary::after {
  content: "-";
}

.faq-shell p {
  padding: 0 2rem 1.5rem 0;
}

.loss-aversion-section {
  background: rgba(7, 9, 10, 0.05);
}

.loss-aversion-section .h-mega {
  font-size: 3.65rem;
  line-height: 1.08;
  margin-bottom: 3.5rem;
}

.ledger {
  display: grid;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.stanza {
  margin: 0;
  color: var(--ink-dim);
  font-size: 1.35rem;
  line-height: 1.6;
  text-align: center;
}

.stanza-strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
}

.stanza span,
.guarantee-line span {
  color: var(--amber-glow);
}

.ledger-pivot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.ledger-pivot i {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--line-strong);
}

.ledger-pivot b {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber-glow);
  box-shadow: 0 0 22px rgba(240, 160, 96, 0.55);
}

.cta-close {
  margin-top: 5rem;
}

.cta-setup {
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.cta-headline {
  margin: 0.6rem 0 2rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 3.1rem;
  font-weight: 900;
}

.audit-form {
  display: grid;
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto;
  padding: 1.5rem;
  border: 1px solid rgba(240, 160, 96, 0.24);
  border-radius: 6px;
  background: rgba(10, 13, 15, 0.6);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.audit-form label {
  display: grid;
  gap: 0.45rem;
  text-align: left;
}

.audit-form label span {
  color: var(--ink-dim);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audit-form input,
.audit-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 0.9rem;
  border: 1px solid var(--glass-border-strong);
  border-radius: 4px;
  outline: none;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.25);
}

.audit-form input:focus,
.audit-form select:focus {
  border-color: rgba(240, 160, 96, 0.62);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--teal-soft);
  font-size: 0.9rem;
}

.guarantee-line {
  margin: 2rem 0 0;
  color: var(--ink-dim);
  line-height: 1.8;
}

footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.reveal,
.reveal-lift,
.reveal-lines,
.reveal-words {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.9s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-lift {
  transform: translateY(28px) scale(0.96);
  filter: blur(8px);
}

.reveal.visible,
.reveal-lift.visible,
.reveal-lines.visible,
.reveal-words.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-lift,
  .reveal-lines,
  .reveal-words {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

  .h-mega {
    font-size: 4.1rem;
  }

  .h-section {
    font-size: 2.65rem;
  }

  .steps-row {
    grid-template-columns: 1fr;
  }

  .step-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .case-grid,
  .quote-grid,
  .capability-grid,
  .story-grid,
  .value-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .savings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .essentials-list .glass-content,
  .compare-table .compare-head,
  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-head > div,
  .compare-row > div,
  .compare-row > p {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .container-tight,
  .container-narrow,
  .mobile-menu {
    width: min(100% - 32px, 1120px);
  }

  .nav-inner {
    min-height: 68px;
  }

  .brand {
    font-size: 0.9rem;
  }

  .hero-section {
    min-height: 76svh;
    padding: 5.7rem 0 1.4rem;
  }

  .section-pad,
  .section-pad-lg,
  .section-pad-sm {
    padding: 5.5rem 0;
  }

  .h-mega {
    font-size: 3rem;
  }

  .loss-aversion-section .h-mega {
    font-size: 2.35rem;
  }

  .h-section {
    font-size: 2.1rem;
  }

  .h-sub {
    font-size: 1.25rem;
  }

  .hero-sub {
    font-size: 1.1rem;
  }

  .hero-microcopy,
  .intro-kicker,
  .section-support,
  .stat-support {
    font-size: 1rem;
  }

  .hero-frame img {
    height: 160px;
    object-position: 58% center;
  }

  .eyebrow-pill,
  .eyebrow-center {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .glass-content,
  .promise-box .glass-content,
  .audit-form {
    padding: 1.4rem;
  }

  .capability-card summary {
    align-items: flex-start;
    min-height: auto;
    padding: 1.15rem;
  }

  .capability-card summary::after {
    font-size: 1.25rem;
  }

  .capability-icon {
    width: 38px;
    height: 38px;
  }

  .capability-icon svg {
    width: 22px;
    height: 22px;
  }

  .capability-body {
    padding: 0 1.15rem 1.2rem 3.9rem;
  }

  .savings-head {
    display: block;
  }

  .savings-head strong {
    display: block;
    max-width: none;
    margin-top: 1rem;
    text-align: left;
  }

  .savings-grid {
    grid-template-columns: 1fr;
  }

  .stat-mega {
    font-size: 4.4rem;
  }

  .stat-case {
    font-size: 2.5rem;
  }

  .stat-case-long {
    font-size: 1.75rem;
  }

  .simple-stack,
  .fit-close,
  .transition-emphasis {
    font-size: 1.45rem;
  }

  .cta-headline {
    font-size: 2.25rem;
  }

  .stanza {
    font-size: 1.05rem;
  }

  .stanza-strong {
    font-size: 1.35rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}
