:root {
  --ml-navy: #102a48;
  --ml-navy-deep: #0b1f36;
  --ml-orange: #ef7d1a;
  --ml-orange-dark: #c85d0b;
  --ml-orange-soft: #fff1e3;
  --ml-paper: #f5f7f8;
  --ml-white: #ffffff;
  --ml-ink: #132238;
  --ml-muted: #617087;
  --ml-line: #dbe2e9;
  --ml-green: #1c8b61;
  --ml-red: #bf4f54;
  --ml-radius: 18px;
  --ml-shadow: 0 18px 50px rgba(16, 42, 72, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ml-ink);
  background: var(--ml-paper);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
:focus-visible { outline: 3px solid rgba(239, 125, 26, .45); outline-offset: 3px; }

.feature-page { overflow-x: hidden; }
.feature-container { width: min(calc(100% - 48px), 1180px); margin-inline: auto; }

.feature-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(16, 42, 72, .12);
  background: rgba(245, 247, 248, .94);
  backdrop-filter: blur(16px);
}
.feature-nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.feature-brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ml-ink); }
.feature-brand img { width: 38px; height: 38px; object-fit: contain; }
.feature-brand-copy { display: grid; line-height: 1.08; }
.feature-brand-copy strong { font-size: 1rem; letter-spacing: -.02em; }
.feature-brand-copy small { margin-top: 4px; color: var(--ml-muted); font-size: .7rem; }
.feature-nav-links { display: flex; align-items: center; gap: 20px; color: var(--ml-muted); font-size: .88rem; font-weight: 700; }
.feature-nav-links a:hover { color: var(--ml-orange-dark); }
.feature-nav-cta { padding: 11px 16px; border-radius: 10px; color: #fff !important; background: var(--ml-orange); box-shadow: 0 8px 20px rgba(239, 125, 26, .2); }
.feature-nav-cta:hover { background: var(--ml-orange-dark); }
.feature-nav-menu { display: none; }

.feature-hero {
  padding: clamp(64px, 8vw, 112px) 0 64px;
  background: linear-gradient(145deg, #f5f7f8 0%, #fff 58%, #f0f4f7 100%);
}
.feature-hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); gap: clamp(40px, 7vw, 92px); align-items: center; }
.feature-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; color: var(--ml-orange-dark); font-size: .76rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.feature-eyebrow::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--ml-orange); box-shadow: 0 0 0 5px var(--ml-orange-soft); }
h1, h2, h3 { margin: 0; color: var(--ml-navy-deep); letter-spacing: -.045em; text-wrap: balance; }
h1 { max-width: 690px; font-size: clamp(2.75rem, 5.5vw, 5.2rem); line-height: .98; }
h2 { font-size: clamp(2rem, 3.8vw, 3.5rem); line-height: 1.04; }
h3 { font-size: 1.2rem; line-height: 1.2; }
.feature-lead { max-width: 620px; margin: 24px 0 0; color: var(--ml-muted); font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.7; }
.feature-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.feature-button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 20px; border-radius: 10px; font-size: .92rem; font-weight: 800; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.feature-button:hover { transform: translateY(-2px); }
.feature-button-primary { color: #fff; background: var(--ml-orange); box-shadow: 0 10px 24px rgba(239, 125, 26, .22); }
.feature-button-primary:hover { background: var(--ml-orange-dark); }
.feature-button-secondary { color: var(--ml-navy); border: 1px solid rgba(16, 42, 72, .2); background: rgba(255, 255, 255, .55); }
.feature-button-secondary:hover { border-color: var(--ml-orange); background: #fff; }
.feature-microcopy { margin-top: 14px; color: #748297; font-size: .82rem; }

.feature-shot { position: relative; margin: 0; padding: 10px; border: 1px solid rgba(16, 42, 72, .14); border-radius: 22px 22px 62px 22px; background: #fff; box-shadow: var(--ml-shadow); }
.feature-shot::before { content: ""; position: absolute; inset: -12px -12px auto auto; z-index: -1; width: 120px; height: 120px; border-radius: 50%; background: var(--ml-orange-soft); }
.feature-shot img { display: block; width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; object-position: center top; border-radius: 13px 13px 48px 13px; }
.feature-shot figcaption { padding: 12px 8px 2px; color: #748297; font-size: .74rem; }

.feature-proof { border-top: 1px solid var(--ml-line); border-bottom: 1px solid var(--ml-line); background: #fff; }
.feature-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.feature-proof-item { min-height: 108px; padding: 22px 26px; border-right: 1px solid var(--ml-line); }
.feature-proof-item:last-child { border-right: 0; }
.feature-proof-item strong { display: block; color: var(--ml-navy); font-size: 1.05rem; }
.feature-proof-item span { display: block; margin-top: 5px; color: var(--ml-muted); font-size: .9rem; }

.feature-section { padding: clamp(72px, 9vw, 120px) 0; background: #fff; }
.feature-section.alt { background: var(--ml-paper); }
.feature-section-heading { max-width: 780px; }
.feature-section-heading p { max-width: 680px; margin: 18px 0 0; color: var(--ml-muted); font-size: 1.05rem; }
.feature-kicker { margin-bottom: 14px; color: var(--ml-orange-dark); font-size: .74rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.feature-flow { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: start; margin-top: 52px; }
.feature-steps { display: grid; gap: 0; border-top: 1px solid var(--ml-line); }
.feature-step { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--ml-line); }
.feature-step-number { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; color: #fff; background: var(--ml-navy); font-size: .84rem; font-weight: 850; }
.feature-step p { margin: 7px 0 0; color: var(--ml-muted); }
.feature-note { padding: 28px; border: 1px solid var(--ml-line); border-top: 4px solid var(--ml-orange); border-radius: var(--ml-radius); background: #fff; box-shadow: 0 14px 34px rgba(16, 42, 72, .07); }
.feature-note strong { display: block; color: var(--ml-navy); font-size: 1.15rem; }
.feature-note p { margin: 10px 0 0; color: var(--ml-muted); }
.feature-note ul { display: grid; gap: 10px; margin: 20px 0 0; padding: 0; list-style: none; }
.feature-note li { position: relative; padding-left: 22px; color: var(--ml-ink); font-size: .94rem; }
.feature-note li::before { content: "✓"; position: absolute; left: 0; color: var(--ml-green); font-weight: 900; }

.feature-evidence { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 58px; align-items: center; }
.feature-evidence .feature-shot { order: 2; }
.feature-evidence-copy { order: 1; }
.feature-evidence-copy p { color: var(--ml-muted); font-size: 1.02rem; }
.feature-list { display: grid; gap: 12px; margin: 26px 0 0; padding: 0; list-style: none; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--ml-ink); }
.feature-list li::before { content: ""; flex: 0 0 auto; width: 8px; height: 8px; margin-top: 9px; border-radius: 50%; background: var(--ml-orange); }

.feature-matrix { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 44px; }
.feature-matrix-item { padding: 24px; border: 1px solid var(--ml-line); border-radius: 14px; background: #fff; }
.feature-matrix-item:nth-child(3n) { background: #f0f5f8; }
.feature-matrix-item span { display: block; margin-bottom: 10px; color: var(--ml-orange-dark); font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.feature-matrix-item p { margin: 8px 0 0; color: var(--ml-muted); }

.feature-faq { display: grid; gap: 0; max-width: 860px; margin-top: 42px; border-top: 1px solid var(--ml-line); }
.feature-faq details { padding: 20px 0; border-bottom: 1px solid var(--ml-line); }
.feature-faq summary { cursor: pointer; color: var(--ml-navy); font-size: 1.06rem; font-weight: 800; }
.feature-faq p { max-width: 720px; margin: 12px 0 0; color: var(--ml-muted); }

.feature-final { padding: 58px 0 78px; background: var(--ml-navy-deep); color: #fff; }
.feature-final-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 36px; align-items: center; }
.feature-final h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.5rem); }
.feature-final p { max-width: 620px; margin: 14px 0 0; color: #c5d2df; }
.feature-final .feature-button-secondary { color: #fff; border-color: rgba(255, 255, 255, .3); background: transparent; }

.feature-footer { padding: 44px 0 30px; color: #c5d2df; background: var(--ml-navy-deep); border-top: 1px solid rgba(255, 255, 255, .13); }
.feature-footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 34px; }
.feature-footer p { max-width: 360px; margin: 14px 0 0; font-size: .88rem; }
.feature-footer h3 { margin-bottom: 12px; color: #fff; font-size: .9rem; letter-spacing: 0; }
.feature-footer a { display: block; margin: 8px 0; color: #c5d2df; font-size: .86rem; }
.feature-footer a:hover { color: #fff; }
.feature-footer-bottom { margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .13); color: #9fb0c1; font-size: .78rem; }

@media (max-width: 900px) {
  .feature-nav-links { display: none; }
  .feature-nav-menu { display: block; }
  .feature-nav-menu summary { cursor: pointer; padding: 8px 12px; border: 1px solid rgba(16, 42, 72, .18); border-radius: 9px; color: var(--ml-navy); font-weight: 800; list-style: none; }
  .feature-nav-menu summary::-webkit-details-marker { display: none; }
  .feature-nav-menu nav { position: absolute; right: 24px; top: 64px; display: grid; gap: 8px; min-width: 210px; padding: 12px; border: 1px solid var(--ml-line); border-radius: 12px; background: #fff; box-shadow: var(--ml-shadow); }
  .feature-nav-menu nav a { padding: 9px 8px; color: var(--ml-navy); font-size: .9rem; font-weight: 750; }
  .feature-hero-grid, .feature-flow, .feature-evidence { grid-template-columns: 1fr; }
  .feature-hero-copy { order: 1; }
  .feature-hero .feature-shot { order: 2; }
  .feature-evidence .feature-shot, .feature-evidence-copy { order: initial; }
  .feature-final-inner { grid-template-columns: 1fr; }
  .feature-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .feature-container { width: min(calc(100% - 32px), 1180px); }
  .feature-nav-inner { min-height: 68px; }
  .feature-nav-menu nav { right: 16px; top: 58px; }
  .feature-hero { padding: 54px 0 50px; }
  h1 { font-size: clamp(2.45rem, 13vw, 3.6rem); }
  h2 { font-size: clamp(1.95rem, 10vw, 2.8rem); }
  .feature-lead { font-size: 1rem; }
  .feature-cta-row { flex-direction: column; align-items: stretch; }
  .feature-button { width: 100%; }
  .feature-proof-grid, .feature-matrix, .feature-footer-grid { grid-template-columns: 1fr; }
  .feature-proof-item { min-height: auto; padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--ml-line); }
  .feature-proof-item:last-child { border-bottom: 0; }
  .feature-shot { padding: 7px; border-radius: 16px 16px 42px 16px; }
  .feature-shot img { border-radius: 10px 10px 32px 10px; }
  .feature-shot figcaption { padding: 10px 4px 2px; }
  .feature-flow { gap: 30px; margin-top: 34px; }
  .feature-section { padding: 66px 0; }
  .feature-final { padding: 48px 0 60px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
