:root {
  --navy-950: #07112d;
  --navy-900: #0b1739;
  --navy-800: #10214b;
  --navy-700: #163063;
  --blue-500: #277cff;
  --blue-400: #4b98ff;
  --blue-100: #dceaff;
  --gold-500: #f4b942;
  --gold-400: #ffc95c;
  --gold-100: #fff0c5;
  --cream: #fbf8f1;
  --white: #ffffff;
  --ink: #101a33;
  --muted: #5d6679;
  --line: #dfe3eb;
  --success: #147a55;
  --danger: #b42318;
  --shadow-sm: 0 12px 36px rgba(9, 24, 60, 0.09);
  --shadow-lg: 0 28px 80px rgba(5, 15, 42, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 3px;
}

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

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  background: rgba(7, 17, 45, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: background 0.25s, box-shadow 0.25s;
}

.site-header.scrolled {
  background: rgba(7, 17, 45, 0.96);
  box-shadow: 0 8px 30px rgba(3, 10, 30, 0.22);
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  background: #fbf8f1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 11px;
  box-shadow: 0 6px 18px rgba(3, 10, 30, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.primary-nav > a:not(.button) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.primary-nav > a:not(.button):hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 0;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.text-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-gold {
  color: var(--navy-950);
  background: var(--gold-500);
  box-shadow: 0 10px 28px rgba(244, 185, 66, 0.2);
}

.button-gold:hover {
  background: var(--gold-400);
  box-shadow: 0 14px 34px rgba(244, 185, 66, 0.3);
}

.button-navy {
  color: var(--white);
  background: var(--navy-900);
}

.button-navy:hover {
  background: var(--navy-700);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 14px;
}

.button-large {
  min-height: 58px;
  padding: 17px 27px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 25px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--gold-400);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Manrope", sans-serif;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  font-weight: 700;
}

h3 {
  font-size: 1.4rem;
}

h1 em,
h2 em {
  color: var(--gold-500);
  font-style: normal;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 82px;
  color: var(--white);
  background:
    linear-gradient(116deg, rgba(7, 17, 45, 0.98) 0%, rgba(11, 23, 57, 0.97) 53%, rgba(13, 38, 86, 0.94) 100%),
    radial-gradient(circle at 80% 20%, #1d56b8, transparent 40%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  mask-image: linear-gradient(to right, transparent, black 50%, black);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  top: 9%;
  right: -12%;
  width: 560px;
  height: 560px;
  background: rgba(39, 124, 255, 0.17);
}

.hero-glow-two {
  bottom: -28%;
  left: 38%;
  width: 500px;
  height: 500px;
  background: rgba(244, 185, 66, 0.07);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 730px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: 42px;
  padding-top: 70px;
  padding-bottom: 90px;
}

.hero-content {
  padding-bottom: 10px;
}

.hero-intro {
  max-width: 760px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 4.7rem);
}

.hero-signup {
  position: relative;
  max-width: 670px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 7px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.hero-signup input {
  min-width: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.hero-signup .field-error {
  position: absolute;
  top: calc(100% + 5px);
  left: 7px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 600;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-proof svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  color: var(--navy-950);
  background: var(--gold-500);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.orbit-large {
  top: 20px;
  right: -30px;
  width: 470px;
  height: 470px;
}

.orbit-small {
  top: 80px;
  right: 30px;
  width: 350px;
  height: 350px;
  border-color: rgba(244, 185, 66, 0.25);
}

.visual-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.visual-card-main {
  top: 108px;
  right: 12px;
  width: min(88%, 390px);
  padding: 34px;
  background: linear-gradient(145deg, rgba(33, 72, 145, 0.66), rgba(13, 30, 70, 0.76));
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}

.visual-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-card-main strong {
  display: block;
  max-width: 270px;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.visual-bars {
  height: 75px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
  margin-top: 34px;
}

.visual-bars i {
  flex: 1;
  min-width: 10px;
  background: linear-gradient(to top, var(--blue-500), var(--gold-400));
  border-radius: 4px 4px 1px 1px;
}

.visual-bars i:nth-child(1) { height: 34%; opacity: 0.55; }
.visual-bars i:nth-child(2) { height: 50%; opacity: 0.65; }
.visual-bars i:nth-child(3) { height: 62%; opacity: 0.78; }
.visual-bars i:nth-child(4) { height: 78%; opacity: 0.88; }
.visual-bars i:nth-child(5) { height: 100%; }

.visual-card-float {
  z-index: 4;
  bottom: 50px;
  left: -25px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px 16px 14px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
}

.icon-disc {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--navy-900);
  background: var(--gold-500);
  border-radius: 50%;
}

.icon-disc svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.visual-card-float span:last-child {
  display: flex;
  flex-direction: column;
}

.visual-card-float small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-card-float strong {
  color: var(--ink);
  font-size: 14px;
}

.visual-stat {
  position: absolute;
  z-index: 3;
  top: 49px;
  left: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--navy-950);
  background: var(--gold-500);
  border-radius: 13px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-5deg);
}

.visual-stat strong {
  font-size: 34px;
  line-height: 1;
}

.visual-stat span {
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.spark {
  position: absolute;
  color: var(--gold-400);
  font-size: 30px;
}

.spark-one {
  top: 20px;
  right: 40px;
}

.spark-two {
  right: 2px;
  bottom: 48px;
  font-size: 18px;
}

.hero-ribbon {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 17px 0;
  color: var(--navy-950);
  background: var(--gold-500);
}

.ribbon-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  padding-left: 2vw;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ribbon-track i {
  font-style: normal;
}

.why-section {
  background: var(--cream);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: end;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading h2 em,
.about-copy h2 em,
.centered-heading h2 em {
  color: var(--blue-500);
}

.section-lead {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 17px;
}

.section-lead p:first-child {
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
}

.section-lead p:last-child {
  margin-bottom: 0;
}

.change-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 72px;
}

.offer-grid {
  grid-template-columns: repeat(4, 1fr);
}

.offer-grid .change-card {
  min-height: 330px;
  padding: 32px 28px;
}

.offer-grid .line-icon {
  margin-bottom: 48px;
}

.change-card {
  position: relative;
  min-height: 300px;
  padding: 36px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(13, 31, 70, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.change-card:hover,
.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(9, 24, 60, 0.13);
}

.change-card.featured {
  color: var(--white);
  background: var(--navy-900);
}

.card-number {
  position: absolute;
  top: 22px;
  right: 26px;
  color: rgba(11, 23, 57, 0.12);
  font-family: "Manrope", sans-serif;
  font-size: 54px;
  font-weight: 800;
}

.featured .card-number {
  color: rgba(255, 255, 255, 0.09);
}

.line-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 38px;
  place-items: center;
  color: var(--blue-500);
  background: var(--blue-100);
  border-radius: 15px;
}

.featured .line-icon {
  color: var(--navy-950);
  background: var(--gold-500);
}

.line-icon svg,
.audience-icon svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.change-card h3 {
  margin-bottom: 13px;
}

.change-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.featured p {
  color: rgba(255, 255, 255, 0.65);
}

.centered-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading > p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.audience-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 56px;
}

.audience-chip-grid span {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: var(--navy-800);
  background: #f7f9fd;
  border: 1px solid #dce3ef;
  border-radius: 16px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.audience-chip-grid span:hover {
  background: var(--white);
  border-color: var(--blue-400);
  transform: translateY(-3px);
}

.audience-chip-grid span:last-child {
  grid-column: 2 / 4;
}

.audience-card {
  padding: 38px 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.audience-card:hover {
  border-color: var(--blue-100);
}

.audience-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--blue-500);
  background: #eff5ff;
  border-radius: 18px;
}

.audience-card:nth-child(2) .audience-icon {
  color: #a16600;
  background: var(--gold-100);
}

.audience-label {
  margin-bottom: 8px;
  color: var(--blue-500);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.audience-card h3 {
  margin-bottom: 15px;
}

.audience-card > p:not(.audience-label) {
  min-height: 78px;
  color: var(--muted);
}

.audience-card ul {
  margin: 26px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.audience-card li {
  position: relative;
  margin: 9px 0;
  padding-left: 20px;
  font-size: 14px;
}

.audience-card li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
  content: "";
}

.topics-section {
  position: relative;
  color: var(--white);
  background: var(--navy-900);
}

.topics-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background: radial-gradient(circle at 0 0, var(--blue-500), transparent 35%);
  content: "";
}

.topics-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.topics-intro {
  position: sticky;
  top: 140px;
  align-self: start;
}

.topics-intro p:not(.eyebrow) {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.65);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--gold-400);
  font-weight: 700;
  text-decoration: none;
}

.topic-item {
  display: grid;
  grid-template-columns: 44px 1fr 28px;
  gap: 16px;
  align-items: center;
  min-height: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: padding 0.2s, color 0.2s;
}

.topic-item:hover {
  padding-left: 10px;
  color: var(--gold-400);
}

.topic-item > span {
  color: var(--gold-400);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.topic-item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.topic-item i {
  color: rgba(255, 255, 255, 0.45);
  font-size: 20px;
  font-style: normal;
}

.about-section {
  overflow: hidden;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 105px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 540px;
}

.about-shape {
  position: absolute;
  inset: 0 20px 0 0;
  display: grid;
  place-content: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 24%, rgba(75, 152, 255, 0.85), transparent 28%),
    linear-gradient(145deg, var(--navy-900), var(--navy-700));
  border-radius: 42% 42% 18% 42%;
  box-shadow: var(--shadow-lg);
}

.about-shape::before,
.about-shape::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.about-shape::before {
  width: 370px;
  height: 370px;
}

.about-shape::after {
  width: 270px;
  height: 270px;
}

.about-initials {
  position: relative;
  z-index: 2;
  font-family: "Manrope", sans-serif;
  font-size: 120px;
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 1;
}

.about-logo-mark {
  position: relative;
  z-index: 2;
  width: 190px;
  height: 190px;
  object-fit: cover;
  background: var(--cream);
  border: 8px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  box-shadow: 0 24px 50px rgba(2, 10, 30, 0.3);
}

.about-word {
  position: absolute;
  z-index: 3;
  padding: 7px 13px;
  color: var(--navy-950);
  background: var(--gold-500);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-word:nth-of-type(1) { top: 22%; left: 14%; transform: rotate(-8deg); }
.about-word:nth-of-type(2) { top: 17%; right: 12%; transform: rotate(6deg); }
.about-word:nth-of-type(3) { right: 16%; bottom: 17%; transform: rotate(-5deg); }

.experience-badge {
  position: absolute;
  right: -16px;
  bottom: 38px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  color: var(--white);
  background: var(--blue-500);
  border: 6px solid var(--cream);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.experience-badge strong {
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  line-height: 1;
}

.experience-badge span {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.about-copy h2 {
  max-width: 620px;
}

.about-copy > p {
  color: var(--muted);
}

.about-copy .about-lead {
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
}

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.credential-row span {
  padding: 8px 13px;
  color: var(--navy-700);
  background: var(--white);
  border: 1px solid #d9e1ef;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}

.form-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.form-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.form-orb-one {
  top: 8%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: rgba(39, 124, 255, 0.13);
  filter: blur(8px);
}

.form-orb-two {
  right: -8%;
  bottom: 5%;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(244, 185, 66, 0.18);
}

.form-heading {
  position: relative;
}

.form-heading > p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.interest-form {
  position: relative;
  max-width: 940px;
  margin: 58px auto 0;
  padding: 52px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label,
.choice-group legend {
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 700;
}

.form-field label > span,
.choice-group legend > span:not(.legend-note) {
  color: var(--danger);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 15px;
  color: var(--ink);
  background: #fbfcfe;
  border: 1px solid #cfd5e0;
  border-radius: 9px;
  outline: 0;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-field input {
  min-height: 49px;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  background: var(--white);
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(39, 124, 255, 0.12);
}

.form-field input.invalid,
.form-field textarea.invalid {
  border-color: var(--danger);
}

.field-error {
  min-height: 18px;
  margin-top: 5px;
  color: var(--danger);
  font-size: 12px;
  line-height: 1.4;
}

.choice-group {
  padding: 0;
  margin: 30px 0 0;
  border: 0;
}

.legend-note {
  margin-left: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

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

.choice-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.choice-grid-five {
  grid-template-columns: repeat(5, 1fr);
}

.choice-grid-six {
  grid-template-columns: repeat(3, 1fr);
}

.choice-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.choice-grid-two {
  grid-template-columns: 1fr 1fr;
}

.choice-card,
.check-card {
  position: relative;
  cursor: pointer;
}

.choice-card input,
.check-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-card span,
.check-card span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  color: var(--muted);
  background: #fbfcfe;
  border: 1px solid #d8dde6;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.check-card span {
  position: relative;
  justify-content: flex-start;
  padding-left: 42px;
  text-align: left;
}

.check-card span::before {
  position: absolute;
  left: 14px;
  width: 17px;
  height: 17px;
  border: 1px solid #adb5c4;
  border-radius: 4px;
  content: "";
}

.check-card span::after {
  position: absolute;
  left: 19px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  opacity: 0;
  content: "";
  transform: rotate(-45deg) translateY(-1px);
}

.choice-card input:checked + span,
.check-card input:checked + span {
  color: var(--navy-800);
  background: #eff5ff;
  border-color: var(--blue-500);
  box-shadow: inset 0 0 0 1px var(--blue-500);
}

.check-card input:checked + span::before {
  background: var(--blue-500);
  border-color: var(--blue-500);
}

.check-card input:checked + span::after {
  opacity: 1;
}

.choice-card input:focus-visible + span,
.check-card input:focus-visible + span {
  outline: 3px solid var(--blue-400);
  outline-offset: 2px;
}

.group-error {
  display: block;
}

.form-field-wide {
  margin-top: 30px;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}

.consent-row input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--blue-500);
}

.consent-row a {
  color: var(--blue-500);
}

.consent-error {
  display: block;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.form-submit p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.form-submit button:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.form-status {
  display: none;
  margin-top: 24px;
  padding: 15px 18px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
}

.form-status.success {
  display: block;
  color: #0d563c;
  background: #e4f6ee;
  border: 1px solid #a8dec9;
}

.form-status.error {
  display: block;
  color: #8c241c;
  background: #fff0ee;
  border: 1px solid #f1b3ad;
}

.closing-section {
  padding: 110px 0;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.4), transparent 50%),
    var(--gold-500);
}

.closing-inner {
  position: relative;
  max-width: 850px;
}

.closing-star {
  display: block;
  margin-bottom: 14px;
  color: var(--navy-900);
  font-size: 28px;
}

.closing-inner .eyebrow {
  justify-content: center;
  color: var(--navy-700);
}

.closing-inner h2 {
  color: var(--navy-950);
}

.closing-inner h2 em {
  color: var(--white);
}

.closing-inner > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 32px;
  color: rgba(7, 17, 45, 0.72);
  font-size: 17px;
}

.site-footer {
  padding: 54px 0 24px;
  color: var(--white);
  background: var(--navy-950);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: center;
}

.brand-footer .brand-copy small {
  max-width: 260px;
}

.footer-inner > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-decoration: none;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .section {
    padding: 90px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    background: var(--navy-950);
    visibility: hidden;
    transition: max-height 0.3s ease, visibility 0.3s;
  }

  .primary-nav.open {
    max-height: calc(100vh - 82px);
    padding: 18px 20px 28px;
    visibility: visible;
  }

  .primary-nav > a:not(.button) {
    padding: 15px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .primary-nav .button {
    margin-top: 16px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 75px;
  }

  .hero-content {
    max-width: 790px;
  }

  .hero-visual {
    width: min(100%, 620px);
    margin: -10px auto 0;
  }

  .split-heading,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .change-grid,
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .change-card:last-child,
  .audience-card:last-child {
    grid-column: 1 / -1;
  }

  .offer-grid .change-card:last-child {
    grid-column: auto;
  }

  .audience-chip-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .audience-chip-grid span:last-child {
    grid-column: auto;
  }

  .audience-card > p:not(.audience-label) {
    min-height: 0;
  }

  .topics-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .topics-intro {
    position: static;
  }

  .about-visual {
    width: min(100%, 590px);
    margin: 0 auto;
  }

  .choice-grid-five {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-column: 2;
    justify-content: flex-end;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 74px 0;
  }

  .nav-wrap {
    height: 72px;
  }

  .brand-copy small {
    display: none;
  }

  .primary-nav {
    top: 72px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 62px;
  }

  h1 {
    font-size: clamp(2.65rem, 13.5vw, 4rem);
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12.5vw, 3.7rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10.5vw, 3.1rem);
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-signup {
    grid-template-columns: 1fr;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .hero-signup input {
    min-height: 54px;
    padding: 14px 16px;
    background: var(--white);
    border-radius: 9px;
  }

  .hero-signup .button {
    width: 100%;
  }

  .hero-signup .field-error {
    position: static;
    order: 3;
    margin-top: 0;
  }

  .hero-proof {
    gap: 12px 20px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .orbit-large {
    width: 360px;
    height: 360px;
  }

  .orbit-small {
    width: 280px;
    height: 280px;
  }

  .visual-card-main {
    top: 84px;
    right: 0;
    width: 88%;
    padding: 26px;
  }

  .visual-card-main strong {
    font-size: 23px;
  }

  .visual-card-float {
    bottom: 20px;
    left: 0;
  }

  .visual-stat {
    top: 30px;
  }

  .split-heading {
    gap: 32px;
  }

  .change-grid,
  .audience-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .change-card:last-child,
  .audience-card:last-child {
    grid-column: auto;
  }

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

  .offer-grid .change-card {
    min-height: 0;
  }

  .audience-chip-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 38px;
  }

  .audience-chip-grid span {
    min-height: 78px;
    padding: 15px 10px;
    font-size: 13px;
  }

  .audience-chip-grid span:last-child {
    grid-column: 1 / -1;
  }

  .change-card {
    min-height: 0;
  }

  .topics-layout {
    gap: 35px;
  }

  .topic-item {
    grid-template-columns: 34px 1fr 20px;
  }

  .topic-item h3 {
    font-size: 16px;
  }

  .about-visual {
    min-height: 420px;
  }

  .about-shape {
    right: 0;
  }

  .about-initials {
    font-size: 88px;
  }

  .about-logo-mark {
    width: 150px;
    height: 150px;
    border-radius: 26px;
  }

  .experience-badge {
    right: -4px;
    bottom: 18px;
    padding: 14px 18px;
  }

  .interest-form {
    margin-top: 40px;
    padding: 28px 18px;
    border-radius: 20px;
  }

  .form-grid,
  .choice-grid-two,
  .choice-grid-four,
  .choice-grid-five {
    grid-template-columns: 1fr;
  }

  .choice-grid-four,
  .choice-grid-five,
  .choice-grid-six,
  .choice-grid-three {
    grid-template-columns: 1fr 1fr;
  }

  .choice-grid-three .choice-card:last-child {
    grid-column: 1 / -1;
  }

  .choice-card span {
    min-height: 52px;
  }

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit .button {
    width: 100%;
  }

  .closing-section {
    padding: 82px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-links {
    grid-column: auto;
    justify-content: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
