:root {
  --gz-ink: #171243;
  --gz-ink-soft: #211b5d;
  --gz-bg: #2e2878;
  --gz-bg-raised: #3a339b;
  --gz-panel: #453eae;
  --gz-cream: #fdf3d2;
  --gz-cream-2: #f6e7b4;
  --gz-yellow: #ffd84a;
  --gz-yellow-press: #e8be20;
  --gz-yellow-edge: #b4820e;
  --gz-blue-ink: #3b45c4;
  --gz-leaf: #2fa84f;
  --gz-gold: #e0a82e;
  --gz-success: #7de86b;
  --gz-danger: #ff5a5a;
  --gz-text: #ffffff;
  --gz-text-soft: #e6e2ff;
  --gz-muted: #b9b3e8;
  --gz-muted-2: #8e88cc;
  --gz-line: #5b54c8;
  --gz-font-display: Montserrat, "Trebuchet MS", system-ui, sans-serif;
  --gz-font-text: Manrope, "Trebuchet MS", system-ui, sans-serif;
  --gz-radius-sm: 8px;
  --gz-radius-md: 12px;
  --gz-radius-lg: 16px;
  --gz-radius-bubble: 24px;
  --gz-shadow: 0 18px 40px rgba(11, 7, 48, 0.42);
  --gz-focus: 0 0 0 4px rgba(255, 216, 74, 0.28);
  --gz-container: 1240px;
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 3%, rgba(91, 84, 200, 0.55), transparent 26rem),
    radial-gradient(circle at 92% 24%, rgba(47, 168, 79, 0.12), transparent 24rem),
    linear-gradient(180deg, var(--gz-bg) 0%, #28216a 45%, #241e63 100%);
  color: var(--gz-text);
  font-family: var(--gz-font-text);
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(125, 232, 107, 0.16);
  border-radius: 42% 58% 52% 48%;
  content: "";
  pointer-events: none;
  transform: rotate(28deg);
}

body::before {
  top: 16vh;
  left: -250px;
}

body::after {
  right: -260px;
  bottom: 12vh;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

a {
  color: var(--gz-yellow);
}

a:hover {
  color: var(--gz-success);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: none;
  box-shadow: var(--gz-focus);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: var(--gz-radius-sm);
  background: var(--gz-yellow);
  color: var(--gz-ink);
  font-weight: 800;
  transform: translateY(-160%);
}

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

.display,
h1,
h2,
h3,
.brand-mark,
.primary-button,
.secondary-button,
.eyebrow,
.metric-label,
.toc-title,
.nav-link,
.module-kicker,
.footer-title {
  font-family: var(--gz-font-display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(23, 18, 67, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  width: min(calc(100% - 40px), var(--gz-container));
  min-height: 76px;
  margin: 0 auto;
  gap: 24px;
}

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gz-line);
  border-radius: var(--gz-radius-md);
  background: rgba(255, 255, 255, 0.07);
  color: var(--gz-text);
  cursor: pointer;
}

.mobile-menu-toggle span,
.mobile-menu-toggle::before,
.mobile-menu-toggle::after {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-toggle {
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

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

.nav-link {
  position: relative;
  padding: 8px 0;
  color: var(--gz-text-soft);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gz-yellow);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--gz-yellow);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  color: var(--gz-yellow);
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.06em;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 3px 0 var(--gz-yellow-edge);
  transform: rotate(-2deg);
}

.brand-mark span {
  display: block;
  margin-top: 2px;
  color: var(--gz-success);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-shadow: none;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--gz-radius-md);
  padding: 12px 22px;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.primary-button {
  border: 0;
  background: var(--gz-yellow);
  box-shadow: 0 4px 0 var(--gz-yellow-edge);
  color: #241e63;
}

.primary-button:hover {
  background: #ffe36f;
  color: #241e63;
  transform: translateY(-2px);
}

.primary-button:active {
  background: var(--gz-yellow-press);
  box-shadow: 0 2px 0 var(--gz-yellow-edge);
  transform: translateY(2px);
}

.secondary-button {
  border: 1px solid #736be2;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gz-text);
}

.secondary-button:hover {
  border-color: var(--gz-yellow);
  color: var(--gz-yellow);
}

.mobile-scrim {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 42px;
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 20px;
  left: 50%;
  width: 920px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 84, 200, 0.45), transparent 68%);
  content: "";
  transform: translateX(-50%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  width: min(calc(100% - 40px), var(--gz-container));
  margin: 0 auto;
  gap: 46px;
}

.offer-bubble {
  position: relative;
  border: 2px solid rgba(23, 18, 67, 0.92);
  border-radius: var(--gz-radius-bubble);
  background: linear-gradient(145deg, #fff8df, var(--gz-cream));
  box-shadow: var(--gz-shadow);
  color: #4f4b67;
  padding: 34px 36px 32px;
}

.offer-bubble::after {
  position: absolute;
  bottom: -18px;
  left: 42px;
  border-top: 20px solid var(--gz-cream);
  border-right: 24px solid transparent;
  content: "";
}

.eyebrow {
  margin-bottom: 12px;
  color: #615d76;
  font-size: 12px;
  letter-spacing: 0.08em;
}

h1 {
  margin: 0;
  color: var(--gz-blue-ink);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.hero-copy {
  margin-top: 22px;
}

.hero-copy p {
  margin: 0 0 12px;
  color: #514d65;
  font-size: 15px;
  line-height: 1.62;
}

.hero-copy p:first-child {
  border-left: 4px solid var(--gz-yellow);
  padding-left: 16px;
  color: #292444;
  font-size: 17px;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
  gap: 14px;
}

.verified-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #168338;
  font-family: var(--gz-font-display);
  font-size: 12px;
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
}

.verified-note::before {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #168338;
  color: #fff;
  content: "✓";
  font-family: var(--gz-font-text);
  font-style: normal;
}

.hero-visual {
  min-width: 0;
}

.interface-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: #171243;
  box-shadow: 0 26px 60px rgba(11, 7, 48, 0.52);
  transform: rotate(1.2deg);
}

.interface-frame::before {
  display: block;
  height: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 16px 14px, var(--gz-danger) 0 4px, transparent 5px),
    radial-gradient(circle at 32px 14px, var(--gz-yellow) 0 4px, transparent 5px),
    radial-gradient(circle at 48px 14px, var(--gz-success) 0 4px, transparent 5px);
  content: "";
}

.interface-frame img {
  width: 100%;
  height: auto;
}

.visual-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 75% 20%, rgba(125, 232, 107, 0.22), transparent 11rem),
    radial-gradient(circle at 15% 80%, rgba(255, 216, 74, 0.2), transparent 12rem),
    linear-gradient(140deg, var(--gz-panel), var(--gz-ink-soft));
  box-shadow: var(--gz-shadow);
  padding: 34px;
}

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

.visual-card::before {
  top: -86px;
  right: -64px;
  width: 260px;
  height: 260px;
}

.visual-card::after {
  right: 48px;
  bottom: -110px;
  width: 220px;
  height: 220px;
}

.visual-label {
  position: relative;
  z-index: 1;
  color: var(--gz-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-offer {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin-top: 16px;
  color: var(--gz-yellow);
  font-family: var(--gz-font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-style: italic;
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 4px 0 rgba(180, 130, 14, 0.8);
}

.visual-metrics {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.visual-metric {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(23, 18, 67, 0.55);
  padding: 14px;
}

.visual-metric strong,
.visual-metric span {
  display: block;
}

.visual-metric strong {
  overflow-wrap: anywhere;
  color: var(--gz-text);
  font-size: 14px;
}

.visual-metric span {
  color: var(--gz-muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip {
  width: min(calc(100% - 40px), 920px);
  margin: 8px auto 52px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(23, 18, 67, 0.45);
  box-shadow: 0 10px 30px rgba(11, 7, 48, 0.2);
}

.trust-item {
  padding: 17px 20px;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--gz-yellow);
  font-family: var(--gz-font-display);
  font-size: 15px;
  font-style: italic;
  text-transform: uppercase;
}

.trust-item span {
  margin-top: 3px;
  color: var(--gz-muted);
  font-size: 11px;
}

.content-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: start;
  width: min(calc(100% - 40px), 1120px);
  margin: 0 auto;
  gap: 38px;
}

.toc {
  position: sticky;
  top: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--gz-radius-lg);
  background: rgba(23, 18, 67, 0.5);
  padding: 20px;
  backdrop-filter: blur(10px);
}

.toc-title {
  margin-bottom: 12px;
  color: var(--gz-yellow);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toc-link {
  border-left: 2px solid transparent;
  padding: 7px 0 7px 10px;
  color: var(--gz-muted);
  font-size: 12px;
  line-height: 1.35;
  text-decoration: none;
}

.toc-link:hover,
.toc-link.is-active {
  border-color: var(--gz-yellow);
  color: var(--gz-text);
}

.article {
  min-width: 0;
}

.content-section {
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 14px 34px rgba(11, 7, 48, 0.14);
  padding: clamp(24px, 4vw, 42px);
}

.content-section:nth-child(even) {
  background: rgba(69, 62, 174, 0.24);
}

h2,
h3 {
  text-wrap: balance;
}

h2 {
  margin: 0 0 18px;
  color: var(--gz-text);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

h3 {
  margin: 30px 0 12px;
  color: var(--gz-yellow);
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.28;
}

.content-section p {
  margin: 0 0 17px;
  color: var(--gz-text-soft);
}

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

.content-section ul,
.content-section ol {
  display: grid;
  margin: 18px 0 22px;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.content-section li {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--gz-radius-md);
  background: rgba(23, 18, 67, 0.26);
  color: var(--gz-text-soft);
  padding: 13px 16px 13px 46px;
}

.content-section li::before {
  position: absolute;
  top: 14px;
  left: 16px;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: rgba(125, 232, 107, 0.14);
  color: var(--gz-success);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

.content-section a[data-link-role="contextual"] {
  text-decoration-color: rgba(255, 216, 74, 0.5);
  text-underline-offset: 3px;
}

.table-wrap {
  overflow-x: auto;
  margin: 22px 0 26px;
  border: 1px solid var(--gz-line);
  border-radius: var(--gz-radius-lg);
  background: rgba(23, 18, 67, 0.38);
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 14px;
}

th,
td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(23, 18, 67, 0.55);
  color: var(--gz-yellow);
  font-family: var(--gz-font-display);
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

td {
  color: var(--gz-text-soft);
}

tr:last-child td {
  border-bottom: 0;
}

.interactive-module {
  position: relative;
  overflow: hidden;
  margin: 26px 0 30px;
  border: 1px solid rgba(255, 216, 74, 0.38);
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gz-cream), var(--gz-cream-2));
  box-shadow: 0 16px 34px rgba(11, 7, 48, 0.28);
  color: #302a54;
  padding: 26px;
}

.interactive-module::after {
  position: absolute;
  top: -74px;
  right: -60px;
  width: 170px;
  height: 170px;
  border: 24px solid rgba(59, 69, 196, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.module-kicker {
  position: relative;
  z-index: 1;
  color: var(--gz-blue-ink);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.module-title {
  position: relative;
  z-index: 1;
  max-width: 630px;
  margin-top: 5px;
  color: #241e63;
  font-family: var(--gz-font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.checklist-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
  gap: 10px;
}

.check-row {
  display: flex;
  min-height: 50px;
  align-items: center;
  border: 1px solid rgba(59, 69, 196, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.45);
  padding: 10px 13px;
  gap: 10px;
  cursor: pointer;
}

.check-row:hover {
  border-color: rgba(59, 69, 196, 0.42);
}

.check-row input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--gz-blue-ink);
}

.check-row span {
  font-size: 13px;
  font-weight: 700;
}

.check-progress {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-top: 18px;
  gap: 12px;
}

.progress-track {
  overflow: hidden;
  height: 10px;
  border-radius: 99px;
  background: rgba(59, 69, 196, 0.16);
}

.progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gz-blue-ink), var(--gz-leaf));
  transition: width 220ms ease;
}

.progress-count {
  min-width: 42px;
  color: var(--gz-blue-ink);
  font-weight: 800;
  text-align: right;
}

.calculator-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
  gap: 14px;
}

.field-label {
  display: grid;
  color: #4f4b67;
  font-size: 12px;
  font-weight: 800;
  gap: 6px;
}

.field-wrap {
  position: relative;
}

.field-wrap span {
  position: absolute;
  top: 50%;
  left: 14px;
  color: var(--gz-blue-ink);
  font-weight: 800;
  transform: translateY(-50%);
}

.field-wrap input {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(59, 69, 196, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.68);
  color: #241e63;
  padding: 10px 14px 10px 34px;
  font-size: 17px;
  font-weight: 800;
}

.calc-result {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 18px;
  border-radius: 14px;
  background: var(--gz-blue-ink);
  color: #fff;
  padding: 18px;
  gap: 20px;
}

.calc-result span,
.calc-result strong {
  display: block;
}

.calc-result span {
  color: #d9dcff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calc-result strong {
  color: var(--gz-yellow);
  font-family: var(--gz-font-display);
  font-size: clamp(26px, 5vw, 40px);
  font-style: italic;
  line-height: 1;
}

.formula-note {
  margin-top: 10px;
  color: #5f5a72;
  font-size: 12px;
}

.helper-controls {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  margin-top: 18px;
  gap: 8px;
}

.helper-button {
  min-height: 44px;
  border: 1px solid rgba(59, 69, 196, 0.26);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
  color: #3f395f;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.helper-button:hover,
.helper-button[aria-pressed="true"] {
  border-color: var(--gz-blue-ink);
  background: var(--gz-blue-ink);
  color: #fff;
}

.helper-output {
  position: relative;
  z-index: 1;
  min-height: 94px;
  margin-top: 14px;
  border-left: 4px solid var(--gz-leaf);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, 0.52);
  color: #3f395f;
  padding: 16px 18px;
}

.helper-output strong {
  display: block;
  margin-bottom: 4px;
  color: #241e63;
}

.cta-band {
  width: min(calc(100% - 40px), 1120px);
  margin: 38px auto 72px;
  border: 1px solid var(--gz-line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 85% 20%, rgba(125, 232, 107, 0.2), transparent 14rem),
    linear-gradient(120deg, var(--gz-panel), var(--gz-bg-raised));
  box-shadow: var(--gz-shadow);
  padding: 32px 38px;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.cta-band-title {
  color: var(--gz-text);
  font-family: var(--gz-font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-style: italic;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.cta-band p {
  max-width: 660px;
  margin: 6px 0 0;
  color: var(--gz-muted);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--gz-ink);
}

.footer-inner {
  width: min(calc(100% - 40px), var(--gz-container));
  margin: 0 auto;
  padding: 46px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 52px;
}

.footer-title {
  color: var(--gz-yellow);
  font-size: 24px;
  text-shadow: 0 2px 0 var(--gz-yellow-edge);
}

.footer-copy {
  max-width: 580px;
  margin-top: 10px;
  color: var(--gz-muted-2);
  font-size: 13px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  gap: 10px;
}

.footer-nav a {
  color: var(--gz-muted);
  font-size: 13px;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--gz-yellow);
}

.responsible {
  display: flex;
  align-items: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  gap: 14px;
}

.age-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--gz-danger);
  border-radius: 50%;
  color: var(--gz-danger);
  font-family: var(--gz-font-display);
  font-size: 13px;
  font-style: italic;
  font-weight: 800;
}

.responsible p {
  margin: 0;
  color: var(--gz-muted-2);
  font-size: 12px;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .site-header {
    z-index: 1000;
    animation: none;
  }

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

  .mobile-menu-toggle {
    position: relative;
    z-index: 1003;
    display: flex;
  }

  .brand-mark {
    justify-self: center;
  }

  .header-nav {
    position: fixed;
    z-index: 1002;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100dvh;
    width: min(330px, 84vw);
    align-items: stretch;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--gz-ink-soft);
    box-shadow: 18px 0 48px rgba(11, 7, 48, 0.52);
    padding: 104px 22px 28px;
    gap: 8px;
    transform: translateX(-105%);
    transition: transform 220ms ease;
  }

  .header-nav.is-open {
    transform: translateX(0);
  }

  .nav-link {
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.04);
    padding: 13px 14px;
  }

  .nav-link::after {
    display: none;
  }

  .mobile-scrim {
    position: fixed;
    z-index: 1001;
    inset: 0;
    border: 0;
    background: rgba(11, 7, 48, 0.72);
    cursor: pointer;
  }

  .mobile-scrim.is-open {
    display: block;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .visual-card {
    min-height: 350px;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }

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

@media (max-width: 680px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    font-size: 15px;
  }

  .header-inner {
    width: calc(100% - 24px);
    min-height: 64px;
    gap: 10px;
  }

  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
  }

  .brand-mark {
    font-size: 19px;
  }

  .brand-mark span {
    font-size: 9px;
  }

  .header-actions .primary-button {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 10px;
  }

  .hero {
    padding: 20px 0 30px;
  }

  .hero-inner,
  .content-layout,
  .cta-band,
  .footer-inner {
    width: calc(100% - 24px);
  }

  .hero-inner {
    gap: 20px;
  }

  .offer-bubble {
    border-radius: 20px;
    padding: 24px 20px 25px;
  }

  h1 {
    font-size: clamp(29px, 9vw, 40px);
  }

  .hero-copy p:first-child {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .primary-button {
    width: 100%;
  }

  .verified-note {
    justify-content: center;
  }

  .interface-frame {
    border-radius: 15px;
    transform: none;
  }

  .visual-card {
    min-height: 300px;
    padding: 24px;
  }

  .visual-offer {
    font-size: clamp(32px, 12vw, 50px);
  }

  .visual-metrics {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .visual-metric {
    padding: 10px;
  }

  .visual-metric strong {
    font-size: 11px;
  }

  .trust-strip {
    width: calc(100% - 24px);
    margin-bottom: 30px;
  }

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

  .trust-item + .trust-item {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .content-layout {
    gap: 20px;
  }

  .toc {
    padding: 16px;
  }

  .toc-list {
    grid-template-columns: 1fr;
    max-height: 230px;
    overflow: auto;
  }

  .content-section {
    border-radius: 16px;
    padding: 24px 18px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 19px;
  }

  .content-section li {
    padding-right: 13px;
    padding-left: 42px;
  }

  .interactive-module {
    margin-right: -4px;
    margin-left: -4px;
    padding: 22px 16px;
  }

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

  .calc-result {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band {
    margin-bottom: 50px;
    padding: 26px 20px;
  }

  .cta-band-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-band .primary-button {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

/* Generated-media system and expanded motion language for the approved batch. */
.reading-progress {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gz-yellow), var(--gz-success));
  box-shadow: 0 0 18px rgba(125, 232, 107, 0.55);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-header {
  animation: header-arrival 560ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.brand-mark {
  animation: brand-breathe 5.6s ease-in-out 700ms infinite;
}

.primary-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.primary-button::before {
  position: absolute;
  z-index: -1;
  top: -80%;
  bottom: -80%;
  left: -55%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  content: "";
  transform: rotate(18deg) translateX(-240%);
  animation: button-sheen 5.8s ease-in-out 1.2s infinite;
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  opacity: 0.48;
  filter: blur(3px);
  pointer-events: none;
  will-change: transform;
}

.hero-orb--one {
  top: 11%;
  right: 7%;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(255, 216, 74, 0.28);
  background: radial-gradient(circle at 35% 35%, rgba(255, 216, 74, 0.38), transparent 68%);
  animation: orb-drift-one 9s ease-in-out infinite alternate;
}

.hero-orb--two {
  bottom: 4%;
  left: 40%;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(125, 232, 107, 0.22);
  background: radial-gradient(circle at 55% 40%, rgba(125, 232, 107, 0.28), transparent 70%);
  animation: orb-drift-two 7.4s ease-in-out 400ms infinite alternate;
}

.offer-bubble.is-visible {
  animation: bubble-arrival 700ms cubic-bezier(0.16, 1, 0.3, 1) 80ms both;
}

.hero-visual.is-visible {
  animation: visual-arrival 820ms cubic-bezier(0.16, 1, 0.3, 1) 150ms both;
}

.media-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: var(--gz-ink);
  box-shadow: 0 28px 62px rgba(11, 7, 48, 0.48);
  transform: perspective(1050px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 180ms ease-out;
}

.media-card::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), transparent 32%, transparent 72%, rgba(125, 232, 107, 0.09));
  content: "";
  pointer-events: none;
}

.media-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #171243;
  transition: filter 320ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.media-card:hover {
  border-color: rgba(255, 216, 74, 0.48);
  box-shadow: 0 32px 78px rgba(11, 7, 48, 0.56), 0 0 0 1px rgba(255, 216, 74, 0.12);
}

.media-card:hover img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.018);
}

.media-glint {
  position: absolute;
  z-index: 3;
  top: -45%;
  bottom: -45%;
  left: -28%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  pointer-events: none;
  transform: rotate(18deg) translateX(-280%);
  animation: media-glint 8.6s ease-in-out 1.8s infinite;
}

.media-card--detail {
  margin: 30px 0 38px;
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(11, 7, 48, 0.34);
}

.trust-item {
  animation: trust-rise 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.trust-item:nth-child(1) { animation-delay: 260ms; }
.trust-item:nth-child(2) { animation-delay: 360ms; }
.trust-item:nth-child(3) { animation-delay: 460ms; }

.interactive-module {
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.interactive-module:focus-within,
.interactive-module:hover {
  border-color: rgba(255, 216, 74, 0.34);
  box-shadow: 0 22px 46px rgba(11, 7, 48, 0.28);
  transform: translateY(-3px);
}

.content-section.reveal.is-visible {
  transition-duration: 620ms;
}

@keyframes header-arrival {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bubble-arrival {
  from { opacity: 0; transform: translate3d(-28px, 16px, 0) rotate(-1deg); }
  to { opacity: 1; transform: translate3d(0, 0, 0) rotate(0); }
}

@keyframes visual-arrival {
  from { opacity: 0; transform: translate3d(34px, 20px, 0) scale(0.96); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes brand-breathe {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-1deg) translateY(-3px); }
}

@keyframes button-sheen {
  0%, 68% { transform: rotate(18deg) translateX(-240%); }
  82%, 100% { transform: rotate(18deg) translateX(520%); }
}

@keyframes orb-drift-one {
  to { transform: translate3d(-34px, 22px, 0) scale(1.12); }
}

@keyframes orb-drift-two {
  to { transform: translate3d(28px, -20px, 0) scale(0.9); }
}

@keyframes media-glint {
  0%, 72% { transform: rotate(18deg) translateX(-280%); }
  88%, 100% { transform: rotate(18deg) translateX(850%); }
}

@keyframes trust-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .media-card,
  .media-card--detail {
    border-radius: 16px;
  }

  .media-card--detail {
    margin: 24px 0 30px;
  }

  .hero-orb {
    opacity: 0.28;
  }
}

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

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

  .brand-mark,
  .primary-button::before,
  .media-glint,
  .site-header,
  .offer-bubble.is-visible,
  .hero-visual.is-visible,
  .hero-orb,
  .trust-item {
    animation: none !important;
  }

  .media-card,
  .media-card:hover,
  .interactive-module:hover,
  .interactive-module:focus-within {
    transform: none !important;
  }
}
