:root {
  --navy: #051522;
  --navy-2: #082536;
  --navy-3: #0c3143;
  --ink: #0a2430;
  --paper: #fffaf0;
  --cream: #f5ede0;
  --teal: #38dcc9;
  --teal-soft: #8cece1;
  --teal-dark: #147b72;
  --cyan: #5acde4;
  --coral: #ff7d70;
  --amber: #f5ba52;
  --violet: #a78ae7;
  --muted: #9ab2bb;
  --line: rgba(117, 227, 216, .18);
  --line-light: rgba(9, 66, 69, .13);
  --shadow: 0 32px 90px rgba(0, 8, 18, .35);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  max-width: 100%;
  color: #ecffff;
  background: var(--navy);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.wrap { width: min(1180px, calc(100% - 44px)); margin: 0 auto; }
.serif { font-family: var(--serif); }
.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.display {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5.7vw, 76px);
  font-weight: 400;
  line-height: .99;
  letter-spacing: -.045em;
}
.display em { color: var(--teal); font-weight: 400; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(5, 21, 34, .92), rgba(5, 21, 34, .62));
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(5, 21, 34, .94); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { width: 132px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a, .patient-login { color: #acc7cf; font-size: 12px; font-weight: 650; text-decoration: none; transition: color .2s ease; }
.nav a:hover, .patient-login:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.primary {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 22px;
  color: #05232a;
  border: 1px solid rgba(255,255,255,.56);
  border-radius: 999px;
  background: linear-gradient(135deg, #73eadc, #22cdbc);
  box-shadow: 0 18px 46px rgba(34, 205, 188, .22), inset 0 1px 0 rgba(255,255,255,.75);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.primary:hover { transform: translateY(-2px); box-shadow: 0 23px 56px rgba(34,205,188,.3), inset 0 1px 0 rgba(255,255,255,.75); }
.primary:focus-visible, a:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.text-link { color: #d9ebef; font-size: 13px; font-weight: 750; text-decoration: none; }
.text-link span { color: var(--teal); margin-left: 7px; }

.hero {
  position: relative;
  min-height: 900px;
  padding: 154px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 19%, rgba(55, 220, 201, .13), transparent 24rem),
    radial-gradient(circle at 4% 70%, rgba(90, 205, 228, .07), transparent 25rem),
    linear-gradient(180deg, #061a28 0%, var(--navy) 84%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 710px;
  height: 710px;
  right: -245px;
  top: -250px;
  border: 1px solid rgba(89, 224, 211, .14);
  border-radius: 50%;
  box-shadow: inset 0 0 120px rgba(69,220,205,.05), 0 0 120px rgba(69,220,205,.04);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 72px; }
.hero-copy h1 {
  max-width: 690px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 6.5vw, 92px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.052em;
}
.hero-copy h1 em { display: block; color: var(--teal); font-weight: 400; }
.hero-lead { max-width: 690px; margin: 30px 0 0; color: #c9dde3; font-size: 18px; line-height: 1.72; }
.hero-ai { max-width: 690px; margin: 18px 0 0; color: #9fbac3; font-size: 14px; line-height: 1.65; }
.hero-ai strong { color: #e8ffff; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.hero-assurance {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 23px;
  color: #86a4af;
  font-size: 11px;
  line-height: 1.5;
}
.signal { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: var(--teal); box-shadow: 0 0 18px rgba(56,220,201,.85); }

.care-stage { position: relative; min-height: 610px; }
.care-photo {
  position: absolute;
  inset: 0 0 78px 36px;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(132, 233, 223, .28);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.2);
  backdrop-filter: blur(18px);
}
.care-photo::after { content: ""; position: absolute; inset: 20px; border: 1px solid rgba(255,255,255,.1); border-radius: 24px; pointer-events: none; }
.care-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; border-radius: 28px; filter: saturate(.86) contrast(1.03); }
.photo-label {
  position: absolute;
  top: 34px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 17px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(7, 35, 48, .82);
  box-shadow: 0 16px 40px rgba(0,0,0,.24);
  color: #e9ffff;
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(20px);
}
.photo-label i { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.ai-card {
  position: absolute;
  left: -18px;
  right: 46px;
  bottom: 0;
  z-index: 4;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(255,253,246,.96), rgba(232,252,247,.92));
  box-shadow: 0 28px 70px rgba(0,8,18,.36), inset 0 1px 0 #fff;
  color: var(--ink);
  backdrop-filter: blur(20px);
}
.ai-card-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.ai-identity { display: flex; align-items: center; gap: 10px; color: #164f51; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.ai-orb { width: 29px; height: 29px; border: 1px solid rgba(11,113,105,.22); border-radius: 50%; background: radial-gradient(circle at 38% 35%, #fff 0 5%, #65e5d8 22%, #1dbdab 65%, #157c73); box-shadow: 0 0 22px rgba(56,220,201,.38); }
.always { color: #5d777c; font-size: 10px; font-weight: 750; }
.patient-prompt { width: fit-content; margin: 18px 0 0 auto; padding: 10px 13px; border-radius: 14px 14px 4px 14px; background: #0a2b3c; color: #eafdfb; font-size: 11px; }
.ai-answer { margin: 13px 0 0; color: #36565f; font-size: 12px; line-height: 1.58; }
.ai-answer strong { color: #0b383b; }
.ai-boundary { margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(10,67,70,.12); color: #71888d; font-size: 9px; line-height: 1.5; }

.hero-thesis {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 46px;
  align-items: center;
  margin-top: 94px;
  padding: 29px 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(110deg, rgba(255,255,255,.06), rgba(255,255,255,.022));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-thesis strong { font-family: var(--serif); font-size: 24px; font-weight: 400; line-height: 1.2; }
.hero-thesis p { margin: 0; color: #9fb7c0; font-size: 13px; line-height: 1.65; }

.method { padding: 112px 0; color: var(--ink); background: var(--cream); }
.section-intro { display: grid; grid-template-columns: .92fr 1.08fr; gap: 92px; align-items: end; }
.section-intro .eyebrow { color: var(--teal-dark); }
.section-intro p:last-child { margin: 0 0 5px; color: #536e76; font-size: 16px; line-height: 1.75; }
.journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 58px;
}
.journey::before { content: ""; position: absolute; left: 8%; right: 8%; top: 27px; height: 1px; background: linear-gradient(90deg, var(--teal), var(--amber), var(--cyan), var(--violet), var(--coral)); opacity: .5; }
.journey-step {
  position: relative;
  min-height: 295px;
  padding: 16px 20px 23px;
  border: 1px solid var(--line-light);
  border-radius: 22px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 16px 48px rgba(14,45,47,.05), inset 0 1px 0 #fff;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}
.journey-step:hover { transform: translateY(-5px); background: rgba(255,255,255,.9); box-shadow: 0 25px 60px rgba(14,45,47,.1), inset 0 1px 0 #fff; }
.step-marker { position: relative; z-index: 2; display: grid; width: 24px; height: 24px; place-items: center; margin: 0 auto; border: 4px solid var(--cream); border-radius: 50%; background: var(--step, var(--teal)); box-shadow: 0 0 0 1px rgba(8,60,62,.15); color: transparent; }
.step-number { display: block; margin-top: 32px; color: #6e868b; font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.journey-step h3 { margin: 11px 0 10px; font-family: var(--serif); font-size: 26px; font-weight: 400; line-height: 1.08; }
.journey-step p { margin: 0; color: #60777e; font-size: 12px; line-height: 1.65; }
.journey-step small { display: block; margin-top: 22px; color: #23786f; font-size: 10px; font-weight: 800; }
.tools-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 26px; padding: 21px 24px; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.tools-row > strong { max-width: 275px; font-family: var(--serif); font-size: 20px; font-weight: 400; }
.tool-list { display: flex; justify-content: flex-end; gap: 8px; flex-wrap: wrap; }
.tool-list span { padding: 8px 11px; border: 1px solid rgba(10,69,70,.13); border-radius: 999px; color: #506a70; background: rgba(255,255,255,.4); font-size: 10px; font-weight: 700; }

.proof { position: relative; padding: 118px 0; overflow: hidden; background: #061b2a; }
.proof::before, .proof::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.proof::before { width: 760px; height: 760px; right: -390px; top: -250px; border: 1px solid rgba(56,220,201,.14); box-shadow: inset 0 0 120px rgba(56,220,201,.045); }
.proof::after { width: 420px; height: 420px; left: -280px; bottom: 40px; border: 1px solid rgba(167,138,231,.13); }
.proof-stage { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; gap: 70px; align-items: center; }
.proof-copy .display { max-width: 700px; font-size: clamp(52px, 5.7vw, 80px); line-height: .98; }
.proof-copy .display em { display: block; }
.proof-lead { max-width: 620px; margin: 28px 0 0; color: #b6cbd1; font-size: 17px; line-height: 1.76; }
.proof-lead strong { color: #edffff; }
.proof-actions { display: flex; align-items: center; gap: 22px; margin-top: 32px; flex-wrap: wrap; }
.proof-portrait { position: relative; min-height: 530px; }
.proof-photo { position: absolute; inset: 0 18px 64px 36px; overflow: hidden; padding: 11px; border: 1px solid rgba(141,234,224,.27); border-radius: 37px; background: linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.03)); box-shadow: 0 36px 90px rgba(0,7,18,.38), inset 0 1px 0 rgba(255,255,255,.16); }
.proof-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 57% center; border-radius: 27px; filter: saturate(.82) contrast(1.03); }
.proof-photo::after { content: ""; position: absolute; inset: 11px; border-radius: 27px; background: linear-gradient(180deg,transparent 52%,rgba(2,20,31,.55)); }
.proof-photo-label { position: absolute; left: 62px; right: 44px; bottom: 94px; z-index: 2; color: #f4ffff; font-family: var(--serif); font-size: 25px; line-height: 1.18; }
.proof-photo-label span { display: block; margin-top: 9px; color: #a9c4cb; font-family: var(--sans); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.proof-glass { position: absolute; left: 0; right: 56px; bottom: 0; z-index: 3; display: grid; grid-template-columns: auto 1fr; gap: 17px; align-items: center; padding: 21px; border: 1px solid rgba(255,255,255,.58); border-radius: 23px; color: #12373e; background: linear-gradient(135deg,rgba(255,252,244,.96),rgba(231,252,247,.92)); box-shadow: 0 28px 70px rgba(0,7,18,.36), inset 0 1px 0 #fff; backdrop-filter: blur(20px); }
.proof-seal { display: grid; width: 49px; height: 49px; place-items: center; border: 1px solid rgba(18,125,114,.25); border-radius: 50%; background: radial-gradient(circle at 40% 35%,#fff 0 4%,#6ce6d8 22%,#1ebcab 68%,#14786f); box-shadow: 0 0 26px rgba(56,220,201,.3); color: #063a3b; font-size: 17px; }
.proof-glass strong { display: block; font-family: var(--serif); font-size: 20px; font-weight: 400; }
.proof-glass span { display: block; margin-top: 4px; color: #5a757b; font-size: 11px; line-height: 1.5; }
.proof-lanes { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(6,1fr); gap: 13px; margin-top: 76px; }
.proof-lane { position: relative; min-height: 245px; overflow: hidden; grid-column: span 2; padding: 27px; border: 1px solid rgba(125,231,220,.17); border-radius: 25px; background: linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.022)); box-shadow: 0 20px 58px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.075); transition: transform .28s ease,border-color .28s ease,background .28s ease; }
.proof-lane:nth-child(4) { grid-column: 2 / span 2; }
.proof-lane::after { content: ""; position: absolute; width: 150px; height: 150px; right: -100px; bottom: -100px; border: 1px solid color-mix(in srgb,var(--proof-color,var(--teal)) 40%,transparent); border-radius: 50%; transition: transform .35s ease; }
.proof-lane:hover { transform: translateY(-6px); border-color: color-mix(in srgb,var(--proof-color,var(--teal)) 55%,transparent); background: linear-gradient(145deg,rgba(255,255,255,.1),rgba(255,255,255,.03)); }
.proof-lane:hover::after { transform: translate(-30px,-28px) scale(1.45); }
.proof-kicker { display: flex; align-items: center; gap: 10px; color: #8baab3; font-size: 9px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.proof-kicker i { width: 9px; height: 9px; border-radius: 50%; background: var(--proof-color,var(--teal)); box-shadow: 0 0 14px color-mix(in srgb,var(--proof-color,var(--teal)) 75%,transparent); }
.proof-lane h3 { margin: 31px 0 11px; font-family: var(--serif); font-size: 27px; font-weight: 400; line-height: 1.08; }
.proof-lane p { margin: 0; color: #9eb6be; font-size: 12px; line-height: 1.67; }
.proof-lane a { position: relative; z-index: 2; display: inline-flex; margin-top: 20px; color: var(--teal-soft); font-size: 10px; font-weight: 850; text-decoration: none; }
.google-proof-bar { position: relative; z-index: 2; display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; margin-top: 76px; padding: 25px 28px; border: 1px solid rgba(125,231,220,.2); border-radius: 25px; background: linear-gradient(145deg,rgba(255,255,255,.09),rgba(255,255,255,.025)); box-shadow: 0 22px 64px rgba(0,0,0,.2),inset 0 1px 0 rgba(255,255,255,.09); }
.google-score { display: grid; grid-template-columns: auto auto; column-gap: 14px; align-items: center; }
.google-score strong { grid-row: span 2; color: #f4ffff; font-family: var(--serif); font-size: 51px; font-weight: 400; line-height: 1; }
.google-score span { color: #b8cdd2; font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.google-stars { color: var(--amber) !important; font-size: 14px !important; letter-spacing: .08em !important; text-shadow: 0 0 18px rgba(255,190,64,.38); }
.review-themes { display: flex; gap: 9px; flex-wrap: wrap; }
.review-themes span { display: inline-flex; align-items: center; gap: 8px; min-height: 32px; padding: 7px 12px; border: 1px solid rgba(125,231,220,.14); border-radius: 999px; color: #b4cbd1; background: rgba(255,255,255,.035); font-size: 10px; }
.review-themes i { width: 6px; height: 6px; border-radius: 50%; background: var(--theme,var(--teal)); box-shadow: 0 0 10px color-mix(in srgb,var(--theme,var(--teal)) 75%,transparent); }
.google-proof-link { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; gap: 16px; padding: 12px 19px; border: 1px solid rgba(125,231,220,.22); border-radius: 999px; color: #eaffff; background: rgba(56,220,201,.08); font-size: 11px; font-weight: 850; text-decoration: none; white-space: nowrap; }
.review-card { display: flex; min-height: 282px; flex-direction: column; }
.review-card blockquote { position: relative; z-index: 2; margin: 28px 0 0; color: #f1ffff; font-family: var(--serif); font-size: 25px; font-weight: 400; line-height: 1.2; }
.review-card blockquote::before { content: "“"; color: var(--proof-color,var(--teal)); }
.review-card blockquote::after { content: "”"; color: var(--proof-color,var(--teal)); }
.review-meta { position: relative; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-top: auto; padding-top: 28px; }
.review-meta strong { color: #eaffff; font-size: 12px; }
.review-meta span { display: block; margin-top: 5px; color: #7e9ca5; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.review-meta a { margin: 0; white-space: nowrap; }
.care-motion { position: relative; z-index: 2; margin-top: 76px; padding: 49px; overflow: hidden; border: 1px solid rgba(125,231,220,.2); border-radius: 31px; background: radial-gradient(circle at 92% 5%,rgba(82,220,207,.15),transparent 24rem),linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.018)); box-shadow: 0 34px 90px rgba(0,6,15,.28),inset 0 1px 0 rgba(255,255,255,.09); }
.care-motion::after { content: ""; position: absolute; width: 430px; height: 430px; right: -270px; bottom: -280px; border: 1px solid rgba(167,138,231,.18); border-radius: 50%; box-shadow: inset 0 0 90px rgba(167,138,231,.06); pointer-events: none; }
.motion-head { display: grid; grid-template-columns: 1fr .75fr; gap: 60px; align-items: end; }
.motion-head .eyebrow { margin-bottom: 17px; }
.motion-head h3 { max-width: 720px; margin: 0; color: #f3ffff; font-family: var(--serif); font-size: clamp(42px,5vw,64px); font-weight: 400; line-height: 1.01; letter-spacing: -.035em; }
.motion-head h3 em { color: var(--teal); font-weight: 400; }
.motion-head > p { margin: 0; color: #a7bec5; font-size: 14px; line-height: 1.72; }
.motion-track { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 48px; }
.motion-line { position: absolute; left: 9%; right: 9%; top: 25px; height: 1px; background: linear-gradient(90deg,var(--teal),var(--amber),var(--cyan),var(--violet)); box-shadow: 0 0 18px rgba(56,220,201,.35); opacity: .75; }
.motion-step { position: relative; min-height: 330px; padding: 60px 24px 24px; border: 1px solid rgba(131,226,217,.14); border-radius: 22px; background: rgba(2,17,28,.46); transition: transform .3s ease,border-color .3s ease,background .3s ease; }
.motion-step:hover { transform: translateY(-7px); border-color: color-mix(in srgb,var(--motion-color,var(--teal)) 55%,transparent); background: rgba(255,255,255,.055); }
.motion-node { position: absolute; top: 14px; left: 24px; display: grid; width: 23px; height: 23px; place-items: center; border: 1px solid color-mix(in srgb,var(--motion-color,var(--teal)) 70%,#fff); border-radius: 50%; background: #071b29; box-shadow: 0 0 0 7px rgba(6,27,42,.9),0 0 25px color-mix(in srgb,var(--motion-color,var(--teal)) 55%,transparent); }
.motion-node::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--motion-color,var(--teal)); box-shadow: 0 0 12px var(--motion-color,var(--teal)); }
.motion-step > span { color: #75949d; font-size: 9px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.motion-step h4 { margin: 17px 0 13px; color: #ecffff; font-family: var(--serif); font-size: 25px; font-weight: 400; line-height: 1.1; }
.motion-step p { margin: 0; color: #96b0b8; font-size: 12px; line-height: 1.67; }
.motion-step small { position: absolute; right: 24px; bottom: 23px; left: 24px; padding-top: 14px; border-top: 1px solid rgba(125,231,220,.1); color: color-mix(in srgb,var(--motion-color,var(--teal)) 72%,#b8cdd2); font-size: 9px; font-weight: 750; line-height: 1.45; }
.motion-resolution { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 17px; padding: 19px 22px; border: 1px solid rgba(125,231,220,.16); border-radius: 18px; background: rgba(56,220,201,.045); }
.motion-resolution strong { color: #eaffff; font-family: var(--serif); font-size: 22px; font-weight: 400; }
.motion-resolution span { max-width: 620px; color: #8da7af; font-size: 11px; line-height: 1.55; }
.motion-resolution a { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; padding: 10px 17px; border: 1px solid rgba(125,231,220,.23); border-radius: 999px; color: var(--teal-soft); font-size: 10px; font-weight: 850; text-decoration: none; white-space: nowrap; }
.patient-proof-portal { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center; margin-top: 72px; padding: 42px; overflow: hidden; border: 1px solid rgba(10,74,73,.13); border-radius: 30px; color: var(--ink); background: linear-gradient(135deg,#fff9ef,#e8fbf6); box-shadow: 0 32px 90px rgba(0,6,15,.28),inset 0 1px 0 #fff; }
.patient-proof-portal::after { content: ""; position: absolute; width: 330px; height: 330px; right: -165px; top: -195px; border: 1px solid rgba(20,123,114,.17); border-radius: 50%; box-shadow: inset 0 0 70px rgba(56,220,201,.08); }
.patient-proof-portal .eyebrow { color: var(--teal-dark); }
.patient-proof-portal h3 { max-width: 610px; margin: 0; font-family: var(--serif); font-size: clamp(36px,4vw,55px); font-weight: 400; line-height: 1.02; letter-spacing: -.035em; }
.patient-proof-portal p { max-width: 650px; margin: 18px 0 0; color: #557078; font-size: 14px; line-height: 1.72; }
.proof-portal-actions { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 12px; }
.proof-portal-actions .primary { width: 100%; }
.proof-secondary { display: flex; min-height: 50px; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 19px; border: 1px solid rgba(8,68,70,.16); border-radius: 999px; color: #19494d; background: rgba(255,255,255,.6); font-size: 12px; font-weight: 800; text-decoration: none; }
.proof-consent { color: #6e878c !important; font-size: 10px !important; line-height: 1.55 !important; }

.ivan { padding: 118px 0; color: var(--ink); background: var(--paper); }
.ivan-grid { display: grid; grid-template-columns: 1fr .94fr; gap: 90px; align-items: center; }
.photo-composition { position: relative; min-height: 680px; }
.ivan-main { position: absolute; inset: 0 74px 92px 0; overflow: hidden; border-radius: 38px; box-shadow: 0 30px 70px rgba(13,47,50,.15); }
.ivan-main img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.team-inset { position: absolute; right: 0; bottom: 0; width: 58%; padding: 10px; border: 1px solid rgba(9,66,69,.14); border-radius: 24px; background: rgba(255,255,255,.85); box-shadow: 0 24px 60px rgba(12,47,49,.18); backdrop-filter: blur(15px); }
.team-inset img { border-radius: 17px; }
.ivan-copy .eyebrow { color: var(--teal-dark); }
.ivan-copy .display { font-size: clamp(48px, 5.4vw, 72px); }
.ivan-copy .lead { margin: 27px 0 0; color: #4f6870; font-size: 17px; line-height: 1.72; }
.ivan-copy p:not(.eyebrow):not(.lead) { color: #62787e; font-size: 14px; line-height: 1.72; }
.credentials { display: flex; gap: 8px; margin-top: 25px; flex-wrap: wrap; }
.credentials span { padding: 9px 12px; border: 1px solid var(--line-light); border-radius: 999px; color: #3f6267; background: #fff; font-size: 10px; font-weight: 800; }
.ivan-principle { margin-top: 32px; padding: 22px 0 22px 22px; border-left: 2px solid var(--teal); color: #143f43; font-family: var(--serif); font-size: 23px; line-height: 1.34; }

.system { padding: 116px 0; background: #061825; }
.system-head { max-width: 860px; }
.system-head p:last-child { max-width: 740px; margin: 25px 0 0; color: #9fb8c1; font-size: 16px; line-height: 1.75; }
.system-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 38px; align-items: stretch; margin-top: 53px; }
.role-list { display: grid; gap: 10px; }
.role {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}
.role i { width: 9px; height: 9px; margin-top: 5px; border-radius: 50%; background: var(--role-color, var(--teal)); }
.role strong { display: block; color: #edffff; font-family: var(--serif); font-size: 21px; font-weight: 400; }
.role span { display: block; margin-top: 6px; color: #8faab4; font-size: 12px; line-height: 1.55; }
.product-window {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(129,232,222,.24);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.025));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.12);
}
.app-shell { min-height: 580px; padding: 27px; border-radius: 21px; background: radial-gradient(circle at 78% 8%, rgba(56,220,201,.16), transparent 16rem), #081d2d; }
.app-bar { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.app-bar img { width: 99px; }
.app-bar span { padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; color: #83a0aa; font-size: 8px; font-weight: 800; letter-spacing: .1em; }
.app-hero { margin-top: 43px; }
.app-hero small { color: var(--teal); font-size: 9px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.app-hero h3 { margin: 8px 0 6px; font-family: var(--serif); font-size: 34px; font-weight: 400; }
.app-hero p { margin: 0; color: #829fab; font-size: 11px; }
.app-plan { margin-top: 25px; padding: 21px; border: 1px solid rgba(123,231,220,.2); border-radius: 19px; background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.02)); box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.app-plan-head { display: flex; align-items: center; justify-content: space-between; }
.app-plan-head strong { font-size: 13px; }
.app-plan-head span { color: var(--teal); font-size: 8px; font-weight: 850; letter-spacing: .1em; }
.app-plan p { margin: 10px 0 0; color: #8ca8b2; font-size: 10px; line-height: 1.55; }
.plan-step { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 18px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.08); color: #b8d0d6; font-size: 9px; }
.plan-step b { color: var(--teal); }
.app-modules { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 12px; }
.app-module { padding: 16px; border: 1px solid rgba(123,231,220,.13); border-radius: 15px; background: rgba(255,255,255,.025); }
.app-module i { display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--module, var(--cyan)); }
.app-module strong { display: block; margin-top: 11px; font-size: 10px; }
.app-module span { display: block; margin-top: 4px; color: #6f8c97; font-size: 8px; line-height: 1.4; }
.system-note { margin-top: 23px; padding: 18px 20px; border: 1px solid rgba(245,186,82,.22); border-radius: 16px; color: #b7c9ce; background: rgba(245,186,82,.045); font-size: 11px; line-height: 1.65; }
.system-note strong { color: #f2dfb4; }

.mission { padding: 115px 0; color: var(--ink); background: var(--cream); }
.mission-shell { display: grid; grid-template-columns: .96fr 1.04fr; overflow: hidden; border: 1px solid rgba(11,67,69,.13); border-radius: 34px; background: rgba(255,255,255,.68); box-shadow: 0 30px 80px rgba(14,47,49,.08); }
.mission-image { min-height: 640px; }
.mission-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.mission-copy { display: flex; flex-direction: column; justify-content: center; padding: 62px; }
.mission-copy .eyebrow { color: var(--teal-dark); }
.mission-copy .display { font-size: clamp(46px, 5.3vw, 68px); }
.mission-copy > p:not(.eyebrow) { margin: 25px 0 0; color: #566d73; font-size: 15px; line-height: 1.76; }
.mission-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 29px; }
.mission-principles div { padding: 15px; border: 1px solid var(--line-light); border-radius: 14px; background: #fff; }
.mission-principles i { display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--mission-color, var(--teal)); }
.mission-principles strong { display: block; margin-top: 11px; color: #294f53; font-size: 10px; }
.mission-link { margin-top: 29px; color: var(--teal-dark); font-size: 11px; font-weight: 850; text-decoration: none; }

.future { position: relative; padding: 118px 0; overflow: hidden; background: #071d2c; }
.future::after { content: ""; position: absolute; left: -210px; bottom: -300px; width: 620px; height: 620px; border: 1px solid rgba(56,220,201,.1); border-radius: 50%; }
.future-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .94fr; gap: 88px; align-items: center; }
.future-copy .display { font-size: clamp(48px, 5.5vw, 73px); }
.future-copy > p:not(.eyebrow) { margin: 26px 0 0; color: #9db6bf; font-size: 16px; line-height: 1.76; }
.status-list { display: grid; gap: 10px; margin-top: 31px; }
.status { display: grid; grid-template-columns: 105px 1fr; gap: 15px; align-items: start; padding: 16px 0; border-top: 1px solid var(--line); }
.status b { width: fit-content; padding: 6px 8px; border: 1px solid rgba(56,220,201,.22); border-radius: 999px; color: var(--teal-soft); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.status span { color: #9ab2bb; font-size: 12px; line-height: 1.55; }
.future-orbit {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}
.orbit-ring { position: absolute; width: 540px; height: 540px; border: 1px solid rgba(90,205,228,.16); border-radius: 50%; box-shadow: inset 0 0 80px rgba(56,220,201,.03); }
.orbit-ring::before, .orbit-ring::after { content: ""; position: absolute; border: 1px solid rgba(56,220,201,.12); border-radius: 50%; }
.orbit-ring::before { inset: 72px; }
.orbit-ring::after { inset: 155px; }
.future-core { position: relative; z-index: 2; width: 250px; height: 250px; display: grid; place-items: center; padding: 35px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: radial-gradient(circle at 38% 32%, rgba(255,255,255,.2), rgba(56,220,201,.16) 32%, rgba(5,30,43,.86) 68%); box-shadow: 0 0 80px rgba(56,220,201,.17), inset 0 1px 0 rgba(255,255,255,.2); text-align: center; backdrop-filter: blur(20px); }
.future-core strong { display: block; font-family: var(--serif); font-size: 30px; font-weight: 400; }
.future-core span { display: block; margin-top: 10px; color: #91abb4; font-size: 10px; line-height: 1.5; }
.orbit-tag { position: absolute; z-index: 3; min-width: 150px; padding: 14px; border: 1px solid rgba(123,231,220,.18); border-radius: 15px; background: rgba(6,29,43,.82); box-shadow: 0 18px 45px rgba(0,0,0,.22); backdrop-filter: blur(16px); }
.orbit-tag b { display: block; color: #e5fbfa; font-size: 10px; }
.orbit-tag span { display: block; margin-top: 4px; color: #76939d; font-size: 8px; }
.orbit-tag.one { top: 80px; left: 35px; }
.orbit-tag.two { top: 122px; right: 0; }
.orbit-tag.three { bottom: 70px; left: 78px; }

.final { padding: 110px 0; color: var(--ink); text-align: center; background: var(--paper); }
.final .eyebrow { color: var(--teal-dark); }
.final .display { max-width: 930px; margin: 0 auto; }
.final > .wrap > p:not(.eyebrow) { max-width: 730px; margin: 25px auto 0; color: #5b7178; font-size: 17px; line-height: 1.72; }
.final-actions { display: flex; justify-content: center; align-items: center; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.final .text-link { color: #385c62; }
.final-safety { max-width: 760px; margin: 39px auto 0; padding-top: 20px; border-top: 1px solid var(--line-light); color: #778b90; font-size: 10px; line-height: 1.6; }

footer { padding: 38px 0; border-top: 1px solid var(--line); background: #04131f; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-top img { width: 118px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: #8aa5ae; font-size: 10px; text-decoration: none; }
.footer-note { max-width: 850px; margin: 24px 0 0; color: #617c86; font-size: 9px; line-height: 1.62; }

[data-reveal] { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .nav { display: none; }
  .hero-grid, .ivan-grid, .future-grid, .proof-stage, .patient-proof-portal { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .care-stage { max-width: 740px; margin-top: 35px; }
  .hero { padding-top: 135px; }
  .journey { grid-template-columns: repeat(2, 1fr); }
  .journey::before { display: none; }
  .journey-step:last-child { grid-column: 1 / -1; min-height: 220px; }
  .step-marker { margin-left: 0; }
  .system-grid { grid-template-columns: 1fr; }
  .mission-shell { grid-template-columns: 1fr; }
  .mission-image { min-height: 560px; }
  .future-orbit { min-height: 580px; }
  .proof-portrait { max-width: 720px; width: 100%; }
  .proof-lanes { grid-template-columns: repeat(2,1fr); }
  .proof-lane, .proof-lane:nth-child(4) { grid-column: auto; }
  .proof-lane:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 68px; }
  .logo { width: 108px; }
  .patient-login { display: none; }
  .header-actions .primary { min-height: 42px; padding: 10px 15px; font-size: 11px; }
  .hero { min-height: 0; padding: 116px 0 76px; }
  .hero-copy h1 { font-size: 53px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-actions .primary { width: 100%; }
  .care-stage { min-height: 595px; }
  .care-photo { inset: 0 0 150px; border-radius: 29px; }
  .care-photo img { border-radius: 20px; object-position: 56% center; }
  .photo-label { right: 16px; top: 25px; }
  .ai-card { left: 9px; right: 9px; bottom: 0; padding: 20px; }
  .hero-thesis { grid-template-columns: 1fr; gap: 14px; margin-top: 60px; padding: 24px; }
  .section-intro { grid-template-columns: 1fr; gap: 26px; }
  .method, .proof, .ivan, .system, .mission, .future, .final { padding: 78px 0; }
  .journey { grid-template-columns: 1fr; }
  .journey-step:last-child { grid-column: auto; }
  .journey-step { min-height: 230px; }
  .tools-row { align-items: flex-start; flex-direction: column; }
  .tool-list { justify-content: flex-start; }
  .proof-stage { grid-template-columns: 1fr; gap: 46px; }
  .proof-copy .display { font-size: 47px; }
  .proof-actions { align-items: stretch; flex-direction: column; }
  .proof-actions .primary { width: 100%; }
  .proof-portrait { min-height: 480px; }
  .proof-photo { inset: 0 0 72px; }
  .proof-photo-label { left: 32px; right: 25px; bottom: 98px; font-size: 22px; }
  .proof-glass { left: 8px; right: 8px; }
  .proof-lanes { grid-template-columns: 1fr; margin-top: 58px; }
  .proof-lane, .proof-lane:nth-child(4) { grid-column: auto; min-height: 225px; }
  .google-proof-bar { grid-template-columns: 1fr; gap: 21px; margin-top: 58px; padding: 24px; }
  .google-proof-link { width: 100%; }
  .review-card { min-height: 245px !important; }
  .care-motion { margin-top: 58px; padding: 30px 23px; }
  .motion-head { grid-template-columns: 1fr; gap: 22px; }
  .motion-track { grid-template-columns: 1fr; gap: 10px; margin-top: 36px; padding-left: 18px; }
  .motion-track::before { content: ""; position: absolute; top: 19px; bottom: 19px; left: 17px; width: 1px; background: linear-gradient(180deg,var(--teal),var(--amber),var(--cyan),var(--violet)); opacity: .6; }
  .motion-line { display: none; }
  .motion-step { min-height: 275px; padding: 56px 22px 22px; }
  .motion-node { left: -12px; }
  .motion-resolution { align-items: flex-start; flex-direction: column; padding: 20px; }
  .motion-resolution a { width: 100%; }
  .patient-proof-portal { grid-template-columns: 1fr; gap: 30px; margin-top: 52px; padding: 30px 23px; }
  .photo-composition { min-height: 510px; }
  .ivan-main { inset: 0 36px 60px 0; border-radius: 28px; }
  .team-inset { width: 64%; }
  .app-shell { min-height: 530px; padding: 20px; }
  .mission-image { min-height: 420px; }
  .mission-copy { padding: 35px 24px; }
  .mission-principles { grid-template-columns: 1fr; }
  .future-orbit { min-height: 500px; transform: scale(.82); margin: -30px -50px; }
  .status { grid-template-columns: 90px 1fr; }
  .final-actions { align-items: stretch; flex-direction: column; }
  .footer-top { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   v2 SURFACE — claim → CTA → more info
   Added for the short landing. Long-form copy now lives on the
   depth pages (how-care-works, meet-ivan, your-app, care-ai,
   mission) and is reached through "more info" links.
   ============================================================ */

.lede {
  position: relative;
  padding: 150px 0 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 16%, rgba(55, 220, 201, .14), transparent 25rem),
    radial-gradient(circle at 3% 74%, rgba(90, 205, 228, .07), transparent 24rem),
    linear-gradient(180deg, #061a28 0%, var(--navy) 86%);
}
.lede::before {
  content: "";
  position: absolute;
  width: 690px; height: 690px;
  right: -250px; top: -260px;
  border: 1px solid rgba(89, 224, 211, .14);
  border-radius: 50%;
  box-shadow: inset 0 0 120px rgba(69,220,205,.05), 0 0 120px rgba(69,220,205,.04);
  pointer-events: none;
}
.lede-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: 66px;
}
.lede-copy { max-width: 660px; }
.lede h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6.2vw, 88px);
  font-weight: 400;
  line-height: .93;
  letter-spacing: -.052em;
}

/* A cold click from social has no reason to trust text alone. Give it a face. */
.lede-stage { position: relative; }
.lede-photo {
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(132, 233, 223, .28);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.2);
  backdrop-filter: blur(18px);
}
.lede-photo::after { content: ""; position: absolute; inset: 20px; border: 1px solid rgba(255,255,255,.1); border-radius: 24px; pointer-events: none; }
.lede-photo img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  object-position: 55% center;
  border-radius: 24px;
  filter: saturate(.86) contrast(1.03);
}
.lede-stage .photo-label { top: auto; bottom: 26px; right: -14px; }
.lede h1 em { display: block; color: var(--teal); font-weight: 400; }
.lede-sub { max-width: 620px; margin: 26px 0 0; color: #c3d9e0; font-size: 18px; line-height: 1.6; }
.lede-actions { display: flex; align-items: center; gap: 22px; margin-top: 34px; flex-wrap: wrap; }

.trustbar {
  display: flex; align-items: center; gap: 18px;
  margin-top: 30px; flex-wrap: wrap;
  color: #8fb0ba; font-size: 12px; font-weight: 650;
}
.trustbar b { color: #f2ffff; font-family: var(--serif); font-size: 19px; font-weight: 400; }
.trustbar .stars { color: var(--amber); letter-spacing: .08em; text-shadow: 0 0 18px rgba(255,190,64,.35); }
.trustbar i { width: 4px; height: 4px; border-radius: 50%; background: rgba(143,176,186,.5); }

/* --- the six entry tabs: the front door of the funnel --- */
.entry {
  position: relative; z-index: 2;
  padding: 96px 0 104px;
  color: var(--ink);
  background: var(--cream);
}
.entry-head { max-width: 780px; }
.entry-head .eyebrow { color: var(--teal-dark); }
.entry-head h2 { margin: 0; font-family: var(--serif); font-size: clamp(38px, 4.4vw, 58px); font-weight: 400; line-height: 1.02; letter-spacing: -.035em; }
.entry-head p { margin: 20px 0 0; color: #55707a; font-size: 16px; line-height: 1.7; }

.entry-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 44px;
}
.entry-tab {
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 172px;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: 22px;
  background: rgba(255,255,255,.66);
  box-shadow: 0 16px 48px rgba(14,45,47,.05), inset 0 1px 0 #fff;
  color: var(--ink);
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.entry-tab:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--tab, var(--teal)) 45%, transparent);
  background: #fff;
  box-shadow: 0 26px 62px rgba(14,45,47,.11), inset 0 1px 0 #fff;
}
.entry-tab i { width: 9px; height: 9px; border-radius: 50%; background: var(--tab, var(--teal)); box-shadow: 0 0 14px color-mix(in srgb, var(--tab, var(--teal)) 70%, transparent); }
.entry-tab strong { display: block; margin-top: 18px; font-family: var(--serif); font-size: 27px; font-weight: 400; line-height: 1.1; letter-spacing: -.02em; }
.entry-tab .tab-clinical { display: block; margin-top: 12px; color: #6b848a; font-size: 11px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.entry-tab .tab-go { position: absolute; right: 24px; bottom: 22px; color: var(--teal-dark); font-size: 15px; font-weight: 850; }
.entry-note { margin: 26px 0 0; color: #6b848a; font-size: 12px; line-height: 1.6; }
.entry-note a { color: var(--teal-dark); font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* --- claim bands: one idea, one CTA, one way to read more --- */
.claim { padding: 104px 0; }
.claim.dark { background: #061825; }
.claim.deep { background: #071d2c; }
.claim-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 76px; align-items: center; }
.claim h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -.04em;
}
.claim h2 em { color: var(--teal); font-weight: 400; }
.claim p { max-width: 560px; margin: 24px 0 0; color: #a2bac2; font-size: 17px; line-height: 1.7; }
.claim-actions { display: flex; align-items: center; gap: 22px; margin-top: 30px; flex-wrap: wrap; }

/* --- compressed proof --- */
.proof-band { padding: 100px 0; background: #061b2a; }
.proof-band-head { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.proof-band-head h2 { margin: 0; font-family: var(--serif); font-size: clamp(38px, 4.4vw, 58px); font-weight: 400; line-height: 1.02; letter-spacing: -.035em; }
.proof-band-head h2 em { color: var(--teal); font-weight: 400; }
.award-proof { display: grid; grid-template-columns: minmax(190px, 290px) 1fr; gap: clamp(30px, 5vw, 68px); align-items: center; margin: 28px 0 0; padding: clamp(24px, 4vw, 42px); border: 1px solid rgba(125,231,220,.18); border-radius: 28px; background: linear-gradient(135deg,rgba(255,255,255,.085),rgba(255,255,255,.025)); box-shadow: 0 24px 68px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.08); }
.award-proof-media { width: min(100%, 270px); margin: 0 auto; overflow: hidden; border: 1px solid rgba(246,210,121,.28); border-radius: 18px; background: #020202; box-shadow: 0 22px 46px rgba(0,0,0,.34); }
.award-proof-media img { display: block; width: 100%; height: auto; }
.award-proof-copy .eyebrow { margin-bottom: 16px; color: #efd88a; }
.award-proof-copy h3 { max-width: 620px; margin: 0; font-family: var(--serif); font-size: clamp(34px, 4.1vw, 54px); font-weight: 400; line-height: 1.02; letter-spacing: -.035em; }
.award-proof-copy > p:not(.eyebrow) { max-width: 620px; margin: 20px 0 0; color: #a9c1c8; font-size: 15px; line-height: 1.72; }
.award-proof-copy > span { display: block; margin-top: 22px; color: #d8c982; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.quote-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin-top: 44px; }

/* --- compressed Iván strip --- */
.ivan-strip { padding: 104px 0; color: var(--ink); background: var(--paper); }
.ivan-strip-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 66px; align-items: center; }
.ivan-strip-photo { position: relative; overflow: hidden; border-radius: 30px; box-shadow: 0 28px 66px rgba(13,47,50,.16); aspect-ratio: 4 / 5; }
.ivan-strip-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.ivan-strip .eyebrow { color: var(--teal-dark); }
.ivan-strip h2 { margin: 0; font-family: var(--serif); font-size: clamp(36px, 4.2vw, 55px); font-weight: 400; line-height: 1.04; letter-spacing: -.035em; }
.ivan-strip p { max-width: 620px; margin: 22px 0 0; color: #55707a; font-size: 16px; line-height: 1.72; }

/* ============================================================
   DEPTH PAGES — the long copy, kept whole, reached on purpose
   ============================================================ */

.depth-hero { padding: 142px 0 62px; background: linear-gradient(180deg, #061a28, var(--navy)); }
.depth-hero .eyebrow { color: var(--teal); }
.depth-hero h1 { max-width: 900px; margin: 0; font-family: var(--serif); font-size: clamp(44px, 5.4vw, 74px); font-weight: 400; line-height: .99; letter-spacing: -.045em; }
.depth-hero h1 em { color: var(--teal); font-weight: 400; }
.depth-hero p { max-width: 700px; margin: 26px 0 0; color: #b3cad1; font-size: 17px; line-height: 1.74; }
.backlink { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px; color: #8fb0ba; font-size: 12px; font-weight: 750; text-decoration: none; }
.backlink:hover { color: #fff; }

.depth-cta { padding: 92px 0; color: var(--ink); text-align: center; background: var(--paper); }
.depth-cta .eyebrow { color: var(--teal-dark); }
.depth-cta h2 { max-width: 820px; margin: 0 auto; font-family: var(--serif); font-size: clamp(36px, 4.2vw, 56px); font-weight: 400; line-height: 1.04; letter-spacing: -.035em; }
.depth-cta p { max-width: 660px; margin: 22px auto 0; color: #5b7178; font-size: 16px; line-height: 1.7; }
.depth-cta .final-actions { margin-top: 32px; }

/* ============================================================
   ENTRY GATE — four questions, then the account
   No personal information is requested or stored on this site.
   ============================================================ */

.gate { min-height: 100vh; padding: 118px 0 80px; background: radial-gradient(circle at 78% 8%, rgba(56,220,201,.12), transparent 26rem), linear-gradient(180deg, #061a28, var(--navy)); }
.gate-shell { width: min(720px, calc(100% - 40px)); margin: 0 auto; }

.gate-progress { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; }
.gate-progress span { flex: 1; height: 3px; border-radius: 999px; background: rgba(125,231,220,.15); transition: background .3s ease; }
.gate-progress span.done { background: var(--teal); box-shadow: 0 0 14px rgba(56,220,201,.5); }
.gate-count { flex: 0 0 auto; color: #7f9da6; font-size: 11px; font-weight: 800; letter-spacing: .12em; }

.gate-card {
  padding: 40px;
  border: 1px solid rgba(125,231,220,.2);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.022));
  box-shadow: 0 34px 90px rgba(0,6,15,.3), inset 0 1px 0 rgba(255,255,255,.09);
}
.gate-step { display: none; }
.gate-step.active { display: block; }
.gate-kicker { margin: 0 0 14px; color: var(--teal); font-size: 11px; font-weight: 850; letter-spacing: .2em; text-transform: uppercase; }
.gate-card h2 { margin: 0; font-family: var(--serif); font-size: clamp(30px, 3.6vw, 42px); font-weight: 400; line-height: 1.08; letter-spacing: -.03em; }
.gate-help { margin: 14px 0 0; color: #9ab2bb; font-size: 14px; line-height: 1.65; }

.gate-options { display: grid; gap: 10px; margin-top: 28px; }
.gate-options.two-up { grid-template-columns: repeat(2, 1fr); }
.gate-option {
  display: flex; align-items: center; gap: 14px;
  padding: 17px 19px;
  border: 1px solid rgba(125,231,220,.18);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  color: #e4f6f8;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.gate-option:hover { transform: translateY(-2px); border-color: rgba(125,231,220,.42); background: rgba(255,255,255,.06); }
.gate-option .box {
  display: grid; place-items: center;
  width: 21px; height: 21px; flex: 0 0 auto;
  border: 1px solid rgba(125,231,220,.45);
  border-radius: 7px;
  color: transparent;
  font-size: 12px; font-weight: 900;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.gate-option[aria-pressed="true"] { border-color: var(--teal); background: rgba(56,220,201,.1); }
.gate-option[aria-pressed="true"] .box { border-color: var(--teal); background: var(--teal); color: #05232a; }
.gate-option[data-single] .box { border-radius: 50%; }

.gate-textarea {
  width: 100%;
  margin-top: 28px;
  padding: 17px 19px;
  border: 1px solid rgba(125,231,220,.2);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  color: #eafdfb;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  resize: vertical;
}
.gate-textarea::placeholder { color: #6d8b95; }
.gate-textarea:focus { outline: none; border-color: var(--teal); background: rgba(255,255,255,.055); }

.gate-actions { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 32px; flex-wrap: wrap; }
.gate-back { color: #8fb0ba; background: none; border: none; font-family: var(--sans); font-size: 13px; font-weight: 750; cursor: pointer; }
.gate-back:hover { color: #fff; }
.gate-back[hidden] { visibility: hidden; display: block !important; }
.gate-next { border: 1px solid rgba(255,255,255,.56); cursor: pointer; font-family: var(--sans); }
/* aria-disabled, not the `disabled` attribute — `disabled` is not valid on an anchor
   and assistive tech reads the ARIA state. The click handler enforces it either way. */
.gate-next[aria-disabled="true"] { opacity: .38; cursor: not-allowed; transform: none !important; box-shadow: none; }
.gate-skip { color: #7f9da6; font-size: 12px; font-weight: 700; background: none; border: none; cursor: pointer; text-decoration: underline; }
.gate-skip:hover { color: #cfe6ea; }

.gate-privacy { margin: 24px 0 0; color: #6f8c97; font-size: 11px; line-height: 1.6; text-align: center; }
.gate-privacy a { color: #9fc7cd; }

/* --- the summary that makes the answers feel heard --- */
.gate-summary { display: grid; gap: 10px; margin-top: 28px; }
.gate-summary-row { display: grid; grid-template-columns: 148px 1fr; gap: 16px; padding: 15px 0; border-top: 1px solid rgba(125,231,220,.14); }
.gate-summary-row b { color: var(--teal-soft); font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.gate-summary-row span { color: #dcf1f4; font-size: 14px; line-height: 1.55; }
.gate-emergency { margin: 22px 0 0; padding: 15px 17px; border: 1px solid rgba(245,186,82,.24); border-radius: 14px; color: #b7c9ce; background: rgba(245,186,82,.05); font-size: 11px; line-height: 1.6; }
.gate-emergency a { color: #f2dfb4; font-weight: 800; }

@media (max-width: 1040px) {
  .lede-grid { grid-template-columns: 1fr; gap: 40px; }
  .lede-copy { max-width: 820px; }
  .lede-stage { max-width: 660px; }
  .claim-grid, .ivan-strip-grid { grid-template-columns: 1fr; gap: 44px; }
  .entry-tabs { grid-template-columns: repeat(2, 1fr); }
  .quote-row { grid-template-columns: 1fr; }
  .proof-band-head { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 760px) {
  .lede { padding: 118px 0 68px; }
  .lede h1 { font-size: 52px; }
  .lede-sub { font-size: 16px; }
  .lede-actions { align-items: stretch; flex-direction: column; }
  .lede-actions .primary { width: 100%; }
  .entry, .claim, .proof-band, .ivan-strip { padding: 76px 0; }
  .entry-tabs { grid-template-columns: 1fr; }
  .entry-tab { min-height: 0; }
  .claim-actions, .proof-actions { align-items: stretch; flex-direction: column; }
  .claim-actions .primary { width: 100%; }
  .award-proof { grid-template-columns: 1fr; gap: 28px; }
  .award-proof-media { width: min(100%, 240px); }
  .ivan-strip-photo { aspect-ratio: 3 / 2; }
  .gate { padding: 100px 0 60px; }
  .gate-card { padding: 26px 22px; }
  .gate-options.two-up { grid-template-columns: 1fr; }
  .gate-actions { flex-direction: column-reverse; align-items: stretch; }
  .gate-next { width: 100%; }
  .gate-summary-row { grid-template-columns: 1fr; gap: 6px; }
  .depth-hero { padding: 116px 0 50px; }
}

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

/* ============================================================
   Accessibility + polish pass
   ============================================================ */

/* Six nav links sit before the content; give keyboards a way past them. */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 0 0 12px 12px;
  background: var(--teal);
  color: #05232a;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  transition: top .18s ease;
}
.skip-link:focus { top: 0; }

/* .text-link is tuned for dark bands; this is the light-background variant. */
.text-link.ink { color: #385c62; }

/* Buttons do not inherit the a:focus-visible rule — these are the most important
   interactive elements in the funnel, so they get an explicit ring. */
.gate-option:focus-visible,
.gate-back:focus-visible,
.gate-skip:focus-visible,
.entry-tab:focus-visible,
button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}
.entry-tab:focus-visible { outline-color: var(--teal-dark); }

@media (max-width: 760px) {
  .lede-stage { max-width: none; }
  .lede-photo { border-radius: 26px; padding: 9px; }
  .lede-photo img { aspect-ratio: 3 / 2.2; border-radius: 19px; }
  .lede-stage .photo-label { right: 10px; bottom: 18px; }
}

/* ============================================================
   SERVICES + PRICING — one complete, filterable service guide
   ============================================================ */

.nav { gap: 20px; }
.nav a[aria-current="page"] { color: #fff; }
.services-quick { display: none; color: var(--teal-soft); font-size: 12px; font-weight: 800; text-decoration: none; }

.services-hero {
  position: relative;
  padding: 128px 0 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(56, 220, 201, .15), transparent 25rem),
    radial-gradient(circle at 6% 82%, rgba(167, 138, 231, .08), transparent 24rem),
    linear-gradient(180deg, #061a28 0%, var(--navy) 88%);
}
.services-hero::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -300px;
  top: -330px;
  border: 1px solid rgba(89,224,211,.14);
  border-radius: 50%;
  box-shadow: inset 0 0 110px rgba(69,220,205,.05);
}
.services-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; gap: 58px; align-items: center; }
.services-hero h1 { max-width: 720px; margin: 0; font-family: var(--serif); font-size: clamp(50px,5.2vw,76px); font-weight: 400; line-height: .95; letter-spacing: -.052em; }
.services-hero h1 em { display: block; color: var(--teal); font-weight: 400; }
.services-lead { max-width: 670px; margin: 24px 0 0; color: #c3d8de; font-size: 17px; line-height: 1.65; }
.services-hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 32px; flex-wrap: wrap; }
.hero-proof { display: grid; grid-template-columns: repeat(3,auto); width: fit-content; margin-top: 28px; overflow: hidden; border: 1px solid rgba(125,231,220,.15); border-radius: 17px; background: rgba(255,255,255,.025); }
.hero-proof > div { min-width: 148px; padding: 14px 17px; border-left: 1px solid rgba(125,231,220,.12); }
.hero-proof > div:first-child { border-left: 0; }
.hero-proof strong { display: block; color: #efffff; font-size: 11px; font-weight: 850; }
.hero-proof strong span { color: var(--amber); font-size: 9px; letter-spacing: .03em; }
.hero-proof small { display: block; margin-top: 5px; color: #7897a0; font-size: 8px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.sales-assurance { margin: 14px 0 0; color: #76939d; font-size: 10px; line-height: 1.55; }

.services-offers { overflow: hidden; border: 1px solid rgba(125,231,220,.24); border-radius: 28px; background: linear-gradient(145deg,rgba(255,255,255,.1),rgba(255,255,255,.025)); box-shadow: 0 30px 80px rgba(0,7,18,.3),inset 0 1px 0 rgba(255,255,255,.1); }
.services-offers-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding: 25px 27px 21px; }
.services-offers-head .eyebrow { margin-bottom: 8px; }
.services-offers-head strong { display: block; color: #f2ffff; font-family: var(--serif); font-size: 31px; font-weight: 400; line-height: 1; }
.services-offers-head > span { padding: 7px 9px; border: 1px solid rgba(125,231,220,.15); border-radius: 999px; color: #73929b; font-size: 8px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.hero-offer { display: grid; grid-template-columns: 9px 1fr auto; gap: 15px; align-items: center; padding: 18px 27px; border-top: 1px solid rgba(125,231,220,.12); color: inherit; text-decoration: none; transition: background .2s ease,transform .2s ease; }
.hero-offer:hover { background: rgba(255,255,255,.055); }
.hero-offer > i { width: 9px; height: 9px; border-radius: 50%; background: var(--offer-color,var(--teal)); box-shadow: 0 0 15px color-mix(in srgb,var(--offer-color,var(--teal)) 72%,transparent); }
.hero-offer div strong { display: block; color: #edffff; font-size: 13px; font-weight: 850; }
.hero-offer div span { display: block; margin-top: 5px; color: #8fb0ba; font-size: 11px; line-height: 1.45; }
.hero-offer > b { color: #f3ffff; font-family: var(--serif); font-size: 16px; font-weight: 400; line-height: 1.18; text-align: right; white-space: nowrap; }
.hero-offer > b small { display: block; margin-bottom: 5px; color: #7897a0; font-family: var(--sans); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.app-cue { display: block; margin-top: 8px; color: var(--teal); font-size: 11px; font-style: normal; font-weight: 850; }
.offers-cta { display: flex; min-height: 52px; align-items: center; justify-content: space-between; gap: 18px; padding: 15px 27px; border-top: 1px solid rgba(125,231,220,.15); color: #bdeee8; background: rgba(56,220,201,.055); font-size: 10px; font-weight: 850; text-decoration: none; }
.offers-cta span { color: var(--teal); font-size: 14px; }

.service-jump { position: sticky; top: 76px; z-index: 30; border-top: 1px solid rgba(125,231,220,.1); border-bottom: 1px solid rgba(125,231,220,.15); background: rgba(5,21,34,.94); backdrop-filter: blur(18px); }
.service-jump-inner { display: flex; min-height: 60px; align-items: center; gap: 9px; overflow-x: auto; scrollbar-width: none; }
.service-jump-inner::-webkit-scrollbar { display: none; }
.service-jump-inner > span { flex: 0 0 auto; margin-right: 5px; color: #63828c; font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.service-jump a { flex: 0 0 auto; padding: 8px 11px; border: 1px solid rgba(125,231,220,.14); border-radius: 999px; color: #a9c4cc; background: rgba(255,255,255,.025); font-size: 10px; font-weight: 750; text-decoration: none; }
.service-jump a:hover { border-color: rgba(125,231,220,.34); color: #fff; }

.service-compare { padding: 100px 0; color: var(--ink); background: var(--cream); }
.service-section-head { display: grid; grid-template-columns: 1fr .7fr; gap: 64px; align-items: end; }
.service-section-head .eyebrow { color: var(--teal-dark); }
.service-section-head h2 { margin: 0; font-family: var(--serif); font-size: clamp(40px,4.8vw,62px); font-weight: 400; line-height: 1; letter-spacing: -.04em; }
.service-section-head > p { margin: 0 0 4px; color: #5a7279; font-size: 15px; line-height: 1.7; }
.service-filters { display: flex; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.service-filter { min-height: 44px; padding: 9px 14px; border: 1px solid rgba(10,69,70,.16); border-radius: 999px; color: #496a70; background: rgba(255,255,255,.55); font-family: var(--sans); font-size: 10px; font-weight: 800; cursor: pointer; }
.service-filter:hover { border-color: var(--teal-dark); background: #fff; }
.service-filter.active, .service-filter[aria-pressed="true"] { border-color: #0d7f75; color: #fff; background: #0d7f75; box-shadow: 0 11px 26px rgba(13,127,117,.16); }
.service-filter:focus-visible { outline-color: var(--teal-dark); }
.service-filter-status { margin: 14px 0 0; color: #72898e; font-size: 10px; }
.service-index { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; margin-top: 28px; }
.service-index-card { position: relative; display: flex; min-height: 230px; flex-direction: column; padding: 25px; overflow: hidden; border: 1px solid var(--line-light); border-radius: 23px; color: var(--ink); background: rgba(255,255,255,.68); box-shadow: 0 16px 48px rgba(14,45,47,.055),inset 0 1px 0 #fff; text-decoration: none; transition: transform .24s ease,box-shadow .24s ease,border-color .24s ease; }
.service-index-card::after { content: ""; position: absolute; width: 140px; height: 140px; right: -92px; bottom: -96px; border: 1px solid color-mix(in srgb,var(--service-color) 55%,transparent); border-radius: 50%; }
.service-index-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb,var(--service-color) 55%,transparent); box-shadow: 0 27px 62px rgba(14,45,47,.11),inset 0 1px 0 #fff; }
.service-index-card[hidden] { display: none; }
.service-index-card > span { color: #6e878d; font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.service-index-card strong { max-width: 300px; margin-top: 24px; font-family: var(--serif); font-size: 25px; font-weight: 400; line-height: 1.12; }
.service-index-card i { margin-top: auto; padding-top: 20px; color: var(--teal-dark); font-size: 10px; font-style: normal; font-weight: 900; }

.service-catalog { padding: 94px 0 112px; background: #071a28; }
.service-detail { scroll-margin-top: 158px; margin-top: 24px; overflow: hidden; border: 1px solid rgba(125,231,220,.18); border-radius: 30px; background: radial-gradient(circle at 94% 2%,color-mix(in srgb,var(--service-color) 12%,transparent),transparent 22rem),linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.018)); box-shadow: 0 28px 78px rgba(0,6,15,.22),inset 0 1px 0 rgba(255,255,255,.075); }
.service-detail:first-child { margin-top: 0; }
.service-detail:target { border-color: color-mix(in srgb,var(--service-color) 70%,#fff); box-shadow: 0 0 0 4px color-mix(in srgb,var(--service-color) 12%,transparent),0 32px 90px rgba(0,6,15,.34); }
.service-detail-head { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end; padding: 42px 44px 34px; }
.service-number { display: grid; width: 38px; height: 38px; place-items: center; margin-bottom: 22px; border: 1px solid color-mix(in srgb,var(--service-color) 60%,transparent); border-radius: 50%; color: var(--service-color); font-size: 10px; font-weight: 900; }
.service-detail-head .eyebrow { color: color-mix(in srgb,var(--service-color) 80%,#fff); }
.service-detail-head h2 { margin: 0; color: #f2ffff; font-family: var(--serif); font-size: clamp(42px,5vw,64px); font-weight: 400; line-height: .98; letter-spacing: -.04em; }
.service-detail-head div:first-child > p:last-child { max-width: 760px; margin: 20px 0 0; color: #9fb8c0; font-size: 15px; line-height: 1.72; }
.service-price { min-width: 235px; padding: 22px; border: 1px solid color-mix(in srgb,var(--service-color) 35%,transparent); border-radius: 20px; background: rgba(2,17,28,.46); }
.service-price small { display: block; color: #7898a1; font-size: 8px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.service-price strong { display: block; margin-top: 8px; color: #f3ffff; font-family: var(--serif); font-size: 27px; font-weight: 400; line-height: 1; }
.service-price span { display: block; margin-top: 10px; color: color-mix(in srgb,var(--service-color) 72%,#c3d9e0); font-size: 9px; font-weight: 750; }
.service-option-line { display: flex; align-items: center; gap: 8px; padding: 18px 44px; border-top: 1px solid rgba(125,231,220,.11); border-bottom: 1px solid rgba(125,231,220,.11); flex-wrap: wrap; }
.service-option-line b { margin-right: 8px; color: #dff5f6; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.service-option-line span { padding: 7px 10px; border: 1px solid rgba(125,231,220,.12); border-radius: 999px; color: #8faab3; background: rgba(255,255,255,.025); font-size: 9px; font-weight: 700; }
.service-more > summary { display: flex; min-height: 54px; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 44px; color: #b8d0d6; font-size: 11px; font-weight: 800; cursor: pointer; list-style: none; }
.service-more > summary::-webkit-details-marker { display: none; }
.service-more > summary::after { content: "+"; color: var(--service-color); font-size: 18px; font-weight: 400; }
.service-more[open] > summary::after { content: "−"; }
.service-more[open] > summary { border-bottom: 1px solid rgba(125,231,220,.1); }
.service-more-body { padding: 34px 44px 40px; }
.service-reasons { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.service-reasons > div { padding: 21px; border: 1px solid rgba(125,231,220,.12); border-radius: 18px; background: rgba(2,17,28,.32); }
.service-reasons b { color: #ebffff; font-family: var(--serif); font-size: 20px; font-weight: 400; }
.service-reasons p { margin: 10px 0 0; color: #8da8b1; font-size: 11px; line-height: 1.65; }
.service-process { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 24px; }
.service-process.four { grid-template-columns: repeat(4,1fr); }
.service-process > div { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; padding: 17px; border-top: 1px solid rgba(125,231,220,.14); }
.service-process span, .phase-grid span { color: var(--service-color); font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.service-process p { margin: 0; color: #87a1aa; font-size: 10px; line-height: 1.6; }
.service-process b { color: #dff4f5; }
.service-team-note { margin: 22px 0 0; padding: 17px 19px; border-left: 2px solid var(--service-color); color: #a7bdc4; background: rgba(255,255,255,.025); font-size: 11px; line-height: 1.6; }
.service-team-note b { color: #efffff; }
.signature-package small { color: var(--service-color); font-size: 8px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.phase-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 24px; }
.phase-grid > div { padding: 20px; border: 1px solid rgba(125,231,220,.13); border-radius: 18px; background: rgba(255,255,255,.025); }
.phase-grid b { display: block; margin-top: 16px; color: #eaffff; font-family: var(--serif); font-size: 21px; font-weight: 400; }
.phase-grid p { margin: 9px 0 0; color: #839fa8; font-size: 10px; line-height: 1.6; }
.service-faqs { margin-top: 25px; padding: 24px; border: 1px solid rgba(125,231,220,.13); border-radius: 19px; background: rgba(2,17,28,.3); }
.service-faqs h3 { margin: 0 0 9px; color: #efffff; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.service-faqs details { border-top: 1px solid rgba(125,231,220,.12); }
.service-faqs summary { padding: 15px 0; color: #c6dbdf; font-size: 11px; font-weight: 800; cursor: pointer; }
.service-faqs p { margin: 0 0 15px; color: #879fa7; font-size: 10px; line-height: 1.7; }
.service-faqs a { color: var(--teal-soft); }
.aesthetic-proof { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.aesthetic-proof span { padding: 8px 11px; border: 1px solid color-mix(in srgb,var(--service-color) 24%,transparent); border-radius: 999px; color: #a9bdc3; font-size: 9px; font-weight: 750; }
.aesthetic-proof span::before { content: "✓"; margin-right: 7px; color: var(--service-color); }
.signature-package { display: grid; grid-template-columns: .72fr 1.28fr; gap: 28px; margin-top: 24px; padding: 26px; border: 1px solid color-mix(in srgb,var(--service-color) 40%,transparent); border-radius: 20px; background: color-mix(in srgb,var(--service-color) 7%,rgba(2,17,28,.36)); }
.signature-package strong { display: block; margin-top: 9px; color: #f4ffff; font-family: var(--serif); font-size: 26px; font-weight: 400; }
.signature-package p { margin: 8px 0 0; color: #8fa9b1; font-size: 11px; }
.signature-package ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.signature-package li { position: relative; padding-left: 20px; color: #a8bec4; font-size: 11px; line-height: 1.55; }
.signature-package li::before { content: "✓"; position: absolute; left: 0; color: var(--service-color); font-weight: 900; }
.service-actions { display: flex; align-items: center; gap: 22px; padding: 0 44px 40px; flex-wrap: wrap; }
.services-final .final-safety { font-size: 10px; }
.services-offers-head p:not(.eyebrow) { max-width: 360px; margin: 10px 0 0; color: #8fb0ba; font-size: 12px; line-height: 1.5; }
.offers-note { margin: 0; padding: 0 27px 16px; color: #7c9ba4; background: rgba(56,220,201,.055); font-size: 10px; line-height: 1.5; }

/* App-first doors: one look for everything that opens the MedSpañol app.
   Mobile first; wider layouts are added in the min-width blocks below. */
.services-page .header-actions .primary { min-height: 44px; }
.services-page .services-hero-actions .text-link,
.services-page .service-actions .text-link,
.services-page .service-offer-link .text-link,
.services-page .final-actions .text-link { display: inline-flex; min-height: 44px; align-items: center; }
.service-offer { padding: 28px 22px 0; border-top: 1px solid rgba(125,231,220,.1); }
.service-offer-link { margin: 14px 0 0; }
.app-tiles { display: grid; gap: 12px; }
.app-tile { display: flex; flex-direction: column; gap: 10px; padding: 20px; border: 1px solid color-mix(in srgb,var(--service-color,var(--teal)) 34%,transparent); border-radius: 20px; background: rgba(2,17,28,.42); }
.app-tile > small { color: color-mix(in srgb,var(--service-color,var(--teal)) 78%,#fff); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.app-tile > strong { color: #f2ffff; font-family: var(--serif); font-size: 23px; font-weight: 400; line-height: 1.15; }
.app-price { color: #f3ffff; font-size: 15px; font-weight: 850; }
.app-tile p, .app-tile li { margin: 0; color: #9db6be; font-size: 12px; line-height: 1.6; }
.app-tile ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.app-tile > p:last-of-type { margin-bottom: 8px; }
.app-tile .app-note, .app-tile .app-terms { color: #7f9aa3; font-size: 11px; }
.app-door { display: flex; min-height: 46px; margin-top: auto; align-items: center; justify-content: space-between; gap: 14px; padding: 11px 18px; border: 1px solid color-mix(in srgb,var(--service-color,var(--teal)) 60%,transparent); border-radius: 16px; color: #effffe; background: color-mix(in srgb,var(--service-color,var(--teal)) 12%,transparent); font-size: 12px; font-weight: 850; line-height: 1.3; text-decoration: none; transition: background .2s ease, border-color .2s ease; }
.app-door:hover { border-color: var(--service-color,var(--teal)); background: color-mix(in srgb,var(--service-color,var(--teal)) 22%,transparent); }
.app-door span { color: var(--service-color,var(--teal)); }
[data-app-selection][aria-busy="true"] { cursor: progress; opacity: .7; }
.app-strip { display: grid; gap: 12px; margin: 16px 0 26px; padding: 18px 20px; border: 1px solid rgba(125,231,220,.16); border-radius: 18px; background: rgba(56,220,201,.045); }
.app-strip b { color: var(--teal); font-size: 10px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.app-strip ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.app-strip li { position: relative; padding-left: 17px; color: #c2d8dd; font-size: 13px; line-height: 1.55; }
.app-strip li::before { content: ""; position: absolute; top: .5em; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 10px rgba(56,220,201,.6); }
.service-actions-note { flex-basis: 100%; margin: 0; color: #8aa4ad; font-size: 12px; line-height: 1.6; }
.service-actions-note b { color: #efffff; }
.service-actions .app-terms { flex-basis: 100%; margin: -14px 0 0; color: #7f9aa3; font-size: 11px; line-height: 1.6; }

.plans { margin-top: 56px; scroll-margin-top: 134px; }
.plans-head { display: grid; gap: 16px; }
.plans-head h2 { margin: 0; color: #f2ffff; font-family: var(--serif); font-size: clamp(36px,4.4vw,56px); font-weight: 400; line-height: 1.02; letter-spacing: -.035em; }
.plans-head > p { margin: 0; color: #9fb8c0; font-size: 15px; line-height: 1.7; }
.plans-grid { display: grid; gap: 14px; margin-top: 32px; }
.plan-card { display: flex; flex-direction: column; padding: 24px 16px 16px; border: 1px solid rgba(125,231,220,.18); border-radius: 24px; background: linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.018)); }
.plan-card header { padding: 0 4px; }
.plan-card h3 { margin: 0; color: #f2ffff; font-family: var(--serif); font-size: 28px; font-weight: 400; line-height: 1.1; }
.plan-price { margin: 6px 0 0; color: var(--teal-soft); font-size: 16px; font-weight: 850; }
.plan-card header p:last-child { margin: 12px 0 0; color: #9fb8c0; font-size: 13px; line-height: 1.6; }
.plan-benefits { display: grid; gap: 9px; margin: 20px 4px 22px; padding: 18px 0 0; border-top: 1px solid rgba(125,231,220,.12); list-style: none; }
.plan-benefits li { position: relative; padding-left: 20px; color: #b4cad0; font-size: 12px; line-height: 1.55; }
.plan-benefits li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.plan-choices { display: grid; gap: 10px; margin-top: auto; }
.plans-terms { display: grid; gap: 8px; margin: 28px 0 0; padding: 22px 0 0; border-top: 1px solid rgba(125,231,220,.12); list-style: none; }
.plans-terms li { color: #8ea8b0; font-size: 12px; line-height: 1.6; }
.plans-note { margin: 14px 0 0; color: #b5cbd1; font-size: 12px; font-weight: 750; }
.services-final .services-final-note { margin-top: 18px; font-size: 13px; }
.services-final-note a { color: var(--teal-dark); font-weight: 800; }
.services-page .footer-note + .footer-note { margin-top: 8px; }
.services-page .footer-note a { color: inherit; text-underline-offset: 2px; }

@media (min-width: 761px) {
  .service-offer { padding: 32px 44px 0; }
  .app-tiles { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .app-tile:only-child { grid-column: 1 / -1; max-width: 560px; }
  .app-strip { grid-template-columns: 110px 1fr; align-items: start; padding: 20px 24px; }
  .app-strip b { padding-top: 2px; }
  .app-strip ul { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
  .plans { scroll-margin-top: 158px; }
  .plans-head { grid-template-columns: 1fr .8fr; gap: 48px; align-items: end; }
  .plan-card { padding: 28px 24px 24px; }
}

@media (min-width: 1041px) {
  .plans-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 1120px) {
  .services-hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .service-index { grid-template-columns: repeat(2,1fr); }
  .service-process.four { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 1040px) {
  .services-quick { display: inline-flex; }
}

@media (max-width: 760px) {
  .header-inner { gap: 10px; }
  .header-actions { gap: 10px; }
  .services-quick { font-size: 10px; }
  .services-hero { padding: 116px 0 70px; }
  .services-hero h1 { font-size: 50px; }
  .services-lead { font-size: 15px; }
  .services-hero-actions { align-items: stretch; flex-direction: column; }
  .services-hero-actions .primary { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; width: 100%; }
  .hero-proof > div { min-width: 0; border-top: 1px solid rgba(125,231,220,.12); border-left: 0; }
  .hero-proof > div:first-child { border-top: 0; }
  .services-offers { border-radius: 22px; }
  .services-offers-head { align-items: flex-start; padding: 23px 20px 18px; }
  .services-offers-head > span { display: none; }
  .hero-offer { grid-template-columns: 8px 1fr; gap: 8px 12px; padding: 17px 20px; }
  .hero-offer > i { align-self: start; margin-top: 5px; }
  .hero-offer > b { grid-column: 2; font-size: 15px; text-align: left; white-space: normal; }
  .offers-cta { padding-inline: 20px; }
  .service-jump { top: 68px; }
  .service-jump-inner { min-height: 54px; }
  .service-compare { padding: 72px 0; }
  .service-section-head { grid-template-columns: 1fr; gap: 20px; }
  .service-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
  .service-filter { flex: 0 0 auto; }
  .service-index { grid-template-columns: 1fr; }
  .service-index-card { min-height: 205px; }
  .service-catalog { padding: 70px 0 82px; }
  .service-detail { scroll-margin-top: 134px; border-radius: 23px; }
  .service-detail-head { grid-template-columns: 1fr; gap: 25px; padding: 28px 22px 24px; }
  .service-detail-head h2 { font-size: 43px; }
  .service-price { min-width: 0; }
  .service-option-line { padding: 16px 22px; }
  .service-more > summary { padding: 15px 22px; }
  .service-more-body { padding: 24px 22px 30px; }
  .service-reasons, .service-process, .service-process.four, .phase-grid { grid-template-columns: 1fr; }
  .service-process > div { padding: 14px 0; }
  .signature-package { grid-template-columns: 1fr; gap: 22px; }
  .service-actions { align-items: stretch; flex-direction: column; padding: 0 22px 30px; }
  .service-actions .primary { width: 100%; }
}

@media (max-width: 430px) {
  .logo { width: 98px; }
  .header-actions .primary { padding-inline: 12px; }
}
