/* ===== AURA Product Page — Fully Standalone ===== */

/* --- Tokens --- */
:root {
  --bg: #ffffff;
  --surface: #f6f8fb;
  --text: #1a1f36;
  --muted: #5a6178;
  --brand-1: #0e9aa7;
  --brand-2: #2563eb;
  --accent: #059669;
  --aura-warm: #ea580c;
  --border: #e2e6ed;
  --radius: 14px;
  --shadow: 0 2px 16px rgba(0,0,0,0.05);
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0 0 8px; line-height: 1.2; }
ul { list-style: none; margin: 0; padding: 0; }

/* --- Layout --- */
.container { width: min(1080px, 92%); margin-inline: auto; }
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section.alt { background: var(--surface); }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.section-head p { color: var(--muted); }
.grid { display: grid; gap: clamp(18px, 2.5vw, 28px); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.four { grid-template-columns: repeat(4, 1fr); }
.row { display: flex; align-items: center; gap: 12px; }
.row.between { justify-content: space-between; }
.row.gap { gap: 12px; }

@media (max-width: 900px) {
  .grid.two, .grid.three { grid-template-columns: 1fr; }
}
@media (max-width: 1080px) {
  .grid.four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid.four { grid-template-columns: 1fr; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: var(--radius); font-weight: 700;
  font-size: 0.95rem; border: none; cursor: pointer;
  transition: all 0.2s ease; font-family: var(--font);
}
.btn--primary {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: #fff;
  box-shadow: 0 4px 14px rgba(14, 154, 167, 0.3);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(14, 154, 167, 0.4); }
.btn--ghost {
  background: transparent; color: var(--text); border: 1px solid var(--border);
}
.btn--ghost:hover { border-color: var(--brand-1); color: var(--brand-1); background: rgba(14,154,167,0.05); }
.btn--sm { padding: 8px 18px; font-size: 0.88rem; }

/* --- Sticky Header --- */
.aura-header {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  transition: box-shadow 0.3s;
}
.aura-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.aura-brand { display: flex; align-items: center; }
.aura-brand-logo { height: 48px; width: auto; }
.aura-nav {
  display: flex; align-items: center; gap: 20px;
}
.aura-nav > a, .aura-nav .dropdown-trigger {
  color: var(--muted); font-weight: 500; font-size: 0.92rem;
  padding: 8px 10px; border-radius: 8px; transition: all 0.2s;
}
.aura-nav > a:hover, .aura-nav .dropdown-trigger:hover {
  color: var(--text); background: var(--surface);
}
.aura-nav .btn { color: #fff; }
.aura-nav .btn:hover { color: #fff; }
.arrow { font-size: 0.7rem; opacity: 0.5; }
.aura-nav-toggle {
  display: none; width: 40px; height: 40px;
  border: 1px solid var(--border); background: transparent;
  border-radius: 8px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.aura-nav-toggle span {
  display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px;
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  min-width: 220px; background: #fff;
  border: 1px solid var(--border); border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 6px 0; margin-top: 4px; z-index: 200;
}
.dropdown a {
  display: block; padding: 10px 16px; font-size: 0.9rem;
  color: var(--text); white-space: nowrap;
}
.dropdown a:hover { background: var(--surface); color: var(--brand-1); }
.has-dropdown:hover .dropdown { display: block; }

/* Mobile nav */
@media (max-width: 900px) {
  .aura-nav {
    display: none; position: fixed; top: 57px; left: 0; right: 0; bottom: 0;
    background: #fff; flex-direction: column; padding: 24px; gap: 8px;
    border-top: 1px solid var(--border); z-index: 99; overflow-y: auto;
  }
  .aura-nav.open { display: flex; }
  .aura-nav > a, .aura-nav .dropdown-trigger { font-size: 1.05rem; padding: 12px 0; }
  .aura-nav .btn { width: 100%; text-align: center; justify-content: center; }
  .aura-nav-toggle { display: flex; }
  .has-dropdown { width: 100%; }
  .dropdown {
    position: static; box-shadow: none; border: none;
    background: var(--surface); border-radius: 8px;
    margin: 4px 0 0; min-width: unset; display: none;
  }
  .dropdown.open { display: block; }
  .dropdown a { padding: 10px 20px; }
  /* Override desktop hover for mobile */
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown .dropdown.open { display: block; }
}

/* --- Hero --- */
.aura-hero {
  text-align: center;
  padding-top: clamp(100px, 14vw, 160px);
  padding-bottom: clamp(40px, 6vw, 80px);
}
.aura-hero-logo { display: block; max-width: 280px; height: auto; margin: 0 auto 24px; }
.aura-hero h1 { font-size: clamp(2rem, 3.8vw, 3rem); max-width: 780px; margin-inline: auto; font-weight: 800; }
.aura-hero .lede { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--muted); max-width: 680px; margin-inline: auto; }
.grad { background: linear-gradient(90deg, var(--brand-1), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow { color: var(--brand-1); text-transform: uppercase; letter-spacing: 0.18em; font-weight: 700; font-size: 0.86rem; }
.aura-ctas { justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.aura-stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
  margin-top: 28px; padding: 0; list-style: none;
}
.aura-stats li { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.92rem; }
.aura-stats li svg { color: var(--brand-1); flex-shrink: 0; }

/* --- Cards / Features --- */
.features .feature {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 20px; box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.features .feature:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(14,154,167,0.1); }
.aura-card { position: relative; }
.aura-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
  border-radius: 16px 16px 0 0;
}
.aura-icon {
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 12px; background: rgba(14,154,167,0.08);
  border: 1px solid rgba(14,154,167,0.2); margin-bottom: 12px;
}
.aura-tag {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  padding: 3px 10px; border-radius: 999px; letter-spacing: 0.02em; margin-bottom: 6px;
}
.aura-tag--included { background: rgba(5,150,105,0.1); color: var(--accent); }
.aura-tag--addon { background: rgba(234,88,12,0.1); color: var(--aura-warm); }

/* --- Checklist --- */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.checklist li { display: flex; align-items: flex-start; gap: 8px; }
.checklist li::before { content: "\2713"; color: var(--brand-1); font-weight: 700; flex-shrink: 0; }

/* --- Pathway Tabs --- */
.pathway-tabs {
  display: flex; gap: 8px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap;
}
.pathway-tab {
  padding: 10px 20px; border-radius: 10px; border: 1px solid var(--border);
  background: transparent; color: var(--muted); font-weight: 600;
  font-size: 0.95rem; cursor: pointer; transition: all 0.2s; font-family: var(--font);
}
.pathway-tab:hover { background: var(--surface); color: var(--text); }
.pathway-tab.active {
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
  color: #fff; border-color: transparent;
}
.pathway-panel {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 28px; box-shadow: var(--shadow); display: none;
}
.pathway-panel.active { display: block; }
.pathway-panel h3 { margin-bottom: 12px; font-size: 1.2rem; }
.pathway-panel p { color: var(--muted); margin-bottom: 16px; }

/* --- Pricing Anchor --- */
.pricing-anchor {
  margin-top: 40px; background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; text-align: center; box-shadow: var(--shadow);
}
.pricing-anchor h3 { margin-bottom: 20px; font-size: 1.15rem; }
.coming-soon {
  display: inline-block; font-size: 1.6rem; font-weight: 800;
  color: var(--brand-1); letter-spacing: 0.04em; margin-bottom: 8px;
}
.pricing-note { color: var(--muted); font-size: 0.88rem; margin-bottom: 16px; }

/* --- Workflow Steps --- */
.workflow-steps { display: flex; align-items: flex-start; gap: 0; overflow-x: auto; padding-bottom: 12px; }
.wf-step {
  flex: 1; min-width: 180px; text-align: center; position: relative; padding: 20px 16px;
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  box-shadow: var(--shadow);
}
.wf-number {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: #fff; font-weight: 800; font-size: 1.1rem; margin: 0 auto 12px;
}
.wf-connector {
  width: 40px; min-width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
  opacity: 0.3; align-self: center; margin-top: -20px; flex-shrink: 0;
}
.wf-note { text-align: center; color: var(--muted); font-size: 0.88rem; margin-top: 16px; font-style: italic; }

@media (max-width: 900px) {
  .workflow-steps { flex-direction: column; align-items: stretch; }
  .wf-connector { width: 2px; height: 24px; min-width: unset; margin: 0 auto; align-self: center; }
  .wf-step { min-width: unset; }
}

/* --- Final CTA --- */
.aura-final-cta {
  background: radial-gradient(600px 300px at 30% 50%, rgba(14,154,167,0.06), transparent),
              radial-gradient(500px 300px at 70% 50%, rgba(37,99,235,0.04), transparent),
              var(--surface);
}
.final-cta-box { text-align: center; max-width: 620px; margin-inline: auto; }
.final-cta-box h2 { margin-bottom: 8px; }
.final-cta-box p { color: var(--muted); margin-bottom: 20px; }
.final-cta-logo { display: block; max-width: 160px; height: auto; margin: 0 auto 20px; }

/* --- Trust cards --- */
/* (uses .features .feature rules above) */

/* --- Form --- */
.form {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 24px; box-shadow: var(--shadow); max-width: 720px; margin-inline: auto;
}
.field { display: grid; gap: 8px; }
.field span { font-weight: 600; font-size: 0.92rem; }
input, select, textarea {
  width: 100%; padding: 12px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--surface);
  color: var(--text); outline: none; font-family: var(--font); font-size: 0.95rem;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--brand-1);
  box-shadow: 0 0 0 3px rgba(14,154,167,0.15);
}
.error { color: #dc2626; font-size: 0.82rem; min-height: 18px; }
.form-note { margin-top: 10px; color: var(--muted); font-size: 0.92rem; }

/* Consent */
.aura-consent {
  display: flex; align-items: flex-start; gap: 10px; margin: 12px 0;
  cursor: pointer; font-size: 0.92rem; color: var(--muted);
}
.aura-consent input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--brand-1);
}

/* Honeypot */
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* --- Footer --- */
.site-footer {
  background: var(--surface); border-top: 1px solid var(--border); padding: 28px 0;
}
.site-footer .container { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; text-decoration: none; color: var(--text); }
.accent { background: linear-gradient(90deg, var(--brand-1), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.muted { color: var(--muted); font-size: 0.88rem; }
.powered-by { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }
.powered-by a { color: var(--brand-1); text-decoration: none; }
.powered-by a:hover { text-decoration: underline; }
.links { display: grid; gap: 8px; }
.links a { color: var(--muted); font-size: 0.92rem; }
.links a:hover { color: var(--text); }
.social { display: flex; gap: 10px; align-items: center; justify-content: flex-end; }
.social-btn {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--border); color: var(--text); background: #fff;
}
.social-btn:hover { border-color: var(--brand-1); color: var(--brand-1); }

@media (max-width: 900px) {
  .site-footer .container { grid-template-columns: 1fr; text-align: center; }
  .social { justify-content: center; }
}

/* --- Reveal --- */
[data-reveal] .feature, [data-reveal] .wf-step {
  opacity: 0; transform: translateY(12px) scale(0.98);
}
.revealed { opacity: 1 !important; transform: none !important; transition: opacity 0.6s ease, transform 0.6s ease; }
