/* ===== DESIGN TOKENS ===== */
:root {
  --navy: #0a2540;
  --navy-light: #0f2e4f;
  --navy-mid: #163a5e;
  --accent: #4374F9;
  --accent-hover: #5a88fa;
  --accent-soft: rgba(67, 116, 249, 0.08);
  --accent-glow: rgba(67, 116, 249, 0.35);
  --surface: #f6f9fc;
  --surface-warm: #f0f3f8;
  --surface-card: #ffffff;
  --text: #0a2540;
  --text-secondary: #425466;
  --text-muted: #687385;
  --line: rgba(10, 37, 64, 0.08);
  --line-strong: rgba(10, 37, 64, 0.12);
  --white: #ffffff;
  --green: #0eba74;
  --green-soft: rgba(14, 186, 116, 0.1);
  --blue: #00a4ef;
  --blue-soft: rgba(0, 164, 239, 0.08);
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 8px 28px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 37, 64, 0.1);
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
}

/* ===== AEONIK FONT ===== */
@font-face {
  font-family: "Aeonik";
  src: url("fonts/Aeonik-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik";
  src: url("fonts/Aeonik-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik";
  src: url("fonts/Aeonik-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik";
  src: url("fonts/Aeonik-Black.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.075rem;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga", "calt", "ss01";
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== LAYOUT ===== */
.page-shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.page-shell-narrow {
  width: min(800px, calc(100% - 48px));
  margin: 0 auto;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Aeonik", "Inter", -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.015em;
  color: var(--text);
}

.brand-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 8px 14px;
  font-size: 0.94rem;
  color: var(--text-secondary);
  border-radius: var(--radius-pill);
  transition: color 0.15s;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a.is-active {
  color: var(--text);
  font-weight: 600;
}

.nav-cta {
  margin-left: 8px;
  padding: 8px 18px !important;
  background: var(--accent);
  color: var(--white) !important;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: background 0.15s;
}

.nav-cta:hover {
  background: var(--accent-hover);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  border-radius: var(--radius-pill);
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  margin: 0;
  font-family: "Aeonik", "Inter", -apple-system, sans-serif;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.018em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.eyebrow {
  margin: 0 0 16px;
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ===== BUTTONS ===== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
}

.button:active {
  transform: translateY(1px);
}

.button-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px var(--accent-glow);
}

.button-primary:hover {
  background: var(--accent-hover);
}

.button-secondary {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.button-secondary:hover {
  border-color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

.button-wide {
  width: 100%;
}

.button-arrow::after {
  content: " \2192";
  margin-left: 6px;
  transition: transform 0.15s;
}

.button-arrow:hover::after {
  transform: translateX(3px);
}

/* ===== HERO (shared base) ===== */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -100px -200px -100px -200px;
  z-index: 0;
  pointer-events: none;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.gradient-orb-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(67, 116, 249, 0.35) 0%, transparent 70%);
}

.gradient-orb-2 {
  width: 500px;
  height: 500px;
  top: 100px;
  left: -150px;
  background: radial-gradient(circle, rgba(110, 195, 244, 0.25) 0%, transparent 70%);
}

.gradient-orb-3 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: 20%;
  background: radial-gradient(circle, rgba(255, 97, 171, 0.15) 0%, transparent 70%);
}

.grid-texture {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 37, 64, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 37, 64, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 30% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 40%, black 20%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-content.hero-center {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-text {
  max-width: 56ch;
  margin: 20px 0 0;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.hero-center .hero-text {
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 36px 0 0;
}

.hero-center .hero-actions {
  justify-content: center;
}

/* ===== HERO WAITLIST ===== */
.hero-waitlist {
  display: flex;
  gap: 12px;
  margin: 36px 0 0;
  max-width: 480px;
}

.hero-center .hero-waitlist {
  margin-left: auto;
  margin-right: auto;
}

.hero-waitlist input {
  flex: 1;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.hero-waitlist input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.hero-waitlist input::placeholder {
  color: var(--text-muted);
}

.hero-note {
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-note.is-success {
  color: var(--green);
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-heading.section-heading-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 12px 0 0;
}

/* ===== SCROLLING LOGO SECTION ===== */
.logo-section {
  overflow: hidden;
}

.logo-scroll-wrapper {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-scroll-track {
  display: flex;
  gap: 48px;
  animation: logo-scroll 30s linear infinite;
  width: max-content;
}

.logo-scroll-track:hover {
  animation-play-state: paused;
}

@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-scroll-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.partner-logo {
  max-width: 160px;
  height: 48px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.logo-scroll-item:hover .partner-logo {
  opacity: 1;
}

.logo-service {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== STEP PRICE ===== */
.step-price {
  margin: 0 0 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

/* ===== PRODUCT CARDS (hub page) ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.products-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.partner-callout {
  margin-top: 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.product-card {
  position: relative;
  padding: 40px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  opacity: 0;
  transition: opacity 0.25s;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card--services::before {
  background: var(--accent);
}

.product-card--debt::before {
  background: var(--green);
}

.product-card--gigs::before {
  background: var(--blue);
}

.product-card--rvu::before {
  background: var(--navy);
}

.product-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.4rem;
}

.product-icon--services {
  background: var(--accent-soft);
  color: var(--accent);
}

.product-icon--debt {
  background: var(--green-soft);
  color: var(--green);
}

.product-icon--gigs {
  background: var(--blue-soft);
  color: var(--blue);
}

.product-icon--rvu {
  background: rgba(10, 37, 64, 0.08);
  color: var(--navy);
}

.product-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.product-card p {
  margin: 0 0 24px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.95rem;
  flex: 1;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  transition: gap 0.15s;
}

.product-link:hover {
  gap: 10px;
}

.product-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.15s;
}

.product-link:hover svg {
  transform: translateX(2px);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: "Aeonik", "Inter", -apple-system, sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  color: var(--text);
}

.trust-item span {
  display: block;
  margin-top: 4px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ===== ABOUT / NEWSLETTER SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.about-copy p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 12px;
}

.about-products {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-product-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.about-product-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.about-product-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.about-product-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.about-product-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 0 24px;
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stats-strip article {
  padding: 32px 28px;
  background: var(--white);
}

.stats-strip strong {
  display: block;
  font-family: "Aeonik", "Inter", -apple-system, sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  color: var(--text);
}

.stats-strip span {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== STEP CARDS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s;
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.step-number {
  display: inline-block;
  margin-bottom: 20px;
  font-family: "Aeonik", "Inter", -apple-system, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.step-card h3 {
  margin-bottom: 12px;
}

.step-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* ===== BENTO GRID ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bento-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(67, 116, 249, 0.2));
  opacity: 0;
  transition: opacity 0.2s;
}

.bento-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-wide {
  grid-column: span 2;
}

.bento-card h3 {
  margin-bottom: 10px;
}

.bento-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* ===== ELEVATED SECTION ===== */
.section-elevated {
  position: relative;
  margin: 0 calc(-50vw + 50%);
  padding: 80px calc(50vw - 50%);
  background:
    radial-gradient(ellipse at 20% 30%, rgba(67, 116, 249, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(110, 195, 244, 0.05) 0%, transparent 50%),
    var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-elevated::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10, 37, 64, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* ===== WALLET ===== */
.wallet-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.wallet-copy p {
  max-width: 48ch;
  line-height: 1.7;
  color: var(--text-secondary);
}

.wallet-features {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}

.wallet-features li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.wallet-features li strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
}

.wallet-features li span {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.wallet-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.wallet-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
}

.pill-accent {
  background: var(--accent-soft);
  color: var(--accent);
}

.pill-green {
  background: var(--green-soft);
  color: var(--green);
}

.wallet-balance-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.wallet-balance {
  display: block;
  font-family: "Aeonik", "Inter", -apple-system, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 4px 0 20px;
  color: var(--text);
}

.wallet-actions-row {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.wallet-action {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.15s;
}

.wallet-action-active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.wallet-recent {
  display: grid;
  gap: 0;
}

.wallet-tx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.wallet-tx p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
}

.wallet-tx span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.wallet-tx strong {
  font-size: 0.95rem;
  color: var(--green);
  white-space: nowrap;
}

.wallet-tx-debit {
  color: var(--text-muted) !important;
}

/* ===== FEATURES SPLIT ===== */
.features-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
}

.feature-label--green {
  background: var(--green-soft);
  color: var(--green);
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.feature-card > p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 20px;
}

.feature-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-details li {
  position: relative;
  padding: 10px 0 10px 20px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
  border-top: 1px solid var(--line);
}

.feature-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== TESTIMONIALS ===== */
.testimonial-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.testimonial-card-accent {
  background: linear-gradient(135deg, var(--accent-soft), rgba(110, 195, 244, 0.04));
  border-color: rgba(67, 116, 249, 0.1);
}

.quote {
  font-family: "Aeonik", "Inter", -apple-system, sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 0;
  color: var(--text);
}

.quote-meta {
  margin: 18px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 720px;
}

.faq-list details {
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.15s;
}

.faq-list details[open] {
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== WAITLIST SECTION ===== */
.waitlist-section {
  text-align: center;
}

.waitlist-inner {
  max-width: 600px;
  margin: 0 auto;
}

.waitlist-inner h2 {
  margin-bottom: 12px;
}

.waitlist-inner > p {
  color: var(--text-secondary);
  margin: 0 0 36px;
  font-size: 1.05rem;
}

.waitlist-form {
  text-align: left;
}

.waitlist-fields {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}

.waitlist-form label span {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.waitlist-form textarea {
  padding: 14px 16px;
  border-radius: var(--radius);
  min-height: 100px;
  resize: vertical;
}

.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.waitlist-inner > .form-note {
  margin: 18px 0 0;
  font-size: 0.9rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-note.is-success {
  color: var(--green);
}

/* ===== BOOKING SECTION (cal.com) ===== */
.booking-section {
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  text-align: center;
}

.booking-section h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.booking-section > p {
  color: var(--text-secondary);
  margin: 0 0 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 0 64px;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.footer-left {
  max-width: 280px;
}

.footer-brand {
  font-family: "Aeonik", "Inter", -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.015em;
}

.footer-tagline {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-attribution {
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-attribution a {
  color: var(--accent);
  font-weight: 600;
  transition: color 0.15s;
}

.footer-attribution a:hover {
  color: var(--accent-hover);
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--text);
}

/* ===== HERO SPLIT (text + phone) ===== */
.hero-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-phone {
  max-width: 480px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
}

/* ===== LEGAL PAGE ===== */
.legal-page {
  padding: 80px 0 60px;
}

.legal-page h1 {
  font-family: "Aeonik", "Inter", -apple-system, sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}

.legal-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.legal-page h2 {
  font-family: "Aeonik", "Inter", -apple-system, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2.5rem 0 0.75rem;
  letter-spacing: -0.02em;
}

.legal-page h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
}

.legal-page p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 1rem;
}

.legal-page ul {
  color: var(--text-secondary);
  line-height: 1.75;
  padding-left: 1.5rem;
  margin: 0 0 1rem;
}

.legal-page li {
  margin-bottom: 0.4rem;
}

.legal-page a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}

.legal-page a:hover {
  color: var(--accent-hover);
}

.legal-page .table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.legal-page th,
.legal-page td {
  text-align: left;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
}

.legal-page th {
  background: var(--surface);
  font-weight: 600;
  color: var(--text);
}

.legal-page td {
  color: var(--text-secondary);
}

/* ===== JOB BOARD ===== */
.job-board-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.job-board-heading .section-heading {
  margin-bottom: 0;
}

.job-board-count {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  padding-bottom: 6px;
}

.job-board-count strong {
  color: var(--accent);
  font-weight: 700;
}

.job-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.job-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.job-chip:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.job-chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.job-chip-count {
  font-size: 0.78rem;
  padding: 1px 7px;
  border-radius: var(--radius-pill);
  background: rgba(10, 37, 64, 0.06);
  color: var(--text-muted);
  font-weight: 700;
}

.job-chip.is-active .job-chip-count {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.job-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.job-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.job-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(67, 116, 249, 0.2));
  opacity: 0;
  transition: opacity 0.2s;
}

.job-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.job-card:hover::before {
  opacity: 1;
}

.job-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.job-logo {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Aeonik", "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  border: 1px solid var(--line);
}

.job-company {
  flex: 1;
  min-width: 0;
}

.job-company-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 2px;
}

.job-category {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.job-card h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
}

.job-description {
  margin: 0 0 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.93rem;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.job-tag {
  font-size: 0.76rem;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--text-secondary);
  font-weight: 600;
}

.job-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.job-rate {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.job-rate-value {
  font-family: "Aeonik", "Inter", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.job-rate-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.job-apply {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
}

.job-apply:hover {
  background: var(--navy-mid);
}

.job-apply::after {
  content: "\2192";
  transition: transform 0.15s;
}

.job-apply:hover::after {
  transform: translateX(2px);
}

.job-disclaimer {
  margin: 24px 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.job-empty {
  grid-column: 1 / -1;
  padding: 48px 24px;
  text-align: center;
  color: var(--text-muted);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-md);
}

/* ===== RESOURCES INDEX ===== */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.resource-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.resource-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.resource-card-category {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.resource-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  flex: 1;
}

.resource-body h3 {
  font-size: 1.2rem;
  line-height: 1.3;
}

.resource-excerpt {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  flex: 1;
}

.resource-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.resource-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

/* ===== ARTICLE (blog post) ===== */
.article-shell {
  width: min(720px, calc(100% - 48px));
  margin: 0 auto;
}

.article-header {
  padding: 72px 0 40px;
  border-bottom: 1px solid var(--line);
}

.article-header .eyebrow {
  margin-bottom: 20px;
}

.article-header h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.article-lede {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 28px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.article-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

.article-body {
  padding: 48px 0 64px;
  font-size: 1.075rem;
  line-height: 1.8;
  color: var(--text);
}

.article-body > * + * {
  margin-top: 1.2em;
}

.article-body h2 {
  font-size: 1.85rem;
  line-height: 1.2;
  margin-top: 2.2em;
  margin-bottom: 0.6em;
}

.article-body h3 {
  font-size: 1.25rem;
  margin-top: 1.8em;
  margin-bottom: 0.5em;
}

.article-body p {
  margin: 0;
  color: var(--text);
}

.article-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(67, 116, 249, 0.35);
  transition: text-decoration-color 0.15s;
}

.article-body a:hover {
  text-decoration-color: var(--accent);
}

.article-body strong {
  font-weight: 700;
  color: var(--text);
}

.article-body ul,
.article-body ol {
  margin: 0;
  padding-left: 1.4em;
  color: var(--text);
}

.article-body li {
  margin-bottom: 0.5em;
}

.article-body li::marker {
  color: var(--accent);
}

.article-body blockquote {
  margin: 1.6em 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--accent);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
}

.article-body hr {
  margin: 2em 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.platform-card {
  margin: 1.2em 0 0;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.platform-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.platform-card-head h3 {
  margin: 0;
  font-size: 1.2rem;
}

.platform-rate {
  font-family: "Aeonik", "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.platform-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
}

.article-cta {
  margin-top: 56px;
  padding: 40px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  color: var(--white);
  text-align: center;
}

.article-cta h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.article-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto 24px;
  max-width: 48ch;
  line-height: 1.6;
}

.article-cta .button-primary {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.article-cta .button-primary:hover {
  background: rgba(255, 255, 255, 0.92);
}

.article-footer {
  padding: 32px 0 80px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.article-footer a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.15s;
}

.article-footer a:hover {
  color: var(--accent);
}

/* ===== REVEAL ANIMATION ===== */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .wallet-grid {
    gap: 40px;
  }

  .bento-wide {
    grid-column: span 1;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid .product-card:last-child {
    grid-column: span 2;
  }

  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .page-shell,
  .header-inner,
  .footer-inner {
    width: min(100% - 32px, 1200px);
  }

  .hero {
    padding: 60px 0 48px;
  }

  .steps-grid,
  .features-split,
  .testimonial-section,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-split .hero-actions {
    justify-content: center;
  }

  .hero-split .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-phone {
    max-width: 260px;
  }

  .wallet-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-wide {
    grid-column: span 1;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .job-list {
    grid-template-columns: 1fr;
  }

  .job-board-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .article-header {
    padding: 48px 0 32px;
  }

  .article-body {
    padding: 36px 0 48px;
  }

  .article-cta {
    padding: 32px 24px;
  }

  .products-grid .product-card:last-child {
    grid-column: span 1;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust-strip {
    flex-direction: column;
    gap: 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .page-shell,
  .header-inner,
  .footer-inner {
    width: min(100% - 24px, 1200px);
  }

  .header-inner {
    padding: 12px 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: -12px;
    right: -12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .nav-cta {
    text-align: center;
    margin-left: 0 !important;
  }

  .hero {
    padding: 40px 0 32px;
  }

  .hero-waitlist {
    flex-direction: column;
    max-width: 100%;
  }

  .hero-waitlist input,
  .hero-waitlist .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .booking-section {
    padding: 28px;
  }
}
