/* ---------- Transcriptioneer crowdfunding landing ---------- */

:root {
  --bg: #060a16;
  --bg-1: #0a1024;
  --bg-2: #0d1530;
  --surface: #101a38;
  --surface-2: #131f42;
  --border: rgba(148, 178, 255, 0.14);
  --border-strong: rgba(148, 178, 255, 0.28);
  --text: #eef2ff;
  --text-muted: #9aa8cf;
  --text-faint: #6b769b;
  --accent: #3b82f6;
  --accent-2: #60a5fa;
  --accent-soft: rgba(59, 130, 246, 0.14);
  --success: #34d399;
  --gold: #f4c95d;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 60px -20px rgba(0, 10, 40, 0.6);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { color-scheme: dark; scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(ellipse 1200px 600px at 15% -10%, #142255 0%, transparent 60%),
              radial-gradient(ellipse 900px 500px at 100% 0%, #0e3a5f 0%, transparent 55%),
              var(--bg);
  color: var(--text);
  font-family: "Segoe UI", ui-sans-serif, system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.eyebrow--accent { color: var(--accent-2); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: white;
  box-shadow: 0 8px 24px -8px rgba(59, 130, 246, 0.6);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(59, 130, 246, 0.75); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.04); }
.btn--outline {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}
.btn--outline:hover { border-color: var(--border-strong); color: var(--text); }
.btn--sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 10, 22, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: var(--text);
  min-width: 0;
  flex-shrink: 1;
}
.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.brand__mark { color: var(--accent-2); flex-shrink: 0; width: 30px; height: 30px; }
.nav__links {
  display: flex;
  gap: 1.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.nav__links a:hover { color: var(--text); }

/* ---------- hero ---------- */
.hero { max-width: var(--container); margin: 0 auto; padding: 3.5rem 1.5rem 2rem; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: auto auto;
  gap: 1.5rem 2.5rem;
}
.hero__copy { grid-column: 1; grid-row: 1; align-self: center; }
.hero__art { grid-column: 2; grid-row: 1 / span 2; }
.pledge-card { grid-column: 1; grid-row: 2; align-self: start; }

h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.accent { color: var(--accent-2); }
.hero__lede {
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 42ch;
}
.hero__ctas { display: flex; gap: 0.85rem; margin-top: 1.75rem; flex-wrap: wrap; }
.hero__trust {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-faint);
  font-size: 0.85rem;
}

.hero__art-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 8 / 7;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  background: var(--bg-2);
}
.hero__art-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}
.hero__art-frame--float { animation: float-art 6s ease-in-out infinite; }
@keyframes float-art {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__art-frame--float { animation: none; }
  .pill--live .dot { animation: none; }
}

.pledge-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}
.pledge-card__row--top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}
.pill--live { background: rgba(52, 211, 153, 0.14); color: var(--success); }
.pill--live .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.25);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.25); }
  50% { box-shadow: 0 0 0 7px rgba(52, 211, 153, 0.05); }
}
.pledge-card__amount { font-size: 2rem; font-weight: 700; }
.pledge-card__amount span { font-size: 1rem; font-weight: 500; color: var(--text-faint); }
.pledge-card__goal { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.15rem; }
.progress { margin-top: 1rem; height: 8px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); overflow: hidden; }
.progress__bar { height: 100%; min-width: 6px; border-radius: inherit; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.progress__pct { text-align: right; font-size: 0.75rem; color: var(--text-faint); margin-top: 0.35rem; }
.pledge-card__stats { display: flex; gap: 2rem; margin: 1.1rem 0 1.3rem; }
.pledge-card__stats strong { display: block; font-size: 1.1rem; }
.pledge-card__stats span { font-size: 0.78rem; color: var(--text-faint); }
.pledge-card .btn { margin-bottom: 0.6rem; }
.pledge-card__fine { font-size: 0.75rem; color: var(--text-faint); line-height: 1.5; margin-top: 0.9rem; }

/* ---------- trusted ---------- */
.trusted {
  max-width: var(--container);
  margin: 2.5rem auto 0;
  padding: 1.75rem 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trusted__label { text-align: center; color: var(--text-faint); font-size: 0.85rem; margin-bottom: 1.25rem; }
.trusted__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.trusted__list li { display: flex; align-items: center; gap: 0.5rem; }
.trusted__list svg { color: var(--accent-2); }

/* ---------- split (problem/solution) ---------- */
.split {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2.5rem;
  align-items: center;
}
.split h2 { font-size: 1.6rem; line-height: 1.25; margin-top: 0.6rem; font-weight: 700; }
.checklist { margin-top: 1.25rem; display: grid; gap: 0.65rem; }
.checklist li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.15rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--border-strong);
}
.checklist li::after {
  content: "\2713";
  position: absolute;
  left: 3.5px; top: 0.02rem;
  font-size: 0.7rem;
  color: var(--accent-2);
}
.split__closer { margin-top: 1.4rem; font-weight: 600; color: var(--text); }
.split__closer u { text-decoration-color: var(--accent-2); }
.split__art {
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 230px;
  aspect-ratio: 6 / 5;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.split__art img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }

/* ---------- product ---------- */
.product { max-width: var(--container); margin: 0 auto; padding: 3rem 1.5rem 4rem; text-align: left; }
.product h2 { font-size: 1.9rem; font-weight: 700; margin-top: 0.5rem; }
.product__grid {
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.product__features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-soft);
}
.feature-card:last-child { grid-column: 1 / -1; }
.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-2);
  margin-bottom: 0.85rem;
}
.feature-card h3 { font-size: 0.98rem; font-weight: 600; }
.feature-card p { margin-top: 0.4rem; font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.product__preview {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

/* ---------- rewards ---------- */
.rewards { max-width: var(--container); margin: 0 auto; padding: 2rem 1.5rem 4rem; text-align: center; }
.rewards__grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.1rem;
  text-align: left;
}
.tier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.tier:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-soft);
}
.tier--highlight {
  border-color: rgba(244, 201, 93, 0.4);
  background: linear-gradient(180deg, rgba(244, 201, 93, 0.08), var(--surface) 40%);
}
.tier__name { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; color: var(--text-faint); }
.tier__price { font-size: 1.5rem; font-weight: 700; margin-top: 0.3rem; }
.tier__price span { font-size: 0.85rem; font-weight: 500; color: var(--text-faint); }
.tier__art {
  margin: 1rem 0;
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
  color: var(--accent-2);
}
.tier__art--heart { color: #f472b6; background: rgba(244, 114, 182, 0.14); }
.tier__art--crown { color: var(--gold); background: rgba(244, 201, 93, 0.14); }
.tier__art--feather { color: #a78bfa; background: rgba(167, 139, 250, 0.14); }
.tier__list { display: grid; gap: 0.5rem; flex: 1; }
.tier__list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 1.1rem;
}
.tier__list li::before {
  content: "\2713";
  position: absolute; left: 0; top: 0;
  color: var(--accent-2);
  font-size: 0.75rem;
}
.tier__claimed { margin-top: 1.2rem; font-size: 0.75rem; color: var(--text-faint); }
.tier__cta { margin-top: 1rem; font-size: 0.82rem; padding: 0.65rem 1rem; }

/* ---------- roadmap + team ---------- */
.lower {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.roadmap, .team {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.stepper {
  margin-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.stepper::before {
  content: "";
  position: absolute;
  top: 12px; left: 12px; right: 12px;
  height: 2px;
  background: var(--border-strong);
  z-index: 0;
}
.stepper li {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-faint);
}
.stepper__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--border-strong);
  font-size: 0.75rem;
  color: transparent;
}
.stepper li.is-done .stepper__dot {
  background: var(--accent);
  border-color: var(--accent-2);
  color: white;
}
.stepper li.is-current .stepper__dot {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px var(--accent-soft);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.stepper li.is-current p strong { color: var(--accent-2); }
@media (prefers-reduced-motion: reduce) {
  .stepper li.is-current .stepper__dot { animation: none; }
}
.stepper li p strong { display: block; color: var(--text); font-size: 0.8rem; margin-bottom: 0.2rem; }

.team__grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.team__grid--solo { grid-template-columns: 1fr; justify-items: center; }
.team__grid--solo .team-card__avatar { width: 72px; height: 72px; font-size: 1.3rem; }
.team-card { text-align: center; }
.team-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  margin: 0 auto 0.6rem;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--c1), var(--c2));
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.team-card__name { font-size: 0.85rem; font-weight: 600; }
.team-card__role { font-size: 0.75rem; color: var(--text-faint); margin-top: 0.15rem; }
.team__note { margin-top: 1.5rem; font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ---------- closing CTA ---------- */
.closing { max-width: var(--container); margin: 0 auto; padding: 1rem 1.5rem 4rem; }
.closing__inner {
  background: linear-gradient(150deg, var(--bg-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem 2rem;
  align-items: center;
}
.closing__art {
  grid-row: 1 / span 2;
  width: 160px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.closing__art img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.closing__copy h2 { font-size: 1.6rem; font-weight: 700; max-width: 24ch; }
.closing__copy p { color: var(--text-muted); margin-top: 0.5rem; }
.closing__copy .btn { margin-top: 1.25rem; }
.closing__trust {
  grid-column: 2;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.closing__trust li { display: flex; gap: 0.6rem; align-items: flex-start; }
.closing__trust svg { color: var(--accent-2); flex-shrink: 0; margin-top: 0.1rem; }
.closing__trust strong { display: block; font-size: 0.82rem; }
.closing__trust span { font-size: 0.75rem; color: var(--text-faint); }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 2rem 1.5rem; }
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
}
.brand--footer span { display: flex; flex-direction: column; }
.brand--footer small { font-weight: 400; letter-spacing: normal; color: var(--text-faint); font-size: 0.7rem; text-transform: none; }
.site-footer__copy { font-size: 0.78rem; color: var(--text-faint); }
.site-footer__links { display: flex; gap: 1.25rem; font-size: 0.82rem; color: var(--text-muted); }
.site-footer__social { display: flex; gap: 1rem; color: var(--text-faint); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
  .hero__art { grid-column: 1; grid-row: 1; margin-bottom: 1.5rem; }
  .hero__copy { grid-column: 1; grid-row: 2; }
  .pledge-card { grid-column: 1; grid-row: 3; }
  .split { grid-template-columns: 1fr; text-align: center; }
  .split__art { margin: 0 auto; }
  .checklist li { text-align: left; display: inline-block; }
  .product__grid { grid-template-columns: 1fr; }
  .product__features { grid-template-columns: 1fr 1fr; }
  .lower { grid-template-columns: 1fr; }
  .closing__inner { grid-template-columns: 1fr; text-align: center; }
  .closing__art { margin: 0 auto; grid-row: 1; }
  .closing__trust { grid-column: 1; justify-content: center; }
  .nav__links { display: none; }
}

@media (max-width: 600px) {
  .product__features { grid-template-columns: 1fr; }
  .trusted__list { gap: 1.25rem 1.75rem; }
}

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 460px) {
  .nav__inner { padding: 0.85rem 1rem; }
  .brand { font-size: 0.78rem; gap: 0.5rem; }
  .brand__mark { width: 26px; height: 26px; }
  .nav .btn--sm { padding: 0.55rem 0.9rem; font-size: 0.78rem; }
}
