@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("/assets/fonts/fraunces-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #f7f3ef;
  --bg-2: #fff7ef;
  --ink: #1b1a17;
  --muted: #5d564f;
  --accent: #ff6b4a;
  --accent-2: #4adeab;
  --accent-3: #f7b84f;
  --surface: #ffffff;
  --surface-2: #fff1e6;
  --surface-3: #ffe2cf;
  --border: rgba(27, 26, 23, 0.08);
  --shadow: 0 18px 50px rgba(24, 20, 17, 0.12);
  --shadow-soft: 0 10px 30px rgba(24, 20, 17, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 20%, #fff6ec 0%, var(--bg) 40%, #f3eee7 100%);
  line-height: 1.6;
}

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

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--ink);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 10;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 243, 239, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

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

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--surface-2);
  color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.nav-cta:hover,
.nav-cta:focus {
  transform: translateY(-2px);
}

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  margin: 18px 0 18px;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  border: none;
}

.button-secondary {
  background: transparent;
  color: var(--ink);
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 600;
}

.hero-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
}

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

.phone-frame {
  background: #1b1a17;
  border-radius: 52px;
  padding: 14px;
  box-shadow: var(--shadow), inset 0 0 0 2px rgba(255,255,255,0.1);
  position: relative;
  max-width: 290px;
}

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

.phone-frame img {
  width: 100%;
  height: auto;
  border-radius: 40px;
  display: block;
}

.section {
  padding: 70px 0;
}

.section h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.section p {
  color: var(--muted);
  font-size: 17px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(27, 26, 23, 0.06);
}

.card h3 {
  margin: 10px 0 8px;
  font-size: 18px;
}

.card span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}

.highlight {
  background: var(--surface-2);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(27, 26, 23, 0.05);
}

.highlight strong {
  color: var(--ink);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.price-card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(27, 26, 23, 0.06);
}

.price-card h3 {
  margin-top: 0;
}

.price-tag {
  font-size: 24px;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-2);
  color: #0c3b2d;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.faq {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  border: 1px solid rgba(27, 26, 23, 0.08);
}

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

.faq p {
  margin: 10px 0 0;
}

.cta {
  background: linear-gradient(120deg, rgba(255, 107, 74, 0.2), rgba(247, 184, 79, 0.2));
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(27, 26, 23, 0.06);
  box-shadow: var(--shadow-soft);
}

.cta h2 {
  margin-top: 0;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 60px;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-page {
  padding: 60px 0 80px;
}

.legal-page h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 12px;
}

.legal-page h2 {
  margin-top: 36px;
}

.legal-card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(27, 26, 23, 0.06);
  box-shadow: var(--shadow-soft);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.badge-list span {
  background: var(--surface-3);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.section-cta {
  text-align: center;
  margin-top: 32px;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

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

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta {
    padding: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
