:root {
  --navy: #10213d;
  --red: #c63132;
  --gold: #e0a82e;
  --paper: #fffaf1;
  --ink: #14233f;
  --muted: #596579;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(16, 33, 61, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(224, 168, 46, 0.22), transparent 30%),
    linear-gradient(135deg, #fffdf9 0%, #f8f1e4 55%, #eef3fb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(16, 33, 61, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 33, 61, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 95%);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 64px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.hero__copy,
.hero__panel,
.section,
.price-card,
.service-card,
.split-panel article {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.hero__copy {
  padding: 40px;
}

.hero__copy::after {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 168, 46, 0.25), transparent 65%);
}

.hero__panel {
  padding: 28px;
  background: linear-gradient(160deg, var(--navy), #1b3663 70%, #2a4e86 100%);
  color: var(--white);
}

.eyebrow,
.panel-tag,
.price-card__flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  background: rgba(198, 49, 50, 0.12);
  color: var(--red);
}

.panel-tag {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 0.98;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
  line-height: 1.65;
}

.hero__lede {
  max-width: 56ch;
  margin-top: 20px;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero__sub,
.translation,
.package-subtitle {
  color: var(--red);
  font-style: italic;
}

.hero__sub {
  margin-top: 14px;
  font-size: 1.35rem;
}

.translation {
  margin-top: 8px;
}

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

.button,
.text-link {
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--red), #e05745);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(198, 49, 50, 0.28);
}

.button--ghost {
  border: 1px solid rgba(16, 33, 61, 0.14);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
}

.hero__note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-stat-grid {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.hero-stat-grid article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.hero-stat-grid span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

main {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.section {
  padding: 32px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.service-grid,
.toc-grid,
.offer-grid,
.pricing-grid,
.split-panel,
.benefit-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.service-card {
  padding: 24px;
  border: 1px solid rgba(16, 33, 61, 0.08);
}

.offer-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 33, 61, 0.08);
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--navy));
}

.offer-card p {
  margin-top: 12px;
  color: var(--muted);
}

.offer-card--highlight {
  background: linear-gradient(155deg, var(--navy), #244678 72%, #3a6298);
  color: var(--white);
}

.offer-card--highlight p,
.offer-card--highlight .translation {
  color: rgba(255, 255, 255, 0.82);
}

.service-card::before,
.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--navy), var(--red), var(--gold));
}

.service-card p {
  margin-top: 14px;
  color: var(--muted);
}

.service-card--accent {
  background: linear-gradient(150deg, rgba(16, 33, 61, 0.97), rgba(31, 59, 107, 0.95));
  color: var(--white);
}

.service-card--accent p {
  color: rgba(255, 255, 255, 0.74);
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold);
  font-weight: 700;
}

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

.split-panel article {
  padding: 24px;
  border: 1px solid rgba(16, 33, 61, 0.08);
}

.split-panel p {
  margin-top: 12px;
  color: var(--muted);
}

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

.price-card {
  padding: 26px;
  border: 1px solid rgba(16, 33, 61, 0.08);
}

.price-card__tier {
  font-size: 1.35rem;
  font-weight: 700;
}

.package-subtitle {
  margin-top: 8px;
}

.price-card__value {
  margin-top: 12px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.price-card__value span {
  margin-left: 6px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.price-card ul {
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.dual-list,
.plain-list {
  margin: 18px 0 0;
  padding-left: 20px;
}

.dual-list li,
.plain-list li {
  margin-bottom: 10px;
}

.dual-list strong {
  display: block;
  font-size: 0.98rem;
}

.dual-list span {
  display: block;
  color: var(--red);
  font-style: italic;
  line-height: 1.5;
}

.dual-list--compact strong {
  font-size: 0.93rem;
}

.dual-list--compact span {
  font-size: 0.9rem;
}

.plain-list {
  color: var(--muted);
  line-height: 1.7;
}

.banner-callout,
.closing-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.banner-callout {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 22px 24px;
  background: linear-gradient(135deg, var(--navy), #23406f 75%, #32578c);
  color: var(--white);
}

.banner-callout span {
  color: #ffe6a4;
  font-style: italic;
}

.closing-card {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin-top: 22px;
  padding: 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 33, 61, 0.08);
}

.closing-card p {
  color: var(--muted);
}

.closing-links {
  display: grid;
  gap: 12px;
  width: min(100%, 760px);
}

.closing-links .button {
  width: 100%;
  text-align: center;
}

.price-card--featured {
  background: linear-gradient(165deg, var(--navy), #1c3560 72%, #25497f);
  color: var(--white);
  transform: translateY(-12px);
}

.price-card--featured .price-card__flag {
  background: rgba(224, 168, 46, 0.18);
  color: #ffe7a7;
}

.price-card--featured .price-card__value span,
.price-card--featured ul {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 920px) {
  .hero,
  .service-grid,
  .toc-grid,
  .offer-grid--two,
  .offer-grid--three,
  .offer-grid--four,
  .pricing-grid,
  .split-panel,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .price-card--featured {
    transform: none;
  }
}

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

  .hero__copy,
  .hero__panel,
  .section,
  .price-card,
  .service-card,
  .split-panel article {
    border-radius: var(--radius-md);
  }

  .hero__copy,
  .hero__panel,
  .section,
  .price-card,
  .service-card,
  .split-panel article {
    padding: 22px;
  }

  h1 {
    max-width: none;
  }

  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}