:root {
  --user-font-scale: 1;
  --bg: #ffffff;
  --bg-soft: #f5f5f3;
  --bg-soft-alt: #fafaf9;
  --text: #111111;
  --text-soft: #555555;
  --text-muted: #888888;
  --line: #e5e5e3;
  --line-strong: #d0d0cc;
  --accent: #b5782b;
  --accent-dark: #8c5a1a;
  --accent-soft: #e8c998;
  --accent-glow: rgba(181, 120, 43, 0.12);
  --card: #ffffff;
  --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 22px 58px rgba(0, 0, 0, 0.09);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1200px;
  --header-height: 68px;
  --transition: 220ms ease;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-soft);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-dark);
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

* {
  box-sizing: border-box;
}

html {
  font-size: calc(16px * var(--user-font-scale));
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

body.high-contrast {
  --bg: #ffffff;
  --bg-soft: #ebebeb;
  --bg-soft-alt: #f2f2f2;
  --text: #000000;
  --text-soft: #1a1a1a;
  --text-muted: #333333;
  --line: #7a5010;
  --line-strong: #5e3c08;
  --accent: #7a5010;
  --accent-dark: #5e3c08;
  --accent-soft: #c9962a;
  --accent-glow: rgba(122, 80, 16, 0.22);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.accessibility-dock {
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1200;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.accessibility-trigger {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4963c 0%, var(--accent) 56%, var(--accent-dark) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.25),
    0 10px 24px rgba(181, 120, 43, 0.26);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.accessibility-trigger:hover {
  transform: translateX(1px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28),
    0 12px 28px rgba(181, 120, 43, 0.32);
}

.accessibility-trigger-icon {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.accessibility-panel {
  width: min(300px, calc(100vw - 56px));
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.98);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.accessibility-title {
  margin: 0 0 16px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.accessibility-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 700;
}

.accessibility-inline-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.accessibility-chip,
.accessibility-option {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  transition:
    border-color var(--transition),
    background-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.accessibility-chip {
  min-width: 40px;
  min-height: 38px;
  border-radius: 999px;
  padding: 0 12px;
  font-weight: 800;
}

.accessibility-chip:hover,
.accessibility-option:hover {
  border-color: rgba(181, 120, 43, 0.55);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.accessibility-value {
  min-width: 60px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.accessibility-actions {
  display: grid;
  gap: 10px;
}

.accessibility-option {
  width: 100%;
  min-height: 44px;
  border-radius: 14px;
  padding: 0 14px;
  font-weight: 700;
  text-align: left;
}

.accessibility-option.is-active {
  border-color: rgba(181, 120, 43, 0.65);
  background: rgba(181, 120, 43, 0.09);
  color: var(--accent-dark);
}

.accessibility-reset {
  color: var(--text-soft);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  overflow: visible;
}

/* ── Liquid Glass Layers ── */
.glass-filter,
.glass-overlay,
.glass-specular {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 0;
}

.glass-filter {
  z-index: 1;
  backdrop-filter: blur(18px) saturate(160%) brightness(1.06);
  -webkit-backdrop-filter: blur(18px) saturate(160%) brightness(1.06);
  filter: url(#glass-distortion);
}

.glass-overlay {
  z-index: 2;
  background: rgba(250, 250, 248, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  transition: background 300ms ease, border-color 300ms ease;
}

.glass-specular {
  z-index: 3;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.site-header .nav-container {
  position: relative;
  z-index: 4;
}

.site-header .mobile-menu {
  position: relative;
  z-index: 4;
}

.site-header.scrolled .glass-overlay,
.legal-page .site-header .glass-overlay {
  background: rgba(245, 243, 238, 0.38);
  border-bottom-color: rgba(200, 192, 176, 0.5);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05);
}

.nav-container {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-self: start;
}

.brand-logo img {
  width: 160px;
  height: auto;
  display: block;
}

.nav-pill {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 5px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.nav-pill a {
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(15, 26, 20, 0.78);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    background 280ms ease,
    color 200ms ease,
    box-shadow 280ms ease;
}

.nav-pill a:hover {
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-cta {
  display: flex;
  align-items: center;
  justify-self: end;
}

.nav-store-btn {
  min-height: 48px;
  padding: 0 22px;
}

.mobile-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: background var(--transition), box-shadow var(--transition);
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.mobile-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  display: block;
}

.mobile-menu {
  display: none;
  border-bottom: 1px solid rgba(200, 192, 176, 0.5);
  background: rgba(245, 243, 238, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-menu.open {
  display: block;
}

.mobile-nav {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 14px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav a {
  font-weight: 700;
}

.mobile-cta {
  margin-top: 8px;
  width: fit-content;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  transition:
    transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 280ms ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.24) 52%, transparent 64%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.btn:hover::before {
  transform: translateX(120%);
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #d4963c 0%, var(--accent) 52%, var(--accent-dark) 100%);
  box-shadow: 0 10px 28px rgba(181, 120, 43, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 14px 36px rgba(181, 120, 43, 0.30);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.hero {
  position: relative;
  padding: 120px 0 94px;
  background:
    radial-gradient(circle at top right, rgba(181, 120, 43, 0.05), transparent 34%),
    linear-gradient(180deg, #fafaf9 0%, #ffffff 50%, #f5f5f3 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42) 38%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
}

.hero-copy {
  max-width: 1120px;
}

.hero-copy-with-image {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(240px, 340px);
  gap: clamp(28px, 3.2vw, 48px);
  align-items: start;
}

.hero-visual-column {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: clamp(96px, 10vw, 138px);
}

.hero-side-image-frame {
  width: 100%;
  max-width: 320px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(245, 245, 243, 0.96)
  );
  border: 1px solid rgba(220, 218, 214, 0.8);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.09),
    0 0 0 1px rgba(255, 255, 255, 0.45) inset;
}

.hero-side-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-copy-main {
  min-width: 0;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.eyebrow-line {
  width: 54px;
  height: 1px;
  background: rgba(13, 13, 13, 0.24);
}

.hero-copy h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  margin: 28px 0 0;
  max-width: 700px;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.journey-panel {
  margin-top: 56px;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #ffffff 0%, #f9f8f6 100%);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.journey-panel::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(181, 120, 43, 0.06) 0%, transparent 68%);
  pointer-events: none;
  border-radius: 50%;
}

.journey-header {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.journey-header h2,
.section-heading h2,
.video-copy h2,
.fit-copy h2,
.legal-card h1 {
  margin: 0;
  font-size: clamp(1.75rem, 3.4vw, 2.7rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.journey-header p,
.video-copy p,
.fit-copy p,
.contact-copy p,
.legal-intro {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.8;
}

.journey-track {
  --journey-progress: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 40px;
  padding-top: 42px;
  z-index: 1;
}

/* Base progress rail */
.journey-track::before,
.journey-track::after {
  content: "";
  position: absolute;
  top: 16px;
  left: calc(10% + 2px);
  height: 2px;
  border-radius: 999px;
  z-index: 0;
}

.journey-track::before {
  width: calc(80% - 4px);
  background: var(--line-strong);
}

/* Animated fill */
.journey-track::after {
  width: calc((80% - 4px) * var(--journey-progress));
  background: linear-gradient(90deg, var(--accent-soft), var(--accent));
  transition: width 650ms cubic-bezier(0.34, 1.2, 0.64, 1);
  height: 2px;
  top: 16px;
  box-shadow: 0 0 8px rgba(181, 120, 43, 0.22);
}

/* Step cards */
.journey-step {
  position: relative;
  padding: 22px 20px 24px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition:
    transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 350ms ease,
    border-color 300ms ease,
    background 300ms ease;
  display: flex;
  flex-direction: column;
  z-index: 2;
  height: 100%;
  animation: stepReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.journey-step:nth-child(1) { animation-delay: 0.04s; }
.journey-step:nth-child(2) { animation-delay: 0.10s; }
.journey-step:nth-child(3) { animation-delay: 0.16s; }
.journey-step:nth-child(4) { animation-delay: 0.22s; }
.journey-step:nth-child(5) { animation-delay: 0.28s; }

.journey-step:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.09);
  border-color: rgba(181, 120, 43, 0.35);
}

/* Step marker circle */
.journey-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  background: var(--bg);
  color: var(--text-muted);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  transition:
    background 400ms cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 300ms ease,
    color 250ms ease,
    transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 350ms ease;
}

.journey-step h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.journey-step p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* Complete state */
.journey-step.is-complete .journey-marker {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  transform: scale(1.05);
}

/* Active/current state */
.journey-step.is-current .journey-marker {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  transform: scale(1.12);
  box-shadow:
    0 0 0 5px rgba(181, 120, 43, 0.14),
    0 0 0 10px rgba(181, 120, 43, 0.05);
  animation: markerPulse 2.2s ease-in-out infinite;
}

.journey-step.is-current {
  background: linear-gradient(160deg, #ffffff 0%, rgba(251, 246, 237, 0.8) 100%);
  border-color: rgba(181, 120, 43, 0.5);
  box-shadow:
    0 12px 36px rgba(181, 120, 43, 0.10),
    0 4px 12px rgba(181, 120, 43, 0.06);
  transform: translateY(-3px);
}

.journey-step.is-current:hover {
  transform: translateY(-7px) scale(1.015);
}

.journey-note {
  margin: 32px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}

@keyframes stepReveal {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes markerPulse {
  0%, 100% {
    box-shadow:
      0 0 0 5px rgba(181, 120, 43, 0.14),
      0 0 0 10px rgba(181, 120, 43, 0.05);
  }
  50% {
    box-shadow:
      0 0 0 7px rgba(181, 120, 43, 0.10),
      0 0 0 14px rgba(181, 120, 43, 0.03);
  }
}

.video-section,
.section,
.legal-page {
  padding: 92px 0;
}

.video-section {
  background: linear-gradient(180deg, #f5f5f3 0%, #ffffff 100%);
}

.video-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 30px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 244, 0.98));
  box-shadow: var(--shadow-soft);
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #0a0a0a;
  aspect-ratio: 16 / 9;
  box-shadow: 0 20px 48px rgba(8, 8, 8, 0.14);
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.32));
  pointer-events: none;
}

.video-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.brand-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0a0a0a;
}

.positioning-stack {
  display: grid;
  gap: 28px;
}

.section-heading {
  max-width: 860px;
}

.compact-heading {
  margin-bottom: 0;
}

.positioning-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.positioning-item {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--bg-soft-alt);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.positioning-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(181, 120, 43, 0.35);
}

.positioning-item h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.positioning-item p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.72;
}

.positioning-statement {
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(160deg, #141414 0%, #0a0a0a 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.positioning-statement::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(181, 120, 43, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.positioning-statement-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(232, 201, 152, 0.9);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.positioning-statement p {
  margin: 0;
  max-width: 880px;
  font-size: 1.14rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.86);
}

.fit-section {
  background: var(--bg-soft);
}

.fit-content {
  display: flex;
  justify-content: center;
}

.fit-layout-split {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 48px;
  align-items: center;
  max-width: 1080px;
  padding: 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 244, 0.94));
  box-shadow: var(--shadow-soft);
}

.fit-list-wrapper {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.fit-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.fit-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 700;
}

.fit-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.85;
}

.contact-section {
  padding-bottom: 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
}

.contact-copy p {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}

.contact-item:hover {
  color: var(--accent-dark);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.contact-icon.usa-flag {
  width: 24px;
  height: auto;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.form-row label {
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  color: var(--text);
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg-soft-alt);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  transition: all 280ms ease;
  font-size: 0.92rem;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(181, 120, 43, 0.12);
}

.form-btn {
  width: 100%;
  margin-top: 6px;
}

.form-message {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  animation: formMessageReveal 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.form-message::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.16) 30%, transparent 62%);
  transform: translateX(-120%);
  animation: formMessageSheen 1.15s ease 0.08s forwards;
}

.form-message-card {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: start;
}

.form-message-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-message-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-message-copy {
  display: grid;
  gap: 4px;
}

.form-message-title,
.form-message-text {
  margin: 0;
}

.form-message-title {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.form-message-text {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.55;
}

.form-message[data-type="success"] {
  background: linear-gradient(135deg, rgba(21, 128, 61, 0.09), rgba(236, 253, 245, 0.94));
  color: #14532d;
  border: 1px solid rgba(21, 128, 61, 0.18);
}

.form-message[data-type="success"] .form-message-icon {
  background: linear-gradient(135deg, #15803d, #22c55e);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.18);
  animation: formSuccessIconPop 0.55s cubic-bezier(0.2, 0.9, 0.2, 1.1);
}

.form-message[data-type="error"] {
  background: rgba(185, 28, 28, 0.06);
  color: #7f1d1d;
  border: 1px solid rgba(185, 28, 28, 0.14);
}

.form-message[data-type="error"] .form-message-icon {
  background: rgba(185, 28, 28, 0.1);
  color: #991b1b;
}

@keyframes formMessageReveal {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes formSuccessIconPop {
  0% {
    transform: scale(0.72);
  }

  60% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes formMessageSheen {
  to {
    transform: translateX(120%);
  }
}

.site-footer {
  background: #0b0b0b;
  color: #ffffff;
  padding: 22px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

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

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(181, 120, 43, 0.04), transparent 28%),
    linear-gradient(180deg, #fafaf9 0%, #ffffff 48%, #f5f5f3 100%);
  padding-top: 110px;
}

.legal-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

.legal-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.legal-meta {
  display: inline-flex;
  margin-top: 16px;
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-content {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.legal-section {
  display: grid;
  gap: 10px;
}

.legal-section h2 {
  margin: 0;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.legal-section p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.85;
}

.legal-list {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 0;
  color: var(--text-soft);
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

body.reduce-motion *,
body.reduce-motion *::before,
body.reduce-motion *::after {
  animation: none !important;
  transition-duration: 0.01ms !important;
  transition-delay: 0ms !important;
}

@media (max-width: 1180px) {
  .positioning-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid,
  .video-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .journey-track {
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-left: 32px;
  }

  .journey-track::before,
  .journey-track::after {
    top: 0;
    left: 22px;
    width: 1px;
    height: calc(100% - 12px);
    z-index: 0;
  }

  .journey-track::after {
    width: 2px;
    left: 21.5px;
    height: calc((100% - 12px) * var(--journey-progress));
    transition: height 650ms cubic-bezier(0.34, 1.2, 0.64, 1);
  }

  .journey-step {
    padding: 22px 22px 22px 46px;
    margin-left: 22px;
  }

  .journey-marker {
    position: absolute;
    left: -35px;
    top: 22px;
    margin-bottom: 0;
  }
}

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

  .accessibility-dock {
    top: auto;
    bottom: 18px;
    transform: none;
    left: 14px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
  }

  .nav-container {
    grid-template-columns: auto 1fr auto;
  }

  .hero {
    padding: 100px 0 78px;
  }

  .hero-copy-with-image {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .hero-visual-column {
    justify-content: flex-start;
    padding-top: 0;
  }

  .hero-side-image {
    width: 100%;
  }

  .hero-side-image-frame {
    max-width: clamp(200px, 45vw, 300px);
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 11vw, 4.2rem);
  }

  .video-section,
  .section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .legal-page {
    padding-top: 100px;
    padding-bottom: 74px;
  }

  .fit-layout-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .fit-list-wrapper {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand-logo img {
    width: 120px;
  }

  .journey-panel,
  .video-shell,
  .positioning-item,
  .positioning-statement,
  .fit-copy-single,
  .contact-form,
  .legal-card {
    padding: 22px;
    border-radius: 24px;
  }

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

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

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
