/* FrictionPass — Shared Design System */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FF7300;
  --orange-dark: #CC5C00;
  --bg: #0c0c0e;
  --surface: #141416;
  --surface2: #1c1c1f;
  --border: #2a2a2e;
  --text: #f0f0f0;
  --muted: #888;
  --green: #34c759;
  --blue: #0a84ff;
  --radius: 14px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: var(--bg); color: var(--text); min-height: 100vh;
}

/* Nav */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: rgba(12,12,14,.92);
  backdrop-filter: blur(12px); z-index: 100;
}
.logo { font-size: 20px; font-weight: 700; letter-spacing: -.3px; text-decoration: none; color: var(--text); }
.logo span { color: var(--orange); }
.logo-sub { font-size: 10px; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; gap: 20px; font-size: 14px; }
.nav-links a { color: var(--muted); text-decoration: none; transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-btn {
  background: var(--orange); color: #fff; border: none;
  border-radius: 8px; padding: 8px 18px; font-size: 14px;
  font-weight: 600; cursor: pointer; text-decoration: none;
}

/* Sections */
.hero { text-align: center; padding: 80px 24px 60px; max-width: 760px; margin: 0 auto; }
.hero h1 { font-size: clamp(32px, 6vw, 56px); font-weight: 700; line-height: 1.1; letter-spacing: -.5px; margin-bottom: 18px; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero p { font-size: 18px; color: var(--muted); line-height: 1.6; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.section { max-width: 1080px; margin: 0 auto; padding: 60px 24px; }
.section-label { font-size: 12px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.section h2 { font-size: clamp(24px, 4vw, 36px); font-weight: 700; margin-bottom: 12px; letter-spacing: -.3px; }
.section > p { font-size: 16px; color: var(--muted); margin-bottom: 40px; max-width: 600px; }
.divider { border: none; border-top: 1px solid var(--border); }

/* Buttons */
.btn-primary {
  background: var(--orange); color: #fff; border: none; border-radius: 10px;
  padding: 14px 28px; font-size: 16px; font-weight: 600; cursor: pointer;
  transition: background .15s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary {
  background: transparent; color: var(--text); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 28px; font-size: 16px; font-weight: 600;
  cursor: pointer; transition: border-color .15s; text-decoration: none; display: inline-block;
}
.btn-secondary:hover { border-color: var(--muted); }

/* Cards grid */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; transition: border-color .15s;
  text-decoration: none; color: var(--text);
}
.card:hover { border-color: var(--orange); }
.card-icon { font-size: 32px; margin-bottom: 12px; }
.card-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.card-desc { font-size: 14px; color: var(--muted); line-height: 1.5; }
.card-link { display: inline-block; margin-top: 16px; color: var(--orange); font-size: 14px; font-weight: 600; }

/* Feature rows */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; padding: 48px 0;
}
.feature-row:nth-child(even) { direction: rtl; }
.feature-row:nth-child(even) > * { direction: ltr; }
.feature-text h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.feature-text p { font-size: 15px; color: var(--muted); line-height: 1.6; }
.feature-visual {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; text-align: center;
  font-size: 48px;
}

/* Pricing */
.price-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px; max-width: 480px; margin: 0 auto 32px;
}
.price-amount { font-size: 64px; font-weight: 700; color: var(--orange); letter-spacing: -2px; line-height: 1; }
.price-unit { font-size: 18px; color: var(--muted); margin-bottom: 28px; }
.price-check { display: flex; align-items: center; gap: 12px; font-size: 15px; margin-bottom: 10px; }
.price-check::before { content: '✓'; color: var(--green); font-size: 18px; flex-shrink: 0; }

/* CTA strip */
.cta-strip {
  background: linear-gradient(135deg, rgba(255,115,0,.12), rgba(255,115,0,.04));
  border: 1px solid rgba(255,115,0,.2); border-radius: 20px;
  padding: 48px 32px; text-align: center;
}
.cta-strip h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.cta-strip p { color: var(--muted); margin-bottom: 28px; font-size: 16px; }

/* Footer */
footer {
  border-top: 1px solid var(--border); padding: 32px;
  text-align: center; font-size: 13px; color: var(--muted);
}
footer a { color: var(--orange); text-decoration: none; }

/* Responsive */
@media (max-width: 768px) {
  nav { padding: 14px 16px; }
  .nav-links { display: none; }
  .hero { padding: 48px 16px 40px; }
  .feature-row { grid-template-columns: 1fr; gap: 24px; }
  .feature-row:nth-child(even) { direction: ltr; }
  .card-grid { grid-template-columns: 1fr; }
}
