/* trove.css — shared styles for aitrove.app (dark, gold, system stack, mobile-first) */

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

:root {
  --bg: #0A0A0A;
  --bg-raised: #151515;
  --bg-card: #1C1C1E;
  --border: #2C2C2E;
  --text: #E5E5E7;
  --text-soft: #C7C7CC;
  --text-dim: #8E8E93;
  --text-faint: #636366;
  --gold: #FFB800;
  --gold-soft: #FFCE4A;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

/* ---------- layout ---------- */
.wrap { max-width: 720px; margin: 0 auto; padding: 0 20px; }
.wrap-wide { max-width: 980px; margin: 0 auto; padding: 0 20px; }

main { display: block; padding-bottom: 64px; }

/* ---------- nav ---------- */
.nav {
  border-bottom: 1px solid #1a1a1a;
  background: rgba(10,10,10,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  position: sticky; top: 0; z-index: 50;
}
.nav-inner {
  max-width: 980px; margin: 0 auto; padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
  font-weight: 700; font-size: 18px; letter-spacing: 0.2px;
}
.nav-logo img { width: 28px; height: 28px; border-radius: 7px; display: block; }
.nav-logo span { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: #0A0A0A; text-decoration: none;
  font-weight: 600; font-size: 14px; padding: 8px 16px; border-radius: 999px;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-soft); }

/* ---------- typography ---------- */
h1 { font-size: 34px; line-height: 1.2; font-weight: 800; letter-spacing: -0.5px; margin: 40px 0 14px; }
h2 { font-size: 24px; line-height: 1.3; font-weight: 700; letter-spacing: -0.3px; margin: 44px 0 12px; }
h3 { font-size: 19px; font-weight: 650; margin: 30px 0 8px; }
p { margin: 0 0 16px; color: var(--text-soft); }
li { color: var(--text-soft); margin-bottom: 8px; }
ul, ol { padding-left: 26px; margin: 0 0 18px; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: var(--text); }
em { color: var(--text-soft); }
.lede { font-size: 19px; color: var(--text-dim); margin-bottom: 24px; }
.byline { font-size: 14px; color: var(--text-faint); margin-bottom: 28px; }
hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* ---------- hero ---------- */
.hero { text-align: center; padding: 64px 0 40px; }
.hero h1 { font-size: clamp(32px, 9.5vw, 44px); margin: 18px 0 14px; }
.hero h1 .gold { color: var(--gold); }
.hero .sub { font-size: 20px; color: var(--text-dim); max-width: 560px; margin: 0 auto 30px; }
.hero-icon { width: 88px; height: 88px; border-radius: 20px; box-shadow: 0 8px 40px rgba(255,184,0,0.25); }
.hero-note { font-size: 13px; color: var(--text-faint); margin-top: 12px; }

.badge-link img { height: 54px; display: inline-block; }
.badge-link:hover { opacity: 0.85; }

/* ---------- imagery ---------- */
.shot {
  display: block; width: 100%; max-width: 320px; margin: 28px auto;
  border-radius: 24px; border: 1px solid var(--border);
}
.shot-row { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin: 32px 0; }
.shot-row figure { flex: 1 1 240px; max-width: 300px; margin: 0; }
.shot-row img { width: 100%; border-radius: 22px; border: 1px solid var(--border); display: block; }
.shot-row figcaption { font-size: 13px; color: var(--text-faint); text-align: center; margin-top: 10px; }

/* ---------- cards & grids ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 32px 0; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--bg-raised); border: 1px solid var(--border); border-radius: 16px; padding: 22px;
}
.step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 999px; background: rgba(255,184,0,0.14);
  color: var(--gold); font-weight: 700; font-size: 15px; margin-bottom: 12px;
}
.step h3 { margin: 0 0 6px; font-size: 17px; }
.step p { margin: 0; font-size: 15px; color: var(--text-dim); }

.pillars { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 32px 0; }
@media (min-width: 640px) { .pillars { grid-template-columns: 1fr 1fr; } }
.pillar { background: var(--bg-raised); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.pillar .glyph { font-size: 24px; color: var(--gold); margin-bottom: 10px; display: block; }
.pillar h3 { margin: 0 0 8px; font-size: 18px; }
.pillar p { margin: 0; font-size: 15px; color: var(--text-dim); }

.callout {
  background: var(--bg-raised); border: 1px solid var(--border); border-left: 3px solid var(--gold);
  border-radius: 12px; padding: 16px 20px; margin: 24px 0; font-size: 15px; color: var(--text-soft);
}
.callout p:last-child { margin-bottom: 0; }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 28px 0; }
@media (min-width: 640px) { .price-grid { grid-template-columns: 1fr 1fr; } }
.price-card { background: var(--bg-raised); border: 1px solid var(--border); border-radius: 18px; padding: 26px; }
.price-card.pro { border-color: rgba(255,184,0,0.5); }
.price-card .plan { font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-dim); }
.price-card.pro .plan { color: var(--gold); }
.price-card .amount { font-size: 34px; font-weight: 800; margin: 6px 0 2px; color: var(--text); }
.price-card .per { font-size: 14px; color: var(--text-faint); margin-bottom: 14px; }
.price-card ul { padding-left: 20px; margin: 0; }
.price-card li { font-size: 15px; color: var(--text-soft); }

/* ---------- tables ---------- */
.table-wrap { overflow-x: auto; margin: 26px 0; border: 1px solid var(--border); border-radius: 12px; }
table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: 14.5px; }
th, td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { background: var(--bg-raised); color: var(--text); font-weight: 650; white-space: nowrap; }
td { color: var(--text-soft); }
tr:last-child td { border-bottom: none; }
td strong { white-space: nowrap; }

/* ---------- FAQ ---------- */
.faq h3 { font-size: 17px; margin: 26px 0 6px; color: var(--text); }
.faq p { font-size: 15.5px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(180deg, #171310, #100e0b);
  border: 1px solid rgba(255,184,0,0.35); border-radius: 20px;
  padding: 34px 28px; margin: 48px 0 8px; text-align: center;
}
.cta-band h2 { margin: 0 0 8px; font-size: 24px; }
.cta-band p { color: var(--text-dim); max-width: 480px; margin: 0 auto 20px; font-size: 15.5px; }
.cta-band .fineprint { font-size: 12.5px; color: var(--text-faint); margin: 14px 0 0; }

/* ---------- footer ---------- */
footer { border-top: 1px solid #1a1a1a; margin-top: 40px; padding: 44px 0 56px; font-size: 14px; }
.footer-inner { max-width: 980px; margin: 0 auto; padding: 0 20px; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 32px; }
@media (min-width: 700px) { .footer-cols { grid-template-columns: repeat(4, 1fr); } }
.footer-cols h4 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-faint); margin-bottom: 12px; font-weight: 600; }
.footer-cols ul { list-style: none; padding: 0; margin: 0; }
.footer-cols li { margin-bottom: 9px; }
.footer-cols a { color: var(--text-dim); font-size: 14px; }
.footer-cols a:hover { color: var(--gold); text-decoration: none; }
.footer-bottom { color: var(--text-faint); font-size: 13px; display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; }
.footer-bottom a { color: var(--text-faint); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- misc ---------- */
.center { text-align: center; }
.small { font-size: 13.5px; color: var(--text-faint); }
.pill-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 20px; }
.pill-list li {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 999px;
  padding: 5px 14px; font-size: 13.5px; color: var(--text-soft); margin: 0;
}
