:root {
  --bg: #0b0b0d;
  --bg-elev: #16161a;
  --bg-elev-2: #1f1f25;
  --fg: #f7f7f8;
  --fg-dim: #a3a3ad;
  --accent: #f8d96b;
  --accent-deep: #e7c043;
  --danger: #ff6a6a;
  --good: #6ed6a3;
  --border: #2a2a30;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  --content-max: 1080px;
}

* { box-sizing: border-box; }

html, body, #root { height: 100%; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg);
  background:
    radial-gradient(circle at 20% -10%, rgba(248, 217, 107, 0.10), transparent 55%),
    radial-gradient(circle at 110% 10%, rgba(110, 214, 163, 0.08), transparent 55%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-deep); text-decoration: underline; }

h1, h2, h3 { line-height: 1.2; margin: 0 0 12px; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; }

p { margin: 0 0 14px; color: var(--fg-dim); }
p.lead { font-size: 1.15rem; color: var(--fg); max-width: 60ch; }

.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------------- Header ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(11, 11, 13, 0.72);
  border-bottom: 1px solid var(--border);
}
.site-header .inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  max-width: var(--content-max);
  margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; letter-spacing: -0.01em; color: var(--fg);
}
.brand-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: grid; place-items: center;
  color: #1a1408; font-weight: 800; font-size: 14px;
}
.nav { margin-left: auto; display: flex; gap: 18px; align-items: center; }
.nav a { color: var(--fg-dim); font-size: 0.95rem; }
.nav a:hover, .nav a.active { color: var(--fg); text-decoration: none; }

/* ---------------- Hero ---------------- */

.hero {
  padding: 72px 0 56px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--accent), #ffb86b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.06s ease, background 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #1a1408; }
.btn-primary:hover { background: var(--accent-deep); color: #1a1408; text-decoration: none; }
.btn-secondary { background: var(--bg-elev); color: var(--fg); border-color: var(--border); }
.btn-secondary:hover { background: var(--bg-elev-2); color: var(--fg); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--fg-dim); }
.btn-danger { background: transparent; color: var(--danger); border-color: rgba(255, 106, 106, 0.4); }
.btn[disabled], .btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-block { width: 100%; }

/* ---------------- Sections / cards ---------------- */

section { padding: 48px 0; }
.section-title { margin-bottom: 24px; }

.feature-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.card h3 { margin-top: 0; }
.card p { margin-bottom: 0; }

.steps { counter-reset: step; display: grid; gap: 14px; }
.step {
  display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: start;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 32px; height: 32px; border-radius: 999px;
  display: grid; place-items: center;
  font-weight: 700; color: #1a1408;
  background: var(--accent);
}

/* ---------------- Forms ---------------- */

.form { display: grid; gap: 14px; max-width: 480px; }
.form .row { display: grid; gap: 6px; }
.label { font-size: 0.85rem; color: var(--fg-dim); }
.input, .textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--fg);
  border-radius: var(--radius);
  font: inherit;
}
.input:focus, .textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: transparent;
}
.helper { font-size: 0.8rem; color: var(--fg-dim); }
.error {
  background: rgba(255, 106, 106, 0.10);
  border: 1px solid rgba(255, 106, 106, 0.3);
  color: var(--danger);
  padding: 10px 12px; border-radius: 10px;
  font-size: 0.9rem;
}
.success {
  background: rgba(110, 214, 163, 0.08);
  border: 1px solid rgba(110, 214, 163, 0.3);
  color: var(--good);
  padding: 10px 12px; border-radius: 10px;
  font-size: 0.9rem;
}

/* ---------------- Send-flow specific ---------------- */

.flow-shell {
  max-width: 540px; margin: 32px auto 64px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.progress {
  display: flex; gap: 6px; margin-bottom: 20px;
}
.progress span {
  flex: 1; height: 4px; border-radius: 4px; background: var(--border);
}
.progress span.done { background: var(--accent); }

.recorder {
  display: grid; gap: 14px;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}
.rec-button {
  width: 88px; height: 88px; border-radius: 999px; border: 0;
  background: var(--danger);
  color: white; font-size: 0.85rem; font-weight: 700;
  cursor: pointer;
  margin: 0 auto;
  display: grid; place-items: center;
  transition: transform 0.08s ease, background 0.15s ease;
}
.rec-button.active { background: var(--accent); color: #1a1408; transform: scale(1.04); }
.rec-button:disabled { opacity: 0.5; cursor: not-allowed; }
.rec-meter { font-variant-numeric: tabular-nums; font-size: 1.1rem; }
.rec-hint { color: var(--fg-dim); font-size: 0.85rem; }

/* ---------------- Legal pages ---------------- */

.prose {
  max-width: 720px;
  padding: 32px 0 64px;
}
.prose h2 { margin-top: 32px; }
.prose ul { padding-left: 20px; color: var(--fg-dim); }
.prose li { margin: 6px 0; }
.prose .meta { color: var(--fg-dim); font-size: 0.85rem; }

/* ---------------- Footer ---------------- */

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding: 24px 0;
  color: var(--fg-dim);
  font-size: 0.85rem;
}
.site-footer .inner {
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
  max-width: var(--content-max); margin: 0 auto; padding: 0 24px;
}
.site-footer .nav { margin-left: auto; gap: 16px; }

/* ---------------- Responsive tweaks ---------------- */

@media (max-width: 600px) {
  .nav { gap: 12px; }
  .hero { padding: 48px 0 32px; }
  .flow-shell { padding: 22px 18px; border-radius: 18px; margin: 20px 12px 48px; }
}

/* Respect reduced motion. */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}


/*# sourceMappingURL=main.fa7f3ee8.css.map*/