:root {
  --bg: #000000;
  --panel: #0b0b0d;
  --panel-soft: #121215;
  --panel-line: rgba(255, 255, 255, 0.08);
  --text: #f6f3eb;
  --muted: #aaa59b;
  --accent: #cdb27a;
  --accent-soft: #f2e5bd;
  --accent-deep: #8b6f38;
  --shadow: none;
  --radius-xl: 34px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 3px 3px, 3px 3px;
}

.announcement-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

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

.page-shell {
  width: min(1360px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0 60px;
}

.hero,
.stats-strip,
.results-section,
.value-section,
.cta-section {
  margin-top: 18px;
}

.topbar {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 0 18px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-logo {
  width: 220px;
  height: auto;
}

.topbar-links {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.topbar-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.topbar-links a:hover {
  color: var(--accent-soft);
}

.ghost-link {
  border: 1px solid rgba(205, 178, 122, 0.34);
  border-radius: 12px;
  padding: 14px 18px;
  color: #161513;
  background:
    linear-gradient(180deg, #f3e6be 0%, #dfca93 100%);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 12px 36px rgba(205, 178, 122, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ghost-link:hover,
.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 44px rgba(205, 178, 122, 0.16);
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 28px;
  align-items: center;
  min-height: 580px;
  padding: 48px 40px 54px;
  border-top: 0;
  border-bottom: 0;
  border-radius: 0;
  background: #000;
  overflow: hidden;
  position: relative;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 0;
  background: none;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.hero-main {
  max-width: 690px;
  position: relative;
  z-index: 1;
  background: #000 !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  isolation: isolate;
  overflow: visible;
}

.hero-main::before {
  content: "" !important;
  position: absolute;
  inset: -6px;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.035), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0%, rgba(0, 0, 0, 0) 16%),
    #000 !important;
  border: 0 !important;
  border-radius: 22px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 18px 40px rgba(0, 0, 0, 0.28) !important;
  filter: none !important;
  z-index: 0;
  pointer-events: none;
}

.hero-main::after {
  content: none !important;
}

.hero-main > * {
  position: relative;
  z-index: 1;
}

.hero-main {
  padding: 18px 18px 20px;
}

.hero-main .eyebrow,
.hero-main h1,
.hero-main .hero-subline {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  mix-blend-mode: normal !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 16px;
  border: 1px solid rgba(89, 221, 141, 0.24);
  border-radius: 999px;
  background: rgba(17, 56, 32, 0.35);
  color: #6cf2a1;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4ef08f;
  box-shadow: 0 0 16px rgba(78, 240, 143, 0.55);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

h1 {
  max-width: 8.6ch;
  font-size: clamp(2.45rem, 4vw, 4.15rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
  color: #ffffff;
  text-shadow: none;
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.08;
}

.hero-subline,
.section-copy,
.proof-tile-copy,
.field span,
.cta-meta-secondary,
.hero-quote,
.results-copy {
  color: var(--muted);
}

.hero-subline {
  max-width: 33ch;
  margin: 22px 0 0;
  font-size: 0.98rem;
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.74);
  text-shadow: none;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 28px;
  background: transparent;
  box-shadow: none;
}

.hero-link {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 56px;
padding: 0 22px;
border-radius: 10px;
border: 1px solid rgba(255,255,255,0.08);
background: rgba(255,255,255,0.03);
color: rgba(255,255,255,0.78);
font-size: 0.96rem;
font-weight: 700;
text-decoration: none;
transition: all 0.2s ease;
}

.hero-link:hover {
  color: var(--accent-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  color: #15130f;
  background: linear-gradient(180deg, #f3e6be 0%, #ddc88f 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.hero-visual {
  position: relative;
  display: grid;
  align-content: end;
  justify-items: end;
  padding: 28px 10px 10px 0;
}

.hero-image-copy {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(205, 178, 122, 0.26);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(20, 18, 15, 0.88) 0%, rgba(10, 10, 11, 0.96) 100%);
  backdrop-filter: blur(10px);
  text-align: left;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(205, 178, 122, 0.06);
}

.hero-float-card {
  position: absolute;
  z-index: 2;
  min-width: 158px;
  padding: 14px 16px 13px;
  border: 1px solid rgba(205, 178, 122, 0.26);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(20, 18, 15, 0.92) 0%, rgba(8, 8, 9, 0.96) 100%);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(205, 178, 122, 0.05);
  backdrop-filter: blur(10px);
  animation: heroCardFloat 7s ease-in-out infinite;
  will-change: transform;
}

.hero-float-card span {
  display: block;
  margin-bottom: 5px;
  color: rgba(242, 229, 189, 0.7);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-float-card strong {
  display: block;
  color: var(--accent-soft);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-float-card-top {
  top: 34px;
  right: -8px;
  animation-delay: 0s;
}

.hero-float-card-middle {
  left: -38px;
  top: 44%;
  animation-delay: 1.4s;
}

.hero-float-card-bottom {
  right: 20px;
  bottom: 90px;
  animation-delay: 2.6s;
}

.hero-image-copy p,
.hero-image-copy strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-image-copy p {
  margin: 0 0 5px;
  color: rgba(242, 229, 189, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-image-copy strong {
  color: var(--accent-soft);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-float {
  position: absolute;
  z-index: 2;
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(17, 17, 19, 0.95) 0%, rgba(10, 10, 11, 0.98) 100%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

.hero-float-top {
  top: 34px;
  right: 12px;
}

.hero-float-bottom {
  bottom: 22px;
  left: 18px;
}

.hero-float-label {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-float strong {
  display: block;
  color: #57f093;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-visual-main,
.proof-tile,
.cta-panel,
.form-shell,
.form-success {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(17, 17, 19, 0.92) 0%, rgba(9, 9, 10, 0.96) 100%);
  box-shadow: var(--shadow);
}

.hero-visual-main {
  border-radius: 18px;
}

.hero-visual-main {
  width: 100%;
  max-width: 440px;
  margin-top: 34px;
  padding: 0;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  animation: heroFloat 6s ease-in-out infinite;
  will-change: transform;
}

.hero-visual-main img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.hero-visual-main img {
  aspect-ratio: auto;
  object-position: center top;
}

.hero-visual-main::after {
}

.hero-visual-main::before {
  content: "";
  position: absolute;
  inset: 10% -12% -16% 12%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(92, 159, 255, 0.12) 0%, rgba(92, 159, 255, 0.04) 42%, transparent 72%);
  filter: blur(28px);
  z-index: -1;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes heroCardFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes heroFloatCopy {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 100% 50%, rgba(215, 189, 122, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(15, 15, 16, 0.98) 0%, rgba(10, 10, 11, 0.98) 100%);
  box-shadow: var(--shadow);
}

.stats-strip {
  position: relative;
  padding-bottom: 26px;
}

.stats-strip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(205, 178, 122, 0.18) 8%,
    rgba(205, 178, 122, 0.58) 50%,
    rgba(205, 178, 122, 0.18) 92%,
    transparent 100%
  );
}

.stats-strip-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, transparent 18%);
  pointer-events: none;
}

.stat-card {
  position: relative;
  padding: 28px 20px 24px;
  text-align: center;
  transition: transform 0.22s ease, background 0.22s ease;
  transform-style: preserve-3d;
}

.stat-card:hover {
  transform: translateY(-4px) translateZ(0);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028) 0%, transparent 100%);
}

.stat-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22%;
  right: 0;
  width: 1px;
  height: 56%;
  background: linear-gradient(180deg, transparent 0%, rgba(215, 189, 122, 0.55) 22%, rgba(215, 189, 122, 0.55) 78%, transparent 100%);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-soft);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.stat-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}

.proof-type {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-soft);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-intro {
  margin-bottom: 24px;
}

.section-intro-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.results-copy {
  max-width: 38ch;
  margin-top: 12px;
  line-height: 1.7;
}

.proof-controls {
  display: inline-flex;
  gap: 10px;
  flex-shrink: 0;
}

.proof-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(18, 18, 20, 0.95) 0%, rgba(10, 10, 11, 0.95) 100%);
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.proof-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(205, 178, 122, 0.26);
  color: var(--accent-soft);
}

.proof-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.proof-carousel::-webkit-scrollbar {
  display: none;
}

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

.value-intro h2,
.value-intro .results-copy {
  margin-left: auto;
  margin-right: auto;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 17, 19, 0.92) 0%, rgba(10, 10, 11, 0.96) 100%);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.value-card::before,
.proof-tile::before,
.cta-panel::before,
.form-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, transparent 22%);
  pointer-events: none;
  opacity: 0.8;
}

.value-icon {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent-soft);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.proof-tile {
  padding: 16px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease;
  scroll-snap-align: start;
  transform-style: preserve-3d;
}

.proof-tile:hover,
.value-card:hover {
  transform: translateY(-4px) rotateX(1.2deg);
  border-color: rgba(205, 178, 122, 0.18);
}

.proof-tile-image {
  width: 108%;
  aspect-ratio: 0.8 / 1;
  object-fit: contain;
  background: #000;
  padding: 18px 18px 12px;
  border-radius: 16px;
  border: 0;
  background: transparent;
  margin: 0 0 14px;
  transform: scale(1.03);
}

.proof-tile-copy,
.section-copy {
  margin: 0;
  line-height: 1.72;
}

.cta-panel {
  padding: 34px 30px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 229, 189, 0.045), transparent 22%),
    linear-gradient(180deg, rgba(10, 10, 11, 0.94) 0%, rgba(8, 8, 9, 0.96) 100%);
  box-shadow: var(--shadow);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.cta-copy {
  position: sticky;
  top: 24px;
}

.cta-copy h2 {
  max-width: 8ch;
}

.cta-copy .section-copy {
  max-width: 26ch;
  margin-top: 14px;
}

.cta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cta-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.cta-meta-primary {
  color: var(--accent-soft) !important;
  border-color: rgba(215, 189, 122, 0.24) !important;
  background: rgba(215, 189, 122, 0.08) !important;
}

.cta-meta-secondary {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.application-form {
  margin-top: 0;
}

.form-shell,
.form-success {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 16, 18, 0.86) 0%, rgba(11, 11, 13, 0.9) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

@media (max-width: 980px) {
  .stats-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-card:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .stats-strip-inner {
    grid-template-columns: 1fr;
  }

  .stat-card::after {
    display: none;
  }
}

.form-kicker {
  margin: 0 0 8px;
  color: var(--accent-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-push {
  max-width: 34ch;
  margin: 0 0 20px;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.5;
}

.form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.field input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.022);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.field input:focus {
  outline: none;
  border-color: rgba(205, 178, 122, 0.28);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 0 4px rgba(205, 178, 122, 0.06);
}

.field-full {
  grid-column: 1 / -1;
}

.form-block {
  margin-top: 24px;
}

.form-block h3 {
  max-width: none;
  margin-bottom: 14px;
  font-size: 1.7rem;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.choice-grid {
  display: grid;
  gap: 10px;
}

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

.choice-card {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.022);
  color: var(--text);
  text-align: left;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.18s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.choice-card:hover {
  border-color: rgba(215, 189, 122, 0.34);
  transform: translateY(-2px);
}

.choice-card.is-selected {
  border-color: rgba(215, 189, 122, 0.6);
  background: linear-gradient(180deg, rgba(205, 178, 122, 0.13) 0%, rgba(205, 178, 122, 0.08) 100%);
  color: var(--accent-soft);
}

.form-actions-single {
  margin-top: 24px;
}

.form-submit-single {
  min-width: 210px;
  position: relative;
  isolation: isolate;
}

.form-submit-single::after,
.ghost-link::after,
.button-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, transparent 36%);
  pointer-events: none;
}

.hero-visual-main:hover {
  transform: translateY(-4px) scale(1.01);
}

.hero-visual-main,
.proof-tile,
.value-card,
.stat-card,
.cta-panel,
.form-shell {
  will-change: transform;
}

.form-success h3 {
  max-width: none;
  margin-bottom: 18px;
}

.form-success[hidden] {
  display: none;
}

@media (max-width: 1080px) {
  .topbar,
  .hero-stage,
  .cta-layout,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .section-intro-split {
    display: grid;
    align-items: start;
  }

  .proof-carousel {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .topbar {
    gap: 16px;
    justify-items: start;
  }

  .topbar-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
  }

  .cta-copy {
    position: static;
  }

  .form-fields,
  .choice-grid-compact {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .hero-image-copy {
    bottom: 16px;
    left: 16px;
  }

  .hero-float-card {
    display: none;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 18px, 100%);
    padding-top: 18px;
  }

  .announcement-bar {
    min-height: 40px;
    text-align: center;
    line-height: 1.4;
  }

  .brand-logo {
    width: 180px;
  }

  .hero-stage,
  .cta-panel,
  .proof-tile,
  .form-shell,
  .form-success {
    padding: 20px;
  }

  h1 {
    max-width: 8.5ch;
    font-size: 2.75rem;
    line-height: 1;
  }

  h2 {
    font-size: 2.15rem;
    max-width: none;
  }

  .button,
  .ghost-link {
    width: 100%;
  }

  .hero,
  .results-section,
  .value-section,
  .cta-section {
    margin-top: 28px;
  }

  .hero-metrics {
    gap: 12px;
    margin-top: 28px;
  }

  .hero-metric {
    padding: 16px 16px 14px;
  }

  .hero-image-copy {
    right: 16px;
    left: 16px;
    bottom: 16px;
  }

  .proof-carousel {
    grid-auto-columns: 100%;
  }

  .proof-arrow {
    width: 46px;
    height: 46px;
  }
}
