* {
  box-sizing: border-box;
}

:root {
  --bg: #07130f;
  --panel: rgba(14, 36, 29, 0.94);
  --panel-soft: rgba(19, 49, 39, 0.88);
  --text: #f6f3ea;
  --muted: #c6d2ca;
  --line: rgba(135, 170, 151, 0.18);
  --primary: #f4c34c;
  --primary-strong: #e39f1f;
  --accent: #153328;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(41, 92, 70, 0.22), transparent 34%),
    linear-gradient(180deg, #081611 0%, #0b1f18 52%, #07110d 100%);
}

a {
  color: inherit;
}

img,
iframe {
  max-width: 100%;
}

.page-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 calc(120px + env(safe-area-inset-bottom, 0px));
}

.section-video-top {
  margin-top: 0;
  margin-bottom: 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(10, 28, 22, 0.96), rgba(15, 40, 32, 0.9));
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  gap: 16px;
  align-items: center;
  min-width: 0;
}

.brand-icon {
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
}

.eyebrow {
  margin: 0 0 8px;
  color: #f2c75e;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.lead {
  margin: 24px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.micro-copy {
  margin: 14px 0 0;
  color: #d7dfd9;
  font-size: 14px;
  line-height: 1.5;
}

.value-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.value-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(244, 195, 76, 0.12);
  border: 1px solid rgba(244, 195, 76, 0.18);
  color: #ffe08a;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.hero-actions,
.video-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.play-store-btn {
  gap: 8px;
}

.play-store-btn::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  max-width: 18px;
  max-height: 18px;
  flex: 0 0 auto;
  overflow: hidden;
  line-height: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2334a853' d='M3.6 2.9 13.9 13.2 3.7 23.4c-.4-.2-.7-.7-.7-1.3V4.2c0-.5.2-1 .6-1.3z'/%3E%3Cpath fill='%234285f4' d='m17 16.4-3.1-3.1L3.6 2.9c.1-.1.3-.2.4-.2.3 0 .5.1.8.2l14 8.1L17 16.4z'/%3E%3Cpath fill='%23fbbc04' d='m17 16.4 1.8-1 2.2-1.3c.7-.4.7-1.4 0-1.8L18.8 11 17 10l-3.1 3.2 3.1 3.2z'/%3E%3Cpath fill='%23ea4335' d='M3.7 23.4 13.9 13.2 17 16.4 4.8 23.4c-.3.2-.5.2-.8.2-.1 0-.2-.1-.3-.2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #1f220f;
  background: linear-gradient(135deg, #ffd86b 0%, var(--primary) 56%, var(--primary-strong) 100%);
  box-shadow: 0 14px 28px rgba(225, 165, 41, 0.22);
}

.btn-secondary {
  color: var(--text);
  background: rgba(15, 38, 30, 0.92);
  border: 1px solid var(--line);
}

.btn-large {
  min-height: 58px;
  padding-inline: 28px;
}

.quick-points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.quick-points li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(16, 45, 36, 0.72);
  border: 1px solid rgba(133, 169, 150, 0.12);
  color: #e7efe9;
}

.hero-panel,
.video-card,
.proof-box,
.feature-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 18px;
  border-radius: 28px;
}

.hero-art {
  width: 100%;
  display: block;
  border-radius: 22px;
  background: #0b1713;
}

.hero-panel-copy {
  padding: 18px 8px 8px;
}

.hero-panel-copy strong {
  display: block;
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-panel-copy p {
  margin-top: 10px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(244, 195, 76, 0.18);
  color: #ffd771;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section {
  margin-top: 28px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(9, 24, 19, 0.95), rgba(12, 30, 24, 0.88));
}

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

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.video-card {
  padding: 18px;
  border-radius: 28px;
}

.video-frame {
  overflow: hidden;
  border-radius: 22px;
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-actions {
  margin-top: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  padding: 22px;
  border-radius: 24px;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.proof-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border-radius: 28px;
}

.proof-box p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  margin-top: 24px;
  padding: 8px 4px 0;
  color: #c2cec7;
  text-align: center;
}

.footer p {
  margin-bottom: 14px;
}

.footer-links a {
  color: #f0d78a;
  text-decoration: none;
}

.floating-cta {
  position: fixed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 30;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  color: #1c2110;
  background: linear-gradient(135deg, #ffd86b 0%, var(--primary) 56%, var(--primary-strong) 100%);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
}

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

  .hero,
  .proof-box,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .section {
    padding: 22px;
    border-radius: 26px;
  }

  .hero-panel {
    order: 0;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: calc(100% - 16px);
    padding-top: 12px;
  }

  .hero {
    gap: 18px;
    padding: 18px;
  }

  .section,
  .video-card,
  .proof-box,
  .hero-panel,
  .feature-card {
    padding: 18px;
    border-radius: 22px;
  }

  .brand {
    gap: 12px;
    align-items: flex-start;
  }

  .lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.6;
  }

  .value-pills {
    margin-top: 16px;
    gap: 8px;
  }

  .value-pill {
    min-height: 34px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .hero-actions {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .video-actions .btn,
  .proof-box .btn {
    width: 100%;
  }

  .video-actions,
  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quick-points {
    gap: 10px;
  }

  .quick-points li {
    padding: 13px 14px;
    font-size: 15px;
  }

  .micro-copy {
    margin-top: 12px;
    font-size: 13px;
  }

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

  .proof-box {
    gap: 16px;
  }

  .floating-cta {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-shell {
    width: calc(100% - 12px);
    padding-bottom: calc(118px + env(safe-area-inset-bottom, 0px));
  }

  .hero,
  .section {
    padding: 16px;
    border-radius: 20px;
  }

  .brand-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    padding: 8px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  h1 {
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1;
  }

  .section-heading h2 {
    font-size: clamp(24px, 8vw, 34px);
    line-height: 1.06;
  }

  .btn,
  .floating-cta {
    min-height: 52px;
    padding-inline: 18px;
    font-size: 15px;
  }

  .hero-panel-copy strong {
    font-size: 18px;
  }

  .hero-panel-copy p,
  .feature-card p,
  .proof-box p,
  .footer p {
    font-size: 15px;
  }

  .micro-copy {
    font-size: 12px;
  }

  .video-frame {
    border-radius: 16px;
  }

  .video-card,
  .video-frame {
    border-radius: 14px;
  }
}

@media (max-width: 360px) {
  .page-shell {
    width: calc(100% - 10px);
  }

  .hero,
  .section,
  .video-card,
  .proof-box,
  .hero-panel,
  .feature-card {
    padding: 14px;
    border-radius: 18px;
  }

  .brand {
    gap: 10px;
  }

  .lead,
  .quick-points li,
  .value-pill,
  .hero-panel-copy p,
  .feature-card p,
  .proof-box p {
    font-size: 14px;
  }
}
