:root {
  --ink: #f5f7fa;
  --muted: #9ba8b8;
  --soft: #c8d1dc;
  --night: #07101a;
  --night-2: #0a1623;
  --night-3: #0f2032;
  --panel: rgba(13, 28, 44, 0.82);
  --line: rgba(186, 209, 232, 0.14);
  --line-strong: rgba(226, 190, 112, 0.32);
  --gold: #f0c56b;
  --gold-deep: #b9852e;
  --ice: #94d9ff;
  --blue: #3976ff;
  --green: #59d8a7;
  --shell: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% -5%, rgba(39, 101, 187, 0.16), transparent 36%),
    var(--night);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

:focus-visible {
  outline: 3px solid rgba(148, 217, 255, 0.8);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--gold);
  color: #101722;
  transform: translateY(-150%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 16, 26, 0.8);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 38px;
  height: 38px;
  position: relative;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(240, 197, 107, 0.36);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(240, 197, 107, 0.14), rgba(57, 118, 255, 0.12));
  box-shadow: inset 0 0 18px rgba(148, 217, 255, 0.07);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  border: 1px solid var(--gold);
}

.brand-mark::after {
  width: 7px;
  height: 7px;
  border-color: var(--ice);
  background: rgba(148, 217, 255, 0.12);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  letter-spacing: 0.04em;
  color: #fff7e8;
}

.brand-copy small {
  margin-top: 6px;
  font-size: 8px;
  letter-spacing: 0.24em;
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 12px 13px;
  color: #aeb9c7;
  font-size: 14px;
  font-weight: 650;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: #fff;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 7px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  border: 1px solid rgba(240, 197, 107, 0.42);
  border-radius: 999px;
  background: rgba(240, 197, 107, 0.08);
  color: #ffe9b5;
  font-size: 13px;
  font-weight: 760;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: rgba(240, 197, 107, 0.15);
}

.mobile-menu {
  display: none;
  margin-left: auto;
  position: relative;
}

.mobile-menu summary {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 19px;
  height: 1px;
  background: var(--ink);
}

.mobile-menu nav {
  position: absolute;
  right: 0;
  top: 54px;
  width: min(280px, calc(100vw - 40px));
  display: grid;
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #0d1b2a;
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  padding: 12px;
  border-radius: 10px;
  color: var(--soft);
  font-weight: 650;
}

.mobile-menu nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(90deg, rgba(7, 16, 26, 0.98) 0%, rgba(7, 16, 26, 0.74) 54%, rgba(7, 16, 26, 0.93) 100%),
    radial-gradient(circle at 74% 38%, rgba(49, 119, 255, 0.22), transparent 28%);
}

.hero-compact {
  min-height: 610px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.33;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero-glow {
  position: absolute;
  width: 380px;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(100px);
  opacity: 0.16;
}

.hero-glow-one {
  top: -200px;
  left: 10%;
  background: var(--blue);
}

.hero-glow-two {
  right: 7%;
  bottom: -240px;
  background: var(--gold);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: 72px;
  padding-block: 96px 108px;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.22em;
}

.eyebrow span {
  margin-right: 8px;
  color: var(--ice);
  font-size: 9px;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.6vw, 78px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-compact h1 {
  font-size: clamp(43px, 5vw, 68px);
}

.hero-intro {
  max-width: 650px;
  margin: 28px 0 0;
  color: #b5c0ce;
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 790;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  color: #111823;
  background: linear-gradient(135deg, #ffe29b, var(--gold) 48%, #d59a38);
  box-shadow: 0 14px 40px rgba(213, 154, 56, 0.2);
}

.button-primary:hover {
  box-shadow: 0 18px 50px rgba(213, 154, 56, 0.3);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  color: #eef3f8;
  background: rgba(255, 255, 255, 0.045);
}

.button-secondary:hover {
  border-color: rgba(148, 217, 255, 0.4);
  background: rgba(148, 217, 255, 0.08);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 21px 0 0;
  color: #8192a5;
  font-size: 12px;
}

.hero-note span {
  color: var(--green);
}

.diamond-scene {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.diamond-scene::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 118, 255, 0.25), rgba(57, 118, 255, 0.03) 48%, transparent 70%);
  filter: blur(5px);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(148, 217, 255, 0.2);
  border-radius: 50%;
  transform: rotate(-20deg);
}

.orbit-one {
  width: 365px;
  height: 250px;
}

.orbit-two {
  width: 285px;
  height: 400px;
  border-color: rgba(240, 197, 107, 0.2);
  transform: rotate(55deg);
}

.diamond {
  position: relative;
  width: 196px;
  height: 196px;
  transform: rotate(45deg);
  border: 1px solid rgba(225, 242, 255, 0.72);
  border-radius: 18px 44px 18px 44px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(148, 217, 255, 0.12) 28%, rgba(57, 118, 255, 0.4) 62%, rgba(6, 24, 43, 0.72)),
    #153a63;
  box-shadow:
    inset 24px 24px 60px rgba(255, 255, 255, 0.15),
    inset -25px -25px 55px rgba(3, 13, 26, 0.48),
    0 0 42px rgba(148, 217, 255, 0.35),
    0 0 110px rgba(57, 118, 255, 0.24);
  animation: diamond-float 6s ease-in-out infinite;
}

.diamond-face {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.diamond-face-a {
  transform: skew(14deg, 14deg);
}

.diamond-face-b {
  transform: rotate(45deg) scale(0.72);
  border-color: rgba(240, 197, 107, 0.26);
}

.diamond-face-c {
  inset: 45px;
  border-radius: 50%;
  border-color: rgba(255, 255, 255, 0.18);
}

.diamond-shine {
  position: absolute;
  inset: 8px 70px 8px 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  filter: blur(5px);
  transform: rotate(-22deg);
}

.spark {
  position: absolute;
  color: #dff4ff;
  text-shadow: 0 0 20px rgba(148, 217, 255, 0.9);
  animation: spark 3.4s ease-in-out infinite;
}

.spark-one {
  top: 15%;
  right: 13%;
  font-size: 30px;
}

.spark-two {
  left: 9%;
  bottom: 28%;
  color: var(--gold);
  font-size: 22px;
  animation-delay: -1.1s;
}

.spark-three {
  right: 23%;
  bottom: 13%;
  font-size: 16px;
  animation-delay: -2.2s;
}

.scene-label {
  position: absolute;
  bottom: 2px;
  display: grid;
  justify-items: center;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(7, 16, 26, 0.68);
  backdrop-filter: blur(12px);
}

.scene-label span {
  color: #fff2d3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1;
}

.scene-label small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.22em;
}

.highlight-wrap {
  position: relative;
  z-index: 6;
  margin-top: -42px;
}

.highlight-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(240, 197, 107, 0.07), rgba(13, 28, 44, 0.95) 32%, rgba(11, 27, 43, 0.95));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.highlight-item {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 22px 28px;
}

.highlight-item + .highlight-item {
  border-left: 1px solid var(--line);
}

.highlight-item strong {
  min-width: 52px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
}

.highlight-item span {
  color: #aebac7;
  font-size: 13px;
  line-height: 1.45;
}

.content-section {
  position: relative;
  padding: 120px 0;
}

.section-tint {
  border-block: 1px solid rgba(255, 255, 255, 0.045);
  background:
    radial-gradient(circle at 95% 50%, rgba(57, 118, 255, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.012);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.narrow {
  max-width: 810px;
  margin-bottom: 42px;
}

.section-heading h2,
.final-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.section-heading > p:last-child {
  max-width: 690px;
  margin: 20px 0 0;
  color: #9eacbb;
  font-size: 17px;
  line-height: 1.8;
}

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

.info-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)),
    rgba(9, 22, 35, 0.62);
  overflow: hidden;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.info-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -50px;
  top: -50px;
  border: 1px solid rgba(148, 217, 255, 0.09);
  transform: rotate(45deg);
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.22);
}

.card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid rgba(240, 197, 107, 0.3);
  border-radius: 14px;
  background: rgba(240, 197, 107, 0.07);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 700;
}

.info-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.info-card p {
  margin: 15px 0 24px;
  color: #93a2b3;
  font-size: 14px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #f5d58e;
  font-size: 13px;
  font-weight: 760;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.checklist {
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 86px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.check-item span {
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(89, 216, 167, 0.1);
  color: var(--green);
  font-size: 12px;
}

.check-item p {
  margin: 0;
  color: #b5c0cc;
  font-size: 14px;
}

.faq-section {
  padding: 120px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.05);
  background:
    radial-gradient(circle at 10% 20%, rgba(240, 197, 107, 0.07), transparent 30%),
    #08131f;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 125px;
  margin-bottom: 0;
}

.faq-heading h2 {
  font-size: clamp(34px, 4vw, 50px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  color: #ecf2f7;
  font-size: 17px;
  font-weight: 700;
}

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

.faq-list summary i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold);
  font-style: normal;
  transition: transform 180ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > p {
  margin: -2px 50px 28px 0;
  color: #98a7b7;
  line-height: 1.8;
}

.final-cta {
  padding: 90px 0;
}

.final-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 52px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(110deg, rgba(240, 197, 107, 0.09), rgba(16, 40, 63, 0.88) 55%, rgba(57, 118, 255, 0.12)),
    #0b1a29;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.final-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(148, 217, 255, 0.14);
  transform: rotate(45deg);
}

.final-card > * {
  position: relative;
  z-index: 2;
}

.final-card h2 {
  font-size: clamp(34px, 4vw, 50px);
}

.final-card p:not(.section-kicker) {
  max-width: 650px;
  margin: 15px 0 0;
  color: #9eacba;
}

.final-card .button {
  flex: 0 0 auto;
}

.site-footer {
  padding: 75px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #050b12;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 90px;
  padding-bottom: 55px;
}

.footer-brand > p {
  max-width: 390px;
  margin: 24px 0 19px;
  color: #8796a6;
  font-size: 14px;
}

.age-badge {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(240, 197, 107, 0.22);
  border-radius: 999px;
  color: #cfb16f;
  font-size: 11px;
  font-weight: 720;
}

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

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h3 {
  margin: 0 0 7px;
  color: #eef3f8;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  color: #7f8e9e;
  font-size: 13px;
  transition: color 180ms ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #657383;
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

@keyframes diamond-float {
  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
  }
  50% {
    transform: rotate(45deg) translate(-9px, -9px);
  }
}

@keyframes spark {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@media (max-width: 1000px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 80px 105px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .diamond-scene {
    min-height: 340px;
  }

  .diamond {
    width: 160px;
    height: 160px;
  }

  .orbit-one {
    width: 310px;
    height: 210px;
  }

  .orbit-two {
    width: 235px;
    height: 330px;
  }

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

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

  .faq-layout,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-heading {
    position: static;
  }
}

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

  .header-inner {
    min-height: 72px;
  }

  .brand-copy strong {
    font-size: 19px;
  }

  .hero-layout {
    padding-block: 66px 92px;
  }

  .hero h1,
  .hero-compact h1 {
    font-size: clamp(39px, 12vw, 56px);
  }

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

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .diamond-scene {
    min-height: 300px;
  }

  .diamond {
    width: 132px;
    height: 132px;
    border-radius: 14px 32px 14px 32px;
  }

  .orbit-one {
    width: 270px;
    height: 180px;
  }

  .orbit-two {
    width: 205px;
    height: 285px;
  }

  .highlight-wrap {
    margin-top: -30px;
  }

  .highlight-strip {
    grid-template-columns: 1fr;
  }

  .highlight-item {
    min-height: 78px;
    padding: 17px 20px;
  }

  .highlight-item + .highlight-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .content-section,
  .faq-section {
    padding: 85px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .final-card h2 {
    font-size: clamp(33px, 10vw, 44px);
  }

  .section-heading > p:last-child {
    font-size: 15px;
  }

  .card-grid,
  .checklist {
    grid-template-columns: 1fr;
  }

  .info-card,
  .info-card:last-child {
    min-height: auto;
    grid-column: auto;
  }

  .faq-layout {
    gap: 34px;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 15px;
  }

  .faq-list details > p {
    margin-right: 0;
    font-size: 14px;
  }

  .final-cta {
    padding: 68px 0;
  }

  .final-card {
    display: grid;
    padding: 32px 24px;
  }

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

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

@media (max-width: 440px) {
  .brand-copy small {
    display: none;
  }

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

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