:root {
  --page: #102544;
  --navy-deep: #081a34;
  --surface: #1c355b;
  --text: #f7f9ff;
  --muted: #99abc5;
  --yellow: #ffd33f;
  --green: #49ec94;
  --border: rgba(137, 160, 197, 0.22);
  --content-width: 1124px;
  --card-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.65);
  --button-shadow: 0 0 0 1px rgba(255, 211, 63, 0.35), 0 20px 50px -18px rgba(255, 211, 63, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1,
h2,
p,
ul {
  margin: 0;
}

.container {
  width: min(calc(100% - 48px), var(--content-width));
  margin: 0 auto;
}

.site-header {
  background: #102442;
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3.8rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  background: var(--yellow);
  box-shadow: var(--button-shadow);
  color: #092045;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 211, 63, 0.22), var(--button-shadow);
  outline: 0;
  transform: translateY(-2px);
}

.button-small {
  min-width: 8.2rem;
  min-height: 2.7rem;
  padding: 0.8rem 1.3rem;
  font-size: 0.75rem;
}

.button-large {
  min-width: 10.9rem;
  padding: 1.25rem 2.2rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 72% 100% at 52% 0%, rgba(255, 211, 63, 0.1), transparent 65%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: 3.7rem;
  padding-top: 3.65rem;
  padding-bottom: 4.7rem;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1.5rem;
  padding: 0.43rem 0.9rem;
  border: 1px solid rgba(73, 236, 148, 0.4);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

h1,
h2 {
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 29rem;
  font-size: clamp(3.4rem, 4.5vw, 4.2rem);
  line-height: 1.03;
}

h1 span {
  display: block;
}

h1 .number,
.inside h2 span,
.cta-panel h2 span {
  color: var(--yellow);
}

.hero-description {
  max-width: 29rem;
  margin-top: 1.55rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.58;
}

.hero-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2.15rem;
}

.hero-action p {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.cover-wrap {
  width: 100%;
}

.cover {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  box-shadow: var(--card-shadow);
}

.benefits {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--navy-deep);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.85rem;
  padding-top: 3.65rem;
  padding-bottom: 3.65rem;
}

.benefit-card {
  min-height: 7.85rem;
  padding: 1.75rem;
  border-radius: 1.1rem;
  background: var(--surface);
  box-shadow: var(--card-shadow);
}

.benefit-card h2 {
  color: var(--green);
  font-size: 1rem;
  line-height: 1.2;
}

.benefit-card p {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.55;
}

.inside {
  padding-top: 4.8rem;
  padding-bottom: 4.8rem;
}

.inside h2 {
  font-size: 2rem;
  line-height: 1.15;
  text-align: center;
}

.inside-list {
  display: grid;
  max-width: 50.4rem;
  margin: 2.45rem auto 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  list-style: none;
}

.inside-list li {
  display: flex;
  min-height: 3.1rem;
  align-items: center;
  gap: 0.72rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  background: var(--surface);
  color: var(--text);
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.35;
}

.inside-list li::before {
  flex: 0 0 auto;
  color: var(--green);
  content: "✓";
  font-size: 1rem;
  font-weight: 800;
}

.final-cta {
  padding: 0 1.5rem 5.45rem;
}

.cta-panel {
  max-width: 40.5rem;
  margin: 0 auto;
  padding: 3.3rem 2.5rem;
  border-radius: 1.5rem;
  background: var(--surface);
  box-shadow: var(--card-shadow);
  text-align: center;
}

.cta-panel h2 {
  font-size: 2rem;
  line-height: 1.15;
}

.cta-panel p {
  max-width: 33rem;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.cta-panel .button {
  margin-top: 2rem;
}

.site-footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 500;
  text-align: center;
}

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

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

  .brand {
    max-width: 5.5rem;
    font-size: 0.61rem;
    letter-spacing: 0.15em;
    line-height: 1.35;
  }

  .brand span {
    display: block;
  }

  .button-small {
    min-width: 5.55rem;
    min-height: 2.65rem;
    padding: 0.55rem 0.8rem;
    font-size: 0.58rem;
    line-height: 1.3;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 1.2rem;
    padding-bottom: 2rem;
  }

  .eyebrow {
    margin-bottom: 0.85rem;
    padding: 0.36rem 0.62rem;
    font-size: 0.54rem;
  }

  h1 {
    font-size: clamp(2rem, 9.5vw, 2.35rem);
    line-height: 1.02;
  }

  .hero-description {
    max-width: 23rem;
    margin-top: 1.05rem;
    font-size: 0.72rem;
    line-height: 1.5;
  }

  .hero-action {
    display: block;
    margin-top: 1.45rem;
  }

  .button-large {
    min-width: 7.65rem;
    min-height: 2.75rem;
    padding: 0.9rem 1.15rem;
    border-radius: 0.68rem;
    font-size: 0.64rem;
  }

  .hero-action p {
    margin-top: 0.7rem;
    font-size: 0.58rem;
  }

  .cover {
    border-radius: 0.8rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-top: 2.55rem;
    padding-bottom: 2.55rem;
  }

  .benefit-card {
    min-height: 0;
    padding: 1.35rem 1.1rem;
    border-radius: 0.85rem;
  }

  .benefit-card h2 {
    font-size: 0.75rem;
  }

  .benefit-card p {
    margin-top: 0.68rem;
    font-size: 0.59rem;
    line-height: 1.58;
  }

  .inside {
    padding-top: 3.1rem;
    padding-bottom: 3.1rem;
  }

  .inside h2 {
    max-width: 12rem;
    margin: 0 auto;
    font-size: 1.25rem;
  }

  .inside-list {
    grid-template-columns: 1fr;
    gap: 0.62rem;
    margin-top: 1.75rem;
  }

  .inside-list li {
    min-height: 3.3rem;
    padding: 0.58rem 0.68rem;
    border-radius: 0.62rem;
    font-size: 0.56rem;
    line-height: 1.35;
  }

  .inside-list li::before {
    font-size: 0.75rem;
  }

  .final-cta {
    padding: 0 0.94rem 3.85rem;
  }

  .cta-panel {
    padding: 1.75rem 1.25rem;
    border-radius: 0.85rem;
  }

  .cta-panel h2 {
    max-width: 10rem;
    margin: 0 auto;
    font-size: 1.25rem;
  }

  .cta-panel p {
    margin-top: 0.88rem;
    font-size: 0.62rem;
    line-height: 1.55;
  }

  .cta-panel .button {
    margin-top: 1.45rem;
  }

  .site-footer {
    padding: 1.4rem 0.75rem;
    font-size: 0.48rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    width: min(calc(100% - 44px), var(--content-width));
  }

  .hero-grid {
    gap: 2rem;
    padding-top: 3.65rem;
    padding-bottom: 4.5rem;
  }

  h1 {
    font-size: 3.25rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }
}

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

  .button {
    transition: none;
  }
}
