:root {
  --bg: #f4f5f1;
  --surface: rgba(255,255,255,0.76);
  --surface-strong: #ffffff;
  --surface-dark: #0e0e0e;
  --text: #111111;
  --muted: #5f6466;
  --line: rgba(17, 17, 17, 0.08);
  --blue: #12adff;
  --blue-dark: #0795df;
  --gold: #d8b030;
  --shadow: 0 22px 60px rgba(17,17,17,0.09);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1180px;
  --transition: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(18,173,255,0.14), transparent 26%),
    radial-gradient(circle at top right, rgba(216,176,48,0.11), transparent 24%),
    var(--bg);
  line-height: 1.45;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { border: 0; }
.wrap { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(244,245,241,0.82);
  border-bottom: 1px solid rgba(17,17,17,0.05);
}
.header-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-logo {
  width: clamp(120px, 15vw, 200px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.08));
}
.brand-fallback {
  width: 50px; height: 50px; border-radius: 16px; background: linear-gradient(135deg, var(--blue), var(--gold));
  color: white; font-weight: 900; display: grid; place-items: center;
}
.brand-copy strong { display: block; font-size: 1rem; letter-spacing: -0.04em; }
.brand-copy span { display: block; color: var(--muted); font-size: 0.88rem; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 4px; padding: 5px; border: 1px solid var(--line);
  border-radius: 999px; background: rgba(255,255,255,0.85);
}
.lang-toggle button {
  background: transparent; color: var(--muted); padding: 10px 14px; border-radius: 999px; font-weight: 800; cursor: pointer;
}
.lang-toggle button.active { background: #121212; color: white; }

.section { padding: 42px 0; }
.hero { padding-top: 28px; }
.hero-grid, .story-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 22px; align-items: stretch; }
.hero-card, .story-card {
  background: var(--surface); border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow); border-radius: var(--radius-xl);
}
.copy-card { padding: 28px; }
.media-card { overflow: hidden; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; background: rgba(18,173,255,0.11);
  color: #0f5e84; padding: 8px 12px; border-radius: 999px; font-size: 0.78rem; font-weight: 800;
}
h1, h2, h3 { margin: 0; letter-spacing: -0.05em; line-height: 0.95; }
h1 { font-size: clamp(2.6rem, 6vw, 4.9rem); margin: 16px 0 18px; }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); margin-bottom: 16px; }
h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); }
.lead, .section-head p, .story-card p, .video-content p, .hook-box p { color: var(--muted); font-size: 1.05rem; }
.hook-box {
  margin: 18px 0 18px; padding: 18px; border-radius: var(--radius-lg); background: linear-gradient(180deg, rgba(18,173,255,0.06), rgba(18,173,255,0.02));
  border: 1px solid rgba(18,173,255,0.12);
}
.hook-box h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); margin-bottom: 10px; }
.cta-row, .micro-points { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-row { margin-top: 22px; }
.pill-btn, .ghost-btn, .chip {
  border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  font-weight: 800; letter-spacing: -0.02em; transition: transform var(--transition), background var(--transition), color var(--transition), border var(--transition), box-shadow var(--transition);
}
.pill-btn { background: linear-gradient(135deg, var(--blue), #1e66ff); color: white; padding: 15px 24px; box-shadow: 0 16px 28px rgba(18,173,255,0.22); }
.pill-btn.small { padding: 13px 20px; }
.pill-btn.full { width: 100%; }
.ghost-btn { padding: 14px 22px; background: rgba(255,255,255,0.72); color: var(--text); border: 1px solid var(--line); }
.ghost-btn.light { background: rgba(255,255,255,0.94); }
.chip { padding: 11px 14px; background: white; border: 1px solid var(--line); font-size: 0.92rem; }
.pill-btn:hover, .ghost-btn:hover, .chip:hover { transform: translateY(-1px); }

.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px;
}
.stat-box {
  background: rgba(255,255,255,0.78); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 16px;
}
.stat-box strong { display: block; font-size: 1.8rem; letter-spacing: -0.05em; margin-bottom: 8px; }
.stat-box span { display: block; color: var(--muted); font-size: 0.94rem; }

.media-image {
  min-height: 100%; position: relative; isolation: isolate;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.03), rgba(0,0,0,0.52)),
    url('logo.png') center center / cover no-repeat,
    linear-gradient(135deg, #f6e176, #12adff);
}
.media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.0), rgba(0,0,0,0.44));
  z-index: 0;
}
.video-content {
  position: relative; z-index: 1; min-height: 100%; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; color: white;
}
.play-btn {
  width: 72px; height: 72px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.92); cursor: pointer;
  display: inline-grid; place-items: center; box-shadow: 0 18px 40px rgba(0,0,0,0.18); margin-bottom: 14px;
}
.play-triangle {
  width: 0; height: 0; border-left: 16px solid #1e66ff; border-top: 11px solid transparent; border-bottom: 11px solid transparent; margin-left: 4px;
}
.tiny-label {
  display: inline-flex; align-self: flex-start; margin-bottom: 12px; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,0.16); font-weight: 700;
}
.video-content h2 { max-width: 420px; }
.video-content p { max-width: 420px; color: rgba(255,255,255,0.82); }

.section-head {
  display: grid; grid-template-columns: 1fr 0.9fr; gap: 18px; align-items: end; margin-bottom: 22px;
}
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.deal-card {
  padding: 22px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.82); border: 1px solid rgba(255,255,255,0.7); box-shadow: var(--shadow);
}
.card-top, .rate-row, .savings-grid { display: flex; justify-content: space-between; gap: 10px; }
.card-top span, .rate-row span {
  display: inline-flex; padding: 8px 10px; border-radius: 999px; background: rgba(17,17,17,0.05); font-size: 0.82rem; font-weight: 700;
}
.deal-card h3 { font-size: 1.7rem; margin: 16px 0 10px; }
.deal-hook { color: var(--muted); margin: 0 0 18px; }
.savings-grid { margin-bottom: 16px; }
.savings-grid > div {
  flex: 1; padding: 14px; border-radius: var(--radius-md); background: linear-gradient(180deg, rgba(18,173,255,0.08), rgba(255,255,255,0.7)); border: 1px solid rgba(18,173,255,0.1);
}
.savings-grid strong { display: block; font-size: 1.5rem; letter-spacing: -0.04em; margin-bottom: 6px; }
.savings-grid span { display: block; color: var(--muted); font-size: 0.85rem; }

.story-grid { align-items: start; }
.story-card { padding: 28px; }
.story-section { padding-top: 24px; padding-bottom: 70px; }
.compare-box {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px;
}
.compare-box > div {
  background: rgba(255,255,255,0.78); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px;
}
.compare-box span { display: block; color: var(--muted); margin-bottom: 8px; }
.compare-box strong { font-size: 1.45rem; letter-spacing: -0.05em; }
.mission-card { background: linear-gradient(135deg, rgba(18,173,255,0.12), rgba(255,255,255,0.78)); }

.modal.hidden { display: none; }
.modal {
  position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 20px;
}
.modal-backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,0.48);
}
.modal-card {
  position: relative; z-index: 1; width: min(100%, 620px); background: white; border-radius: 28px; box-shadow: 0 30px 70px rgba(0,0,0,0.24); padding: 26px;
}
.video-modal-card { width: min(100%, 880px); }
.modal-x {
  position: absolute; top: 14px; right: 14px; width: 42px; height: 42px; border-radius: 50%; background: rgba(17,17,17,0.06); cursor: pointer; font-size: 1.5rem;
}
.lead-form { display: grid; gap: 14px; }
.lead-form label span { display: block; font-weight: 700; margin-bottom: 6px; }
.lead-form input, .lead-form select {
  width: 100%; padding: 14px 16px; border-radius: 16px; border: 1px solid rgba(17,17,17,0.14); background: #fff;
}
.consent-line { display: flex; gap: 10px; align-items: flex-start; }
.consent-line input { width: auto; margin-top: 4px; }
.form-success {
  padding: 14px; border-radius: 16px; background: rgba(14, 171, 97, 0.1); color: #0d8c57; font-weight: 700;
}
.video-placeholder {
  min-height: 360px; border-radius: 24px; display: grid; place-items: center; text-align: center; padding: 28px;
  background: linear-gradient(135deg, rgba(18,173,255,0.12), rgba(216,176,48,0.12));
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 500ms ease, transform 500ms ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }

@media (max-width: 980px) {
  .hero-grid, .story-grid, .section-head, .card-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header { position: static; }
  .header-bar { flex-direction: column; align-items: stretch; }
  .header-actions { justify-content: space-between; }
  .brand { align-items: center; }
  .brand-logo { width: 140px; }
  .copy-card, .story-card, .video-content { padding: 22px; }
  .cta-row, .micro-points { flex-direction: column; }
  .pill-btn, .ghost-btn { width: 100%; }
  .compare-box { grid-template-columns: 1fr; }
}
