:root {
  --bg: #eff8fb;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-soft: #e7f5fa;
  --surface-strong: #d3ebf2;
  --paper: #fbf8f2;
  --paper-strong: #f1ece1;
  --primary: #082d38;
  --primary-soft: #234b58;
  --primary-deep: #041b23;
  --accent: #0e7a78;
  --accent-dark: #095c5a;
  --accent-soft: #76c5c1;
  --metal: #b79a62;
  --metal-soft: rgba(183, 154, 98, 0.16);
  --text: #14343f;
  --muted: #5a727b;
  --line: rgba(8, 45, 56, 0.1);
  --line-soft: rgba(255, 255, 255, 0.18);
  --shadow: 0 32px 80px rgba(8, 45, 56, 0.12);
  --shadow-soft: 0 18px 40px rgba(8, 45, 56, 0.07);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1160px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(14, 122, 120, 0.12), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(183, 154, 98, 0.12), transparent 20%),
    linear-gradient(180deg, #f7fcfe 0%, #ecf5f8 45%, #eef7fa 100%);
}

body::before,
body::after {
  position: fixed;
  z-index: -2;
  inset: auto;
  pointer-events: none;
  content: "";
}

body::before {
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 122, 120, 0.14), transparent 68%);
  filter: blur(10px);
}

body::after {
  bottom: 10%;
  left: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 154, 98, 0.12), transparent 72%);
  filter: blur(14px);
}

body.menu-open {
  overflow: hidden;
}

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

code {
  padding: 0.18em 0.42em;
  border-radius: 0.45em;
  background: rgba(8, 45, 56, 0.08);
  font-size: 0.92em;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 40px;
}

.section-soft::before,
.section-editorial::before,
.section-dark::before {
  position: absolute;
  inset: 18px 14px;
  z-index: -1;
  border-radius: 40px;
  content: "";
}

.section-soft::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, rgba(231, 245, 250, 0.9), rgba(241, 236, 225, 0.45));
}

.section-editorial::before {
  background:
    radial-gradient(circle at top left, rgba(183, 154, 98, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(231, 245, 250, 0.7));
}

.section-dark::before {
  background:
    radial-gradient(circle at top right, rgba(118, 197, 193, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(5, 27, 35, 0.98), rgba(12, 45, 56, 0.96));
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48));
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(14, 122, 120, 0.12);
}

.section-title,
.hero-title,
.cta-title,
.legal-title {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.92;
  color: var(--primary);
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.section-copy,
.hero-copy,
.legal-lead {
  margin: 18px 0 0;
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(248, 252, 254, 0.88), rgba(248, 252, 254, 0.72));
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px rgba(8, 45, 56, 0.04);
}

.disclosure-strip {
  padding: 14px 0 0;
}

.disclosure-strip p {
  margin: 0;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(8, 45, 56, 0.06);
  color: var(--primary-soft);
  font-size: 0.82rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.disclosure-strip strong {
  margin-right: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.brand-mark {
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--metal);
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--primary);
  line-height: 0.85;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(14, 122, 120, 0.12);
  color: var(--primary);
  cursor: pointer;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
  content: "";
}

.nav-toggle-bar::before {
  transform: translateY(-6px);
}

.nav-toggle-bar::after {
  transform: translateY(4px);
}

.menu-open .nav-toggle-bar {
  background: transparent;
}

.menu-open .nav-toggle-bar::before {
  transform: translateY(0) rotate(45deg);
}

.menu-open .nav-toggle-bar::after {
  transform: translateY(-2px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(9, 92, 90, 0.22);
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease,
    border-color 220ms ease, color 220ms ease;
}

.button::before {
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  content: "";
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(9, 92, 90, 0.28);
}

.button.is-ghost {
  background: rgba(255, 255, 255, 0.48);
  color: var(--primary);
  border: 1px solid rgba(8, 45, 56, 0.14);
  box-shadow: none;
}

.button.is-ghost::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.18));
}

.button.is-ghost:hover,
.button.is-ghost:focus-visible {
  border-color: rgba(8, 45, 56, 0.24);
  box-shadow: 0 14px 32px rgba(8, 45, 56, 0.08);
}

.hero {
  padding: 48px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.hero-card,
.hero-side,
.card,
.legal-block,
.faq-item,
.offer-card,
.stat-chip {
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.hero-card {
  position: relative;
  padding: 44px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.72)),
    linear-gradient(130deg, rgba(231, 245, 250, 0.9), rgba(251, 248, 242, 0.7));
}

.hero-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(183, 154, 98, 0.09), transparent 28%),
    repeating-linear-gradient(
      90deg,
      rgba(8, 45, 56, 0.025) 0,
      rgba(8, 45, 56, 0.025) 1px,
      transparent 1px,
      transparent 76px
    );
  pointer-events: none;
  content: "";
}

.hero-card::after {
  position: absolute;
  inset: auto -80px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 122, 120, 0.18), transparent 70%);
  content: "";
}

.hero-title {
  max-width: 760px;
  font-size: clamp(3.8rem, 7.4vw, 6.9rem);
}

.hero-copy {
  max-width: 620px;
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.stat-chip {
  position: relative;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 251, 252, 0.72));
  box-shadow: inset 0 0 0 1px rgba(8, 45, 56, 0.06), var(--shadow-soft);
}

.stat-value {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-side {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(183, 154, 98, 0.18), transparent 22%),
    linear-gradient(160deg, rgba(4, 27, 35, 0.98), rgba(12, 45, 56, 0.98)),
    #082d38;
  color: #ffffff;
  box-shadow: 0 28px 70px rgba(4, 27, 35, 0.28);
}

.hero-side::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent 0, transparent 49.4%, rgba(255, 255, 255, 0.05) 49.5%, transparent 49.7%),
    linear-gradient(180deg, transparent 0, transparent 49.4%, rgba(255, 255, 255, 0.04) 49.5%, transparent 49.7%);
  background-size: 100% 88px, 88px 100%;
  opacity: 0.3;
  pointer-events: none;
  content: "";
}

.hero-image {
  min-height: 360px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(8, 45, 56, 0.22)),
    url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=1200&q=80")
      center/cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-panel {
  display: grid;
  gap: 14px;
}

.hero-panel p,
.hero-panel li {
  color: rgba(255, 255, 255, 0.78);
}

.hero-panel h2,
.offer-card h3,
.card h3,
.legal-block h2,
.faq-question,
.cta-title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: inherit;
}

.hero-list,
.legal-list,
.offer-list,
.bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-list li,
.offer-list li,
.bullet-list li,
.legal-list li {
  position: relative;
  padding-left: 24px;
  line-height: 1.7;
}

.hero-list li::before,
.offer-list li::before,
.bullet-list li::before,
.legal-list li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 22px;
}

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

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

.card,
.offer-card,
.legal-block {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.card,
.offer-card {
  min-height: 100%;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.card::before,
.offer-card::before,
.legal-block::before,
.faq-item::before,
.timeline-item::before,
.mentor-copy::before,
.cta-panel::before,
.footer-panel::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 28%);
  pointer-events: none;
  content: "";
}

.card:hover,
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(8, 45, 56, 0.12);
}

.card-kicker,
.legal-kicker {
  display: block;
  margin-bottom: 14px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.card p,
.offer-card p,
.legal-block p,
.legal-block address {
  margin: 14px 0 0;
  line-height: 1.8;
  color: var(--muted);
  font-style: normal;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(183, 154, 98, 0.24), rgba(183, 154, 98, 0.12));
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-deep);
  box-shadow: inset 0 0 0 1px rgba(183, 154, 98, 0.16);
}

.timeline-item h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  color: var(--primary);
}

.timeline-item p {
  margin: 10px 0 0;
  line-height: 1.8;
  color: var(--muted);
}

.mentor-grid,
.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
}

.mentor-photo {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(8, 45, 56, 0.2)),
    url("https://images.unsplash.com/photo-1508672019048-805c876b67e2?auto=format&fit=crop&w=1200&q=80")
      center/cover;
  box-shadow: var(--shadow);
}

.mentor-photo::after {
  position: absolute;
  inset: auto 22px 22px auto;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  content: "Editorial Mentor";
}

.mentor-copy {
  position: relative;
  padding: 36px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.74)),
    linear-gradient(140deg, rgba(231, 245, 250, 0.86), rgba(251, 248, 242, 0.64));
  box-shadow: var(--shadow-soft);
}

.quote {
  margin: 24px 0 0;
  padding: 20px 24px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(183, 154, 98, 0.08), rgba(14, 122, 120, 0.08));
  font-family: "Cormorant Garamond", serif;
  font-size: 1.95rem;
  line-height: 1.3;
  color: var(--primary);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  position: relative;
  padding: 10px 22px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(8, 45, 56, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 16px 0;
  border: 0;
  background: transparent;
  font-size: 1.15rem;
  font-weight: 800;
  text-align: left;
  color: var(--primary);
  cursor: pointer;
}

.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-dark);
  transform: translate(-50%, -50%);
  content: "";
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.8;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.cta {
  padding: 0 0 100px;
}

.cta-panel {
  position: relative;
  padding: 46px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(183, 154, 98, 0.24), transparent 22%),
    radial-gradient(circle at bottom left, rgba(118, 197, 193, 0.12), transparent 28%),
    linear-gradient(135deg, #041b23 0%, #103744 52%, #154856 100%);
  color: #ffffff;
  box-shadow: 0 36px 90px rgba(4, 27, 35, 0.26);
  overflow: hidden;
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.cta-copy-wrap {
  display: grid;
  align-content: start;
}

.cta-panel::after {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 82px
    );
  opacity: 0.35;
  pointer-events: none;
  content: "";
}

.cta-title {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  color: #ffffff;
}

.cta-copy {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.cta-form-note {
  max-width: 640px;
  margin: 18px 0 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.order-form {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 54px rgba(4, 27, 35, 0.18);
  backdrop-filter: blur(16px);
}

.order-form-head {
  display: grid;
  gap: 6px;
  margin-bottom: 4px;
}

.order-form-kicker {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.order-form h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
  color: #ffffff;
}

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

.form-field label {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
}

.form-field input {
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.form-field input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-field input:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 4px rgba(118, 197, 193, 0.14);
}

.consent-field {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.65;
}

.consent-field input {
  margin: 4px 0 0;
  accent-color: var(--accent-soft);
}

.consent-field a {
  color: #ffffff;
  text-decoration: underline;
}

.order-submit {
  width: 100%;
  margin-top: 6px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.form-status.is-error {
  color: #ffd7d2;
}

.form-status.is-success {
  color: #d7fff0;
}

.button.is-light {
  background: linear-gradient(180deg, #ffffff, #f2efe7);
  color: var(--primary);
  box-shadow: 0 18px 40px rgba(4, 27, 35, 0.18);
}

.site-footer {
  padding: 34px 0 48px;
}

.footer-panel {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(183, 154, 98, 0.16), transparent 18%),
    linear-gradient(160deg, rgba(4, 27, 35, 0.98), rgba(8, 45, 56, 0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  color: #ffffff;
}

.footer-brand strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.footer-brand span,
.footer-note,
.footer-links a,
.footer-copy {
  color: rgba(217, 236, 242, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.footer-links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

.footer-note,
.footer-copy {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.8;
}

.legal-hero {
  padding: 44px 0 56px;
}

.legal-wrap {
  padding-bottom: 72px;
}

.legal-title {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.legal-grid {
  margin-top: 24px;
}

.legal-sidebar {
  position: sticky;
  top: 110px;
}

.legal-nav {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.72)),
    linear-gradient(140deg, rgba(231, 245, 250, 0.86), rgba(251, 248, 242, 0.64));
  box-shadow: var(--shadow-soft);
}

.legal-nav a {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: var(--primary);
}

.legal-stack {
  display: grid;
  gap: 22px;
}

.legal-block h2 {
  font-size: 1.55rem;
  color: var(--primary);
}

.legal-block p + p,
.legal-block ul,
.legal-block address {
  margin-top: 14px;
}

.legal-block strong {
  color: var(--primary);
}

.legal-contact {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding: 22px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(183, 154, 98, 0.08), rgba(14, 122, 120, 0.08));
}

.legal-contact a {
  color: var(--accent-dark);
  font-weight: 700;
}

.accent-surface {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.74)),
    linear-gradient(135deg, rgba(183, 154, 98, 0.1), rgba(14, 122, 120, 0.08));
}

.section-dark .section-title,
.section-dark .section-copy {
  color: #ffffff;
}

.section-dark .section-copy {
  color: rgba(255, 255, 255, 0.74);
}

.section-dark .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 600ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .mentor-grid,
  .legal-grid,
  .cta-grid,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }
}

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

  .hero {
    padding-bottom: 72px;
  }

  .hero-card,
  .cta-panel,
  .mentor-copy,
  .card,
  .offer-card,
  .legal-block {
    padding: 26px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

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

  .site-nav {
    position: fixed;
    inset: 86px 20px auto;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a,
  .site-nav .button {
    justify-content: center;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 24px, 1160px);
  }

  .hero-card {
    padding: 28px 22px;
  }

  .hero-side,
  .timeline-item {
    padding: 20px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .cta-actions,
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
