:root {
  --bg: #f3f3f5;
  --surface: #ffffff;
  --text: #111111;
  --muted: #7b7b82;
  --border: #e5e5e8;
  --brand-yellow: #f2c400;
  --brand-yellow-dark: #9a6500;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  --radius: 28px;
  --radius-sm: 18px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

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

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
}

.centered {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(243, 243, 245, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover,
.footer-links a:hover,
.text-link:hover {
  text-decoration: underline;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-logo {
  max-width: 420px;
  margin-bottom: 24px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  line-height: 1.04;
  margin: 0 0 14px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand-yellow);
  color: #4f4100;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.small-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.phone-frame {
  background: #111;
  border-radius: 42px;
  padding: 14px;
  box-shadow: var(--shadow);
  max-width: 410px;
  margin: 0 auto;
}

.phone-screen {
  background: var(--bg);
  border-radius: 30px;
  min-height: 760px;
  padding: 28px 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mock-header {
  font-weight: 700;
  font-size: 1.65rem;
  margin-top: 8px;
}

.mock-quote {
  margin: auto 0;
  text-align: center;
  max-width: 310px;
}

.quote-text {
  font-size: 2rem;
  line-height: 1.18;
  margin: 0 0 16px;
}

.quote-author {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0;
}

.mock-button {
  width: 100%;
  background: var(--brand-yellow);
  color: #675100;
  border-radius: 999px;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin-top: auto;
}

.mock-footer {
  margin-top: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}

.section {
  padding: 48px 0;
}

.alt-bg {
  background: rgba(255, 255, 255, 0.4);
}

.section h2,
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 20px;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-list {
  margin: 0;
  padding-left: 20px;
}

.feature-list li + li {
  margin-top: 8px;
}

.page-main {
  padding-top: 24px;
}

.page-hero {
  padding: 30px 0 12px;
}

.page-logo {
  max-width: 360px;
  margin: 0 auto 18px;
}

.legal-card h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.faq-item + .faq-item {
  margin-top: 16px;
}

.text-link {
  color: var(--brand-yellow-dark);
  font-weight: 600;
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.footer-links a {
  color: var(--muted);
}

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

  .hero {
    padding-top: 36px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .button-row {
    justify-content: center;
  }

  .phone-frame {
    max-width: 420px;
  }
}

@media (max-width: 600px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 14px;
  }

  .quote-text {
    font-size: 1.55rem;
  }

  .mock-button {
    min-height: 72px;
    font-size: 1.6rem;
  }

  .card,
  .phone-screen {
    padding: 22px;
  }
}
