/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  --ink:        #0f0f0e;
  --ink-muted:  #5a5a56;
  --ink-faint:  #a0a09c;
  --surface:    #fafaf8;
  --surface-2:  #f2f2ee;
  --surface-3:  #e8e8e2;
  --accent:     #1a4fd6;
  --accent-dim: #1a4fd615;
  --accent-mid: #1a4fd630;
  --white:      #ffffff;
  --rule:       #e2e2dc;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-lg:    1.125rem;
  --text-xl:    1.25rem;
  --text-2xl:   1.5rem;
  --text-3xl:   2rem;
  --text-4xl:   2.75rem;
  --text-5xl:   3.75rem;
  --text-6xl:   5rem;
  --text-7xl:   7rem;

  --space-1:  0.5rem;
  --space-2:  1rem;
  --space-3:  1.5rem;
  --space-4:  2rem;
  --space-5:  3rem;
  --space-6:  4rem;
  --space-7:  6rem;
  --space-8:  8rem;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.05);

  --max-w: 1120px;
  --col-gap: 2rem;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Layout Helpers ─────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-4);
}
.section {
  padding: var(--space-8) 0;
}
.section--tight {
  padding: var(--space-6) 0;
}
.divider {
  height: 1px;
  background: var(--rule);
}

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__logo {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
}
.nav__logo-mark {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav__logo-mark span {
  color: var(--accent);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
}
.nav__links a:hover {
  color: var(--ink);
}
.nav__cta {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent) !important;
  border: 1.5px solid var(--accent);
  padding: 6px 16px;
  border-radius: var(--radius-md);
  transition: background 0.15s ease, color 0.15s ease !important;
}
.nav__cta:hover {
  background: var(--accent) !important;
  color: var(--white) !important;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  padding: var(--space-8) 0 var(--space-7);
  position: relative;
  overflow: hidden;
}
.hero__bg-numeral {
  position: absolute;
  top: -0.15em;
  right: -0.05em;
  font-family: var(--font-serif);
  font-size: 28vw;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--rule);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--accent);
}
.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: var(--space-3);
}
.hero__headline em {
  font-style: italic;
  color: var(--accent);
}
.hero__sub {
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.5;
  max-width: 580px;
  margin-bottom: var(--space-5);
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  line-height: 1;
}
.btn--primary {
  background: var(--ink);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--ink-muted);
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost:hover {
  color: var(--ink);
}
.btn--ghost svg {
  transition: transform 0.2s ease;
}
.btn--ghost:hover svg {
  transform: translateX(4px);
}

/* ─── Stats bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--ink);
  color: var(--white);
  padding: var(--space-4) 0;
}
.stats-bar__inner {
  display: flex;
  align-items: center;
  gap: var(--space-7);
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat__num {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
}
.stat__label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.stats-bar__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* ─── Mission ─────────────────────────────────────────────────── */
.mission {
  padding: var(--space-8) 0;
}
.mission__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: start;
}
.mission__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--space-3);
}
.mission__heading {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-5xl));
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.mission__body {
  padding-top: calc(var(--text-xs) * 1.5 + var(--space-3));
}
.mission__body p {
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: var(--space-3);
}
.mission__body p:last-child {
  margin-bottom: 0;
}
.mission__body strong {
  font-weight: 600;
  color: var(--ink);
}
.mission__pull {
  margin-top: var(--space-5);
  padding-left: var(--space-3);
  border-left: 3px solid var(--accent);
}
.mission__pull p {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
}

/* ─── Products ────────────────────────────────────────────────── */
.products {
  background: var(--surface-2);
  padding: var(--space-8) 0;
}
.section-header {
  margin-bottom: var(--space-6);
}
.section-header__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--space-2);
}
.section-header__title {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-3xl), 3vw, var(--text-4xl));
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
}
.section-header__sub {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--ink-muted);
  margin-top: var(--space-2);
  max-width: 560px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  margin-bottom: var(--space-4);
}
.product-card__content {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.product-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: linear-gradient(135deg, #1a4fd6 0%, #0f32a0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26,79,214,0.35);
  flex-shrink: 0;
}
.product-card__icon svg {
  width: 28px;
  height: 28px;
  color: white;
}
.product-card__platform {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  background: var(--surface-2);
  padding: 5px 10px;
  border-radius: 100px;
}
.product-card__platform svg {
  width: 12px;
  height: 12px;
}
.product-card__name {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.product-card__tagline {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: var(--space-4);
}
.product-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.product-card__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-base);
  color: var(--ink-muted);
  line-height: 1.4;
}
.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}
.product-card__footer-note {
  margin-top: var(--space-2);
}
.product-coming-soon {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  font-size: var(--text-sm);
  color: var(--ink-muted);
}
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-mid);
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--white);
  background: var(--ink);
  padding: 12px 24px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  line-height: 1;
  transition: all 0.2s ease;
}
.appstore-badge:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.appstore-badge__icon {
  flex-shrink: 0;
}

.product-card__visual {
  background: linear-gradient(145deg, #0f1b3d 0%, #1a2f6b 40%, #1a4fd6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-5);
}
.product-card__visual::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.product-card__visual::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(26,79,214,0.4) 0%, transparent 70%);
  pointer-events: none;
}

/* Phone mockup */
.phone-mockup {
  position: relative;
  z-index: 1;
  width: 220px;
  height: 420px;
}
.phone-frame {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 36px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
}
.phone-notch {
  width: 90px;
  height: 26px;
  background: rgba(0,0,0,0.6);
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  flex-shrink: 0;
}
.phone-screen {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phone-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.phone-greeting {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}
.phone-title {
  font-size: 15px;
  font-weight: 600;
  color: white;
  font-family: var(--font-serif);
}
.phone-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: white;
}
.phone-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 10px;
}
.phone-card-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}
.phone-card-value {
  font-size: 18px;
  font-weight: 600;
  color: white;
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}
.phone-card-sub {
  font-size: 8px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.phone-row-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 7px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.phone-row-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #60a5fa;
  flex-shrink: 0;
}
.phone-row-text {
  font-size: 8px;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
}
.phone-bar-row {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  height: 40px;
}
.phone-bar {
  flex: 1;
  background: rgba(96,165,250,0.3);
  border-radius: 3px 3px 0 0;
}
.phone-bar-label {
  font-size: 6px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 3px;
}

/* More coming card */
.product-card--future {
  background: transparent;
  border: 2px dashed var(--surface-3);
  box-shadow: none;
  min-height: 140px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}
.future-inner {
  text-align: center;
}
.future-inner p {
  font-size: var(--text-base);
  color: var(--ink-faint);
  margin-top: var(--space-1);
}
.future-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border: 1.5px solid var(--surface-3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: var(--space-2);
}

/* ─── About ───────────────────────────────────────────────────── */
.about {
  padding: var(--space-8) 0;
}
.about__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-7);
  align-items: start;
}
.about__sticky {
  position: sticky;
  top: 88px;
}
.about__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--space-3);
}
.about__heading {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-4xl));
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--space-3);
}
.about__subhead {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.6;
}
.about__info-row {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.about__info-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.about__info-key {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.about__info-val {
  font-size: var(--text-base);
  color: var(--ink-muted);
}
.about__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.about__body p {
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-muted);
}
.about__body strong {
  font-weight: 600;
  color: var(--ink);
}
.about__values {
  margin-top: var(--space-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.value-item {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
}
.value-item__num {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--space-1);
}
.value-item__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.value-item__desc {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ─── Contact ─────────────────────────────────────────────────── */
.contact {
  background: var(--ink);
  padding: var(--space-8) 0;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: start;
}
.contact__heading {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-5xl));
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--space-3);
}
.contact__sub {
  font-size: var(--text-lg);
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.contact__email-block {
  margin-top: var(--space-5);
  padding: var(--space-4);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  transition: background 0.2s ease;
}
.contact__email-block:hover {
  background: rgba(255,255,255,0.09);
}
.contact__email-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.contact__email-addr {
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
}
.contact__email-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__email-icon svg {
  width: 18px;
  height: 18px;
  color: white;
}
.contact__right {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: 6px;
}
.contact__item {
  padding: var(--space-3) var(--space-3);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.contact__item-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.contact__item-val {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.7);
}
.contact__item-val a {
  color: rgba(96,165,250,0.9);
  transition: color 0.15s ease;
}
.contact__item-val a:hover {
  color: #93c5fd;
}

/* ─── Footer ──────────────────────────────────────────────────── */
.footer {
  background: #090908;
  padding: var(--space-4) 0 var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: var(--text-base);
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.02em;
}
.footer__logo span { color: rgba(96,165,250,0.7); }
.footer__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
}
.footer__links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.footer__links a {
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  transition: color 0.15s ease;
}
.footer__links a:hover {
  color: rgba(255,255,255,0.65);
}

/* ─── Legal pages (privacy / terms) ──────────────────────────── */
.legal-hero {
  padding: var(--space-6) 0 var(--space-4);
  border-bottom: 1px solid var(--rule);
}
.legal-hero__eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--space-2);
}
.legal-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-3xl), 3vw, var(--text-4xl));
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.legal-hero__sub {
  font-size: var(--text-base);
  color: var(--ink-muted);
}
.legal-content {
  padding: var(--space-6) 0 var(--space-8);
}
.legal-embed-wrapper {
  max-width: 800px;
}

/* ─── Animations ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero__eyebrow  { animation: fadeUp 0.6s ease both; animation-delay: 0.05s; }
.hero__headline { animation: fadeUp 0.7s ease both; animation-delay: 0.15s; }
.hero__sub      { animation: fadeUp 0.7s ease both; animation-delay: 0.25s; }
.hero__actions  { animation: fadeUp 0.7s ease both; animation-delay: 0.35s; }
.hero__bg-numeral { animation: fadeIn 1.2s ease both; animation-delay: 0.4s; }

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .mission__inner,
  .product-card,
  .about__inner,
  .contact__inner {
    grid-template-columns: 1fr;
  }
  .product-card__visual {
    min-height: 340px;
    order: -1;
  }
  .about__values {
    grid-template-columns: 1fr;
  }
  .stats-bar__inner {
    gap: var(--space-4);
  }
  .about__sticky {
    position: static;
  }
  .hero__bg-numeral {
    display: none;
  }
}
@media (max-width: 600px) {
  .nav__links { display: none; }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .section { padding: var(--space-6) 0; }
  .contact__email-addr { font-size: var(--text-lg); }
  .product-coming-soon {
    flex-direction: column;
    align-items: flex-start;
  }
}
