:root {
  --bg: #0a0a0a;
  --surface: #131316;
  --text: #fafafa;
  --text-dim: #a3a3a8;
  --text-faint: #6a6a6e;
  --accent: #ff3370;
  --accent-bright: #ff5588;
  --border: #1d1d20;
  --border-hi: #2c2c30;
  --max: 760px;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI Variable", "Segoe UI", system-ui, Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.003em;
}

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

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

::selection { background: rgba(255, 51, 112, 0.3); color: #fff; }

/* Nav */
nav {
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  position: sticky;
  top: 0;
  z-index: 10;
}
nav .inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .logo, footer .logo {
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
nav .logo:hover, footer .logo:hover { color: var(--text); }
nav .logo .dot, footer .logo .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(255, 51, 112, 0.5);
}
nav .links {
  display: flex;
  gap: 24px;
}
nav .links a {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
}
nav .links a:hover { color: var(--text); }

/* Layout */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 64px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -280px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 800px;
  background:
    radial-gradient(ellipse 50% 60% at 50% 40%, rgba(255, 51, 112, 0.42), transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 60%, rgba(255, 100, 140, 0.18), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, transparent 0%, transparent 30%, rgba(10, 10, 10, 0.4) 80%);
  pointer-events: none;
  z-index: 0;
}
.hero .wrap {
  position: relative;
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 140px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(255, 51, 112, 0.7);
}

h1 {
  font-family: var(--sans);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.05;
  margin-bottom: 16px;
  color: #fff;
}
.hero h1 {
  font-size: 108px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.96;
  margin: 0 auto 32px;
  max-width: 860px;
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  font-weight: 700;
  color: #fff;
}

.lead {
  color: var(--text-dim);
  font-size: 20px;
  line-height: 1.5;
  margin: 0 auto 44px;
  max-width: 560px;
  font-weight: 400;
  letter-spacing: -0.003em;
}

.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 16px;
  border: 1px solid var(--border-hi);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  font-weight: 500;
  cursor: default;
  transition: border-color 0.2s ease, background 0.2s ease;
  position: relative;
}
.appstore-badge:hover {
  color: var(--text);
  border-color: #3a3a40;
  background: rgba(255, 255, 255, 0.04);
}
.appstore-badge .apple-logo {
  width: 24px;
  height: 24px;
  color: #fff;
  flex-shrink: 0;
}
.appstore-badge .badge-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}
.appstore-badge .badge-small {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}
.appstore-badge .badge-big {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
}
.appstore-badge .soon-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(255, 51, 112, 0.85);
  position: absolute;
  top: -3px;
  right: -3px;
}

/* Body type (legal pages) */
h2 {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 56px 0 16px;
  line-height: 1.2;
  color: #fff;
}
h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 28px 0 10px;
  color: #fff;
  letter-spacing: -0.005em;
}
p { margin-bottom: 16px; color: var(--text); }
ul, ol { padding-left: 22px; margin-bottom: 18px; }
li { margin-bottom: 6px; }
strong { color: #fff; font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--border); margin: 36px 0; }

main p a, main li a { color: var(--accent); }
main p a:hover, main li a:hover { text-decoration: underline; color: var(--accent-bright); }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14.5px;
  border: 1px solid var(--border);
  overflow: hidden;
}
th, td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
tr:last-child td { border-bottom: 0; }
th {
  color: var(--text-dim);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--sans);
}

.meta {
  color: var(--text-faint);
  font-size: 14px;
  margin-bottom: 32px;
}

/* Sections (homepage only — scoped to .section) */
.section {
  border-top: 1px solid var(--border);
  padding-top: 96px;
  padding-bottom: 96px;
}
.section .kicker {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 16px;
  text-align: center;
  font-family: var(--sans);
}
.section h2 {
  font-family: var(--sans);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 auto 16px;
  max-width: 640px;
  text-align: center;
  color: #fff;
}
.section .section-lead {
  color: var(--text-dim);
  font-size: 17px;
  margin: 0 auto 56px;
  max-width: 500px;
  text-align: center;
  font-family: var(--sans);
}

/* Features (text rows, no cards) */
.features { display: grid; }
.features .row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.features .row:first-child { border-top: 1px solid var(--border); }
.features .row h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.features .row p {
  margin: 0;
  color: var(--text-dim);
  font-size: 15.5px;
  max-width: 460px;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
}
.steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.steps li:first-child { border-top: 1px solid var(--border); }
.step-num {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding-top: 4px;
  font-variant-numeric: tabular-nums;
}
.steps h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.steps p {
  margin: 0;
  color: var(--text-dim);
  font-size: 15.5px;
  max-width: 460px;
}

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--border);
}
.faq details:first-child { border-top: 1px solid var(--border); }
.faq summary {
  cursor: pointer;
  padding: 24px 0;
  font-weight: 500;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #fff;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 22px;
  color: var(--text-faint);
  font-weight: 300;
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq details > p {
  padding: 0 0 26px;
  color: var(--text-dim);
  font-size: 15.5px;
  margin: 0;
  max-width: 580px;
}
.faq details > p a { color: var(--accent); }

/* Link list */
.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.link-list li { margin: 0; }
.link-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
  font-size: 17px;
  gap: 16px;
}
.link-list li:first-child a { border-top: 1px solid var(--border); }
.link-list a:hover { color: var(--text); }
.link-list a:hover strong { color: var(--accent); }
.link-list a strong { color: #fff; font-weight: 600; }
.link-list .arrow {
  color: var(--text-faint);
  font-size: 22px;
  transition: color 0.15s ease, transform 0.15s ease;
  flex-shrink: 0;
  line-height: 1;
}
.link-list a:hover .arrow { color: var(--accent); transform: translateX(4px); }
.link-list .desc {
  color: var(--text-faint);
  font-size: 13.5px;
  font-weight: 400;
  display: block;
  margin-top: 4px;
}

/* Contact list */
.contact-list {
  list-style: none;
  padding: 0;
}
.contact-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-list li:first-child { border-top: 1px solid var(--border); }
.contact-list li:last-child { border-bottom: 1px solid var(--border); }
.contact-list .label { color: var(--text-dim); font-size: 14px; }
.contact-list a { color: var(--accent); }

/* About paragraph */
.about-p {
  color: var(--text-dim);
  max-width: 520px;
  font-size: 17px;
  text-align: center;
  margin: 0 auto;
}
.about-p a { color: #fff; border-bottom: 1px solid var(--text-faint); }
.about-p a:hover { color: var(--accent); border-color: var(--accent); }

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
  color: var(--text-faint);
  font-size: 14px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-grid h4 {
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  font-family: var(--sans);
}
.footer-grid a {
  color: var(--text-dim);
  display: block;
  padding: 5px 0;
  font-weight: 400;
}
.footer-grid a:hover { color: var(--text); }
.footer-tag {
  color: var(--text-faint);
  margin-top: 14px;
  max-width: 260px;
  font-size: 14px;
}
.footer-meta {
  display: block;
  margin-top: 14px;
  color: var(--text-faint);
  font-size: 13px;
}
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  color: var(--text-faint);
  font-size: 13px;
}

/* Subtle fade-in only */
@media (prefers-reduced-motion: no-preference) {
  body { animation: appear 0.5s ease-out; }
}
@keyframes appear {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 900px) {
  .hero h1 { font-size: 84px; }
}

@media (max-width: 700px) {
  .hero h1 { font-size: 64px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 52px; letter-spacing: -0.04em; }
  .hero .wrap { padding-top: 80px; padding-bottom: 88px; }
  h1 { font-size: 32px; }
  h2 { font-size: 22px; }
  .section { padding-top: 64px; padding-bottom: 64px; }
  .section h2 { font-size: 32px; letter-spacing: -0.03em; }
  .lead { font-size: 17px; }
  nav { padding: 14px 18px; }
  nav .links { gap: 16px; }
  nav .links a { font-size: 13px; }
  .wrap { padding: 32px 18px 48px; }
  table { font-size: 13.5px; }
  th, td { padding: 10px 10px; }
  .features .row, .steps li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .step-num { padding-top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .appstore-badge .badge-big { font-size: 16px; }
}
