:root {
  --bg: #ffffff;
  --bg-soft: #f5f9ff;
  --panel: #ffffff;
  --panel-alt: #f7fbff;
  --line: #d9e6f7;
  --text: #0f172a;
  --muted: #4b5b77;
  --brand: #004aad;
  --brand-strong: #00398a;
  --brand-soft: #eaf2ff;
  --brand-soft-2: #dfeaff;
  --success: #004aad;
  --warning: #00398a;
  --shadow-sm: 0 10px 28px rgba(15, 23, 42, 0.06);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100vw - 32px));
  --header-height: 90px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(0, 74, 173, 0.08), transparent 28%),
    radial-gradient(circle at 85% 0%, rgba(0, 74, 173, 0.06), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  overflow-x: hidden;
}

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

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

main section[id] {
  scroll-margin-top: 108px;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
}

.aurora,
.grid-overlay {
  pointer-events: none;
}

.aurora {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.28;
  z-index: -1;
}

.aurora-1 {
  top: -10rem;
  left: -6rem;
  background: radial-gradient(circle, rgba(0, 74, 173, 0.22), transparent 62%);
}

.aurora-2 {
  right: -8rem;
  bottom: 10%;
  background: radial-gradient(circle, rgba(65, 125, 235, 0.16), transparent 60%);
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 74, 173, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 74, 173, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 85%);
  z-index: -2;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding-top: 32px;
  padding-bottom: 68px;
}

.section-dark {
  background: linear-gradient(180deg, rgba(0, 74, 173, 0.03), rgba(255, 255, 255, 0));
}

.glass {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 74, 173, 0.10);
  box-shadow: var(--shadow-sm);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 74, 173, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: auto;
  height: auto;
}

.brand-logo-header {
  height: 78px;
  width: auto;
  max-width: min(72vw, 360px);
  object-fit: contain;
}

.brand-logo-footer {
  height: 92px;
  width: auto;
  max-width: min(86vw, 430px);
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--brand);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 74, 173, 0.12);
  border-radius: 14px;
  background: #fff;
  color: var(--brand);
  position: relative;
  padding: 0;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span:first-child { top: 17px; }
.nav-toggle span:last-child { top: 27px; }

.nav-open .nav-toggle span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.97rem;
  letter-spacing: -0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 74, 173, 0.18);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--brand-strong);
}

.btn-secondary,
.btn-ghost {
  background: #fff;
  border-color: rgba(0, 74, 173, 0.18);
  color: var(--brand);
}

.btn-secondary:hover,
.btn-ghost:hover {
  background: var(--brand-soft);
}

.btn-sm {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.92rem;
}

.hero {
  padding-top: 58px;
}

.hero-grid,
.security-grid,
.contact-grid,
.footer-inner,
.cta-card,
.founder-card {
  display: grid;
  gap: 34px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.hero-grid > *,
.security-grid > *,
.contact-grid > *,
.footer-inner > *,
.cta-card > *,
.founder-card > * {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 74, 173, 0.08);
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
}

.eyebrow {
  margin-bottom: 18px;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 8px rgba(0, 74, 173, 0.10);
}

.hero h1,
.section-heading h2,
.contact-intro h2,
.cta-card h2,
.founder-copy h2 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: #07132a;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 6.1vw, 5.3rem);
}

.gradient-text {
  color: var(--brand);
  background: linear-gradient(135deg, #004aad 0%, #3f7fe6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead,
.section-heading p,
.contact-intro p,
.cta-card p,
.founder-copy p,
.security-panel li,
.feature-card p,
.timeline-card p,
.faq-item p,
.site-footer p,
.form-note,
.field-note,
.trust-line {
  color: black;
}

.hero-lead {
  margin: 22px 0 0;
  max-width: 61ch;
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions,
.form-actions-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 28px;
}

.hero-points,
.contact-points,
.footer-links,
.trust-tags,
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points {
  margin-top: 20px;
}

.hero-points li,
.contact-points li,
.trust-tags span,
.founder-tags span {
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 74, 173, 0.10);
  color: #20314f;
  font-size: 0.92rem;
  font-weight: 600;
}

.stats-row,
.insight-grid,
.feature-grid,
.timeline,
.form-row.two-col {
  display: grid;
  gap: 16px;
}

.stats-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.stat-card {
  padding: 18px 16px;
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: var(--brand);
}

.stat-card span {
  display: block;
  margin-top: 6px;
  font-size: 0.92rem;
  color: var(--muted);
}

.hero-visual {
  min-width: 0;
}

.visual-wrap {
  position: relative;
  min-height: 560px;
}

.orbital {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 74, 173, 0.12), rgba(0, 74, 173, 0));
}

.orbital-1 {
  width: min(34vw, 420px);
  height: min(34vw, 420px);
  top: 10px;
  left: 12px;
}

.orbital-2 {
  width: min(22vw, 260px);
  height: min(22vw, 260px);
  right: 10px;
  bottom: 40px;
}

.dashboard-card {
  position: absolute;
  inset: 30px 0 0 0;
  padding: 22px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.dash-top,
.chat-window__head,
.chat-window__footer,
.trust-box,
.footer-inner {
  display: flex;
  align-items: center;
}

.dash-top {
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.pill.success {
  background: rgba(10, 143, 75, 0.10);
  color: var(--success);
}

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

.chat-window {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(0, 74, 173, 0.10);
  background: #fff;
}

.chat-window__head,
.chat-window__footer {
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: #f9fbff;
}

.chat-window__head strong {
  font-size: 1rem;
  color: #10203b;
}

.chat-window__head small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
}

.status-ping {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(10, 143, 75, 0.14);
}

.chat-window__body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.msg {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.msg-bot {
  justify-self: start;
  background: #eef4ff;
  color: #15325d;
}

.msg-user {
  justify-self: end;
  background: var(--brand);
  color: #fff;
}

.msg-rotating {
  min-height: 74px;
}

.chat-window__footer {
  justify-content: flex-start;
  gap: 8px;
}

.chat-window__footer span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(0, 74, 173, 0.24);
}

.insight-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.insight-card {
  padding: 16px;
  border-radius: 18px;
  background: var(--panel-alt);
  border: 1px solid rgba(0, 74, 173, 0.08);
}

.insight-card.full {
  grid-column: 1 / -1;
}

.insight-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.insight-card strong {
  font-size: 1rem;
  line-height: 1.4;
  color: #0c1a33;
}

.trust-box {
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 28px;
  border-radius: 22px;
  text-align: center;
}

.trust-line {
  margin: 0;
  font-size: 1.05rem;
}

.underline-animate {
  position: relative;
  display: inline-block;
  font-weight: 700;
  color: #0f172a;
  padding-bottom: 0.18em;
}

.underline-animate::after {
  content: "";
  position: absolute;
  left: 1%;
  bottom: 0.05em;
  width: 98%;
  height: 0.44em;
  z-index: -1;
  border-radius: 999px;
  background: rgba(0, 74, 173);
  transform: scaleX(0);
  transform-origin: left center;
  animation: softUnderlineReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading .section-kicker {
  margin-bottom: 16px;
}

.section-heading h2,
.contact-intro h2,
.cta-card h2,
.founder-copy h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-heading p,
.contact-intro p,
.cta-card p,
.founder-copy p {
  margin: 14px 0 0;
  font-size: 1.03rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.timeline-card,
.security-panel,
.contact-card,
.cta-card,
.founder-card,
.faq-item {
  border-radius: var(--radius-lg);
}

.feature-card {
  padding: 24px;
}

.feature-card h3,
.timeline-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: #0b1830;
}

.feature-card p,
.timeline-card p,
.faq-item p,
.site-footer p,
.form-note,
.field-note {
  margin: 0;
  overflow-wrap: anywhere;
}

.feature-icon,
.shield-badge {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  margin-bottom: 18px;
}

.feature-icon svg,
.shield-badge svg {
  width: 30px;
  height: 30px;
}

.icon-gradient,
.icon-gradient-alt,
.icon-gradient-3,
.icon-gradient-4,
.icon-gradient-5,
.icon-gradient-6,
.shield-badge {
  color: var(--brand);
  background: var(--brand-soft);
}

.icon-gradient-alt {
  background: #e9f5ff;
}

.icon-gradient-3 {
  background: #edf0ff;
}

.icon-gradient-4 {
  background: #eef8ff;
}

.icon-gradient-5 {
  background: #ebf4ff;
}

.icon-gradient-6 {
  background: #eff4ff;
}

.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-card {
  padding: 26px;
}

.timeline-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 800;
}

.security-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.security-panel {
  padding: 28px;
}

.shield-badge {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  margin-bottom: 18px;
}

.security-list {
  display: grid;
  gap: 12px;
  padding-left: 18px;
  margin: 0;
}

.security-list li::marker {
  color: var(--brand);
}

.founder-card {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  padding: 22px;
}

.founder-photo-wrap {
  overflow: hidden;
  border-radius: 22px;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 0.72;
}

.founder-role {
  color: var(--brand);
  font-weight: 700;
}

.cta-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.cta-card {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 28px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 22px 24px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 1.02rem;
  font-weight: 700;
  color: #0c1830;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--brand);
  font-size: 1.4rem;
  line-height: 1;
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 12px;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.contact-intro {
  align-self: start;
}

.contact-intro .section-kicker {
  margin-bottom: 16px;
}

.contact-points {
  margin-top: 22px;
}

.contact-card {
  padding: 24px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 16px;
}

.form-row.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  font-size: 0.93rem;
  font-weight: 700;
  color: #112244;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0, 74, 173, 0.15);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  font: inherit;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8494b0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(0, 74, 173, 0.38);
  box-shadow: 0 0 0 4px rgba(0, 74, 173, 0.10);
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-actions-row {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.form-note,
.field-note {
  font-size: 0.89rem;
}

.form-status {
  margin: 0;
  min-height: 1.4em;
  font-weight: 600;
}

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

.form-status.is-error {
  color: #b42318;
}

.site-footer {
  padding: 44px 0 54px;
  border-top: 1px solid rgba(0, 74, 173, 0.10);
  background: rgba(255, 255, 255, 0.80);
}

.footer-inner {
  justify-content: space-between;
  gap: 28px;
}

.site-footer p {
  max-width: 42ch;
  margin: 12px 0 0;
}

.footer-links {
  align-items: center;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--brand);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-delay {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

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

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(10, 143, 75, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(10, 143, 75, 0.06); }
}

.status-ping {
  animation: statusPulse 2.4s ease-in-out infinite;
}

@keyframes softUnderlineReveal {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  :root {
    --container: min(100%, calc(100vw - 28px));
  }

  .hero-grid,
  .security-grid,
  .contact-grid,
  .cta-card,
  .founder-card,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

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

  .cta-actions,
  .footer-links {
    justify-content: flex-start;
  }

  .visual-wrap {
    min-height: 510px;
  }

  .dashboard-card {
    position: relative;
    inset: 0;
  }

  .aurora,
  .grid-overlay {
    opacity: 0.18;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 78px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 74, 173, 0.12);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14);
  }

  .nav-open .nav-links {
    display: flex;
  }

  .nav-links a,
  .nav-links .btn {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    max-width: none;
  }

  .stats-row,
  .feature-grid,
  .insight-grid,
  .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .msg {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 72px 0;
  }

  .section-tight {
    padding-top: 24px;
    padding-bottom: 54px;
  }

  .brand-logo-header {
    height: 64px;
    max-width: calc(100vw - 92px);
  }

  .brand-logo-footer {
    height: 74px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 11vw, 3.7rem);
  }

  .hero-lead,
  .section-heading p,
  .contact-intro p,
  .cta-card p,
  .founder-copy p,
  .trust-line {
    font-size: 0.98rem;
  }

  .visual-wrap {
    min-height: 420px;
  }

  .dashboard-card,
  .security-panel,
  .feature-card,
  .timeline-card,
  .contact-card,
  .cta-card,
  .founder-card,
  .faq-item,
  .trust-box {
    padding: 20px;
  }

  .form-actions-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  :root {
    --container: calc(100vw - 24px);
  }

  .aurora,
  .grid-overlay {
    display: none;
  }

  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .brand-logo-header {
    height: 58px;
    max-width: calc(100vw - 86px);
  }

  .brand-logo-footer {
    height: 62px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .chat-window__head,
  .chat-window__footer {
    padding-inline: 14px;
  }

  .chat-window__body,
  .contact-card,
  .feature-card,
  .timeline-card,
  .security-panel,
  .cta-card,
  .faq-item,
  .trust-box,
  .dashboard-card {
    padding: 16px;
  }

  .hero-points,
  .contact-points,
  .trust-tags,
  .footer-links,
  .founder-tags {
    gap: 10px;
  }

  .hero-points li,
  .contact-points li,
  .trust-tags span,
  .founder-tags span {
    font-size: 0.88rem;
    padding: 8px 12px;
  }

  .section-heading h2,
  .contact-intro h2,
  .cta-card h2,
  .founder-copy h2 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .underline-animate::after,
  .status-ping {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
