:root {
  --bg: #0c0a0b;
  --bg-elevated: #161214;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f0ef;
  --text-muted: #a89b98;
  --accent: #ff3b30;
  --accent-soft: rgba(255, 59, 48, 0.18);
  --accent-glow: rgba(255, 59, 48, 0.35);
  --radius: 20px;
  --font: "Outfit", system-ui, -apple-system, sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.85;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Background */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% -10%, var(--accent-glow), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(255, 120, 80, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(80, 20, 20, 0.25), transparent 55%);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(12, 10, 11, 0.72);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--accent), #c62828);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  box-shadow: 0 8px 24px var(--accent-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #e53935);
  color: #fff;
  box-shadow: 0 10px 32px var(--accent-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px var(--accent-glow);
  color: #fff;
  opacity: 1;
}

.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #ffb4ae;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero h1 span {
  background: linear-gradient(120deg, #fff 20%, #ff8a80 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin: 0 0 2rem;
}

@media (max-width: 860px) {
  .hero-lead {
    margin-inline: auto;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@media (max-width: 860px) {
  .hero-actions {
    justify-content: center;
  }
}

.phone-mock {
  position: relative;
  justify-self: center;
}

.phone-frame {
  width: min(280px, 100%);
  aspect-ratio: 9 / 19;
  margin-inline: auto;
  border-radius: 36px;
  padding: 12px;
  background: linear-gradient(160deg, #2a2224, #0f0d0e);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.phone-screen {
  height: 100%;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff8f7 0%, #ffe8e6 45%, #fff 100%);
  padding: 1.5rem 1.25rem;
  color: #1a1214;
  overflow: hidden;
}

.mock-title {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.mock-sub {
  font-size: 0.78rem;
  color: #8a6f6c;
  margin-bottom: 1.25rem;
}

.mock-card {
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(255, 59, 48, 0.12);
  margin-bottom: 0.85rem;
}

.mock-label {
  font-size: 0.72rem;
  color: #8a6f6c;
  margin-bottom: 0.25rem;
}

.mock-amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
}

.mock-quote {
  font-size: 0.8rem;
  color: #5c4f4d;
  margin-top: 0.5rem;
}

.mock-pill {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.55rem 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Sections */
section {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.section-lead {
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 0 2.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(255, 59, 48, 0.35);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 0.85rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Legal / policy */
.legal-page {
  padding: 3rem 0 5rem;
}

.legal-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.75rem);
}

.legal-card h1 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin: 0 0 0.5rem;
}

.legal-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-card h2 {
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
  color: #ffd0cc;
}

.legal-card p,
.legal-card li {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.legal-card ul {
  padding-left: 1.25rem;
}

.legal-card li {
  margin-bottom: 0.45rem;
}

.contact-box {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 59, 48, 0.25);
}

.contact-box strong {
  color: var(--text);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: #000;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 0.85rem;
}

.store-badge small {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
}
