/*
Theme Name: MyID Partners
Theme URI: https://partners.getmyid.com/
Author: MyID
Description: MyID B2B medication-program landing pages.
Version: 1.0.2
Text Domain: myid-partners
*/

@import "tailwindcss";

:root {
  --ink: #071b2d;
  --navy: #041525;
  --navy-2: #082a43;
  --blue: #008ecf;
  --blue-dark: #0672ac;
  --teal: #16aeb5;
  --ice: #edf7fa;
  --mist: #f4f7f9;
  --line: #d8e3e9;
  --white: #fff;
  --muted: #52697a;
  --content: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { line-height: 1.65; }
section[id] { scroll-margin-top: 88px; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 16px;
  transform: translateY(-180%);
  border-radius: 4px;
  background: white;
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #ffc857; outline-offset: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 76px;
  padding: 0 max(24px, calc((100vw - var(--content)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(7,27,45,.08);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 18px; font-size: 12px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.brand img { width: 114px; height: auto; }
.brand span { padding-left: 18px; border-left: 1px solid var(--line); }
.site-header nav { display: flex; gap: 30px; font-size: 14px; font-weight: 800; color: #2b4558; }
.site-header nav a { padding: 12px 0; }
.site-header nav a:hover { color: var(--blue-dark); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 4px;
  background: linear-gradient(135deg, #0074b2, #005c91);
  color: white;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0,142,207,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0,142,207,.3); }
.button-small { min-height: 42px; padding: 0 20px; font-size: 13px; box-shadow: none; }
.text-link { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; color: white; border-bottom: 1px solid rgba(255,255,255,.45); font-weight: 900; }

.hero { position: relative; min-height: 700px; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(1,15,28,.99) 0%, rgba(1,15,28,.94) 35%, rgba(1,15,28,.45) 58%, rgba(1,15,28,.06) 100%); }
.hero-copy { position: relative; z-index: 2; width: min(700px, 54vw); margin-left: max(24px, calc((100vw - var(--content)) / 2)); color: white; }
.eyebrow { margin: 0 0 18px; color: var(--blue-dark); font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow.light { color: #72d8f0; }
.hero h1 { margin: 0 0 24px; max-width: 670px; font-size: clamp(54px, 6.3vw, 90px); line-height: .95; letter-spacing: -.06em; }
.hero-lede { max-width: 640px; margin: 0 0 28px; color: #dcebf3; font-size: clamp(18px, 1.7vw, 22px); line-height: 1.55; }
.button-row { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-proof { list-style: none; margin: 28px 0 0; padding: 22px 0 0; display: flex; gap: 8px 22px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.16); color: #a9c1ce; font-size: 12px; font-weight: 700; }
.hero-proof li { position: relative; padding-left: 16px; }
.hero-proof li::before { content: ""; position: absolute; left: 0; top: .48em; width: 6px; height: 6px; border-radius: 50%; background: #63d6e9; }

.section { padding: clamp(76px, 8vw, 118px) max(24px, calc((100vw - var(--content)) / 2)); }
.section-heading { display: grid; grid-template-columns: minmax(220px, .62fr) minmax(560px, 1.38fr); column-gap: clamp(50px, 7vw, 110px); align-items: start; margin-bottom: 52px; }
.section-heading h2,
.context-copy h2,
.kit-copy h2,
.governance-copy h2,
.faq-intro h2 { margin: 0; font-size: clamp(40px, 4.5vw, 64px); line-height: 1.04; letter-spacing: -.045em; }
.section-heading > div:last-child > p { max-width: 780px; margin: 24px 0 0; color: var(--muted); font-size: 18px; }
.section-kicker { max-width: 280px; margin: 0; color: var(--muted); font-size: 15px; }

.fit-section { background: white; }
.moment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.moment-grid article { min-height: 270px; padding: 32px; background: white; }
.moment-grid article > span { color: var(--blue-dark); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.moment-grid h3 { margin: 52px 0 14px; font-size: 22px; line-height: 1.2; }
.moment-grid p { margin: 0; color: var(--muted); font-size: 15px; }

.kit-section { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(48px, 7vw, 106px); align-items: center; background: var(--mist); }
.kit-image-wrap { margin: 0; background: white; box-shadow: 0 28px 70px rgba(7,27,45,.1); }
.kit-image-wrap img { width: 100%; height: auto; }
.kit-image-wrap figcaption { padding: 12px 16px 16px; color: #667b89; font-size: 11px; line-height: 1.5; }
.kit-copy h2 { margin-bottom: 28px; }
.check-list { list-style: none; padding: 0; margin: 26px 0; }
.check-list li { position: relative; padding: 14px 0 14px 32px; border-bottom: 1px solid var(--line); font-weight: 800; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); }
.commercial-note { padding: 20px 22px; border-left: 4px solid var(--blue); background: white; }
.commercial-note strong { font-size: 14px; }
.commercial-note p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }

.context-section { background: white; }
.context-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 104px); align-items: center; }
.lifestyle-figure { margin: 0; }
.lifestyle-figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; }
.lifestyle-figure figcaption { padding-top: 12px; color: var(--muted); font-size: 12px; }
.context-copy > p:not(.eyebrow) { margin: 24px 0 0; color: var(--muted); font-size: 17px; }
.stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 30px 0 20px; background: var(--line); border: 1px solid var(--line); }
.stat-row.three-up { grid-template-columns: repeat(3, 1fr); }
.stat-row > div { padding: 24px; background: #f8fbfc; }
.stat-row strong { display: block; color: var(--blue-dark); font-size: clamp(36px, 4vw, 54px); line-height: 1; letter-spacing: -.04em; }
.stat-row span { display: block; margin-top: 10px; color: #3f596b; font-size: 12px; font-weight: 700; line-height: 1.5; }
.source-links { display: flex; gap: 12px 24px; flex-wrap: wrap; }
.source-links a { min-height: 36px; display: inline-flex; align-items: center; color: var(--blue-dark); font-size: 12px; font-weight: 900; }
.source-links-dark { margin-top: 24px; }
.source-links-dark a { color: #72d8f0; }
.context-copy small { display: block; margin-top: 16px; color: #748692; font-size: 10px; line-height: 1.5; }

.experience-section { background: linear-gradient(145deg, #06233a, var(--navy) 72%); color: white; }
.experience-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(50px, 8vw, 130px); align-items: end; margin-bottom: 54px; }
.experience-heading h2 { max-width: 780px; margin: 0; font-size: clamp(42px, 5vw, 70px); line-height: 1.02; letter-spacing: -.05em; }
.experience-heading > p { max-width: 470px; margin: 0 0 4px; color: #b7cbd7; font-size: 17px; }
.experience-layout { display: grid; grid-template-columns: 1fr .82fr; gap: clamp(48px, 8vw, 130px); align-items: stretch; }
.journey-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.16); }
.journey-list li { padding: 24px 0; display: grid; grid-template-columns: 48px 1fr; gap: 22px; border-bottom: 1px solid rgba(255,255,255,.16); }
.journey-list li > span { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(108,219,237,.45); border-radius: 50%; color: #72dcef; font-size: 11px; font-weight: 900; }
.journey-list h3 { margin: 1px 0 7px; font-size: 22px; }
.journey-list p { margin: 0; color: #a9c0cd; font-size: 14px; }
.profile-demo { align-self: center; overflow: hidden; border-radius: 24px; border: 7px solid #1b2934; background: white; color: var(--ink); box-shadow: 0 35px 80px rgba(0,0,0,.32); }
.profile-app-head { padding: 20px 24px 22px; display: flex; flex-direction: column; align-items: center; background: linear-gradient(145deg, #008ecf, #087fbd); color: white; text-align: center; }
.profile-app-head > span { align-self: stretch; color: rgba(255,255,255,.78); font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.profile-app-head img { width: 106px; height: auto; margin: 18px 0 16px; filter: brightness(0) invert(1); }
.profile-avatar { width: 66px; height: 66px; display: grid; place-items: center; border: 4px solid white; border-radius: 50%; background: linear-gradient(135deg, #4cc4df, #174f7a); color: white; font-size: 17px; font-weight: 900; box-shadow: 0 8px 20px rgba(0,34,61,.18); }
.profile-app-head strong { margin-top: 8px; font-size: 17px; }
.profile-app-head small { margin-top: 2px; color: rgba(255,255,255,.8); font-size: 9px; }
.profile-app-tabs { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid #d4dde2; background: white; color: #596b77; font-size: 10px; font-weight: 900; letter-spacing: .035em; text-align: center; text-transform: uppercase; }
.profile-app-tabs > * { padding: 15px 8px 13px; }
.profile-app-tabs b { position: relative; color: var(--blue-dark); }
.profile-app-tabs b::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 3px; background: var(--blue); }
.profile-app-menu { list-style: none; margin: 0; padding: 8px 22px 0; }
.profile-app-menu li { min-height: 62px; display: grid; grid-template-columns: 36px 1fr auto; gap: 12px; align-items: center; border-bottom: 1px solid #e1e7ea; }
.profile-app-menu li > span { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid #9eabb3; border-radius: 50%; color: #69808d; font-size: 9px; font-weight: 900; }
.profile-app-menu strong { display: block; color: #40525d; font-size: 12px; }
.profile-app-menu small { display: block; margin-top: 3px; color: #83939c; font-size: 9px; }
.profile-app-menu li > b { color: var(--blue); font-size: 26px; font-weight: 400; }
.profile-app-meta { padding: 13px 22px; display: flex; justify-content: space-between; gap: 14px; background: #f4f7f8; color: #71838d; font-size: 8px; font-weight: 800; }
.profile-demo-foot { padding: 13px 22px; display: flex; align-items: center; gap: 10px; background: #eaf6fb; color: #315567; font-size: 10px; font-weight: 700; }
.profile-demo-foot span { color: var(--blue-dark); font-size: 20px; }

.essentials-panel { margin-top: 68px; display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(42px, 7vw, 100px); padding: 42px; background: white; color: var(--ink); }
.essentials-intro h3 { margin: 0 0 14px; font-size: 30px; line-height: 1.12; letter-spacing: -.025em; }
.essentials-intro > p:not(.eyebrow) { color: var(--muted); font-size: 14px; }
.essentials-intro > strong { display: block; margin-top: 22px; padding-left: 14px; border-left: 3px solid var(--teal); color: var(--blue-dark); font-size: 13px; line-height: 1.5; }
.essentials-intro > small { display: block; margin-top: 16px; color: #718692; font-size: 10px; line-height: 1.55; }
.essentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.essentials-grid article { min-height: 140px; padding: 20px; background: #f8fbfc; }
.essentials-grid h4 { margin: 0 0 10px; font-size: 15px; }
.essentials-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.upgrade-note { margin-top: 1px; padding: 34px 42px; display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(38px, 7vw, 100px); align-items: center; background: #0b304b; border-top: 1px solid rgba(255,255,255,.1); }
.upgrade-note h3 { max-width: 460px; margin: 0; color: white; font-size: 22px; line-height: 1.2; }
.upgrade-note > p { margin: 0; color: #abc2cf; font-size: 13px; line-height: 1.65; }
.experience-proof { margin-top: 42px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px 32px; align-items: end; }
.experience-proof blockquote { grid-column: 1 / -1; max-width: 1050px; margin: 0; color: white; font-size: clamp(24px, 3vw, 40px); font-weight: 700; line-height: 1.28; letter-spacing: -.025em; }
.experience-proof p { margin: 8px 0 0; color: #9eb7c5; font-size: 12px; }
.experience-proof a { color: #71daee; font-size: 11px; font-weight: 900; }
.experience-proof small { grid-column: 1 / -1; color: #718f9f; font-size: 10px; }

.mid-cta { padding: 58px max(24px, calc((100vw - var(--content)) / 2)); display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; background: linear-gradient(100deg, #e6f6fa, #f7fbfc); border-bottom: 1px solid var(--line); }
.mid-cta p { margin: 0 0 6px; color: var(--blue-dark); font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.mid-cta h2 { max-width: 760px; margin: 0; font-size: clamp(28px, 3vw, 43px); line-height: 1.08; letter-spacing: -.035em; }
.mid-cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.mid-cta-actions > a:not(.button) { min-height: 40px; display: inline-flex; align-items: center; color: var(--blue-dark); font-size: 13px; font-weight: 900; }

.program-section { background: var(--navy); color: white; }
.section-heading.on-dark .section-kicker,
.section-heading.on-dark > div:last-child > p { color: #abc2cf; }
.steps-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.18); }
.step { padding: 30px 28px 4px 0; margin-right: 28px; border-right: 1px solid rgba(255,255,255,.14); }
.step:last-child { margin-right: 0; border-right: 0; }
.step > span { color: #68d9eb; font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.step h3 { margin: 48px 0 16px; font-size: 23px; }
.step p { margin: 0; color: #abc2cf; font-size: 15px; }

.stakeholder-section { background: var(--ice); }
.compact-heading { margin-bottom: 42px; }
.stakeholder-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.stakeholder-grid article { min-height: 220px; padding: 30px; background: white; border-top: 3px solid var(--blue); box-shadow: 0 12px 30px rgba(7,27,45,.05); }
.stakeholder-grid h3 { margin: 0 0 22px; font-size: 21px; }
.stakeholder-grid p { margin: 0; color: var(--muted); font-size: 15px; }

.governance-section { background: linear-gradient(135deg, var(--navy-2), var(--navy) 72%); color: white; }
.governance-copy { max-width: 900px; }
.governance-copy > p:last-child { max-width: 850px; color: #bdd0db; font-size: 18px; }
.boundary-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 48px; }
.boundary-grid article { padding: 36px; border: 1px solid rgba(255,255,255,.18); }
.ready-card { background: rgba(22,174,181,.12); }
.scope-card { background: rgba(255,255,255,.04); }
.card-label { margin: 0 0 34px; color: #69ddeb; font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.boundary-grid h3 { margin: 0 0 22px; font-size: 28px; }
.boundary-grid ul { margin: 0; padding-left: 20px; color: #cadbe4; line-height: 1.85; }
.legal-note { margin: 28px 0 0; color: #8fa9b7; font-size: 11px; }

.faq-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(54px, 8vw, 126px); background: white; }
.faq-intro { position: sticky; top: 116px; align-self: start; }
.faq-intro h2 { margin-bottom: 22px; }
.faq-intro > p:last-child { color: var(--muted); font-size: 15px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 76px; list-style: none; cursor: pointer; padding: 22px 4px; display: flex; align-items: center; justify-content: space-between; gap: 30px; font-size: 19px; font-weight: 900; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--blue); font-size: 28px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -4px 0 26px; padding-right: 54px; color: var(--muted); }

.inquiry-section { display: grid; grid-template-columns: minmax(0, .82fr) minmax(540px, 1.18fr); gap: clamp(52px, 7vw, 100px); align-items: start; background: linear-gradient(135deg, #073755, #041522 75%); color: white; }
.inquiry-copy { position: sticky; top: 116px; }
.inquiry-copy h2 { margin: 0 0 24px; font-size: clamp(44px, 5vw, 68px); line-height: 1.02; letter-spacing: -.05em; }
.inquiry-copy > p:not(.eyebrow) { color: #c6d9e4; font-size: 18px; }
.next-steps { list-style: none; margin: 30px 0; padding: 0; border-top: 1px solid rgba(255,255,255,.17); }
.next-steps li { padding: 15px 0; display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; border-bottom: 1px solid rgba(255,255,255,.17); }
.next-steps li > span { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: rgba(103,216,237,.14); color: #75dcef; font-size: 11px; font-weight: 900; }
.next-steps b { display: block; font-size: 14px; }
.next-steps small { display: block; margin-top: 3px; color: #8fabb9; font-size: 12px; line-height: 1.5; }
.meeting-card { margin: 28px 0 22px; padding: 18px 20px; display: block; border: 1px solid rgba(111,218,239,.35); background: rgba(0,142,207,.1); transition: background .2s ease; }
.meeting-card:hover { background: rgba(0,142,207,.17); }
.meeting-card span { display: block; margin-bottom: 6px; color: #95afbd; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.meeting-card strong { color: #72daef; font-size: 16px; }
.meeting-card b { font-weight: 400; }
.inquiry-warning { display: block; color: #8ea6b4; font-size: 11px; line-height: 1.55; }
.form-shell { min-height: 620px; padding: clamp(28px, 4vw, 54px); border-radius: 6px; background: white; color: var(--ink); box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.form-shell noscript p { margin: 0; color: var(--muted); }
.form-shell noscript a { color: var(--blue-dark); font-weight: 900; }

.sample-kit-trigger {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 38;
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #008ecf, #006a9f);
  color: white;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(1, 34, 59, .28);
  cursor: pointer;
}
.sample-kit-trigger span { font-size: 20px; font-weight: 400; line-height: 1; }
.sample-kit-trigger:hover { transform: translateY(-2px); }
.sample-kit-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  padding: 28px;
  display: grid;
  place-items: center;
  background: rgba(2, 16, 29, .78);
  backdrop-filter: blur(10px);
}
.sample-kit-dialog {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(900px, calc(100vh - 56px));
  display: grid;
  grid-template-columns: minmax(340px, .78fr) minmax(500px, 1.22fr);
  overflow: hidden;
  border-radius: 12px;
  background: white;
  color: var(--ink);
  box-shadow: 0 40px 110px rgba(0, 0, 0, .44);
}
.sample-kit-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7, 27, 45, .12);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.sample-kit-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--navy);
}
.sample-kit-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 21, 37, .02) 25%, rgba(4, 21, 37, .94) 80%);
}
.sample-kit-visual img { width: 100%; height: 100%; object-fit: cover; }
.sample-kit-card-prop {
  position: absolute;
  top: 44px;
  left: 28px;
  z-index: 1;
  width: 154px;
  min-height: 96px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(7, 61, 95, .12);
  border-radius: 7px;
  background: rgba(255, 255, 255, .96);
  color: var(--blue-dark);
  box-shadow: 0 16px 34px rgba(7, 27, 45, .14);
  transform: rotate(-3deg);
}
.sample-kit-card-prop span { font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.sample-kit-card-prop strong { margin-top: 6px; color: var(--ink); font-size: 22px; }
.sample-kit-visual-copy {
  position: absolute;
  right: 34px;
  bottom: 36px;
  left: 34px;
  z-index: 1;
  color: white;
}
.sample-kit-visual-copy span {
  display: block;
  margin-bottom: 12px;
  color: #75deef;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.sample-kit-visual-copy strong { display: block; font-size: 28px; line-height: 1.12; letter-spacing: -.025em; }
.sample-kit-visual-copy p { margin: 14px 0 0; color: #c1d6e0; font-size: 13px; line-height: 1.55; }
.sample-kit-form-panel {
  max-height: min(900px, calc(100vh - 56px));
  overflow-y: auto;
  padding: 54px 58px 44px;
}
.sample-kit-form-panel h2 { margin: 0; max-width: 560px; font-size: clamp(35px, 4vw, 52px); line-height: 1.02; letter-spacing: -.045em; }
.sample-kit-form-panel > p:not(.eyebrow, .sample-kit-terms) { margin: 18px 0 24px; color: var(--muted); font-size: 15px; }
.sample-kit-form { min-height: 590px; }
.sample-kit-terms { margin: 18px 0 0; color: #718692; font-size: 10px; line-height: 1.5; }

footer { padding: 54px max(24px, calc((100vw - var(--content)) / 2)); display: grid; grid-template-columns: 1fr auto; gap: 32px 80px; align-items: start; background: #03111e; color: #91a9b7; }
.footer-brand img { width: 116px; height: auto; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p { max-width: 430px; margin-bottom: 0; font-size: 13px; }
.footer-links { display: flex; gap: 28px; color: white; font-size: 13px; font-weight: 800; }
.footer-links a { min-height: 30px; display: inline-flex; align-items: center; }
.footer-disclaimer { grid-column: 1/-1; margin: 0; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); font-size: 10px; }

@media (max-width: 1050px) {
  .site-header nav { display: none; }
  .hero-copy { width: min(760px, 76vw); }
  .hero-shade { background: linear-gradient(90deg, rgba(1,15,28,.98), rgba(1,15,28,.8) 67%, rgba(1,15,28,.2)); }
  .section-heading { grid-template-columns: 1fr 2fr; }
  .moment-grid, .steps-grid, .stakeholder-grid { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { margin-right: 0; border-right: 0; }
  .step:nth-child(-n+2) { padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.14); }
  .context-grid, .kit-section { grid-template-columns: 1fr; }
  .experience-layout { grid-template-columns: 1fr 1fr; gap: 48px; }
  .essentials-panel { grid-template-columns: 1fr; }
  .kit-image-wrap { max-width: 760px; }
  .inquiry-section { grid-template-columns: 1fr; }
  .inquiry-copy { position: static; }
}

@media (max-width: 720px) {
  .site-header { height: 68px; padding: 0 18px; }
  .brand { gap: 10px; }
  .brand img { width: 112px; }
  .brand span { display: none; }
  .button-small { min-height: 42px; padding: 0 15px; }
  section[id] { scroll-margin-top: 76px; }

  .hero { min-height: 0; padding-top: 290px; display: block; overflow: hidden; }
  .hero-image { top: 0; height: 330px; opacity: 1; object-position: 67% center; }
  .hero-shade { height: 370px; background: linear-gradient(180deg, rgba(1,15,28,.05) 0%, rgba(1,15,28,.08) 46%, rgba(1,15,28,.98) 92%); }
  .hero-copy { width: auto; margin: 0; padding: 42px 22px 52px; background: linear-gradient(180deg, rgba(4,21,37,0), var(--navy) 8%); }
  .hero h1 { font-size: clamp(44px, 13.5vw, 58px); line-height: .96; }
  .hero-lede { font-size: 17px; }
  .button-row { align-items: flex-start; flex-direction: column; gap: 12px; }
  .button-row .button { width: 100%; }
  .text-link { padding: 6px 0; }
  .hero-proof { display: grid; grid-template-columns: 1fr; gap: 10px; }

  .section { padding: 72px 22px; }
  .section-heading { display: block; margin-bottom: 36px; }
  .section-heading .section-kicker { max-width: none; margin-bottom: 24px; }
  .section-heading h2,
  .context-copy h2,
  .kit-copy h2,
  .governance-copy h2,
  .faq-intro h2 { font-size: 38px; }
  .section-heading > div:last-child > p { font-size: 16px; }

  .moment-grid, .steps-grid, .stakeholder-grid, .boundary-grid, .stat-row { grid-template-columns: 1fr; }
  .moment-grid article { min-height: auto; padding: 26px; }
  .moment-grid h3 { margin-top: 28px; }
  .kit-section { gap: 40px; }
  .kit-image-wrap figcaption { font-size: 10px; }
  .check-list li { font-size: 14px; }
  .context-grid { gap: 38px; }
  .lifestyle-figure img { aspect-ratio: 1/1; object-position: 58% center; }
  .stat-row > div { padding: 22px; }

  .experience-heading, .experience-layout, .mid-cta { grid-template-columns: 1fr; }
  .experience-heading { gap: 22px; margin-bottom: 38px; }
  .experience-heading h2 { font-size: 40px; }
  .experience-heading > p { font-size: 15px; }
  .experience-layout { gap: 42px; }
  .journey-list li { grid-template-columns: 40px 1fr; gap: 15px; }
  .journey-list p { font-size: 13px; }
  .profile-demo { border-width: 5px; border-radius: 18px; }
  .profile-app-head { padding: 18px 20px 20px; }
  .profile-app-menu { padding-inline: 18px; }
  .profile-app-meta { padding-inline: 18px; flex-direction: column; gap: 4px; }
  .essentials-panel { margin-top: 48px; padding: 26px; }
  .essentials-grid { grid-template-columns: 1fr; }
  .essentials-grid article { min-height: auto; }
  .upgrade-note { padding: 28px 26px; grid-template-columns: 1fr; gap: 16px; }
  .experience-proof { grid-template-columns: 1fr; }
  .experience-proof blockquote, .experience-proof small { grid-column: auto; }
  .experience-proof blockquote { font-size: 25px; }
  .mid-cta { padding: 48px 22px; gap: 28px; }
  .mid-cta-actions .button { width: 100%; }

  .steps-grid { border-top: 0; }
  .step { margin: 0; padding: 26px 0; border-top: 1px solid rgba(255,255,255,.16); border-right: 0; }
  .step:nth-child(-n+2) { padding-bottom: 26px; border-bottom: 0; }
  .step h3 { margin-top: 22px; }
  .stakeholder-grid { gap: 12px; }
  .stakeholder-grid article { min-height: auto; }
  .boundary-grid article { padding: 28px; }
  .boundary-grid h3 { font-size: 25px; }
  .boundary-grid ul { font-size: 14px; }

  .faq-section { display: block; }
  .faq-intro { position: static; margin-bottom: 38px; }
  .faq-list summary { min-height: 72px; font-size: 16px; }
  .faq-list details p { padding-right: 10px; font-size: 14px; }

  .inquiry-copy h2 { font-size: 42px; }
  .form-shell { min-height: 720px; padding: 24px 14px; }
  .sample-kit-trigger { right: 14px; bottom: 14px; min-height: 46px; padding: 0 16px; }
  .sample-kit-overlay { padding: 10px; align-items: end; }
  .sample-kit-dialog { max-height: calc(100vh - 20px); grid-template-columns: 1fr; border-radius: 12px 12px 0 0; }
  .sample-kit-visual { min-height: 185px; }
  .sample-kit-visual img { object-position: center 47%; }
  .sample-kit-card-prop { top: 18px; left: 18px; width: 112px; min-height: 66px; padding: 12px; }
  .sample-kit-card-prop strong { margin-top: 2px; font-size: 16px; }
  .sample-kit-visual::after { background: linear-gradient(180deg, rgba(4, 21, 37, 0), rgba(4, 21, 37, .92)); }
  .sample-kit-visual-copy { right: 22px; bottom: 18px; left: 22px; }
  .sample-kit-visual-copy strong { font-size: 21px; }
  .sample-kit-visual-copy p { display: none; }
  .sample-kit-form-panel { max-height: calc(100vh - 205px); padding: 28px 20px 30px; }
  .sample-kit-form-panel h2 { padding-right: 34px; font-size: 34px; }
  .sample-kit-form { min-height: 670px; }
  footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .footer-disclaimer { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

.sample-kit-overlay[hidden],
.sample-kit-trigger[hidden] {
  display: none !important;
}
