:root {
  --accent: #d7fb3b;
  --ink: #111315;
  --muted: #636a72;
  --line: #e7eaee;
  --panel: #f5f6f4;
  --soft: #eef2f5;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(17, 19, 21, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(231, 234, 238, 0.85);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  font-size: 14px;
  letter-spacing: 0;
}

.brand-text {
  font-size: 20px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  color: #25282c;
}

.site-nav a:hover {
  color: #5b6d00;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section-band {
  padding: clamp(64px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 76px);
  background:
    linear-gradient(90deg, rgba(215, 251, 59, 0.25), rgba(255, 255, 255, 0) 42%),
    var(--white);
  cursor: pointer;
}

.hero:focus-visible {
  outline: 3px solid #526300;
  outline-offset: -3px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #526300;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(56px, 9vw, 118px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.16;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(18px, 2.3vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.google-play-download {
  display: inline-block;
  width: min(100%, 216px);
  margin-bottom: 28px;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.google-play-download:hover {
  filter: drop-shadow(0 10px 14px rgba(17, 19, 21, 0.16));
  transform: translateY(-2px);
}

.google-play-download:focus-visible {
  outline: 3px solid #526300;
  outline-offset: 4px;
}

.google-play-download img {
  display: block;
  width: 100%;
  height: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(17, 19, 21, 0.12);
}

.button.primary {
  background: var(--accent);
  color: var(--ink);
}

.button.secondary {
  background: var(--white);
}

.quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-stats span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: #31363a;
  font-size: 14px;
  font-weight: 800;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: min(100%, 302px);
  aspect-ratio: 9 / 20;
  overflow: hidden;
  border: 10px solid #151719;
  border-radius: 34px;
  background: #151719;
  box-shadow: var(--shadow);
}

.phone-frame::before {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 82px;
  height: 20px;
  content: "";
  transform: translateX(-50%);
  border-radius: 999px;
  background: #151719;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.hero-phone {
  width: min(76vw, 348px);
  transform: rotate(2deg);
}

.features {
  background: var(--panel);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.section-heading h2 {
  margin-bottom: 0;
}

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

.feature-card {
  min-height: 252px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-number {
  display: inline-flex;
  margin-bottom: 36px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--accent);
  font-weight: 900;
}

.feature-card p,
.screen-shot figcaption,
.step-item p,
.delete-copy p,
.form-note,
.site-footer p {
  color: var(--muted);
}

.screens {
  overflow: hidden;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.screen-shot {
  margin: 0;
}

.screen-shot.featured {
  margin-top: 46px;
}

.screen-shot .phone-frame {
  margin: 0 auto 18px;
}

.screen-shot figcaption {
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
  font-weight: 700;
}

.how-it-works {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  background: #111315;
  color: var(--white);
}

.how-it-works .eyebrow {
  color: var(--accent);
}

.step-list {
  display: grid;
  gap: 14px;
}

.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.step-item span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 900;
}

.step-item p {
  margin: 0;
  color: #d5d9de;
  font-size: 18px;
  font-weight: 700;
}

.faq {
  background: var(--white);
}

.faq-list {
  max-width: 960px;
}

.faq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 68px;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  font: inherit;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 850;
  cursor: pointer;
}

.faq-list .faq-item:last-of-type {
  border-bottom: 1px solid var(--line);
}

.faq-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--accent);
  font-weight: 900;
}

.faq-answer {
  max-width: 760px;
  padding: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
}

.delete-account {
  background: var(--soft);
}

.delete-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.delete-form {
  display: grid;
  gap: 14px;
}

.delete-form label {
  font-weight: 850;
}

.delete-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.delete-form input:focus {
  outline: 3px solid rgba(215, 251, 59, 0.8);
  outline-offset: 2px;
}

.delete-form .button {
  width: 100%;
}

.form-note {
  margin: 0;
  font-size: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 32px;
  padding: 54px clamp(18px, 5vw, 72px) 30px;
  border-top: 1px solid var(--line);
  background: #111315;
  color: var(--white);
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-google-play {
  display: inline-block;
  width: min(100%, 174px);
  margin-top: 6px;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-google-play:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.footer-google-play:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.footer-google-play img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: end;
  font-weight: 750;
}

.footer-links a {
  color: #dfe3e7;
}

.footer-links a:hover {
  color: var(--accent);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #aeb5bb;
  font-size: 14px;
}

.toast {
  position: fixed;
  top: 92px;
  left: 50%;
  z-index: 50;
  max-width: calc(100vw - 32px);
  padding: 12px 16px;
  border: 1px solid rgba(17, 19, 21, 0.1);
  border-radius: 8px;
  background: #111315;
  color: var(--white);
  box-shadow: 0 18px 42px rgba(17, 19, 21, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.policy-page {
  background: var(--panel);
}

.policy-shell {
  width: min(100% - 36px, 960px);
  margin: 0 auto;
  padding: 52px 0 80px;
}

.policy-card {
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.policy-card h1 {
  font-size: clamp(40px, 6vw, 72px);
}

.policy-card h2 {
  margin-top: 32px;
  font-size: clamp(24px, 3vw, 34px);
}

.policy-card p,
.policy-card li {
  color: #4e555d;
  font-size: 17px;
}

.policy-card ul {
  padding-left: 22px;
}

.content-header {
  word-break: break-all;
}

.c-primary {
  color: #2563eb;
  font-weight: 800;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 75px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .policy-page .site-nav {
    position: static;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .policy-page .site-header {
    flex-wrap: wrap;
    gap: 12px;
  }

  .policy-page .site-nav a {
    padding: 0;
  }

  .hero,
  .how-it-works,
  .delete-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-grid,
  .screen-grid {
    grid-template-columns: 1fr;
  }

  .screen-shot.featured {
    margin-top: 0;
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .brand-text {
    font-size: 17px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 50px;
  }

  .phone-frame {
    width: min(100%, 268px);
    border-width: 8px;
    border-radius: 30px;
  }

  .feature-card,
  .delete-panel {
    padding: 22px;
  }

  .step-item {
    grid-template-columns: 44px 1fr;
    padding: 16px;
  }

  .step-item span {
    width: 44px;
    height: 44px;
  }
}
