/* ============================================================
   Enjoy Soccer — Landing Page styles
   ============================================================ */

@import url('/lp/fonts.css');
@import url('/lp/tokens.css');

/* Reset html bg from the design system (which assumes the app shell).
   We control section backgrounds per-section here. */
html {
  background: #FFFFFF;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-rounded);
  font-weight: var(--weight-body);
  color: var(--fg-1);
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

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

::selection { background: var(--brand-yellow); color: var(--brand-yellow-ink); }

/* ===== Layout ============================================== */

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: var(--space-5);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}

section { position: relative; }

/* ===== Top navigation ====================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--slate-100);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

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

.brand-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: var(--cta-bg);
  color: var(--cta-fg);
  font-weight: var(--weight-hero);
  font-size: var(--text-sm);
  box-shadow: var(--shadow-md);
  transition: transform 120ms ease, background 120ms ease;
}
.nav-cta:hover { background: var(--cta-bg-press); transform: translateY(-1px); }
.nav-cta:active { transform: translateY(0); }

@media (max-width: 480px) {
  .nav-cta { padding: 8px 12px; font-size: 13px; }
}

/* ===== Buttons ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: var(--radius-lg);
  font-weight: var(--weight-hero);
  font-size: var(--text-lg);
  line-height: 1;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--cta-bg);
  color: var(--cta-fg);
  box-shadow: 0 10px 24px -8px rgba(0, 102, 255, 0.55);
}
.btn-primary:hover {
  background: var(--cta-bg-press);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(0, 82, 204, 0.6);
}
.btn-primary:active { transform: translateY(0); }

.btn-arrow {
  width: 22px; height: 22px;
  display: inline-grid; place-items: center;
}

.btn-fab {
  background: var(--cta-fab-bg);
  color: var(--cta-fab-fg);
  box-shadow: var(--shadow-yellow-glow);
}
.btn-fab:hover { background: var(--cta-fab-bg-press); transform: translateY(-2px); }

.cta-meta {
  display: block;
  margin-top: 12px;
  font-size: var(--text-sm);
  color: var(--fg-2);
  font-weight: var(--weight-body);
}

/* ===== Hero ================================================ */

.hero {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(70% 60% at 80% 20%, rgba(255, 255, 255, 0.18), transparent 60%),
    linear-gradient(180deg, #22C55E 0%, #15803D 100%);
  color: var(--fg-on-pitch);
  padding-block: 56px 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 88%, rgba(255, 255, 255, 0.12), transparent 22%),
    radial-gradient(circle at 92% 72%, rgba(255, 255, 255, 0.08), transparent 24%);
  pointer-events: none;
  z-index: -1;
}

/* faint pitch lines for personality */
.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -120px;
  width: 120%;
  height: 280px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero { padding-block: 80px 24px; }
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  font-weight: var(--weight-bold);
  font-size: var(--text-sm);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-yellow);
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.25);
}

.hero h1 {
  font-family: var(--font-rounded);
  font-weight: var(--weight-hero);
  font-size: clamp(36px, 8vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 18px 0 0;
  color: #FFFFFF;
  text-wrap: balance;
}

.hero h1 .accent {
  display: inline-block;
  position: relative;
  color: #FFFFFF;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  bottom: 0.06em;
  height: 0.28em;
  background: var(--brand-yellow);
  z-index: -1;
  border-radius: 4px;
}

.hero-sub {
  margin: 20px 0 0;
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 28em;
  font-weight: var(--weight-body);
}

.hero-cta-row {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

@media (min-width: 480px) {
  .hero-cta-row { flex-direction: row; align-items: center; gap: 16px; }
}

.hero .btn-primary {
  background: #FFFFFF;
  color: var(--brand-blue-dark);
  box-shadow: 0 12px 32px -10px rgba(15, 23, 42, 0.4);
}
.hero .btn-primary:hover {
  background: #FFFFFF;
  color: var(--brand-blue);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(15, 23, 42, 0.45);
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
}

.hero-trust svg { width: 18px; height: 18px; }

/* Hero visual — phone */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

@media (min-width: 900px) {
  .hero-visual { justify-content: flex-end; }
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-visual::before {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.35), transparent 70%);
  top: -40px; right: 10%;
  filter: blur(20px);
}
.hero-visual::after {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.35), transparent 70%);
  bottom: 10%; left: 5%;
  filter: blur(24px);
}

/* ===== Phone frame ========================================= */

.phone {
  position: relative;
  width: 260px;
  aspect-ratio: 480 / 900;
  border-radius: 18px;
  background: #0F172A;
  padding: 6px;
  box-shadow:
    0 30px 60px -20px rgba(15, 23, 42, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  flex: 0 0 auto;
  max-width: 100%;
}

@media (min-width: 768px) {
  .phone { width: 280px; }
}
@media (min-width: 1100px) {
  .phone { width: 300px; }
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card-bg);
}

.phone-notch { display: none; }

.phone-screen image-slot {
  width: 100%;
  height: 100%;
  display: block;
}

/* Tilt variant for marketing flair */
.phone.tilt-left { transform: rotate(-4deg); }
.phone.tilt-right { transform: rotate(4deg); }

/* ===== Section base ======================================== */

.section {
  padding-block: 80px;
}

@media (max-width: 640px) {
  .section { padding-block: 56px; }
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--brand-blue-50);
  color: var(--brand-blue-dark);
  font-weight: var(--weight-hero);
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-rounded);
  font-weight: var(--weight-hero);
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin: 0;
  text-wrap: balance;
}

.section-sub {
  margin: 16px auto 0;
  max-width: 44em;
  color: var(--fg-2);
  font-size: var(--text-lg);
  line-height: 1.65;
}

/* ===== Features ============================================ */

.features {
  background: #FFFFFF;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 720px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.feature {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 28px 24px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 28px; height: 28px; }

.feature--record .feature-icon { background: rgba(56, 189, 248, 0.18); color: var(--sky-500); }
.feature--ai     .feature-icon { background: rgba(251, 191, 36, 0.22); color: var(--brand-yellow-ink); }
.feature--goal   .feature-icon { background: rgba(167, 139, 250, 0.22); color: #6D28D9; }

.feature h3 {
  font-family: var(--font-rounded);
  font-weight: var(--weight-hero);
  font-size: var(--text-2xl);
  color: var(--slate-900);
  margin: 0 0 10px;
  text-transform: none;
  letter-spacing: -0.01em;
}

.feature p {
  margin: 0;
  color: var(--fg-2);
  font-size: var(--text-base);
  line-height: 1.65;
}

.feature-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 11px;
  font-weight: var(--weight-hero);
  color: var(--slate-400);
  letter-spacing: 0.08em;
}

/* ===== Steps =============================================== */

.steps {
  background: var(--slate-50);
}

.step-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: step;
}

@media (min-width: 800px) {
  .step-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
  }
}

.step {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 28px 24px 30px;
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-pill);
  background: var(--brand-blue);
  color: #FFFFFF;
  font-weight: var(--weight-hero);
  font-size: 20px;
  margin-bottom: 16px;
  box-shadow: 0 6px 14px -4px rgba(0, 102, 255, 0.5);
}

.step h3 {
  font-family: var(--font-rounded);
  font-weight: var(--weight-hero);
  font-size: var(--text-xl);
  color: var(--slate-900);
  margin: 0 0 8px;
  text-transform: none;
  letter-spacing: -0.005em;
}

.step p {
  margin: 0;
  color: var(--fg-2);
  font-size: var(--text-base);
  line-height: 1.65;
}

.step-visual {
  margin-top: 18px;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--border-card);
  padding: 16px;
  display: grid;
  place-items: center;
  min-height: 110px;
}

.step-visual svg { width: 100%; height: auto; max-height: 110px; }

/* ===== AI Coach section ==================================== */

.coach {
  background: #FFFFFF;
}

.coach-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .coach-inner { grid-template-columns: 1fr 1fr; gap: 56px; }
}

.coach-copy h2 {
  font-family: var(--font-rounded);
  font-weight: var(--weight-hero);
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin: 16px 0 0;
  text-wrap: balance;
}

.coach-copy p {
  margin-top: 18px;
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--fg-2);
}

.coach-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.coach-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--slate-800);
}

.coach-list .check {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  border-radius: var(--radius-pill);
  background: var(--success);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.coach-list .check svg { width: 14px; height: 14px; }

/* Chat-style demo */
.coach-demo {
  position: relative;
  background: linear-gradient(160deg, var(--sky-50), #FFFFFF);
  border: 1px solid var(--sky-100);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

/* Showcase: real-screenshot snippets (not phone-framed) */
.coach-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 8px;
}

.coach-snap {
  margin: 0;
  width: 100%;
  max-width: 460px;
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow:
    0 20px 40px -16px rgba(15, 23, 42, 0.35),
    0 0 0 1px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.coach-snap img {
  display: block;
  width: 100%;
  height: auto;
}

.coach-snap figcaption {
  font-size: var(--text-sm);
  font-weight: var(--weight-hero);
  color: var(--fg-2);
  padding: 10px 16px 14px;
  text-align: center;
  background: #FFFFFF;
}

.coach-snap--tsundere figcaption { color: #DB2777; }
.coach-snap--strict   figcaption { color: #DC2626; }

@media (min-width: 700px) {
  .coach-showcase {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
  }
  .coach-snap { width: 50%; }
  .coach-snap--tsundere { transform: translateY(-16px) rotate(-1.5deg); }
  .coach-snap--strict   { transform: translateY(28px) rotate(1.5deg); }
}

/* Personality grid (below the 2-column layout) */
.coach-types {
  margin-top: 64px;
}

.coach-types-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.coach-types-title {
  font-family: var(--font-rounded);
  font-weight: var(--weight-hero);
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--slate-900);
  margin: 12px 0 0;
  text-transform: none;
  text-wrap: balance;
}

.coach-types-sub {
  margin: 12px auto 0;
  color: var(--fg-2);
  font-size: var(--text-base);
  line-height: 1.65;
}

.coach-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 560px) {
  .coach-types-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 920px) {
  .coach-types-grid { grid-template-columns: repeat(3, 1fr); }
}

.coach-card {
  background: #FFFFFF;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 18px 20px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.coach-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.coach-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.coach-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-weight: var(--weight-hero);
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.coach-tag {
  font-size: var(--text-xs);
  color: var(--fg-3);
  font-weight: var(--weight-bold);
  line-height: 1.4;
}

.coach-quote {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--slate-800);
  font-weight: var(--weight-bold);
  position: relative;
  padding-left: 14px;
}
.coach-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 3px;
  background: currentColor;
  opacity: 0.6;
}

/* Personality color accents */
.coach-card--passionate { color: #DC2626; }
.coach-card--passionate .coach-chip { background: #FEE2E2; color: #B91C1C; }

.coach-card--strict     { color: #4338CA; }
.coach-card--strict     .coach-chip { background: #E0E7FF; color: #4338CA; }

.coach-card--logical    { color: #0E7490; }
.coach-card--logical    .coach-chip { background: #CFFAFE; color: #155E75; }

.coach-card--natural    { color: #15803D; }
.coach-card--natural    .coach-chip { background: #DCFCE7; color: #15803D; }

.coach-card--praise     { color: #B45309; }
.coach-card--praise     .coach-chip { background: #FEF3C7; color: #B45309; }

.coach-card--tsundere   { color: #DB2777; }
.coach-card--tsundere   .coach-chip { background: #FCE7F3; color: #BE185D; }

.coach-types-foot {
  margin: 28px auto 0;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--fg-2);
}

.coach-demo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--slate-200);
}

.coach-avatar {
  width: 44px; height: 44px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--brand-blue), var(--sky-500));
  display: grid;
  place-items: center;
  color: #FFFFFF;
  box-shadow: 0 6px 14px -4px rgba(0, 102, 255, 0.4);
}
.coach-avatar svg { width: 22px; height: 22px; }

.coach-name {
  font-weight: var(--weight-hero);
  font-size: var(--text-base);
  color: var(--slate-900);
  display: flex;
  align-items: center;
  gap: 8px;
}
.coach-status {
  font-size: var(--text-xs);
  color: var(--success);
  font-weight: var(--weight-bold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.coach-status::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
}
.coach-role {
  font-size: var(--text-xs);
  color: var(--fg-3);
  font-weight: var(--weight-body);
  margin-top: 2px;
}

.bubble-stack { display: grid; gap: 12px; }

.bubble {
  max-width: 86%;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: var(--text-base);
  line-height: 1.55;
  font-weight: var(--weight-body);
  white-space: pre-line;
}

.bubble--user {
  background: var(--brand-blue);
  color: #FFFFFF;
  border-bottom-right-radius: 6px;
  margin-left: auto;
  font-weight: var(--weight-bold);
}

.bubble--ai {
  background: #FFFFFF;
  color: var(--slate-800);
  border: 1px solid var(--slate-200);
  border-bottom-left-radius: 6px;
  box-shadow: var(--shadow-sm);
}

.bubble--ai strong {
  color: var(--brand-blue-dark);
  font-weight: var(--weight-hero);
}

.bubble-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.bubble-tag {
  font-size: 11px;
  font-weight: var(--weight-hero);
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  background: var(--brand-blue-50);
  color: var(--brand-blue-dark);
}

.typing {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.typing span {
  width: 6px; height: 6px;
  background: var(--slate-400);
  border-radius: 50%;
  animation: bounce 1.2s ease-in-out infinite;
}
.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* ===== Screenshots ========================================= */

.shots {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.shots-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  justify-items: center;
}

@media (min-width: 640px) {
  .shots-grid {
    grid-template-columns: repeat(2, auto);
    gap: 32px 24px;
    justify-content: center;
  }
}
@media (min-width: 980px) {
  .shots-grid {
    grid-template-columns: repeat(4, auto);
  }
}

.shot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.shot .phone { width: 210px; }

.shot-caption {
  text-align: center;
}
.shot-caption .label {
  font-weight: var(--weight-hero);
  font-size: var(--text-base);
  color: var(--slate-900);
  display: block;
  margin-bottom: 4px;
}
.shot-caption .desc {
  font-size: var(--text-sm);
  color: var(--fg-2);
  max-width: 16em;
  line-height: 1.5;
  margin: 0 auto;
}

/* ===== Final CTA =========================================== */

.cta {
  background:
    radial-gradient(50% 100% at 50% 0%, rgba(255,255,255,0.12), transparent 60%),
    linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  color: #FFFFFF;
  padding-block: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 90%, rgba(251, 191, 36, 0.18), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(34, 197, 94, 0.18), transparent 30%);
  pointer-events: none;
}

.cta-inner { position: relative; }

.cta h2 {
  font-family: var(--font-rounded);
  font-weight: var(--weight-hero);
  font-size: clamp(30px, 5.5vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: #FFFFFF;
  text-wrap: balance;
}

.cta p {
  margin: 18px auto 32px;
  max-width: 28em;
  font-size: var(--text-lg);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.cta .btn-primary {
  background: var(--brand-yellow);
  color: var(--brand-yellow-ink);
  font-size: var(--text-xl);
  padding: 22px 36px;
  box-shadow: var(--shadow-yellow-glow);
}
.cta .btn-primary:hover {
  background: #FCD34D;
  color: var(--brand-yellow-ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(251, 191, 36, 0.55);
}

.cta-free {
  margin: 12px auto 0;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
}

.cta-foot {
  margin: 16px auto 0;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.78);
  font-weight: var(--weight-bold);
}

/* ===== Footer ============================================== */

.footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding-block: 36px;
  font-size: var(--text-sm);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

@media (min-width: 720px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}


.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}
.footer-links a:hover { color: #FFFFFF; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer-privacy {
  color: var(--slate-500);
  font-size: var(--text-xs);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-privacy:hover { color: #FFFFFF; }
.footer-copy { color: var(--slate-500); font-size: var(--text-xs); }
