/* ============================================================
   MetaHealth360°C — Parent Company Site
   Locked design system: Navy #0A2540 + Coral #FF5A5F + Inter
   Light + dark mode, no gradients, no emoji, no glow.
   ============================================================ */

:root,
[data-theme='light'] {
  /* Brand */
  --navy: #0a2540;
  --navy-2: #133456;
  --navy-3: #1d4571;
  --coral: #ff5a5f;
  --coral-deep: #e64a4f;
  --coral-soft: #ffe8e9;

  /* Surfaces */
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-surface-2: #f7f8fa;
  --color-surface-offset: #eef1f5;
  --color-divider: #e3e7ec;
  --color-border: #d6dbe2;

  /* Text */
  --color-text: var(--navy);
  --color-text-muted: #4a5b73;
  --color-text-faint: #8794a7;
  --color-text-inverse: #ffffff;

  /* Semantic */
  --color-primary: var(--navy);
  --color-accent: var(--coral);

  /* Type scale (fluid) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.82rem + 0.25vw, 0.9375rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  --text-xl: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  --text-2xl: clamp(2rem, 1.4rem + 2.4vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 1.4rem + 4vw, 4.75rem);

  /* Spacing (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows — restrained */
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.05);
  --shadow-md: 0 4px 16px rgba(10, 37, 64, 0.06);
  --shadow-lg: 0 16px 40px rgba(10, 37, 64, 0.08);

  /* Transition */
  --t-fast: 160ms cubic-bezier(0.16, 1, 0.3, 1);
  --t-med: 240ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container: 1180px;
  --container-narrow: 880px;

  /* Fonts */
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

[data-theme='dark'] {
  --color-bg: #07182b;
  --color-surface: #0c2440;
  --color-surface-2: #102a48;
  --color-surface-offset: #163255;
  --color-divider: #1d3a60;
  --color-border: #284b75;

  --color-text: #eef2f8;
  --color-text-muted: #a3b3cb;
  --color-text-faint: #6c80a0;
  --color-text-inverse: var(--navy);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.45);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #07182b;
    --color-surface: #0c2440;
    --color-surface-2: #102a48;
    --color-surface-offset: #163255;
    --color-divider: #1d3a60;
    --color-border: #284b75;
    --color-text: #eef2f8;
    --color-text-muted: #a3b3cb;
    --color-text-faint: #6c80a0;
    --color-text-inverse: var(--navy);
  }
}

/* ============================================================
   BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh;
  line-height: 1.55;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  font-feature-settings: 'cv11', 'ss01';
}

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

a {
  color: inherit;
  text-decoration: none;
  transition:
    color var(--t-fast),
    opacity var(--t-fast);
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
  color: var(--color-text);
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--coral);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 4vw, var(--space-10));
}

.section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-24));
  border-top: 1px solid var(--color-divider);
}

.section-header {
  max-width: 760px;
  margin-bottom: clamp(var(--space-10), 6vw, var(--space-16));
}

.kicker {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: var(--space-4);
}
.kicker--on-dark {
  color: var(--coral);
}

.section-title {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.section-sub {
  margin-top: var(--space-5);
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 64ch;
  line-height: 1.55;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--color-bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--color-divider);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text);
}

.brand-mark {
  color: var(--navy);
  flex-shrink: 0;
}
[data-theme='dark'] .brand-mark {
  color: #ffffff;
}
[data-theme='dark'] .brand-mark rect {
  fill: #ffffff;
}

.brand-name {
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-c {
  color: var(--coral);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(var(--space-4), 2vw, var(--space-8));
}

.nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding-inline: var(--space-5);
  background: var(--navy);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--text-sm);
}

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

[data-theme='dark'] .nav-cta {
  background: var(--coral);
  color: #fff !important;
}
[data-theme='dark'] .nav-cta:hover {
  background: var(--coral-deep);
}

/* Hide secondary nav links on small screens, keep CTA */
@media (max-width: 600px) {
  .nav {
    position: fixed;
    inset: 0;
    top: 68px;
    background: var(--color-bg);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-8) var(--space-6);
    gap: 0;
    border-top: 1px solid var(--color-divider);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--t-med), opacity var(--t-med), visibility 0s linear 240ms;
    z-index: 40;
  }

  .nav.nav--open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform var(--t-med), opacity var(--t-med), visibility 0s;
  }

  .nav a:not(.nav-cta) {
    display: block;
    padding: var(--space-4) 0;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-divider);
  }

  .nav .nav-cta {
    margin-top: var(--space-6);
    justify-content: center;
    height: 48px;
    font-size: var(--text-base);
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 600px) {
  .nav-toggle {
    display: flex;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  height: 48px;
  padding-inline: var(--space-6);
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition:
    background var(--t-fast),
    color var(--t-fast),
    border-color var(--t-fast),
    transform var(--t-fast);
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy-2);
}

[data-theme='dark'] .btn-primary {
  background: var(--coral);
}
[data-theme='dark'] .btn-primary:hover {
  background: var(--coral-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--color-surface-2);
}
[data-theme='dark'] .btn-ghost:hover {
  border-color: var(--coral);
}

.btn-on-dark {
  background: var(--coral);
  color: #fff;
}
.btn-on-dark:hover {
  background: var(--coral-deep);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-block: clamp(var(--space-20), 12vw, var(--space-32));
  overflow: hidden;
}

.hero::before {
  /* Subtle off-white wash on the left, never a gradient color */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 12% 30%,
      color-mix(in srgb, var(--coral) 7%, transparent) 0%,
      transparent 45%
    );
  pointer-events: none;
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 1;
  max-width: var(--container-narrow);
}

.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  margin-bottom: var(--space-8);
}

.hero-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: var(--space-6);
}

.accent {
  color: var(--coral);
}

.hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 60ch;
  line-height: 1.55;
  margin-bottom: var(--space-10);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6) var(--space-8);
  list-style: none;
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
}

.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  display: inline-block;
}

/* ============================================================
   WHY
   ============================================================ */
.section-why {
  background: var(--color-surface-2);
}

.why-grid {
  display: grid;
  gap: clamp(var(--space-10), 6vw, var(--space-16));
}

.why-lead {
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--color-text);
  max-width: 68ch;
}

.why-lead em {
  color: var(--coral);
  font-style: normal;
  font-weight: 600;
}

.why-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}

.why-point {
  padding: var(--space-8) var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
}

.why-stat {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--coral);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.why-stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.why-close {
  font-size: var(--text-lg);
  color: var(--color-text);
  font-weight: 500;
  max-width: 64ch;
  border-left: 3px solid var(--coral);
  padding-left: var(--space-5);
  line-height: 1.55;
}

.why-motto {
  margin-top: clamp(var(--space-6), 4vw, var(--space-10));
  padding: clamp(var(--space-8), 5vw, var(--space-12)) clamp(var(--space-6), 4vw, var(--space-10));
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.why-motto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 95% 0%,
    color-mix(in srgb, var(--coral) 18%, transparent) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.why-motto > * {
  position: relative;
}

.why-motto-text {
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #fff;
  max-width: 30ch;
}

.why-motto-sep {
  color: var(--coral);
  font-weight: 600;
  margin-inline: var(--space-1);
}

.why-motto-attribution {
  margin-top: var(--space-5);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  transition:
    border-color var(--t-med),
    transform var(--t-med),
    box-shadow var(--t-med);
  color: var(--color-text);
  text-decoration: none;
}

/* Only animate hover on interactive cards, not static ones */
.product-card--link:hover {
  border-color: var(--coral);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

[data-theme='dark'] .product-card--link:hover {
  border-color: var(--coral);
}

.product-card--featured {
  border: 1px solid var(--coral);
  background: var(--color-surface);
  position: relative;
}

.product-card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--coral);
  pointer-events: none;
}

/* Clickable Titria card */
.product-card--link {
  cursor: pointer;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-divider);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--coral);
  letter-spacing: -0.005em;
  transition: gap var(--t-fast);
}

.product-card--link .product-status {
  border-top: 1px solid var(--color-divider);
}

/* Status sits above the CTA — don't double-border */
.product-card--link .product-status + .product-cta {
  border-top: none;
  padding-top: var(--space-4);
  margin-top: var(--space-4);
}

.product-card--link:hover .product-cta {
  gap: var(--space-3);
}

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

.product-cta svg {
  transition: transform var(--t-fast);
}

.product-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-8);
}

.product-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--coral);
  border-radius: var(--radius-md);
}
.product-icon svg {
  width: 22px;
  height: 22px;
}

.product-card--featured .product-icon {
  background: var(--coral);
  color: var(--navy);
}
[data-theme='dark'] .product-icon {
  background: #fff;
  color: var(--navy);
}
[data-theme='dark'] .product-card--featured .product-icon {
  background: var(--coral);
  color: var(--navy);
}

.product-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.product-card--featured .product-eyebrow {
  color: var(--coral);
}

.product-title {
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-2);
}

.product-tag {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.product-body {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: var(--space-6);
}

.product-status {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-divider);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.status-dot--live {
  background: var(--coral);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--coral) 18%, transparent);
}
.status-dot--soon {
  background: transparent;
  border: 1.5px solid var(--color-text-faint);
}

.product-footnote {
  margin-top: var(--space-10);
  max-width: 64ch;
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  line-height: 1.6;
}

/* ============================================================
   HOW (5 principles)
   ============================================================ */
.section-how {
  background: var(--color-surface-2);
}

.how-list {
  list-style: none;
  display: grid;
  gap: 0;
  max-width: 920px;
}

.how-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-6);
  padding-block: var(--space-8);
  border-bottom: 1px solid var(--color-divider);
  align-items: start;
}
.how-list li:last-child {
  border-bottom: none;
}

.how-num {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}

.how-title {
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-2);
}

.how-body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 62ch;
}

@media (max-width: 600px) {
  .how-list li {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
}

/* ============================================================
   FOUNDER
   ============================================================ */
.founder-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(var(--space-6), 4vw, var(--space-12));
  align-items: start;
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
}

.founder-portrait {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
  position: relative;
}

.founder-portrait::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 2px solid var(--coral);
  border-radius: 50%;
  pointer-events: none;
}

.founder-initials {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
}

.founder-name {
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}

.founder-role {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-5);
}

.founder-bio {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 64ch;
  margin-bottom: var(--space-6);
}

.founder-creds {
  list-style: none;
  display: grid;
  gap: var(--space-2);
}

.founder-creds li {
  font-size: var(--text-sm);
  color: var(--color-text);
  padding-left: var(--space-5);
  position: relative;
}

.founder-creds li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 12px;
  height: 1.5px;
  background: var(--coral);
}

@media (max-width: 700px) {
  .founder-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .founder-portrait {
    width: 120px;
    height: 120px;
  }
  .founder-initials {
    font-size: 2.25rem;
  }
}

/* ============================================================
   CONTACT (mailing list)
   ============================================================ */
.section-contact {
  border-top: none;
  padding-bottom: clamp(var(--space-20), 10vw, var(--space-32));
}

.contact-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-10), 6vw, var(--space-20));
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 90% 10%,
    color-mix(in srgb, var(--coral) 22%, transparent) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.contact-card > * {
  position: relative;
}

.contact-card .kicker--on-dark {
  color: var(--coral);
}

.contact-title {
  color: #fff;
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
  max-width: 22ch;
}

.contact-sub {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.75);
  max-width: 56ch;
  line-height: 1.55;
  margin-bottom: var(--space-10);
}

.contact-form {
  max-width: 560px;
}

.contact-row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.contact-row input[type='email'] {
  flex: 1 1 280px;
  height: 52px;
  padding-inline: var(--space-5);
  font-size: var(--text-base);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transition: border-color var(--t-fast), background var(--t-fast);
}

.contact-row input[type='email']::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-row input[type='email']:focus {
  outline: none;
  border-color: var(--coral);
  background: rgba(255, 255, 255, 0.12);
}

.contact-row .btn {
  height: 52px;
}

.contact-note {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
  max-width: 56ch;
}

.contact-direct {
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
}

.contact-direct a {
  color: var(--coral);
  font-weight: 500;
  border-bottom: 1px solid transparent;
}
.contact-direct a:hover {
  border-bottom-color: var(--coral);
}

.hp {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

.contact-thanks {
  padding: var(--space-8);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  max-width: 560px;
}

.contact-thanks-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--coral);
  margin-bottom: var(--space-2);
}

.contact-thanks-sub {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding-block: var(--space-12);
  border-top: 1px solid var(--color-divider);
  background: var(--color-bg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.brand-name--footer {
  font-size: var(--text-base);
}

.footer-tag {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--coral);
  font-weight: 500;
}

.footer-meta {
  text-align: right;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  line-height: 1.6;
}

.footer-disclaimer {
  max-width: 44ch;
  margin-top: var(--space-2);
}

@media (max-width: 600px) {
  .footer-meta {
    text-align: left;
  }
}

/* ============================================================
   RESPONSIVE FIT
   ============================================================ */
@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta .btn {
    width: 100%;
  }
}
