/* Seakah marketing site — shared stylesheet (home + blog) */

:root {
  --primary-dark: #003366;
  --primary-mid: #006699;
  --footer-navy: #001a33;
  --text: #0b1b2b;
  --muted: #5c6b7a;
  --border: #e1e8ef;
  --bg-light: #f4f8fb;
  --white: #ffffff;
  --teal-start: #2f8f9c;
  --teal-end: #1c6b76;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--text);
  line-height: 1.55;
  background: var(--white);
  overflow-x: hidden;
}
a { color: var(--primary-mid); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; }

.wrap { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.wrap-blog { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ─── Buttons / pills ─────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-fill { background: var(--primary-dark); color: var(--white); box-shadow: 0 6px 18px rgba(0, 51, 102, 0.25); }
.btn-fill:hover { transform: translateY(-1px); background: #002347; color: var(--white); }
.btn-outline { border-color: var(--primary-dark); color: var(--primary-dark); background: transparent; }
.btn-outline:hover { background: var(--primary-dark); color: var(--white); }
.btn-outline-white { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: var(--white); color: var(--primary-dark); }
.btn-outline-white.teal-hover:hover { color: var(--primary-mid); }

.pill {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 9px 18px;
  border-radius: 999px;
  white-space: nowrap;
}

.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-mid);
  margin-bottom: 10px;
}

.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--primary-dark); margin: 0 0 14px; letter-spacing: -0.3px; }
.section-head p { color: var(--muted); font-size: 16.5px; margin: 0; }

#how-it-works, #services, #providers-agents, #speak-or-type, #providers, #agents, #detail-rides, #detail-spa, #detail-mechanic, #detail-maintenance, #detail-food, #detail-events, #detail-autoparts, #detail-consultations { scroll-margin-top: 116px; }

/* ─── Header ───────────────────────────────────────────────────────────────── */

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap { height: 96px; display: flex; align-items: center; justify-content: space-between; position: relative; }
.site-header .logo { display: flex; align-items: center; gap: 8px; text-decoration: none; flex: 0 0 auto; }
.site-header .logo img { height: 74px; width: auto; display: block; }

.nav ul { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 18px; white-space: nowrap; }
.nav a:hover { color: var(--primary-dark); }
.nav a.active { color: var(--primary-dark); font-weight: 700; }

.header-actions { display: flex; gap: 12px; align-items: center; }

.nav-toggle {
  display: none;
  background: none; border: none; font-size: 22px; color: var(--primary-dark);
  cursor: pointer; padding: 4px; flex: 0 0 auto;
}
.mobile-nav {
  display: none;
  position: absolute; top: 96px; left: 0; right: 0;
  background: var(--white);
  flex-direction: column; padding: 20px 24px; gap: 16px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(0, 51, 102, 0.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 18px; }
.mobile-nav-actions {
  display: flex; gap: 10px; margin-top: 6px; padding-top: 16px; border-top: 1px solid var(--border);
}
.mobile-nav-actions .btn { flex: 1; }

@media (max-width: 880px) {
  .nav, .header-actions .btn { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
}

/* Blog header is more compact */
.site-header.compact .wrap { height: 68px; max-width: 1160px; }
.site-header.compact .logo img { height: 44px; }
.site-header.compact .nav a { font-size: 15px; }

/* ─── Hero ─────────────────────────────────────────────────────────────────── */

.hero {
  background: linear-gradient(160deg, var(--bg-light) 0%, var(--white) 60%);
  padding: 128px 0 72px;
  overflow: hidden;
  position: relative;
}
.hero-parallax { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: floatBlob 9s ease-in-out infinite;
}
.hero-blob-1 { top: -60px; right: -40px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(0, 102, 153, 0.14), transparent 70%); }
.hero-blob-2 { bottom: -80px; left: -60px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(0, 51, 102, 0.10), transparent 70%); animation-duration: 11s; animation-direction: reverse; }

.hero-inner {
  max-width: 900px; margin: 0 auto; padding: 0 24px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px;
  position: relative;
}

.coming-soon-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 22px; border-radius: 999px;
  background: rgba(0, 102, 153, 0.08);
  animation: fadeUp 0.7s ease both;
}
.pulse-dot { position: relative; width: 13px; height: 13px; display: inline-flex; overflow: visible; }
.pulse-dot span.ring {
  position: absolute; top: 0; left: 0; width: 13px; height: 13px; border-radius: 50%;
  border: 2px solid rgba(0, 102, 153, 0.5);
  animation: micPulse 2.2s ease-out infinite;
}
.pulse-dot span.ring.delay { animation-delay: 0.7s; }
.pulse-dot span.core { position: relative; width: 13px; height: 13px; border-radius: 50%; background: var(--primary-mid); }
.coming-soon-badge .label { font-size: 21px; font-weight: 700; letter-spacing: 0.5px; color: var(--primary-mid); animation: softPulseText 2.2s ease-in-out infinite; }

.photo-grid {
  width: 100%; max-width: 680px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  animation: fadeUp 0.8s ease 0.1s both;
}
.photo-grid figure {
  margin: 0; border-radius: 18px; overflow: hidden; aspect-ratio: 1;
  border: 4px solid var(--white);
  box-shadow: 0 14px 26px rgba(0, 51, 102, 0.2);
}
.photo-grid figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-grid figure a { display: block; width: 100%; height: 100%; cursor: pointer; }
.photo-grid figure.rot-n5 { transform: rotate(-5deg); }
.photo-grid figure.rot-4 { transform: rotate(4deg); margin-top: 14px; }
.photo-grid figure.rot-n3 { transform: rotate(-3deg); }
.photo-grid figure.rot-n4 { transform: rotate(-4deg); }
.photo-grid figure.rot-3 { transform: rotate(3deg); }
.photo-grid figure.rot-2 { transform: rotate(2deg); margin-top: 14px; }
.photo-grid figure.rot-n2 { transform: rotate(-2deg); }
.consult-tile { background: linear-gradient(135deg, var(--primary-mid), var(--primary-dark)); }
.consult-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; width: 100%; height: 100%; }
.consult-grid > span { display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.15); }
.consult-photo { border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 20px 40px rgba(0, 51, 102, 0.14); background: linear-gradient(135deg, var(--primary-mid), var(--primary-dark)); }
.consult-grid.large > span { flex-direction: column; gap: 8px; }
.consult-grid.large > span em { font-style: normal; font-size: 13px; font-weight: 600; color: #fff; letter-spacing: 0.3px; }

.wordmark { font-size: clamp(3rem, 7vw, 5.2rem); font-weight: 800; line-height: 1; letter-spacing: -1.5px; margin: 0 0 10px; animation: fadeUp 0.7s ease 0.05s both; }
.wordmark span { color: var(--primary-mid); }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 46ch; margin: 0 auto; animation: fadeUp 0.7s ease 0.16s both; }
.hero-highlight { color: var(--primary-mid); font-weight: 700; margin-top: 8px; animation-delay: 0.2s; }

.mic-btn { position: relative; width: 100%; display: flex; align-items: center; justify-content: center; cursor: pointer; text-decoration: none; }
.mic-btn .ring { position: absolute; width: 71px; height: 71px; border-radius: 50%; border: 2px solid rgba(0, 102, 153, 0.5); animation: micPulse 2.2s ease-out infinite; }
.mic-btn .ring.delay { animation-delay: 0.7s; }
.mic-btn .core {
  position: relative; width: 61px; height: 61px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-mid), var(--primary-dark));
  box-shadow: 0 16px 32px rgba(0, 51, 102, 0.4);
  display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--white); z-index: 1;
}

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.7s ease 0.24s both; }

/* ─── Services ─────────────────────────────────────────────────────────────── */

.services-section { padding: 96px 0; position: relative; overflow: hidden; }
.services-section .decor-blob {
  position: absolute; top: -100px; right: -120px; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 153, 0.08), transparent 70%); pointer-events: none;
}

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 30px 26px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover { box-shadow: 0 16px 30px rgba(0, 51, 102, 0.1); transform: translateY(-3px); }
.icon-tile { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.icon-tile.mid { background: linear-gradient(135deg, var(--primary-mid), #00506e); box-shadow: 0 10px 18px rgba(0, 102, 153, 0.25); }
.icon-tile.dark { background: linear-gradient(135deg, var(--primary-dark), var(--footer-navy)); box-shadow: 0 10px 18px rgba(0, 51, 102, 0.25); }
.icon-tile.teal { background: linear-gradient(135deg, var(--teal-start), var(--teal-end)); box-shadow: 0 10px 18px rgba(47, 143, 156, 0.25); }
.service-card h3 { margin: 0 0 10px; font-size: 20px; color: var(--primary-dark); }
.service-card p { margin: 0; color: var(--muted); font-size: 16px; }

.marquee-wrap { margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--border); overflow: hidden; }
.marquee-wrap .caption { text-align: center; font-size: 13.5px; color: var(--muted); margin: 0 0 18px; }
.marquee-track { display: flex; width: max-content; gap: 12px; animation: marquee 32s linear infinite; }

/* ─── Service detail rows ──────────────────────────────────────────────────── */

.service-detail-section { padding: 0 0 96px; }
.detail-rows { display: flex; flex-direction: column; gap: 88px; }
.detail-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 48px; align-items: center; }
.detail-row .photo { border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 20px 40px rgba(0, 51, 102, 0.14); }
.detail-row .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-row.flip .photo { order: 2; }
.detail-row.flip .copy { order: 1; }
.detail-row .category-tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--primary-mid); background: rgba(0, 102, 153, 0.08); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.detail-row h3 { margin: 0 0 12px; font-size: 23px; color: var(--primary-dark); }
.detail-row p.copy-body { margin: 0 0 18px; color: var(--muted); font-size: 16.5px; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { padding-left: 24px; position: relative; margin-bottom: 9px; font-size: 15.5px; color: var(--text); }
.check-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--primary-mid); font-weight: 700; }
.check-list.on-dark li { color: rgba(255, 255, 255, 0.92); }
.check-list.on-dark li::before { color: #fff; }

.promo-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.promo-card { border-radius: 18px; padding: 32px; color: #fff; position: relative; overflow: hidden; }
.promo-card::before { content: ''; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; border-radius: 50%; pointer-events: none; }
.promo-card.navy { background: linear-gradient(135deg, var(--primary-dark) 0%, #002347 100%); }
.promo-card.navy::before { background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%); }
.promo-card.teal { background: linear-gradient(135deg, var(--primary-mid) 0%, #004d73 100%); }
.promo-card.teal::before { background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%); }
.promo-card .tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; background: rgba(255, 255, 255, 0.15); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; position: relative; }
.promo-card h4 { margin: 0 0 10px; font-size: 21px; position: relative; }
.promo-card p { margin: 0; color: rgba(255, 255, 255, 0.85); font-size: 15.5px; position: relative; }

/* ─── How it works ─────────────────────────────────────────────────────────── */

.how-section { background: var(--bg-light); padding: 96px 0; position: relative; overflow: hidden; }
.how-section .decor-blob { position: absolute; bottom: -120px; left: -100px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(0, 51, 102, 0.06), transparent 70%); pointer-events: none; }
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; position: relative; }
.step-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 22px 18px 26px;
  position: relative; transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.step-card:hover { box-shadow: 0 14px 26px rgba(0, 51, 102, 0.1); transform: translateY(-3px); }
.step-card .num { width: 30px; height: 30px; border-radius: 50%; background: var(--primary-dark); color: #fff; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.step-card.last .num { background: var(--primary-mid); }
.step-card h4 { margin: 0 0 8px; font-size: 16px; color: var(--primary-dark); }
.step-card p { margin: 0; font-size: 14.5px; color: var(--muted); }
.step-arrow { position: absolute; right: -24px; top: 50%; margin-top: -8px; z-index: 1; }
@media (max-width: 880px) { .step-arrow { display: none; } }

/* ─── Comparison ───────────────────────────────────────────────────────────── */

.compare-section { padding: 96px 0; }
.compare-panels { display: flex; flex-wrap: wrap; gap: 0; align-items: stretch; justify-content: center; max-width: 920px; margin: 0 auto; }
.compare-panel { flex: 1 1 320px; background: var(--white); padding: 30px; border: 1px solid var(--border); }
.compare-panel.without { border-radius: 14px 0 0 14px; border-right: none; opacity: 0.85; }
.compare-panel.with { border-radius: 0 14px 14px 0; border: 2px solid var(--primary-mid); box-shadow: 0 20px 40px rgba(0, 102, 153, 0.14); }
.compare-panel h3 { margin: 0 0 16px; color: var(--primary-dark); font-size: 18px; }
.compare-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.compare-pills span { font-size: 12.5px; padding: 5px 10px; border-radius: 999px; background: var(--bg-light); color: var(--muted); border: 1px solid var(--border); }
.compare-panel ul { margin: 0; padding-left: 20px; color: var(--muted); font-size: 15.5px; }
.compare-panel ul li { margin-bottom: 8px; }
.compare-vs {
  align-self: center; font-weight: 700; color: #fff; font-size: 13px; background: var(--muted);
  width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto; z-index: 1; margin: 0 -17px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ─── Providers / Agents split ─────────────────────────────────────────────── */

.split-section { background: var(--bg-light); padding: 96px 0 128px; }
.benefit-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 40px; }
.benefit { display: flex; align-items: flex-start; gap: 14px; }
.benefit .icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(0, 102, 153, 0.1); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.benefit h4 { margin: 0 0 4px; font-size: 15.5px; color: var(--primary-dark); }
.benefit p { margin: 0; font-size: 14px; color: var(--muted); }

.split-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.split-card { border-radius: 14px; padding: 36px 32px; color: #fff; position: relative; overflow: hidden; }
.split-card::before { content: ''; position: absolute; top: -50px; right: -50px; width: 180px; height: 180px; border-radius: 50%; pointer-events: none; }
.split-card.navy { background: linear-gradient(135deg, var(--primary-dark) 0%, #002347 100%); box-shadow: 0 24px 48px rgba(0, 51, 102, 0.22); }
.split-card.navy::before { background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%); }
.split-card.teal { background: linear-gradient(135deg, var(--primary-mid) 0%, #004d73 100%); box-shadow: 0 24px 48px rgba(0, 102, 153, 0.22); }
.split-card.teal::before { background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%); }
.split-card .tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; background: rgba(255, 255, 255, 0.15); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; position: relative; }
.split-card h3 { margin: 0 0 12px; font-size: 24px; }
.split-card p { color: rgba(255, 255, 255, 0.85); margin: 0 0 22px; font-size: 16px; }

/* ─── Footer ───────────────────────────────────────────────────────────────── */

.site-footer {
  background: radial-gradient(circle at 12% 0%, rgba(0, 102, 153, 0.28), transparent 55%) var(--footer-navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 28px;
  position: relative;
}
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary-mid), var(--primary-dark)); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 36px; margin-bottom: 40px; }
.footer-brand a { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.footer-brand .mark { width: 9px; height: 9px; background: #1a86b8; border-radius: 2px; transform: rotate(45deg); display: inline-block; }
.footer-brand .name { font-weight: 800; font-size: 20px; color: #fff; }
.footer-brand p { color: rgba(255, 255, 255, 0.6); font-size: 14px; margin-top: 12px; max-width: 32ch; }
.footer-col h5 { font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin: 0 0 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { text-decoration: none; color: rgba(255, 255, 255, 0.85); font-size: 14.5px; }
.link-btn {
  background: none; border: none; padding: 0; margin: 0; cursor: pointer;
  font-family: inherit; text-decoration: none; color: rgba(255, 255, 255, 0.85); font-size: 14.5px;
}
.link-btn:hover { color: #fff; }
.store-links { display: flex; flex-direction: column; gap: 10px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 10px; padding: 8px 12px; font-size: 13.5px; width: fit-content;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.7); }

/* ─── Waitlist modal (also serves "Register your business" / "Get the App") ─── */

.modal-overlay {
  display: none;
  position: fixed; inset: 0; background: rgba(0, 20, 40, 0.55); z-index: 200;
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-card {
  background: var(--white); border-radius: 20px; max-width: 560px; width: 100%; max-height: 85vh; overflow-y: auto;
  padding: 40px 36px; box-shadow: 0 30px 60px rgba(0, 20, 40, 0.3); position: relative; text-align: left;
}
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%;
  border: none; background: var(--bg-light); color: var(--primary-dark); font-size: 16px; cursor: pointer;
}
.modal-card h2 { font-size: 32px; font-weight: 800; color: var(--primary-dark); margin: 0 0 8px; }
.modal-card .modal-intro { margin: 0 0 24px; color: var(--muted); font-size: 16px; }

.type-toggle { display: flex; gap: 10px; margin-bottom: 20px; }
.type-toggle button {
  flex: 1; padding: 12px; border-radius: 10px; border: 2px solid var(--border); background: var(--white);
  color: var(--muted); font-weight: 600; font-size: 15px; cursor: pointer; transition: all 0.15s ease;
}
.type-toggle button.active { border-color: var(--primary-mid); background: rgba(0, 102, 153, 0.08); color: var(--primary-dark); }

.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--primary-dark); margin-bottom: 6px; }
.form-field input, .form-field select {
  width: 100%; padding: 11px 14px; border-radius: 10px; border: 1px solid var(--border);
  font-size: 15px; font-family: inherit; color: var(--text); background: var(--white);
}
.form-field input:focus, .form-field select:focus { outline: none; border-color: var(--primary-mid); }
.form-field.hidden { display: none; }

.form-error { color: #b00020; font-size: 13.5px; margin: -6px 0 16px; }
.form-note { color: var(--muted); font-size: 13px; margin: 0 0 16px; }

.waitlist-success { text-align: center; padding: 12px 0; }
.waitlist-success .icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(0, 102, 153, 0.1); color: var(--primary-mid); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 26px; }
.waitlist-success h2 { margin: 0 0 8px; }
.waitlist-success p { color: var(--muted); margin: 0; }

/* ─── Get the App modal ───────────────────────────────────────────────────── */

.app-option-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.app-option {
  display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--text);
  border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px; transition: border-color 0.15s ease, background 0.15s ease;
}
.app-option:hover { border-color: var(--primary-mid); background: rgba(0, 102, 153, 0.05); }
.app-option-icon {
  flex: none; width: 40px; height: 40px; border-radius: 10px; background: var(--bg-light);
  display: flex; align-items: center; justify-content: center; color: var(--primary-dark);
}
.app-option-text { display: flex; flex-direction: column; gap: 2px; }
.app-option-text strong { font-size: 15.5px; color: var(--primary-dark); }
.app-option-text span { font-size: 13px; color: var(--muted); }
.app-option.disabled {
  cursor: default; pointer-events: none; opacity: 0.55;
}
.app-modal-footnote { font-size: 13.5px; color: var(--muted); margin: 0; text-align: center; }
.app-modal-footnote a { color: var(--primary-mid); font-weight: 600; }

/* ─── Chat widget ──────────────────────────────────────────────────────────── */

.chat-dock { position: fixed; bottom: 24px; right: 24px; z-index: 100; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.chat-panel {
  display: none;
  width: 340px; max-width: calc(100vw - 48px); height: 460px; background: var(--white);
  border-radius: 18px; box-shadow: 0 24px 60px rgba(0, 51, 102, 0.28);
  flex-direction: column; overflow: hidden; border: 1px solid var(--border);
}
.chat-panel.open { display: flex; }
.chat-header { background: linear-gradient(135deg, var(--primary-dark), #002347); color: #fff; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; }
.chat-header .title { font-weight: 700; font-size: 15px; }
.chat-header .subtitle { font-size: 12px; color: rgba(255, 255, 255, 0.7); }
.chat-header button { background: rgba(255, 255, 255, 0.15); border: none; color: #fff; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: 16px; line-height: 1; }
.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: var(--bg-light); }
.chat-bubble-row { display: flex; }
.chat-bubble-row.user { justify-content: flex-end; }
.chat-bubble-row.assistant { justify-content: flex-start; }
.chat-bubble { padding: 10px 14px; font-size: 13.5px; max-width: 80%; }
.chat-bubble.user { background: var(--primary-dark); color: #fff; border-radius: 14px 14px 4px 14px; }
.chat-bubble.assistant { background: #fff; border: 1px solid var(--border); color: var(--text); border-radius: 14px 14px 14px 4px; }
.chat-input-row { padding: 12px; border-top: 1px solid var(--border); display: flex; gap: 8px; background: #fff; }
.chat-input-row input { flex: 1; border: 1px solid var(--border); border-radius: 999px; padding: 10px 16px; font-size: 14px; outline: none; font-family: inherit; }
.chat-input-row button, .chat-launcher {
  border-radius: 50%; border: none; color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; flex: 0 0 auto;
}
.chat-input-row button { width: 40px; height: 40px; background: var(--primary-mid); }
.chat-launcher { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary-mid), var(--primary-dark)); box-shadow: 0 16px 32px rgba(0, 51, 102, 0.35); }

/* ─── Scroll reveal ────────────────────────────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.4s; }

/* ─── Blog ─────────────────────────────────────────────────────────────────── */

.blog-hero { background: linear-gradient(160deg, var(--bg-light) 0%, var(--white) 60%); padding: 64px 0 48px; }
.blog-hero h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--primary-dark); margin: 0; letter-spacing: -0.3px; }
.blog-list { padding: 16px 0 96px; }
.blog-post { padding: 40px 0; border-bottom: 1px solid var(--border); }
.blog-post .date { font-size: 13.5px; color: var(--muted); margin-bottom: 8px; }
.blog-post h2 { font-size: 26px; color: var(--primary-dark); margin: 0 0 14px; letter-spacing: -0.2px; }
.blog-post .excerpt { font-size: 17px; color: var(--muted); margin: 0 0 22px; }
.blog-post .body { font-size: 16.5px; line-height: 1.7; color: var(--text); }
.blog-post .body p { margin: 0 0 18px; }
.blog-post .body h1,
.blog-post .body h2,
.blog-post .body h3,
.blog-post .body h4 { color: var(--primary-dark); margin: 28px 0 14px; letter-spacing: -0.2px; }
.blog-post .body ul,
.blog-post .body ol { margin: 0 0 18px; padding-left: 24px; }
.blog-post .body li { margin-bottom: 8px; }
.blog-post .body blockquote { margin: 0 0 18px; padding: 4px 20px; border-left: 3px solid var(--border); color: var(--muted); }
.blog-post .body img { max-width: 100%; height: auto; border-radius: 8px; margin: 8px 0 18px; display: block; }
.blog-post .body iframe { display: block; width: 100%; aspect-ratio: 16 / 9; height: auto; margin: 8px 0 18px; border-radius: 8px; border: none; }
.blog-post .body a { color: var(--primary); }

.blog-footer { background: var(--primary-dark); color: #fff; padding: 32px 0; }
.blog-footer .wrap { max-width: 1160px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: rgba(255, 255, 255, 0.5); }
.blog-footer a { color: rgba(255, 255, 255, 0.7); }

/* ─── Animations ───────────────────────────────────────────────────────────── */

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes micPulse { 0% { transform: scale(0.9); opacity: 0.55; } 70% { transform: scale(1.9); opacity: 0; } 100% { transform: scale(1.9); opacity: 0; } }
@keyframes softPulseText { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.3; transform: scale(1.06); } }
@keyframes floatBlob { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(14px, -18px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 480px) {
  .modal-card { padding: 28px 22px; }
}
