:root {
  --bg: #f7f7f5;
  --bg-elevated: #ffffff;
  --ink: #111111;
  --ink-2: #6b6b6b;
  --ink-3: #9a9a9a;
  --hair: #ebebea;
  --accent: #ff5c35;
  --accent-soft: #ffe8e1;
  --accent-deep: #e83a2e;
  --peach-top: #f6e4d8;
  --peach-mid: #f3ebe3;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --radius: 28px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

/* —— Nav —— */
.nav-shell {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  width: min(100% - 24px, 920px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px 10px 20px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.nav-links a:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  border-radius: 999px;
  padding: 12px 18px;
  transition: transform 0.45s var(--ease), background 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 92, 53, 0.35);
}

.btn-accent:hover {
  background: var(--accent-deep);
  box-shadow: 0 14px 32px rgba(255, 92, 53, 0.42);
}

.btn-accent .chip {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  transition: transform 0.45s var(--ease);
}

.btn-accent:hover .chip {
  transform: translate(2px, -1px) scale(1.05);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hair);
}

.nav-cta {
  padding: 10px 16px;
  font-size: 13px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  align-items: center;
  justify-content: center;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100dvh;
  padding: 120px 0 64px;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, #ffd4c2 0%, transparent 60%),
    linear-gradient(180deg, var(--peach-top) 0%, var(--peach-mid) 42%, var(--bg) 100%);
  overflow: hidden;
}

.hero-copy {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero .lede {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--ink-2);
  max-width: 34em;
  margin: 0 auto 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.trust {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-3);
}

.phones {
  position: relative;
  height: clamp(360px, 52vw, 480px);
  max-width: 720px;
  margin: 0 auto;
}

.phone {
  position: absolute;
  width: clamp(150px, 22vw, 210px);
  border-radius: 32px;
  padding: 9px;
  background: linear-gradient(160deg, #2a2a2a 0%, #111 100%);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.phone::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 8px;
  border-radius: 999px;
  background: #0a0a0a;
  z-index: 2;
}

.phone img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
  background: #fff;
  display: block;
}

.phone-main {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 3;
  width: clamp(170px, 26vw, 240px);
}

.phone-left {
  left: 6%;
  top: 40px;
  transform: rotate(-8deg);
  z-index: 1;
  opacity: 0.95;
}

.phone-right {
  right: 6%;
  top: 40px;
  transform: rotate(8deg);
  z-index: 2;
  opacity: 0.95;
}

/* —— Sections —— */
section {
  padding: 96px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--ink-2);
  font-size: 1.05rem;
}

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

.pillar-shell {
  padding: 6px;
  border-radius: calc(var(--radius) + 6px);
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.pillar {
  height: 100%;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--accent-soft);
  color: var(--accent);
}

.pillar h3 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.pillar p {
  color: var(--ink-2);
  font-size: 0.95rem;
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px 0;
}

.feature:nth-child(even) .feature-visual {
  order: 2;
}

.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-copy h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.feature-copy p {
  color: var(--ink-2);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.feature-copy ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-copy li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
  font-size: 0.98rem;
}

.feature-copy li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: none;
  border-radius: 999px;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}

/* Feature section phones — fixed, modest size */
.phone.phone-feature {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  width: min(240px, 58vw);
  margin: 0 auto;
  transform: none;
  opacity: 1;
  z-index: 1;
}

.disclaimer {
  background: #111;
  color: #fff;
  border-radius: 32px;
  padding: 48px 40px;
  text-align: center;
}

.disclaimer h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.disclaimer p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 40em;
  margin: 0 auto;
}

.cta-band {
  text-align: center;
  padding: 80px 0 40px;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}

.cta-band p {
  color: var(--ink-2);
  margin-bottom: 24px;
}

.btn-download {
  padding: 16px 24px;
  font-size: 1.05rem;
}

.download-strip {
  padding: 0 0 8px;
}

.download-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 22px 26px;
  border-radius: 28px;
  background: #111;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.download-strip-inner strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.download-strip-inner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.feature-download {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.98rem;
}

.feature-download:hover {
  color: var(--accent-deep);
}

.sticky-download {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(247, 247, 245, 0.92) 28%);
  display: none;
  justify-content: center;
  pointer-events: none;
}

.sticky-download .btn {
  pointer-events: auto;
  width: min(100%, 420px);
  justify-content: center;
  box-shadow: 0 12px 32px rgba(255, 92, 53, 0.4);
}

body {
  padding-bottom: 0;
}

@media (max-width: 900px) {
  .sticky-download {
    display: flex;
  }

  body {
    padding-bottom: 88px;
  }
}

/* —— Footer —— */
footer {
  padding: 48px 0 100px;
  border-top: 1px solid var(--hair);
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.footer-brand p,
.footer-col a,
.footer-note {
  color: var(--ink-2);
  font-size: 0.92rem;
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}

.footer-col {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--ink-3);
}

/* —— Legal pages —— */
.legal-page {
  padding: 140px 0 80px;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.035em;
  margin-bottom: 8px;
}

.legal-meta {
  color: var(--ink-3);
  margin-bottom: 36px;
}

.legal-body {
  max-width: 720px;
  display: grid;
  gap: 18px;
  color: var(--ink-2);
  font-size: 1.02rem;
}

.legal-body h2 {
  color: var(--ink);
  font-size: 1.15rem;
  margin-top: 12px;
  letter-spacing: -0.02em;
}

.legal-body ul {
  padding-left: 1.2em;
  display: grid;
  gap: 6px;
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease),
    filter 0.9s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
  filter: none;
}

/* —— Mobile —— */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 24px;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(16px);
  }

  .nav.open .nav-links a {
    padding: 14px 12px;
    border-radius: 14px;
  }

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

  .feature:nth-child(even) .feature-visual {
    order: 0;
  }

  .phones {
    height: 400px;
  }

  .phone-left,
  .phone-right {
    width: 130px;
    top: 56px;
  }

  .phone-main {
    width: 180px;
  }

  .phone.phone-feature {
    width: min(220px, 56vw);
  }

  section {
    padding: 72px 0;
  }
}

@media (max-width: 560px) {
  .phone-left,
  .phone-right {
    display: none;
  }

  .phones {
    height: 380px;
  }

  .phone-main {
    width: 200px;
  }

  .hero {
    padding-top: 110px;
  }
}
