*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --maroon: #500000;
  --black: #000000;
  --white: #ffffff;
  --gray-nav: #999999;
  --gray-sub: #999999;
  --border: #222222;
  --off-white: #f5f5f5;
  --font: -apple-system, "SF Pro Display", "SF Pro Text", BlinkMacSystemFont, "Helvetica Neue", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── NAV ── */
.nav-wrap {
  display: flex;
  justify-content: center;
  background: var(--white);
}
nav {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  height: 64px;
  padding: 0 20px;
  gap: 0;
}
.nav-logo {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  text-decoration: none;
  line-height: 1em;
}
.nav-logo:hover { color: #09f; text-decoration: underline; }
.nav-spacer { flex: 1; }
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--gray-nav);
  text-decoration: none;
  line-height: 1em;
}
.nav-links a:hover { color: #09f; text-decoration: underline; }

/* ── SHARED CONTAINER ── */
.outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.inner {
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
}

/* ── HERO TEXT ── */
.hero-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 960px;
  padding: 140px 0 0;
}
.hero-h1 {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1em;
  text-align: center;
  color: var(--black);
  width: 100%;
}
.hero-h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1em;
  text-align: center;
  color: var(--gray-sub);
  width: 100%;
}

/* ── STORE BUTTONS ── */
.store-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
  padding: 8px 0 0;
}
.store-badge-disabled {
  opacity: 0.35;
  filter: grayscale(1);
  cursor: not-allowed;
  pointer-events: none;
}
.hero-text-wrap .store-row {
  padding-top: 0;
  margin-top: 4px;
}

/* ── HERO PHONE IMAGE ── */
.hero-img-wrap {
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0 0;
  width: 100%;
}
.hero-phone-img {
  border: 2px solid var(--border);
  border-radius: 20px;
  width: 35%;
  max-width: 338px;
  min-width: 200px;
  aspect-ratio: 1180 / 2390;
  background: var(--off-white);
  overflow: hidden;
  position: relative;
}
.hero-phone-img img {
  width: 100%;
  height: calc(100% + 25px);
  margin-top: -25px;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 20px;
}
.hero-phone-img video {
  width: 100%;
  height: calc(100% + 25px);
  margin-top: -25px;
  object-fit: cover;
  display: block;
}

/* ── HOW IT WORKS ── */
.section-how {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 960px;
  padding: 112px 0 0;
}
.section-h1 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1em;
  text-align: center;
  color: var(--black);
  width: 100%;
}
.steps-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 960px;
  padding: 39px 0;
}
.step-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
}
.step-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 2px solid var(--border);
  border-radius: 20px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.step-num { display: none; }
.step-h4-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.step-n {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--black);
  font-family: var(--font);
  flex-shrink: 0;
}
.step-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}
.step-h4 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.4em;
  color: var(--black);
  font-family: var(--font);
}
.step-p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2em;
  color: var(--gray-sub);
  font-family: var(--font);
}

/* ── SAVE SECTION ── */
.save-wrap {
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 124px 20px;
}
.save-h1 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1em;
  text-align: center;
  color: var(--black);
  max-width: 600px;
}
.save-h3 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.4em;
  text-align: center;
  color: var(--gray-sub);
}

/* ── FEATURES GRID ── */
.features-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  padding: 25px 0;
}
.features-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 960px;
  padding: 0;
}
.feature-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
}
.feature-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 2px solid var(--border);
  border-radius: 20px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.feature-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}
.feature-h4 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.4em;
  color: var(--black);
  font-family: var(--font);
}

/* ── SECURITY ── */
.security-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 960px;
  padding: 80px 0 10px;
}
.security-sub {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.4em;
  text-align: center;
  color: var(--black);
  max-width: 783px;
}
.learn-more-btn {
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--black);
  display: inline-block;
  transition: background 0.15s;
}
.learn-more-btn:hover { background: #f0f0f0; }
.security-icons-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  padding: 46px 0;
}
.security-icon-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.sec-icon {
  width: 48px;
  height: 48px;
  opacity: 0.2;
}
.sec-label {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.4em;
  text-align: center;
  color: var(--black);
  font-family: var(--font);
}

/* ── GET STARTED ── */
.get-started-wrap {
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 172px 0;
}
.get-started-h1 {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1em;
  text-align: center;
  color: var(--black);
}

/* ── FOOTER ── */
.footer-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
.footer-inner {
  width: 100%;
  max-width: 960px;
  padding: 20px 0;
}
.footer-wordmark {
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.8em;
  text-align: center;
  color: var(--black);
  width: 100%;
  display: block;
  word-break: break-all;
  font-size: clamp(28px, 13.7vw, 152px);
}
.footer-meta-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 20px 0;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 56px;
  justify-content: center;
  overflow: hidden;
}
.footer-copy {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4em;
  color: var(--black);
  white-space: pre;
  font-family: var(--font);
}
.footer-spacer { flex: 1; }
.footer-links-col { display: flex; flex-direction: column; align-items: flex-end; gap: 0; }
.footer-links-col a {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4em;
  color: var(--black);
  text-decoration: none;
  font-family: var(--font);
}
.footer-links-col a:hover { color: #09f; text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 809px) {
  .hero-h1 { font-size: 36px; }
  .hero-h2 { font-size: 24px; }
  .hero-text-wrap { padding: 90px 0 0; }
  .hero-phone-img { width: 75%; }
  .steps-row { flex-direction: column; gap: 50px; width: 280px; padding: 21px 0; }
  .step-col { width: 100%; }
  .section-how { padding: 90px 0 0; }
  .section-h1 { font-size: 26px; }
  .step-h4 { font-size: 16px; }
  .step-n { font-size: 16px; }
  .step-p { font-size: 14px; }
  .save-h1 { font-size: 26px; }
  .save-h3 { font-size: 17px; }
  .features-row { flex-direction: column; gap: 30px; width: 280px; }
  .feature-col { width: 100%; }
  .feature-h4 { font-size: 16px; }
  .security-section { padding: 60px 0 10px; }
  .security-sub { font-size: 14px; }
  .sec-label { font-size: 12px; }
  .security-icons-row { padding: 24px 0; }
  .get-started-wrap { padding: 76px 0; }
  .get-started-h1 { font-size: 36px; }
  .footer-copy { font-size: 10px; }
  .footer-links-col a { font-size: 10px; }
  .footer-inner { padding: 20px 20px; }
  .save-wrap { padding: 73px 20px; }
  .inner { padding: 0 20px; }
  .section-how { align-items: center; }
}