@font-face {
  font-family: 'SF Pro Rounded';
  src: url('/fonts/SF-Pro-Rounded-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'SF Pro Rounded';
  src: url('/fonts/SF-Pro-Rounded-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'SF Pro Rounded';
  src: url('/fonts/SF-Pro-Rounded-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'SF Pro Rounded';
  src: url('/fonts/SF-Pro-Rounded-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
:root {
  --bg: #0a0a0b;
  --surface: #1c1c1e;
  --text: #ffffff;
  --text-2: #9b9ba1;
  --accent: #ff2d95;
  --accent-dim: rgba(255, 45, 149, 0.15);
  --radius: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 24px;
  background: rgba(10, 10, 11, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.brand img { border-radius: 9px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 9999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px var(--accent-dim), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.btn-small { padding: 9px 18px; font-size: 14px; }
.btn-large { padding: 16px 28px; font-size: 16px; }

/* ---- Hero ---- */
.hero {
  text-align: center;
  padding: 72px 24px 0;
  max-width: 760px;
  margin: 0 auto;
}

.hero-icon {
  width: clamp(120px, 22vw, 160px);
  height: auto;
  border-radius: 22.5%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 80px var(--accent-dim);
  margin-bottom: 36px;
}

.hero h1 {
  font-size: clamp(52px, 13vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.sub {
  margin: 20px auto 32px;
  color: var(--text-2);
  font-size: clamp(20px, 5vw, 21px);
  line-height: 1.55;
  max-width: 520px;
}

/* ---- Phone frame ---- */
.phone {
  width: min(310px, 78vw);
  margin: 56px auto 0;
  aspect-ratio: 59 / 128;
  border-radius: 44px;
  padding: 10px;
  background: #131315;
  border: 1px solid #2a2a2e;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 120px var(--accent-dim);
}

.phone video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 35px;
  display: block;
  background: #000;
}

/* ---- Features ---- */
.feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 8vw, 110px);
  max-width: 980px;
  margin: 0 auto;
  padding: 110px 24px 0;
}

.feature .phone { margin: 0; flex-shrink: 0; width: min(280px, 74vw); }

.feature.flip { flex-direction: row-reverse; }

.feature-copy { max-width: 380px; }

.feature-copy h2 {
  font-size: clamp(38px, 9vw, 44px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.feature-copy p {
  margin-top: 16px;
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.6;
}

/* ---- Steps ---- */
.steps {
  max-width: 980px;
  margin: 0 auto;
  padding: 130px 24px 0;
  text-align: center;
}

.steps > h2 {
  font-size: clamp(38px, 9vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}

.steps ol {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.steps li {
  background: var(--surface);
  border: 1px solid #2a2a2e;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: left;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 18px;
}

.steps h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }

.steps li p { margin-top: 8px; color: var(--text-2); font-size: 15px; line-height: 1.55; }

/* ---- FAQ ---- */
.faq {
  max-width: 680px;
  margin: 0 auto;
  padding: 130px 24px 0;
}

.faq > h2 {
  font-size: clamp(38px, 9vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 40px;
}

.faq details {
  background: var(--surface);
  border: 1px solid #2a2a2e;
  border-radius: 20px;
  padding: 20px 24px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  color: var(--accent);
  font-size: 22px;
  font-weight: 500;
  margin-left: 16px;
  transition: transform 0.2s ease;
}

.faq details[open] summary::after { transform: rotate(45deg); }

.faq details p {
  margin-top: 12px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}

/* ---- CTA ---- */
.cta {
  text-align: center;
  padding: 150px 24px 110px;
}

.cta img {
  border-radius: 22px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  margin-bottom: 28px;
}

.cta h2 {
  font-size: clamp(42px, 10vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

/* ---- Guides ---- */
.guide {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 90px;
}

.crumbs {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 24px;
}

.crumbs a { color: var(--text-2); text-decoration: none; }
.crumbs a:hover { color: var(--text); }

.guide h1 {
  font-size: clamp(34px, 7vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.guide .meta {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-2);
}

.guide h2 {
  font-size: clamp(24px, 5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 44px 0 0;
}

.guide p {
  margin-top: 16px;
  color: #c2c2c8;
  font-size: 17px;
  line-height: 1.7;
}

.guide ul, .guide ol {
  margin: 16px 0 0 22px;
  color: #c2c2c8;
  font-size: 17px;
  line-height: 1.7;
}

.guide li { margin-top: 8px; }

.guide a { color: var(--accent); text-decoration: none; }
.guide a:hover { text-decoration: underline; }
.guide a.btn { color: #fff; }
.guide a.btn:hover { text-decoration: none; }

.guide table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.5;
}

.guide th, .guide td {
  text-align: left;
  padding: 12px 14px;
  border: 1px solid #2a2a2e;
  color: #c2c2c8;
  vertical-align: top;
}

.guide th { background: var(--surface); color: var(--text); font-weight: 600; }

.guide .cta-box {
  margin-top: 48px;
  background: var(--surface);
  border: 1px solid #2a2a2e;
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
}

.guide .cta-box h2 { margin: 0 0 8px; }

.guide .cta-box p { margin: 0 auto 20px; max-width: 420px; }

/* guides index cards */
.guide-list { list-style: none; margin: 36px 0 0; }

.guide-list li { margin: 0 0 14px; }

.guide-list a {
  display: block;
  background: var(--surface);
  border: 1px solid #2a2a2e;
  border-radius: 20px;
  padding: 22px 24px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  transition: border-color 0.15s ease;
}

.guide-list a:hover { border-color: var(--accent); text-decoration: none; }

.guide-list span {
  display: block;
  margin-top: 6px;
  color: var(--text-2);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

/* ---- Footer ---- */
footer {
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 24px 40px;
  border-top: 1px solid #1f1f22;
  color: var(--text-2);
  font-size: 14px;
}

.foot-guides {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #1f1f22;
}

.foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer nav { display: flex; flex-wrap: wrap; gap: 12px 24px; }

footer a { color: var(--text-2); text-decoration: none; transition: color 0.15s; }
footer a:hover { color: var(--text); }

/* ---- Reveal animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- Mobile ---- */
.desktop-br { display: inline; }

@media (max-width: 760px) {
  .desktop-br { display: none; }
  .hero h1 br { display: none; }

  .feature-copy p { font-size: 21px; }
  .steps h3 { font-size: 24px; }
  .steps li p { font-size: 19px; }
  .faq summary { font-size: 21px; }
  .faq details p { font-size: 19px; }
  .btn-large { padding: 18px 32px; font-size: 18px; }
  footer { font-size: 16px; }

  .feature,
  .feature.flip {
    flex-direction: column;
    text-align: center;
    padding-top: 90px;
  }

  .feature-copy { max-width: 440px; }

  .steps ol { grid-template-columns: 1fr; }
  .steps li { text-align: center; }

  .foot-row { flex-direction: column; gap: 16px; }
  .foot-guides { justify-content: center; }
  footer { text-align: center; }

  .guide p, .guide ul, .guide ol { font-size: 19px; }
  .guide-list a { font-size: 20px; }
  .guide-list span { font-size: 17px; }
}
