/* ── Variables (mirror Auris desktop palette) ─────────────────────────── */
:root {
  --bg: #08090d;
  --surface: #0f1218;
  --elevated: #161a23;
  --raised: #1d222d;
  --text: #f6f6f8;
  --muted: #8a90a3;
  --faint: #4a4f60;
  --accent: #fbbf24;
  --accent-bright: #fcd34d;
  --accent-deep: #f59e0b;
  --accent-ink: #7c4f02;
  --live: #22d3ee;
  --brand-from: #5eead4;
  --brand-to: #3b82f6;
  --hairline: rgba(255, 255, 255, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

::selection {
  background: rgba(251, 191, 36, 0.28);
  color: var(--text);
}

/* ── Background atmospherics ─────────────────────────────────────────── */
.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.blob-1 {
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: rgba(59, 130, 246, 0.07);
}
.blob-2 {
  bottom: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: rgba(251, 191, 36, 0.05);
}

/* ── Nav ─────────────────────────────────────────────────────────────── */
.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 22px;
  height: 22px;
}
.brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: var(--text);
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 450;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-links a.cta-link {
  color: var(--accent);
  border: 1px solid rgba(251, 191, 36, 0.3);
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(251, 191, 36, 0.05);
}
.nav-links a.cta-link:hover {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.5);
}

main {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  padding: 60px 0 80px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--faint);
  padding: 6px 12px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  margin-bottom: 28px;
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, var(--brand-from), var(--brand-to));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 40px;
}

.cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 80px;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(251, 191, 36, 0.2),
    0 8px 24px rgba(251, 191, 36, 0.15);
  transition: all 0.2s;
}
.cta-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(251, 191, 36, 0.3),
    0 12px 32px rgba(251, 191, 36, 0.2);
}
.cta-meta {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
  opacity: 0.65;
  margin-left: 6px;
  padding-left: 12px;
  border-left: 1px solid currentColor;
}
.cta-note {
  font-size: 12px;
  color: var(--faint);
  max-width: 480px;
  line-height: 1.55;
}

/* ── Mock UI preview ─────────────────────────────────────────────────── */
.hero-mock {
  margin-top: 0;
  display: flex;
  justify-content: center;
}
.mock-frame {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--hairline);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
.mock-bar {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.015);
}
.mock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  opacity: 0.85;
}
.mock-content {
  padding: 18px 18px 22px;
  text-align: left;
}
.mock-ribbon {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
  font-size: 12px;
}
.mock-ribbon-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 12px var(--live);
}
.mock-ribbon-status {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.mock-ribbon-text {
  color: rgba(246, 246, 248, 0.65);
  font-size: 12.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
.mock-msg {
  background: var(--elevated);
  border: 1px solid var(--hairline);
  padding: 10px 14px;
  border-radius: 14px;
  border-top-right-radius: 4px;
  font-size: 13px;
  margin-bottom: 16px;
  margin-left: auto;
  width: fit-content;
  max-width: 80%;
}
.mock-msg-auris {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock-msg-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(251, 191, 36, 0.8);
}
.mock-msg-auris p {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(246, 246, 248, 0.92);
}
.mock-msg-auris strong {
  color: var(--accent);
  font-weight: 500;
  text-shadow: 0 0 14px rgba(251, 191, 36, 0.25);
}

/* ── Features ────────────────────────────────────────────────────────── */
.features {
  padding: 80px 0;
  text-align: center;
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  margin-bottom: 48px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  text-align: left;
}
.feature-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.005));
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: all 0.25s;
}
.feature-card:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset, 0 0 0 1px rgba(255, 255, 255, 0.06), 0 12px 32px rgba(0, 0, 0, 0.3);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--accent);
}
.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-card .badge {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: rgba(34, 211, 238, 0.12);
  color: var(--live);
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.3);
}
.feature-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.feature-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feature-card ul li {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--faint);
  padding-left: 14px;
  position: relative;
}
.feature-card ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* ── Trust / How it works ────────────────────────────────────────────── */
.trust {
  padding: 60px 0;
  text-align: center;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  text-align: left;
  max-width: 920px;
  margin: 0 auto;
}
.trust-item {
  padding: 22px 4px;
}
.trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.trust-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Final CTA ───────────────────────────────────────────────────────── */
.final-cta {
  padding: 100px 0 80px;
  text-align: center;
}
.final-cta p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
}

/* ── Footer ──────────────────────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 32px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
}
.footer-brand {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--faint);
}
.footer-sep {
  opacity: 0.5;
}
.footer-links {
  display: flex;
  gap: 18px;
}
.footer-links a {
  color: var(--faint);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text);
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .nav {
    padding: 16px 20px;
  }
  .nav-links a:not(.cta-link) {
    display: none;
  }
  main {
    padding: 0 20px;
  }
  .hero {
    padding: 32px 0 60px;
  }
  .cta-meta {
    display: block;
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    margin-top: 4px;
  }
}
