@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

.wp-site-blocks { padding: 0; }
.wp-site-blocks > * { margin-block-start: 0; }
.lantegibox-main { margin: 0; }
body.menu-open { overflow: hidden; }
body.admin-bar .site-header { top: 32px; }

.standard-page {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 120px;
}
.standard-page h1 { font-size: clamp(44px, 7vw, 72px); letter-spacing: -.055em; line-height: 1.02; }
.standard-page .wp-block-post-content { color: var(--ink-soft); font-size: 17px; line-height: 1.8; }
.standard-page .wp-block-post-content h2 { margin-top: 2em; color: var(--ink); font-size: 36px; letter-spacing: -.035em; }

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

:root {
  --ink: #0a1524;
  --ink-soft: #425062;
  --navy: #0a2438;
  --navy-deep: #071d2d;
  --blue: #103cff;
  --blue-soft: #dce5ff;
  --yellow: #ffe033;
  --mint: #bcebdc;
  --paper: #f4f7f4;
  --white: #ffffff;
  --line: #dce2df;
  --radius-sm: 16px;
  --radius: 24px;
  --radius-lg: 36px;
  --shadow: 0 24px 70px rgba(11, 29, 45, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
.shell { width: min(1280px, calc(100% - 64px)); margin-inline: auto; }
.section { padding: 128px 0; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  background: var(--yellow);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: #3e4b5b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(16, 60, 255, .1);
}
.eyebrow-light { color: rgba(255,255,255,.7); }
.eyebrow-light > span { background: var(--yellow); box-shadow: 0 0 0 5px rgba(255, 224, 51, .14); }
.micro-label {
  color: #5e6877;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 247, 244, .9);
  border-bottom: 1px solid rgba(10, 21, 36, .08);
  backdrop-filter: blur(18px);
}
.topline { background: var(--navy); color: white; }
.topline-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 34px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .03em;
}
.topline-inner a { color: var(--yellow); }
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { width: 166px; height: 44px; display: flex; align-items: center; overflow: hidden; }
.brand img { width: 166px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > a:not(.button) {
  position: relative;
  font-size: 13px;
  font-weight: 700;
}
.nav-links > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-links > a:not(.button):hover::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 0 18px; font-size: 12px; }
.button-primary { background: var(--yellow); color: var(--ink); box-shadow: 0 12px 32px rgba(255, 224, 51, .25); }
.button-primary:hover { box-shadow: 0 15px 38px rgba(255, 224, 51, .4); background: #ffe866; }
.button-yellow { background: var(--yellow); color: var(--ink); }
.nav-cta { background: var(--blue); color: white; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.45);
  color: white;
  font-size: 13px;
  font-weight: 800;
}
.text-link-dark { color: var(--ink); border-bottom-color: rgba(10,21,36,.25); }

.hero {
  position: relative;
  padding: 96px 0 0;
  background:
    radial-gradient(circle at 83% 18%, rgba(16, 60, 255, .12), transparent 28%),
    linear-gradient(135deg, #f8faf7 0%, #eef4ef 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .26;
  background-image: radial-gradient(#7c8b84 0.6px, transparent 0.6px);
  background-size: 13px 13px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr);
  align-items: center;
  gap: 68px;
  min-height: 650px;
  padding-bottom: 92px;
}
.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(52px, 5.6vw, 80px);
  font-weight: 820;
  letter-spacing: -.066em;
  line-height: .99;
}
.hero-copy h1 .ink { color: var(--blue); }
.hero-copy h1 .highlight { position: relative; display: inline-block; z-index: 1; }
.hero-copy h1 .highlight::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -3px;
  bottom: 4px;
  left: -4px;
  height: .28em;
  border-radius: 2px 9px 3px 7px;
  background: var(--yellow);
  transform: rotate(-1deg);
}
.hero-lead {
  max-width: 660px;
  margin: 30px 0 0;
  color: #465361;
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.hero-actions .text-link { color: var(--ink); border-bottom-color: rgba(10,21,36,.24); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 16px 22px; margin-top: 30px; }
.hero-proof span { display: inline-flex; align-items: center; gap: 6px; color: #536171; font-size: 12px; font-weight: 700; }
.hero-proof svg { color: var(--blue); }

.hero-visual { position: relative; min-height: 530px; display: grid; place-items: center; }
.hero-visual::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: var(--yellow);
  filter: saturate(.94);
}
.dashboard-card {
  position: relative;
  z-index: 3;
  width: min(100%, 500px);
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 32px;
  background: rgba(7, 29, 45, .97);
  color: white;
  box-shadow: 0 40px 90px rgba(10, 36, 56, .28);
  transform: rotate(-2deg);
}
.dashboard-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.dashboard-top > div { display: grid; gap: 3px; }
.dashboard-top .micro-label { color: rgba(255,255,255,.52); }
.dashboard-top strong { font-size: 24px; letter-spacing: -.035em; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 99px; color: rgba(255,255,255,.74); font-size: 10px; font-weight: 700; }
.live-pill i { width: 7px; height: 7px; border-radius: 50%; background: #65dda5; box-shadow: 0 0 0 5px rgba(101,221,165,.1); }
.status-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 38px; }
.status-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 98px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.065);
}
.status-large { grid-column: 1 / -1; min-height: 108px; }
.status-icon { display: grid; place-items: center; width: 46px; height: 46px; flex: 0 0 auto; border-radius: 14px; }
.status-icon.blue { background: var(--blue); }
.status-icon.mint { background: var(--mint); color: var(--ink); }
.status-icon.yellow { background: var(--yellow); color: var(--ink); }
.status-card > div { display: grid; }
.status-card small, .dashboard-footer small { color: rgba(255,255,255,.52); font-size: 10px; }
.status-card b, .dashboard-footer b { font-size: 12px; }
.status-ok { margin-left: auto; padding: 6px 9px; border-radius: 99px; background: rgba(101,221,165,.12); color: #73e5b1; font-size: 10px; font-weight: 800; }
.dashboard-footer { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.dashboard-footer > div { display: grid; }
.avatar-mark { display: grid !important; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--yellow); color: var(--ink); font-size: 12px; font-weight: 900; }
.message-dot { display: grid; place-items: center; width: 38px; height: 38px; margin-left: auto; border-radius: 50%; background: white; color: var(--ink); }
.floating-note {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid rgba(10,21,36,.08);
  border-radius: 999px;
  background: white;
  box-shadow: 0 18px 50px rgba(10,21,36,.14);
  font-size: 11px;
  font-weight: 800;
  animation: float 5s ease-in-out infinite;
}
.floating-note i { width: 8px; height: 8px; border-radius: 50%; background: #34c989; }
.note-one { top: 35px; right: -8px; }
.note-two { bottom: 28px; left: -24px; animation-delay: -2.5s; }
.orbit { position: absolute; z-index: 1; border: 1px solid rgba(16,60,255,.18); border-radius: 50%; }
.orbit-one { width: 520px; height: 520px; }
.orbit-two { width: 590px; height: 590px; border-style: dashed; }
.hero-scribble-one {
  position: absolute;
  top: 88px;
  right: 47%;
  width: 110px;
  height: 54px;
  border-top: 4px solid var(--blue);
  border-radius: 50%;
  transform: rotate(17deg);
  opacity: .68;
}
.fit-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: .7fr 1fr 1.25fr 1.15fr;
  align-items: center;
  min-height: 84px;
  border-top: 1px solid rgba(10,21,36,.11);
  font-size: 12px;
}
.fit-strip span { position: relative; padding-left: 18px; color: #536171; font-weight: 650; }
.fit-strip span:not(.fit-title)::before { content: ""; position: absolute; top: 8px; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
.fit-strip .fit-title { padding-left: 0; color: var(--ink); font-weight: 850; }

.section-heading h2, .method h2, .human h2, .faq-section h2, .diagnostic h2 {
  margin: 0;
  font-size: clamp(43px, 5vw, 67px);
  font-weight: 800;
  letter-spacing: -.058em;
  line-height: 1.03;
}
.section-heading h2 em, .method h2 em, .human h2 em, .resources h2 em { color: var(--blue); font-style: normal; }
.split-heading { display: grid; grid-template-columns: 1.2fr .55fr; align-items: end; gap: 80px; margin-bottom: 64px; }
.split-heading > p { margin: 0 0 8px; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.family-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.family-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 440px;
  padding: 26px;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}
.family-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.family-top { display: flex; align-items: center; justify-content: space-between; }
.family-number { font-size: 11px; font-weight: 800; opacity: .62; }
.family-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.7); }
.family-kicker { display: block; margin-bottom: 10px; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.family-card h3 { margin: 0; font-size: 27px; line-height: 1.12; letter-spacing: -.04em; }
.family-card p { margin: 14px 0 0; font-size: 13px; line-height: 1.65; opacity: .76; }
.family-link { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; padding-top: 16px; border-top: 1px solid currentColor; font-size: 12px; font-weight: 850; }
.family-blue { background: var(--blue); color: white; }
.family-mint { background: var(--mint); color: var(--ink); }
.family-dark { background: var(--navy); color: white; }
.family-yellow { background: var(--yellow); color: var(--ink); }
.family-blue .family-icon, .family-dark .family-icon { background: rgba(255,255,255,.13); }

.no-tech-drama { background: var(--navy); color: white; }
.drama-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.drama-copy h2 { margin: 0; max-width: 610px; font-size: clamp(50px, 6vw, 78px); line-height: .99; letter-spacing: -.06em; }
.drama-copy h2 span { color: var(--yellow); }
.drama-copy > p:not(.eyebrow) { max-width: 560px; margin: 28px 0 34px; color: rgba(255,255,255,.65); font-size: 17px; line-height: 1.75; }
.outcomes-list { border-top: 1px solid rgba(255,255,255,.18); }
.outcomes-list article { position: relative; display: grid; grid-template-columns: 70px .9fr 1.1fr; gap: 24px; align-items: center; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.outcomes-list article > span { color: rgba(255,255,255,.42); font-size: 10px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.outcomes-list p { margin: 0; color: rgba(255,255,255,.52); font-size: 13px; }
.outcomes-list strong { position: relative; margin: 0; color: white; font-size: 14px; line-height: 1.55; }
.outcomes-list strong::before { content: "→"; margin-right: 10px; color: var(--yellow); }

.method { background: #fff; }
.method-heading { display: grid; grid-template-columns: 1fr 260px; align-items: end; gap: 100px; }
.method-note { position: relative; padding: 22px 0 8px 44px; color: var(--ink-soft); font-size: 14px; transform: rotate(-2deg); }
.hand-arrow { position: absolute; left: 0; bottom: 0; color: var(--blue); font-size: 40px; line-height: 1; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 76px; }
.process-step { padding-right: 34px; }
.process-number { display: inline-block; margin-bottom: 18px; color: var(--blue); font-size: 12px; font-weight: 900; }
.process-line { position: relative; height: 1px; margin-bottom: 28px; background: var(--line); }
.process-line i { position: absolute; top: -5px; left: 0; width: 11px; height: 11px; border: 3px solid white; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 1px var(--blue); }
.process-step:last-child .process-line { background: linear-gradient(to right, var(--line), transparent); }
.process-step h3 { margin: 0; font-size: 21px; letter-spacing: -.03em; }
.process-step p { margin: 10px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }

.priorities { background: var(--paper); }
.bento-grid { display: grid; grid-template-columns: 1.1fr .9fr; grid-template-rows: auto auto; gap: 16px; }
.bento {
  position: relative;
  min-height: 390px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  overflow: hidden;
}
.bento h3 { max-width: 520px; margin: 14px 0 12px; font-size: 32px; line-height: 1.1; letter-spacing: -.045em; }
.bento > p { max-width: 520px; margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }
.bento > a { position: absolute; right: 34px; bottom: 30px; left: 34px; display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(10,21,36,.13); font-size: 12px; font-weight: 850; }
.bento-support { min-height: 460px; background: var(--blue); color: white; border-color: transparent; }
.bento-support .micro-label, .bento-support > p { color: rgba(255,255,255,.68); }
.bento-support > a { border-color: rgba(255,255,255,.22); }
.bento-icon { position: absolute; top: 32px; right: 32px; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; background: rgba(255,255,255,.14); }
.mini-ticket { position: absolute; right: 34px; bottom: 90px; left: 34px; display: flex; align-items: center; gap: 10px; padding: 16px; border-radius: 16px; background: rgba(255,255,255,.12); font-size: 11px; }
.mini-ticket i { width: 8px; height: 8px; border-radius: 50%; background: #65dda5; }
.mini-ticket b { margin-left: auto; color: var(--yellow); }
.bento-365 { background: var(--mint); border-color: transparent; }
.app-dots { display: flex; gap: 9px; margin-top: 34px; }
.app-dots i { width: 44px; height: 44px; border: 6px solid rgba(255,255,255,.65); border-radius: 13px; background: var(--blue); transform: rotate(-6deg); }
.app-dots i:nth-child(2) { background: #00a4ef; transform: rotate(5deg); }
.app-dots i:nth-child(3) { background: #ffb900; transform: rotate(-3deg); }
.app-dots i:nth-child(4) { background: #f25022; transform: rotate(6deg); }
.app-dots i:nth-child(5) { background: #7fba00; transform: rotate(-4deg); }
.bento-backup { background: white; }
.backup-meter { display: flex; align-items: center; justify-content: space-between; margin-top: 34px; padding: 18px; border-radius: 16px; background: var(--paper); font-size: 11px; }
.backup-meter span { display: flex; align-items: center; gap: 8px; }
.backup-meter i { width: 8px; height: 8px; border-radius: 50%; background: #45cf90; box-shadow: 0 0 0 5px rgba(69,207,144,.12); }
.backup-meter b { color: #158254; }
.bento-billing { background: var(--yellow); border-color: transparent; }
.billing-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.billing-tags span { padding: 9px 12px; border: 1px solid rgba(10,21,36,.14); border-radius: 99px; background: rgba(255,255,255,.36); font-size: 10px; font-weight: 800; }

.human { background: white; }
.human-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 110px; align-items: center; }
.coordination-frame { position: relative; max-width: 540px; padding: 16px; border: 1px solid var(--line); border-radius: 38px; background: white; transform: rotate(-1.25deg); box-shadow: 0 28px 80px rgba(10,36,56,.08); }
.coordination-visual { position: relative; min-height: 590px; padding: 30px; border-radius: 27px; background: linear-gradient(145deg, #eef3ff 0%, #e4f6ef 100%); overflow: hidden; }
.coordination-visual::before { content: ""; position: absolute; right: -110px; top: -120px; width: 350px; height: 350px; border: 1px dashed rgba(16,60,255,.22); border-radius: 50%; }
.coordination-kicker { position: relative; display: flex; align-items: center; gap: 9px; color: #536171; font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.coordination-kicker i { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(16,60,255,.1); }
.coordination-hub { position: relative; display: flex; align-items: center; gap: 16px; margin-top: 30px; padding: 20px; border: 1px solid rgba(16,60,255,.16); border-radius: 22px; background: var(--blue); color: white; box-shadow: 0 18px 36px rgba(16,60,255,.18); }
.hub-mark { display: grid; flex: 0 0 58px; width: 58px; height: 58px; place-items: center; border-radius: 17px; background: var(--yellow); color: var(--ink); font-size: 28px; font-weight: 900; letter-spacing: -.08em; }
.coordination-hub small, .coordination-hub strong, .coordination-hub p { display: block; }
.coordination-hub small { margin-bottom: 1px; color: rgba(255,255,255,.7); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.coordination-hub strong { font-size: 18px; letter-spacing: -.025em; }
.coordination-hub p { margin: 2px 0 0; color: rgba(255,255,255,.72); font-size: 10px; }
.coordination-path { position: relative; width: 1px; height: 42px; margin-inline: auto; background: rgba(16,60,255,.35); }
.coordination-path::before, .coordination-path::after { content: ""; position: absolute; left: 50%; border-radius: 50%; transform: translateX(-50%); }
.coordination-path::before { top: 17px; width: 9px; height: 9px; border: 2px solid var(--blue); background: #e9f4f2; }
.coordination-path::after { bottom: -3px; width: 7px; height: 7px; background: var(--blue); }
.specialist-label { position: relative; margin: 0 0 15px; color: #536171; font-size: 10px; font-weight: 800; text-align: center; }
.specialist-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.specialist-grid > div { display: flex; align-items: center; gap: 11px; min-height: 70px; padding: 13px 14px; border: 1px solid rgba(10,21,36,.09); border-radius: 17px; background: rgba(255,255,255,.86); color: var(--blue); }
.specialist-grid span { color: var(--ink); font-size: 11px; font-weight: 820; line-height: 1.25; }
.specialist-grid small { display: block; margin-bottom: 3px; color: #6c7786; font-size: 8px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.coordination-result { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 24px; padding-top: 21px; border-top: 1px solid rgba(10,21,36,.12); }
.coordination-result span { color: #526070; font-size: 9px; font-weight: 800; text-align: center; }
.coordination-result b { margin-right: 4px; color: var(--blue); }
.coordination-sticker { position: absolute; right: -54px; top: 38px; z-index: 5; padding: 18px 20px; border: 2px solid var(--ink); border-radius: 50%; background: var(--yellow); font-size: 11px; font-weight: 850; line-height: 1.4; text-align: center; transform: rotate(9deg); }
.human-copy { max-width: 650px; }
.human-lead { margin: 28px 0; color: var(--ink-soft); font-size: 18px; line-height: 1.75; }
.human-copy blockquote { margin: 0; padding: 25px 0 25px 28px; border-left: 4px solid var(--yellow); font-size: 20px; font-weight: 730; line-height: 1.55; letter-spacing: -.02em; }
.trust-points { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.trust-points span { display: inline-flex; align-items: center; gap: 6px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 99px; color: var(--ink-soft); font-size: 11px; font-weight: 750; }
.trust-points svg { color: var(--blue); }

.coverage { padding: 110px 0; background: var(--blue); color: white; overflow: hidden; }
.coverage-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.coverage-grid::before { content: ""; position: absolute; left: 36%; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.coverage-grid h2 { margin: 0; font-size: clamp(78px, 10vw, 140px); line-height: .82; letter-spacing: -.08em; }
.coverage-grid h2 span { color: var(--yellow); }
.coverage-card { position: relative; z-index: 2; max-width: 540px; padding: 42px; border: 1px solid rgba(255,255,255,.18); border-radius: 30px; background: rgba(6,29,45,.26); backdrop-filter: blur(12px); }
.coverage-card h3 { margin: 24px 0 16px; font-size: 29px; line-height: 1.18; letter-spacing: -.04em; }
.coverage-card p { color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.7; }
.pin-pulse { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--yellow); }
.pin-pulse i { width: 10px; height: 10px; border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 8px rgba(10,21,36,.1); }
.place-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.place-tags span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.2); border-radius: 99px; font-size: 10px; font-weight: 750; }

.resources { background: var(--paper); }
.resource-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 62px; }
.resource-heading h2 { margin: 0; font-size: clamp(45px, 5vw, 68px); line-height: 1.02; letter-spacing: -.06em; }
.resource-grid { display: grid; grid-template-columns: 1.25fr .875fr .875fr; gap: 14px; }
.resource-card { position: relative; min-height: 440px; padding: 27px; border: 1px solid var(--line); border-radius: 26px; background: white; overflow: hidden; }
.resource-card h3 { position: absolute; right: 27px; bottom: 72px; left: 27px; margin: 0; font-size: 22px; line-height: 1.25; letter-spacing: -.035em; }
.resource-card > a { position: absolute; right: 25px; bottom: 22px; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: white; transition: transform .2s ease; }
.resource-card:hover > a { transform: translate(3px, -3px); }
.resource-topic { font-size: 10px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.resource-index { margin-top: 40px; color: #dce2df; font-size: 104px; font-weight: 850; letter-spacing: -.08em; }
.featured-resource { background: var(--yellow); border-color: transparent; }
.resource-visual { position: absolute; top: 78px; right: 27px; left: 27px; display: flex; align-items: center; justify-content: space-between; height: 120px; padding: 20px; border: 1px solid rgba(10,21,36,.15); border-radius: 18px; background: rgba(255,255,255,.38); }
.resource-visual span { font-size: 30px; font-weight: 850; letter-spacing: -.06em; }
.resource-visual i { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--blue); color: white; font-style: normal; font-weight: 900; }

.faq-section { background: white; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.faq-intro { max-width: 420px; margin-top: 24px; color: var(--ink-soft); font-size: 14px; line-height: 1.75; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 0; list-style: none; cursor: pointer; font-size: 17px; font-weight: 750; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; place-items: center; width: 32px; height: 32px; flex: 0 0 auto; border-radius: 50%; background: var(--paper); font-size: 19px; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); background: var(--yellow); }
.faq-list details p { max-width: 690px; margin: -8px 0 26px; color: var(--ink-soft); font-size: 14px; line-height: 1.75; }

.diagnostic { padding: 120px 0; background: var(--navy); color: white; }
.diagnostic-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 100px; align-items: center; }
.diagnostic-copy h2 span { color: var(--yellow); }
.diagnostic-copy > p:not(.eyebrow) { max-width: 550px; margin: 26px 0; color: rgba(255,255,255,.65); font-size: 16px; line-height: 1.75; }
.diagnostic-meta { display: grid; gap: 13px; margin-top: 38px; }
.diagnostic-meta span { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.7); font-size: 12px; font-weight: 700; }
.diagnostic-meta b { color: var(--yellow); font-size: 10px; }
.form-card { min-height: 620px; padding: 34px; border-radius: 30px; background: white; color: var(--ink); box-shadow: 0 30px 80px rgba(0,0,0,.18); }
.form-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; }
.form-head > span:last-child { color: #7a8590; font-size: 10px; }
.form-card form { display: grid; gap: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card label { display: grid; gap: 7px; color: #3a4755; font-size: 11px; font-weight: 800; }
.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  border: 1px solid #dbe1de;
  border-radius: 12px;
  background: #f9fbf9;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-card input, .form-card select { height: 49px; padding: 0 14px; }
.form-card textarea { padding: 13px 14px; resize: vertical; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(16,60,255,.08); }
.form-card input::placeholder, .form-card textarea::placeholder { color: #9ba3aa; font-weight: 500; }
.checkbox { display: flex !important; grid-template-columns: auto 1fr; align-items: center; gap: 9px !important; font-weight: 600 !important; }
.checkbox input { width: 16px; height: 16px; }
.checkbox a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.privacy-summary { margin: -5px 0 0; color: #65717e; font-size: 10px; line-height: 1.55; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-notice { min-height: 0; margin: 0; color: #334155; font-size: 12px; line-height: 1.45; }
.form-notice:empty { display: none; }
.form-notice.is-error { padding: 10px 12px; border-radius: 10px; background: #fff1f2; color: #9f1239; }
.form-submit:disabled { cursor: wait; opacity: .72; }
.form-submit { width: 100%; border: 0; margin-top: 2px; }
.success-state { min-height: 550px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.success-state > span { display: grid; place-items: center; width: 72px; height: 72px; margin-bottom: 22px; border-radius: 50%; background: var(--mint); color: #08734a; }
.success-state h3 { margin: 10px 0; font-size: 33px; letter-spacing: -.04em; }
.success-state > p:not(.micro-label) { max-width: 390px; color: var(--ink-soft); }
.success-state button { margin-top: 12px; border: 0; background: transparent; }

footer { padding: 72px 0 28px; background: #061a29; color: white; }
.footer-top { display: grid; grid-template-columns: .8fr 1.1fr .7fr .7fr; gap: 45px; align-items: start; padding-bottom: 60px; }
.footer-brand { filter: brightness(0) invert(1); }
.footer-top > p { margin: 5px 0 0; color: rgba(255,255,255,.6); font-size: 14px; }
.footer-links { display: grid; gap: 10px; font-size: 12px; font-weight: 650; }
.footer-cta { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.28); color: var(--yellow); font-size: 21px; font-weight: 800; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); font-size: 10px; }
.footer-bottom div { display: flex; gap: 18px; }
.cookie-settings-link { border: 0; padding: 0; background: transparent; color: inherit; font-size: inherit; }
.footer-bottom a:hover, .cookie-settings-link:hover { color: white; }

.legal-document { max-width: 820px; }
.legal-document h2 { margin: 2.2em 0 .6em; }
.legal-document h3 { margin: 1.7em 0 .5em; color: var(--ink); font-size: 23px; }
.legal-document p, .legal-document li { color: var(--ink-soft); }
.legal-document a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.legal-document li + li { margin-top: .55em; }
.legal-updated { margin: -14px 0 40px; color: #697586 !important; font-size: 13px; }
.legal-table-wrap { max-width: 100%; overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: white; }
.legal-document table { width: 100%; min-width: 680px; border-collapse: collapse; font-size: 14px; }
.legal-document th, .legal-document td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-document th { background: var(--navy); color: white; }
.legal-document tr:last-child td { border-bottom: 0; }

.cookie-consent[hidden], .cookie-dialog[hidden] { display: none !important; }
.cookie-consent {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin-inline: auto;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: #071d2d;
  color: white;
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}
.cookie-consent__copy strong { display: block; margin-bottom: 6px; font-size: 16px; }
.cookie-consent__copy p { max-width: 720px; margin: 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.55; }
.cookie-consent__copy a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
.cookie-consent__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; min-width: 390px; }
.cookie-consent__actions .cookie-button--secondary { grid-column: 1 / -1; }
.cookie-button { min-height: 43px; border: 1px solid transparent; border-radius: 11px; padding: 9px 14px; font-size: 12px; font-weight: 800; }
.cookie-button--primary { background: var(--blue); color: white; }
.cookie-button--primary:hover { background: #3658ff; }
.cookie-button--secondary { border-color: rgba(255,255,255,.32); background: transparent; color: white; }
.cookie-dialog { position: fixed; z-index: 1100; inset: 0; display: grid; place-items: center; padding: 20px; }
.cookie-dialog__backdrop { position: absolute; inset: 0; background: rgba(3, 13, 22, .72); backdrop-filter: blur(5px); }
.cookie-dialog__panel { position: relative; z-index: 1; width: min(620px, 100%); max-height: calc(100vh - 40px); overflow-y: auto; padding: 34px; border-radius: 24px; background: white; box-shadow: 0 30px 90px rgba(0,0,0,.3); }
.cookie-dialog__panel h2 { margin: 0 40px 10px 0; font-size: 30px; letter-spacing: -.04em; }
.cookie-dialog__panel > p { margin: 0 0 25px; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }
.cookie-dialog__close { position: absolute; top: 18px; right: 18px; display: grid; place-items: center; width: 38px; height: 38px; border: 0; border-radius: 50%; background: var(--paper); color: var(--ink); font-size: 24px; }
.cookie-option { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0; border-top: 1px solid var(--line); }
.cookie-option > div, .cookie-option > span { display: grid; gap: 4px; }
.cookie-option strong { color: var(--ink); font-size: 14px; }
.cookie-option span span, .cookie-option div span { color: var(--ink-soft); font-size: 12px; line-height: 1.45; }
.cookie-option input { width: 22px; height: 22px; accent-color: var(--blue); }
.cookie-always-on { flex: 0 0 auto; color: #08734a !important; font-size: 11px !important; font-weight: 800; }
.cookie-dialog__actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 20px; }
.cookie-dialog__actions a { color: var(--blue); font-size: 12px; font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.cookie-dialog-open { overflow: hidden; }

.mobile-actions { display: none; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

@media (max-width: 1100px) {
  .nav-links { gap: 17px; }
  .nav-links > a:not(.button) { font-size: 12px; }
  .hero-grid { grid-template-columns: 1fr 420px; gap: 28px; }
  .hero-copy h1 { font-size: 58px; }
  .family-grid { grid-template-columns: repeat(2, 1fr); }
  .family-card { min-height: 390px; }
  .drama-grid, .human-grid, .diagnostic-grid { gap: 60px; }
  .resource-grid { grid-template-columns: 1fr 1fr; }
  .featured-resource { grid-column: 1 / -1; }
  .featured-resource { min-height: 420px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .shell { width: min(100% - 40px, 760px); }
  .section { padding: 90px 0; }
  .topline-inner a { display: none; }
  .nav-wrap { height: 70px; }
  .menu-toggle { display: grid; place-items: center; width: 44px; height: 44px; }
  .nav-links {
    position: fixed;
    top: 104px;
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    height: calc(100vh - 104px);
    padding: 34px 20px 120px;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links > a:not(.button) { padding: 18px 4px; border-bottom: 1px solid var(--line); font-size: 20px; }
  .nav-links > a:not(.button)::after { display: none; }
  .nav-cta { margin-top: 24px; }
  .hero { padding-top: 70px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-bottom: 70px; }
  .hero-copy h1 { max-width: 720px; font-size: clamp(52px, 9vw, 72px); }
  .hero-lead { max-width: 640px; }
  .hero-visual { min-height: 550px; }
  .dashboard-card { max-width: 520px; }
  .fit-strip { grid-template-columns: 1fr 1fr; gap: 20px; padding: 22px 0; }
  .split-heading, .method-heading, .drama-grid, .human-grid, .coverage-grid, .faq-grid, .diagnostic-grid { grid-template-columns: 1fr; gap: 50px; }
  .split-heading { align-items: start; }
  .split-heading > p { max-width: 560px; }
  .outcomes-list article { grid-template-columns: 60px 1fr; }
  .outcomes-list strong { grid-column: 2; }
  .process-grid { grid-template-columns: 1fr 1fr; row-gap: 50px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento { min-height: 400px; }
  .coordination-frame { width: min(78%, 540px); margin-inline: auto; }
  .human-copy { max-width: 700px; }
  .coverage-grid::before { left: 20%; }
  .coverage-card { max-width: 660px; }
  .resource-heading { align-items: start; flex-direction: column; }
  .resource-grid { grid-template-columns: 1fr 1fr; }
  .diagnostic-copy { max-width: 700px; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 32px, 520px); }
  .section { padding: 74px 0; }
  .topline-inner { justify-content: center; font-size: 10px; }
  .brand { width: 146px; }
  .brand img { width: 146px; }
  .hero { padding-top: 56px; }
  .hero-grid { gap: 36px; padding-bottom: 50px; }
  .hero-copy h1 { font-size: clamp(44px, 13.5vw, 61px); line-height: .98; }
  .hero-lead { margin-top: 24px; font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-proof { gap: 10px; }
  .hero-proof span { width: 100%; }
  .hero-visual { min-height: 440px; margin-inline: -8px; }
  .hero-visual::before { width: 330px; height: 330px; }
  .dashboard-card { width: 95%; padding: 21px; transform: rotate(-1deg); }
  .dashboard-top strong { font-size: 19px; }
  .live-pill { display: none; }
  .status-grid { margin-top: 27px; }
  .status-card { min-height: 86px; padding: 11px; }
  .status-icon { width: 38px; height: 38px; border-radius: 11px; }
  .status-card b { font-size: 10px; }
  .floating-note { font-size: 9px; padding: 9px 12px; }
  .note-one { top: 10px; right: -4px; }
  .note-two { bottom: 5px; left: 0; }
  .orbit-one { width: 390px; height: 390px; }
  .orbit-two { display: none; }
  .fit-strip { grid-template-columns: 1fr; gap: 10px; }
  .fit-strip span { padding-left: 17px; }
  .fit-strip .fit-title { margin-bottom: 4px; }
  .section-heading h2, .method h2, .human h2, .faq-section h2, .diagnostic h2 { font-size: 43px; }
  .split-heading { margin-bottom: 42px; }
  .family-grid { grid-template-columns: 1fr; }
  .family-card { min-height: 350px; }
  .drama-copy h2 { font-size: 51px; }
  .outcomes-list article { grid-template-columns: 1fr; gap: 9px; padding: 24px 0; }
  .outcomes-list strong { grid-column: auto; }
  .method-note { display: none; }
  .process-grid { grid-template-columns: 1fr; row-gap: 36px; margin-top: 54px; }
  .process-step { padding-right: 0; }
  .process-line { max-width: 92%; }
  .bento { min-height: 440px; padding: 27px; border-radius: 28px; }
  .bento h3 { font-size: 29px; }
  .bento > a { right: 27px; bottom: 25px; left: 27px; }
  .mini-ticket { right: 27px; bottom: 84px; left: 27px; }
  .bento-icon { top: 24px; right: 24px; }
  .coordination-frame { width: 96%; }
  .coordination-visual { min-height: auto; padding: 25px 20px; }
  .coordination-sticker { right: -10px; top: 22px; padding: 15px 16px; font-size: 9px; }
  .coordination-hub { padding: 17px; }
  .hub-mark { flex-basis: 50px; width: 50px; height: 50px; }
  .human-lead { font-size: 16px; }
  .human-copy blockquote { font-size: 17px; }
  .coverage { padding: 80px 0; }
  .coverage-grid h2 { font-size: 80px; }
  .coverage-card { padding: 28px; }
  .coverage-card h3 { font-size: 24px; }
  .resource-grid { grid-template-columns: 1fr; }
  .featured-resource { grid-column: auto; }
  .resource-card { min-height: 390px; }
  .resource-card h3 { font-size: 20px; }
  .faq-list summary { font-size: 15px; }
  .diagnostic { padding: 80px 0 110px; }
  .form-card { min-height: 0; padding: 24px; border-radius: 24px; }
  .field-row { grid-template-columns: 1fr; }
  .success-state { min-height: 440px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom div { flex-wrap: wrap; gap: 12px 16px; }
  .cookie-consent { right: 10px; bottom: 82px; left: 10px; grid-template-columns: 1fr; gap: 16px; padding: 19px; border-radius: 18px; }
  .cookie-consent__actions { min-width: 0; }
  .cookie-dialog__panel { padding: 26px 20px; }
  .cookie-dialog__actions { align-items: stretch; flex-direction: column; }
  .cookie-dialog__actions .cookie-button { width: 100%; }
  .mobile-actions {
    position: fixed;
    z-index: 150;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: 64px 76px 1fr;
    align-items: stretch;
    min-height: 58px;
    padding: 5px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background: rgba(7, 29, 45, .95);
    color: white;
    box-shadow: 0 18px 45px rgba(7,29,45,.3);
    backdrop-filter: blur(12px);
  }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 2px; font-size: 8px; font-weight: 750; }
  .mobile-main-action { flex-direction: row !important; gap: 8px !important; border-radius: 13px; background: var(--yellow); color: var(--ink); font-size: 11px !important; }
  body { padding-bottom: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
