:root {
  --ink: #211611;
  --muted: #735b50;
  --paper: #fffaf4;
  --card: rgba(255, 255, 255, 0.78);
  --line: rgba(104, 55, 28, 0.18);
  --orange-1: #ffb80f;
  --orange-2: #ff7a00;
  --orange-3: #f22e05;
  --shadow: 0 28px 80px rgba(96, 35, 10, 0.22);
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 184, 15, 0.26), transparent 34rem),
    radial-gradient(circle at 85% 4%, rgba(242, 46, 5, 0.18), transparent 30rem),
    linear-gradient(135deg, #fff8ef 0%, #fff3e2 46%, #ffe2c9 100%);
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", Avenir, system-ui, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header {
  padding: 26px 0;
}

.site-header.compact {
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(242, 74, 5, 0.25);
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  color: rgba(33, 22, 17, 0.78);
  font-weight: 800;
  text-decoration: none;
}

nav a:hover {
  color: var(--orange-3);
}

main {
  overflow: hidden;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  padding: 38px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #a13a05;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.085em;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

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

.lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.36rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange-1), var(--orange-2) 45%, var(--orange-3));
  box-shadow: 0 18px 42px rgba(242, 74, 5, 0.32);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.hero-card {
  position: relative;
  min-height: 690px;
  border-radius: 52px;
  background:
    linear-gradient(135deg, rgba(255, 184, 15, 0.94), rgba(255, 122, 0, 0.96), rgba(242, 46, 5, 0.94)),
    #ff7a00;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 36px;
}

.phone-shot {
  position: absolute;
  width: min(58%, 330px);
  border-radius: 34px;
  box-shadow: 0 22px 55px rgba(64, 20, 5, 0.34);
}

.phone-shot.front {
  left: 11%;
  top: 8%;
  transform: rotate(-7deg);
}

.phone-shot.back {
  right: 9%;
  bottom: 7%;
  transform: rotate(7deg);
}

.section,
.split-section,
.cta-panel,
.legal-page,
.support-page {
  width: min(1180px, calc(100% - 32px));
  margin: 110px auto 0;
}

.section-heading {
  max-width: 800px;
}

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

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature {
  min-height: 230px;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(92, 42, 16, 0.08);
  backdrop-filter: blur(18px);
}

.feature p {
  color: var(--muted);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  border-radius: 16px;
  font-weight: 950;
  background: linear-gradient(135deg, var(--orange-2), var(--orange-3));
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 44px;
  align-items: center;
}

.split-section p,
.legal-page p,
.support-hero p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.check-list li {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 18px;
  font-weight: 800;
}

.feature-shot {
  width: 100%;
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.cta-panel {
  padding: clamp(34px, 6vw, 70px);
  color: #fff;
  text-align: center;
  border-radius: 44px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.34), transparent 22rem),
    linear-gradient(135deg, var(--orange-1), var(--orange-2) 42%, var(--orange-3));
  box-shadow: var(--shadow);
}

.cta-panel p {
  margin: 18px auto 28px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.cta-panel .button.primary {
  color: var(--orange-3);
  background: #fff;
  box-shadow: none;
}

.legal-page,
.support-page {
  max-width: 880px;
}

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

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

.legal-page a {
  color: #b94505;
  font-weight: 900;
}

.support-hero {
  padding: clamp(30px, 6vw, 64px);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 38px;
  box-shadow: 0 16px 48px rgba(92, 42, 16, 0.08);
}

.site-footer {
  margin-top: 110px;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 880px) {
  .site-header,
  .site-footer,
  .hero,
  .split-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header,
  .site-footer {
    display: flex;
  }

  .hero,
  .split-section,
  .feature-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 22px;
  }

  .hero-card {
    width: 100%;
    min-height: 590px;
  }

  .section,
  .split-section,
  .cta-panel,
  .legal-page,
  .support-page {
    margin-top: 72px;
  }
}

@media (max-width: 560px) {
  nav {
    gap: 12px;
  }

  nav a {
    font-size: 0.94rem;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .hero-card {
    min-height: 500px;
    border-radius: 36px;
  }

  .phone-shot {
    border-radius: 24px;
  }

  .feature {
    min-height: auto;
  }
}
