:root {
  --background: #101010;
  --surface: #1d1d1d;
  --surface-strong: #252525;
  --text: #f8f4ef;
  --muted: #aaa39c;
  --primary: #e37663;
  --cream: #f7e2c6;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 76% 8%, rgba(227, 118, 99, 0.16), transparent 34rem),
    linear-gradient(180deg, #121212 0%, #0c0c0c 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.stealth-page {
  min-height: 100vh;
  width: min(100% - 40px, 720px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 22px;
  margin: 0 auto;
  padding: 64px 0;
  text-align: center;
}

.stealth-page img {
  width: min(460px, 86vw);
  height: auto;
}

.stealth-page p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.stealth-page nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: var(--cream);
  font-weight: 700;
}

.stealth-page a {
  text-decoration: none;
}

.stealth-page a:hover {
  color: var(--text);
}

.site-header,
.site-footer,
.hero,
.section,
.promise {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 18px;
}

.brand img {
  width: 190px;
  height: auto;
  display: block;
}

.site-nav,
.site-footer nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a,
.site-footer a,
.text-link {
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--text);
}

.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  padding: 42px 0 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tagline {
  margin: 0 0 16px;
  color: var(--cream);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 650;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  line-height: 0.94;
}

h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.04;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.hero-body,
.promise p,
.section-heading p,
.features-grid p,
.steps p,
.faq p {
  color: var(--muted);
}

.hero-body {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.primary-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(227, 118, 99, 0.24);
}

.text-link {
  color: var(--cream);
  font-weight: 700;
}

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

.phone-frame {
  width: min(100%, 390px);
  aspect-ratio: 9 / 19.5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 44px;
  background: #050505;
  box-shadow: var(--shadow);
}

.phone-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promise,
.steps article,
.features-grid article,
.faq details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.promise {
  padding: clamp(30px, 5vw, 54px);
  border-radius: 28px;
}

.promise p:last-child {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 1.18rem;
}

.section {
  padding: 72px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.steps,
.features-grid {
  display: grid;
  gap: 14px;
}

.steps {
  grid-template-columns: repeat(3, 1fr);
}

.features-grid {
  grid-template-columns: repeat(4, 1fr);
}

.steps article,
.features-grid article {
  min-height: 190px;
  padding: 24px;
  border-radius: 22px;
}

.steps span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 900;
}

.faq {
  padding-bottom: 72px;
}

.faq details {
  margin-bottom: 10px;
  padding: 18px 20px;
  border-radius: 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.legal-page {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 84px;
}

.legal-page h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
}

.legal-page h2 {
  margin-top: 42px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-page a {
  color: var(--cream);
  font-weight: 700;
}

.legal-updated {
  margin-top: 18px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img {
  width: 52px;
  height: auto;
}

.site-footer p {
  margin-right: auto;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 28px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .features-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .features-grid article,
  .steps article {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer,
  .hero,
  .section,
  .promise,
  .legal-page {
    width: min(100% - 24px, 1120px);
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .brand img {
    width: 168px;
  }

  .hero {
    padding-bottom: 46px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button {
    width: 100%;
  }

  .phone-frame {
    width: min(100%, 350px);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
