:root {
  --bg: #eff6f4;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #173430;
  --muted: #617d77;
  --line: rgba(23, 52, 48, 0.09);
  --green: #10906f;
  --green-dark: #0a6f56;
  --blue: #143a74;
  --blue-soft: rgba(20, 58, 116, 0.08);
  --shadow: 0 24px 56px rgba(15, 52, 46, 0.09);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f9fcfb 0%, var(--bg) 100%);
}

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

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

button {
  font: inherit;
}

code {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f4f8f6;
  border: 1px solid rgba(23, 52, 48, 0.08);
  color: var(--green-dark);
  word-break: break-all;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(16, 144, 111, 0.14), transparent 24%),
    radial-gradient(circle at top right, rgba(20, 58, 116, 0.11), transparent 22%),
    radial-gradient(circle at bottom center, rgba(16, 144, 111, 0.08), transparent 20%);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.page-main {
  padding-bottom: 10px;
}

.site-header,
.site-footer,
.card-surface {
  backdrop-filter: blur(10px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
}

.brand-name,
.footer-title {
  font-size: 1.15rem;
  font-weight: 800;
}

.site-nav,
.header-actions,
.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
}

.mode-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), #16b78d);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(16, 144, 111, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(16, 144, 111, 0.28);
}

.button:focus-visible {
  outline: 3px solid rgba(20, 58, 116, 0.18);
  outline-offset: 2px;
}

.button-secondary {
  background: #ffffff;
  color: var(--text);
  border: 1px solid rgba(23, 52, 48, 0.11);
  box-shadow: none;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  margin-top: 26px;
}

.hero-copy,
.hero-highlight,
.section-block,
.video-card,
.featured-media,
.plan-card,
.trust-panel,
.notice-card,
.cta-panel,
.media-item {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-highlight,
.section-block,
.video-card,
.cta-panel {
  padding: 30px;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 0.98;
  max-width: 12ch;
}

.hero-highlight h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.hero-highlight p,
.lead-text,
.section-support,
.notice-text,
.media-item p,
.plan-card-body p,
.featured-copy p,
.info-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0;
}

.lead-text {
  margin-top: 20px;
  max-width: 62ch;
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 26px;
}

.check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #16b78d);
  box-shadow: 0 0 0 6px rgba(16, 144, 111, 0.12);
}

.section-block {
  margin-top: 24px;
}

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

.section-heading h1,
.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.info-grid,
.plans-grid,
.media-list {
  display: grid;
  gap: 18px;
}

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

.info-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 52, 48, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f6faf8 100%);
}

.info-card h3,
.plan-card-body h3,
.featured-copy h3,
.media-item h2 {
  font-size: 1.12rem;
}

.info-card p,
.featured-copy p,
.plan-card-body p,
.media-item p {
  margin-top: 10px;
}

.video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 52, 48, 0.08);
  background: #dfe9e5;
}

.featured-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 22px;
  padding: 18px;
}

.featured-image {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 52, 48, 0.08);
}

.featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 8px 6px 8px 0;
}

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

.plan-card {
  overflow: hidden;
}

.plan-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.plan-card-body {
  padding: 20px;
}

.trust-panel {
  padding: 28px;
}

.check-list-strong {
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 22px;
}

.notice-section {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.notice-card {
  padding: 28px 30px;
  background: linear-gradient(180deg, rgba(20, 58, 116, 0.05), rgba(255, 255, 255, 1));
}

.cta-panel {
  text-align: center;
}

.media-list {
  grid-template-columns: 1fr;
}

.media-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}

.media-item > div:first-child {
  display: grid;
  gap: 12px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 26px 4px 38px;
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%) translateY(16px);
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(23, 52, 48, 0.94);
  color: #ffffff;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 20;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.media-warning {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff4da;
  border: 1px solid #f1db9b;
  color: #835b08;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-section,
  .featured-media,
  .info-grid,
  .plans-grid,
  .check-list-strong {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .site-header,
  .site-footer,
  .hero-section,
  .info-grid,
  .plans-grid,
  .featured-media,
  .media-item,
  .check-list-strong {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-nav,
  .header-actions,
  .hero-actions,
  .action-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-highlight,
  .section-block,
  .video-card,
  .cta-panel {
    padding: 22px;
  }

  .hero-copy h1 {
    max-width: 10ch;
  }

  .button,
  .button-secondary {
    width: 100%;
  }
}
