/* ===========================================================
   EMBLLM — shared stylesheet
   =========================================================== */

:root {
  --navy: #0b2540;
  --navy-light: #123456;
  --teal: #0f9d8c;
  --teal-dark: #0b7d70;
  --ink: #14212e;
  --ink-soft: #4c5c6b;
  --line: #e2e8ef;
  --bg: #ffffff;
  --bg-soft: #f5f8fa;
  --bg-navy-soft: #10304f;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(11, 37, 64, 0.08);
  --max-width: 1120px;
  --font: "Inter", -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);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 16px; color: var(--navy); }
h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 16px; color: var(--ink-soft); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(15, 157, 140, 0.1);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: #ffffff; }
.btn-primary:hover { background: var(--teal-dark); box-shadow: 0 6px 18px rgba(15, 157, 140, 0.35); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-on-navy { background: var(--teal); color: #ffffff; }
.btn-on-navy:hover { background: #12b3a0; }
.btn-outline-on-navy { background: transparent; color: #ffffff; border-color: rgba(255,255,255,0.35); }
.btn-outline-on-navy:hover { border-color: #ffffff; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logo .mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
}
.logo .mark-img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--teal-dark); }
.nav-links a.active { color: var(--teal-dark); }
.nav-login-mobile { display: none; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
}

/* Hero */
.hero {
  background: radial-gradient(circle at 15% 20%, rgba(15,157,140,0.10), transparent 45%),
              linear-gradient(180deg, var(--bg-soft) 0%, #ffffff 65%);
  padding: 88px 0 64px;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.name-meaning {
  font-size: 0.92rem;
  color: var(--teal-dark);
  margin: -6px 0 14px;
}
.name-meaning strong { color: var(--navy); }
.hero-copy p.lead { font-size: 1.15rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 28px;
  margin-top: 36px;
  max-width: 480px;
}
.hero-trust div { font-size: 0.85rem; color: var(--ink-soft); }
.hero-trust strong { display: block; color: var(--navy); font-size: 1.4rem; }

.hero-visual {
  background: linear-gradient(160deg, var(--navy), var(--bg-navy-soft));
  border-radius: 20px;
  padding: 32px;
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(15,157,140,0.35), transparent 55%);
  pointer-events: none;
}
.quiz-card {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 14px;
}
.quiz-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8be8da;
  margin-bottom: 10px;
}
.quiz-card h4 { color: #fff; margin: 0 0 14px; font-size: 1rem; }
.quiz-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: #dce7f0;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}
.quiz-option:hover:not(:disabled) { border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.09); }
.quiz-option:focus-visible { outline: 2px solid #2fd1b8; outline-offset: 2px; }
.quiz-option.correct { border-color: #2fd1b8; background: rgba(47,209,184,0.15); color: #fff; }
.quiz-option.incorrect { border-color: #ff8a7a; background: rgba(255,138,122,0.15); color: #fff; }
.quiz-option:disabled { cursor: default; }
.quiz-option:disabled:not(.correct):not(.incorrect) { opacity: 0.55; }
.quiz-option .dot {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  flex-shrink: 0;
}
.quiz-option.correct .dot { background: #2fd1b8; border-color: #2fd1b8; }
.quiz-option.incorrect .dot { background: #ff8a7a; border-color: #ff8a7a; }
.quiz-feedback {
  font-size: 0.85rem;
  font-weight: 700;
  margin: 14px 0 0;
}
.quiz-feedback.is-correct { color: #2fd1b8; }
.quiz-feedback.is-incorrect { color: #ff8a7a; }
.quiz-explanation {
  color: #b9c8d6;
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 10px 0 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.quiz-source-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8be8da;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}
.quiz-source-link:hover { color: #fff; }

/* Sections */
section { padding: 72px 0; }
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head.left { margin: 0 0 44px; text-align: left; }

.section-alt { background: var(--bg-soft); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: #b9c8d6; }

/* Feature grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(15,157,140,0.12);
  color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

/* Steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { position: relative; padding-left: 8px; }
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
}

/* Founder */
.founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}
.founder-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-text .eyebrow { margin-bottom: 12px; }
.founder-name { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.founder-title { font-size: 0.95rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 16px; }
.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 16px;
}
.founder-linkedin:hover { border-color: var(--navy); }
.founder-linkedin svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1040px; margin: 0 auto; }
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.price-card.featured {
  border-color: var(--teal);
  box-shadow: 0 10px 30px rgba(15,157,140,0.18);
  position: relative;
}
.price-card .badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.price-amount { font-size: 2.6rem; font-weight: 800; color: var(--navy); margin: 14px 0 4px; }
.price-amount span { font-size: 1rem; font-weight: 600; color: var(--ink-soft); }
.price-card ul { list-style: none; padding: 0; margin: 22px 0 26px; text-align: left; }
.price-card li { padding: 8px 0; border-top: 1px solid var(--line); font-size: 0.92rem; color: var(--ink-soft); }
.price-card li:first-child { border-top: none; }
.price-note { text-align: center; margin-top: 20px; font-size: 0.85rem; color: var(--ink-soft); }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--bg-navy-soft));
  border-radius: 20px;
  padding: 56px;
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #b9c8d6; max-width: 560px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* App store badges */
.store-badges { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
}
.store-badge:hover { border-color: var(--navy); }

/* Testimonials */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-stars { color: #f5a623; font-size: 0.95rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-quote { color: var(--ink); font-size: 0.98rem; flex-grow: 1; margin-bottom: 18px; }
.testimonial-author { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.testimonial-role { color: var(--ink-soft); font-size: 0.82rem; }

.testimonial-card.placeholder {
  background: var(--bg-soft);
  border: 1.5px dashed var(--line);
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  min-height: 220px;
}
.testimonial-card.placeholder .icon-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(15,157,140,0.12);
  color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

/* FAQ accordion */
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  font-family: var(--font);
}
.faq-question .icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--teal-dark);
  transition: transform 0.2s ease;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer-inner { padding: 0 22px 20px; color: var(--ink-soft); }
.faq-item.open .faq-answer { max-height: 600px; }

/* Accreditation page */
.accred-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 20px;
  background: #fff;
}
.accred-block h3 { margin-bottom: 10px; }
blockquote.quote {
  border-left: 4px solid var(--teal);
  margin: 0 0 20px;
  padding: 4px 0 4px 20px;
  color: var(--ink);
  font-style: italic;
}

/* Activity info table */
.info-table {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 12px 20px;
}
.info-table dt {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
}
.info-table dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* Objectives list */
.objectives-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  counter-reset: obj;
}
.objectives-list li {
  counter-increment: obj;
  position: relative;
  padding-left: 40px;
  margin-bottom: 16px;
  color: var(--ink-soft);
}
.objectives-list li::before {
  content: counter(obj);
  position: absolute;
  left: 0; top: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(15,157,140,0.12);
  color: var(--teal-dark);
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Accreditation badge row */
.accred-badge-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.accred-badge-row img {
  width: 90px;
  flex-shrink: 0;
}
.accred-badge-row .accred-badge-text p:last-child { margin-bottom: 0; }

.callout {
  background: rgba(15,157,140,0.08);
  border: 1px solid rgba(15,157,140,0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.callout p { color: var(--ink); margin-bottom: 0; }

.provider-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}
.provider-strip img { height: 32px; width: auto; }
.provider-strip span { font-size: 0.85rem; color: var(--ink-soft); }

/* Blog listing */
.blog-list { display: flex; flex-direction: column; gap: 18px; }
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-decoration: none;
  display: block;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.blog-card:hover { border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-1px); }
.blog-card-meta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 10px;
}
.blog-card h2 { font-size: 1.2rem; margin-bottom: 8px; }
.blog-card p { margin-bottom: 0; }
.blog-card-arrow { display: inline-block; margin-top: 16px; font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.blog-card:hover .blog-card-arrow { color: var(--teal-dark); }

/* Blog post article */
.post-meta { color: var(--ink-soft); font-size: 0.9rem; margin: -6px 0 8px; }
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  text-decoration: none;
}
.post-back:hover { color: var(--teal-dark); }
.post-body { max-width: 760px; margin: 0 auto; }
.post-body h2 { margin-top: 36px; font-size: 1.35rem; }
.post-body h3 { margin-top: 26px; font-size: 1.1rem; }
.post-body p { color: var(--ink-soft); }
.post-body ul, .post-body ol { color: var(--ink-soft); padding-left: 22px; margin: 0 0 16px; }
.post-body li { margin-bottom: 8px; }
.post-body strong { color: var(--ink); }
.post-body blockquote {
  border-left: 4px solid var(--teal);
  margin: 0 0 20px;
  padding: 4px 0 4px 20px;
  color: var(--ink);
  font-style: italic;
}
.post-figure {
  max-width: 760px;
  margin: 8px auto 28px;
}
.post-figure img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.post-figure figcaption {
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 10px;
}
.post-source {
  font-size: 0.85rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding-top: 16px;
  max-width: 760px;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 32px;
}
.contact-info-card h3 { color: #fff; }
.contact-info-card p { color: #b9c8d6; }
.contact-info-card a.email {
  display: inline-block;
  margin-top: 8px;
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.4);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-row input, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15,157,140,0.15);
}
.form-row textarea { resize: vertical; min-height: 140px; }
.form-row input[type="file"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  background: #fff;
}
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 10px; }
.form-error { font-size: 0.85rem; color: #c0392b; font-weight: 700; margin: -8px 0 16px; }

.contact-support-link {
  border-top: 1px solid rgba(255,255,255,0.16);
  margin-top: 28px;
  padding-top: 24px;
}
.contact-support-link h4 { color: #fff; margin-bottom: 8px; }
.contact-support-link p { margin-bottom: 10px; }
.contact-support-link a {
  color: #fff;
  font-weight: 700;
  text-underline-offset: 3px;
}

/* Legal documents */
.legal-hero {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 72px 0 52px;
}
.legal-shell { max-width: 880px; }
.legal-hero h1 {
  margin: 8px 0 14px;
  max-width: 760px;
}
.legal-hero .lead { max-width: 680px; margin-bottom: 0; }
.legal-section { padding: 64px 0 88px; }
.legal-document {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.78;
  overflow-wrap: anywhere;
}
.legal-document p { margin: 0 0 1.15em; }
.legal-document .legal-intro {
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.legal-document strong { color: var(--navy); }
.legal-document ol,
.legal-document ul {
  margin: 0 0 1.2rem;
  padding-left: 1.45rem;
}
.legal-document ol ol,
.legal-document ol ul,
.legal-document ul ul { margin-top: 0.65rem; }
.legal-document li { padding-left: 0.25rem; }
.legal-document li + li { margin-top: 0.55rem; }
.legal-document a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal-document a:hover { color: var(--navy); }
.optional-tag { font-weight: 400; color: var(--ink-soft); text-transform: none; letter-spacing: normal; }

/* Submit page */
.submit-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.submit-tab {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
}
.submit-tab:hover { border-color: var(--navy); color: var(--navy); }
.submit-tab.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.submit-panel-intro { color: var(--ink-soft); margin-bottom: 20px; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: #b9c8d6;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.site-footer .logo { color: #fff; }
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: #b9c8d6;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 0.92rem;
}
.footer-col a:hover { color: #fff; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: #b9c8d6;
  margin-bottom: 0;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.footer-social a:hover { border-color: #fff; color: #fff; }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #8fa2b3;
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* Responsive */
/* Nav switches to the hamburger menu earlier than the general content
   breakpoint below, since 7 nav items no longer fit on one line once the
   viewport narrows past ~1020px (verified with Playwright at several
   widths — anything narrower than this wrapped nav-link text mid-word). */
@media (max-width: 1060px) {
  .nav-links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-actions .btn-ghost { display: none; }
  .nav-login-mobile { display: block; }
}
@media (max-width: 860px) {
  .hero-grid, .contact-grid, .founder-grid { grid-template-columns: 1fr; }
  .founder-photo { max-width: 240px; margin: 0 auto; }
  .hero-visual { order: -1; }
  .grid-3, .grid-2, .steps, .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .legal-hero { padding: 52px 0 40px; }
  .legal-section { padding: 48px 0 64px; }
  .cta-band { padding: 40px 24px; }
}
