:root {
  --brand: #2168f3;
  --brand-deep: #1755cf;
  --violet: #725cf4;
  --cyan: #40bfe9;
  --orange: #ff8a4c;
  --ink: #10233f;
  --muted: #66758f;
  --line: #e7ecf5;
  --surface: #ffffff;
  --surface-blue: #f4f7ff;
  --surface-violet: #f8f5ff;
  --shadow: 0 24px 70px rgba(31, 75, 145, 0.12);
  --shadow-soft: 0 12px 38px rgba(31, 75, 145, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; }

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

button, input, select { font: inherit; }

button { color: inherit; }

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

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 18px;
  top: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid rgba(33, 104, 243, .32); outline-offset: 3px; }

.notice-bar {
  position: relative;
  z-index: 80;
  min-height: 38px;
  color: #dce8ff;
  background: #12284b;
  font-size: 12px;
}
.notice-bar.is-hidden { display: none; }

.notice-inner { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.notice-inner p { margin: 0; }
.notice-inner a { color: #fff; font-weight: 700; margin-left: 4px; }
.notice-inner a:hover { color: #a9c8ff; }

.notice-pill {
  padding: 2px 8px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.08);
  letter-spacing: .05em;
}

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  height: 78px;
  border-bottom: 1px solid rgba(222, 231, 244, .76);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, height .25s ease;
}

.site-header.scrolled { box-shadow: 0 10px 34px rgba(20, 59, 115, .08); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand img { width: 206px; height: auto; }

.primary-nav { display: flex; align-items: center; gap: 28px; height: 100%; }
.primary-nav a { position: relative; display: grid; place-items: center; height: 100%; color: #465872; font-size: 14px; transition: color .2s ease; white-space: nowrap; }
.primary-nav a::after { content: ""; position: absolute; left: 50%; bottom: 0; width: 18px; height: 3px; border-radius: 999px 999px 0 0; background: var(--brand); transform: translateX(-50%) scaleX(0); transition: transform .2s ease; }
.primary-nav a:hover, .primary-nav a.active { color: var(--brand); font-weight: 700; }
.primary-nav a.active::after { transform: translateX(-50%) scaleX(1); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 11px 17px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #655ff1);
  box-shadow: 0 9px 22px rgba(33,104,243,.22);
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}

.header-cta:hover { transform: translateY(-2px); box-shadow: 0 13px 28px rgba(33,104,243,.28); }
.header-cta svg, .button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 790px;
  padding: 92px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 18%, rgba(104, 169, 255, .18), transparent 25%),
    radial-gradient(circle at 90% 12%, rgba(138, 107, 255, .13), transparent 23%),
    linear-gradient(180deg, #fbfdff 0%, #f5f8ff 76%, #fff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image: radial-gradient(rgba(44, 104, 207, .18) .7px, transparent .7px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, #000, transparent 64%);
}

.hero-orb { position: absolute; border-radius: 50%; filter: blur(3px); opacity: .7; }
.hero-orb-one { width: 260px; height: 260px; right: 12%; top: 19%; border: 1px solid rgba(101, 99, 241, .16); box-shadow: inset 0 0 80px rgba(114,92,244,.05); }
.hero-orb-two { width: 56px; height: 56px; left: 7%; bottom: 23%; background: linear-gradient(135deg, rgba(64,191,233,.18), rgba(33,104,243,.05)); }

.hero-wind { position: absolute; width: 100%; height: 100%; inset: 0; pointer-events: none; }
.hero-wind path { fill: none; stroke: rgba(93, 137, 219, .08); stroke-width: 2; }

.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .91fr 1.09fr; align-items: center; gap: 56px; }
.hero-grid > *, .platform-grid > *, .consult-shell > * { min-width: 0; }
.hero-copy { padding: 10px 0 58px; }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: #52709f; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow-dot { position: relative; display: inline-block; width: 20px; height: 20px; border-radius: 50%; background: rgba(33,104,243,.1); }
.eyebrow-dot::before, .eyebrow-dot::after { content: ""; position: absolute; top: 50%; left: 50%; border-radius: 50%; transform: translate(-50%, -50%); }
.eyebrow-dot::before { width: 8px; height: 8px; background: var(--brand); }
.eyebrow-dot::after { width: 2px; height: 2px; background: #fff; }
.hero-eyebrow { margin-bottom: 22px; color: #45628c; letter-spacing: .08em; text-transform: none; }

.hero h1 { margin: 0; color: #10233f; font-size: clamp(48px, 4.2vw, 68px); line-height: 1.18; letter-spacing: -.04em; }
.hero h1 span { display: inline-block; margin-top: 9px; background: linear-gradient(100deg, #155de5 8%, #6e59ed 70%, #8d56e9 100%); background-clip: text; -webkit-background-clip: text; color: transparent; }
.hero-lead { max-width: 530px; margin: 25px 0 0; color: #5f718c; font-size: 17px; line-height: 1.9; }

.hero-tags { display: flex; flex-wrap: wrap; gap: 14px; margin: 27px 0 0; }
.hero-tags span { display: inline-flex; align-items: center; gap: 7px; color: #354d6e; font-size: 13px; font-weight: 700; }
.hero-tags i { width: 17px; height: 17px; border: 5px solid #dce9ff; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 1px rgba(33,104,243,.2); }

.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 23px; border: 0; border-radius: 14px; cursor: pointer; font-weight: 800; font-size: 14px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--brand), #655ff1); box-shadow: 0 13px 30px rgba(33,104,243,.25); }
.button-primary:hover { box-shadow: 0 17px 36px rgba(33,104,243,.3); }
.button-ghost { color: #2b405f; background: rgba(255,255,255,.86); border: 1px solid #dce5f2; box-shadow: 0 7px 22px rgba(31,75,145,.06); }
.button-ghost:hover { border-color: #b9cdf0; background: #fff; }
.play-icon { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; color: var(--brand); background: #eaf1ff; font-size: 8px; padding-left: 2px; }

.hero-trust { display: flex; align-items: center; gap: 13px; margin-top: 31px; }
.trust-avatars { display: flex; padding-left: 7px; }
.trust-avatars span { display: grid; place-items: center; width: 31px; height: 31px; margin-left: -7px; border: 2px solid #fff; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #3b87ff, #6859e8); box-shadow: 0 4px 12px rgba(31,75,145,.15); font-size: 10px; font-weight: 800; }
.trust-avatars span:nth-child(2) { background: linear-gradient(135deg, #846aff, #b16ee8); }
.trust-avatars span:nth-child(3) { background: linear-gradient(135deg, #ff9d5f, #ff6f61); }
.trust-avatars span:nth-child(4) { background: linear-gradient(135deg, #39c7bc, #268cd6); }
.trust-stars { color: #ff9b45; font-size: 11px; letter-spacing: 2px; }
.hero-trust p { margin: 1px 0 0; color: #71809a; font-size: 11px; }

.hero-visual { position: relative; min-height: 600px; display: grid; place-items: center; }
.dashboard-shell { position: relative; z-index: 3; width: 590px; max-width: 100%; overflow: hidden; border: 1px solid rgba(206,219,240,.9); border-radius: 28px; background: rgba(255,255,255,.94); box-shadow: 0 35px 90px rgba(30, 71, 144, .17), 0 3px 0 rgba(255,255,255,.9) inset; transform: rotate(1.4deg); }
.dashboard-top { height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; border-bottom: 1px solid #edf1f7; }
.mini-brand { display: flex; align-items: center; gap: 9px; color: #334966; font-size: 11px; font-weight: 800; }
.mini-brand img { width: 31px; height: 31px; }
.dashboard-dots { display: flex; gap: 6px; }
.dashboard-dots i { width: 7px; height: 7px; border-radius: 50%; background: #dfe5ee; }
.dashboard-dots i:nth-child(2) { background: #cbd5e4; }

.dashboard-body { padding: 23px; background: linear-gradient(145deg, #fbfdff, #f5f8ff); }
.welcome-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.welcome-row small { color: #8490a4; font-size: 10px; }
.welcome-row h2 { margin: 3px 0 0; color: #182b47; font-size: 17px; letter-spacing: -.02em; }
.week-tag { padding: 6px 10px; border-radius: 8px; color: #566d91; background: #eef3fb; font-size: 9px; font-weight: 800; }

.progress-panel { display: grid; grid-template-columns: 120px 1fr; align-items: center; gap: 21px; margin-top: 19px; padding: 18px; border: 1px solid #e7edf7; border-radius: 18px; background: #fff; box-shadow: 0 8px 25px rgba(44,87,153,.06); }
.progress-ring { --value: calc(var(--progress) * 1%); position: relative; width: 100px; height: 100px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--brand) var(--value), #eaf0f9 0); }
.progress-ring::before { content: ""; position: absolute; width: 78px; height: 78px; border-radius: 50%; background: #fff; }
.progress-ring > div { position: relative; z-index: 1; display: grid; text-align: center; }
.progress-ring strong { color: #1e3a62; font-size: 24px; line-height: 1.1; }
.progress-ring sup { font-size: 11px; }
.progress-ring small { margin-top: 3px; color: #8995a8; font-size: 8px; }
.panel-title { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.panel-title span { color: #263a58; font-size: 11px; font-weight: 800; }
.panel-title b, .panel-title a { color: var(--brand); font-size: 8px; font-weight: 700; }
.progress-copy p { margin: 10px 0 15px; color: #7a879b; font-size: 9px; line-height: 1.7; }
.mini-bars { height: 35px; display: flex; align-items: end; gap: 7px; }
.mini-bars i { flex: 1; height: 35%; border-radius: 3px 3px 1px 1px; background: linear-gradient(to top, #88aef7, #c2d7ff); }
.mini-bars i:nth-child(2) { height: 52%; }.mini-bars i:nth-child(3) { height: 44%; }.mini-bars i:nth-child(4) { height: 76%; }.mini-bars i:nth-child(5) { height: 61%; }.mini-bars i:nth-child(6) { height: 88%; }.mini-bars i:nth-child(7) { height: 72%; background: linear-gradient(to top, #6e5cf0, #b9aefc); }

.today-panel { margin-top: 13px; padding: 17px 18px 11px; border: 1px solid #e7edf7; border-radius: 18px; background: #fff; }
.today-panel ul { list-style: none; margin: 10px 0 0; padding: 0; }
.today-panel li { display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 10px; padding: 10px 0; border-top: 1px solid #eef2f7; }
.today-panel li:first-child { border-top: 0; }
.task-check { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 8px; color: #6e7c91; background: #eef2f8; font-size: 8px; font-style: normal; font-weight: 800; }
.today-panel .done .task-check { color: #fff; background: var(--brand); }
.today-panel li div { display: flex; flex-direction: column; }
.today-panel li strong { color: #33445f; font-size: 9px; }
.today-panel li small { color: #9aa4b4; font-size: 7px; }
.today-panel li em { color: #909caf; font-size: 7px; font-style: normal; }
.today-panel .done em { color: var(--brand); }

.float-card { position: absolute; z-index: 6; display: flex; align-items: center; gap: 10px; padding: 11px 13px; border: 1px solid rgba(218,227,241,.9); border-radius: 14px; background: rgba(255,255,255,.94); box-shadow: 0 15px 38px rgba(31,75,145,.14); backdrop-filter: blur(12px); animation: floatY 4.5s ease-in-out infinite; }
.float-card-left { left: -34px; top: 157px; }
.float-card-right { right: -26px; bottom: 126px; animation-delay: -2.2s; }
.float-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; }
.float-icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.float-icon-blue { color: var(--brand); background: #edf4ff; }
.float-icon-orange { color: #f2763c; background: #fff1e9; }
.float-card div { display: flex; flex-direction: column; }
.float-card strong { color: #2b3f5e; font-size: 10px; }
.float-card small { color: #98a3b4; font-size: 8px; }
.float-card > b { margin-left: 5px; color: var(--brand); font-size: 13px; }
.float-card-right > b { color: #f2763c; }

.visual-badge { position: absolute; z-index: 5; display: flex; align-items: center; gap: 7px; padding: 7px 11px; border-radius: 999px; color: #426187; background: rgba(255,255,255,.9); box-shadow: 0 7px 20px rgba(31,75,145,.1); font-size: 9px; font-weight: 800; animation: floatY 5.5s ease-in-out infinite; }
.visual-badge i { width: 7px; height: 7px; border-radius: 50%; background: #48c4bd; box-shadow: 0 0 0 4px rgba(72,196,189,.12); }
.visual-badge-one { top: 55px; right: 58px; }
.visual-badge-two { left: 34px; bottom: 49px; animation-delay: -2.6s; }
.visual-badge-two i { background: #ff9a5f; box-shadow: 0 0 0 4px rgba(255,154,95,.14); }

@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-metrics { position: relative; z-index: 4; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 2px; border: 1px solid rgba(219,229,244,.88); border-radius: 22px; background: rgba(255,255,255,.9); box-shadow: 0 18px 55px rgba(31,75,145,.1); backdrop-filter: blur(14px); }
.hero-metrics div { position: relative; display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 92px; }
.hero-metrics div:not(:last-child)::after { content: ""; position: absolute; right: 0; width: 1px; height: 30px; background: #e4eaf3; }
.hero-metrics strong { color: #1b3c6d; font-size: 24px; line-height: 1; }
.hero-metrics strong span { font-size: 11px; margin: 0 2px; }
.hero-metrics div:last-child strong { font-size: 19px; }
.hero-metrics div > span { color: #73819a; font-size: 12px; }

.route-strip { position: relative; z-index: 3; padding: 74px 0 28px; }
.route-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.route-card { position: relative; min-height: 132px; display: flex; align-items: center; gap: 16px; padding: 22px; overflow: hidden; border: 1px solid #e4eaf4; border-radius: 20px; background: #fff; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.route-card::after { content: ""; position: absolute; width: 110px; height: 110px; right: -52px; bottom: -58px; border-radius: 50%; opacity: .2; background: currentColor; }
.route-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(31,75,145,.13); border-color: rgba(55,112,230,.24); }
.route-icon { flex: 0 0 auto; display: grid; place-items: center; width: 54px; height: 54px; border-radius: 17px; color: currentColor; background: currentColor; }
.route-icon svg { width: 28px; height: 28px; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.route-card > span:last-child { display: flex; flex-direction: column; }
.route-card small { color: #8a96a9; font-size: 10px; }
.route-card strong { margin-top: 2px; color: #243957; font-size: 18px; }
.route-card em { margin-top: 6px; color: #74829a; font-size: 9px; font-style: normal; }
.route-blue { color: #2f75eb; }.route-violet { color: #765de9; }.route-cyan { color: #27aac8; }.route-orange { color: #f28a4e; }

.section { padding: 112px 0; }
.section-heading h2 { margin: 15px 0 0; color: #152a48; font-size: clamp(34px, 3vw, 45px); line-height: 1.35; letter-spacing: -.035em; }
.section-heading h2 span, .split-heading h2 span, .resource-heading h2 span, .insights-heading h2 span { color: var(--brand); }
.section-heading > p { max-width: 660px; margin: 18px auto 0; color: #71809a; font-size: 15px; line-height: 1.9; }
.centered { text-align: center; }
.centered .eyebrow { justify-content: center; }

.courses-section { background: #fff; }
.course-tabs { width: fit-content; max-width: 100%; display: flex; margin: 47px auto 0; padding: 6px; border: 1px solid #e1e8f3; border-radius: 16px; background: #f6f8fc; overflow-x: auto; }
.course-tab { min-width: 138px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 18px; border: 0; border-radius: 11px; color: #64738b; background: transparent; cursor: pointer; font-size: 13px; white-space: nowrap; transition: .2s ease; }
.course-tab span { color: #a1acbd; font-family: Arial, sans-serif; font-size: 9px; font-weight: 800; }
.course-tab:hover { color: var(--brand); }
.course-tab.active { color: #fff; background: linear-gradient(135deg, var(--brand), #645eea); box-shadow: 0 9px 22px rgba(33,104,243,.2); font-weight: 800; }
.course-tab.active span { color: rgba(255,255,255,.72); }

.course-showcase { display: grid; grid-template-columns: 1fr .92fr; gap: 24px; margin-top: 28px; padding: 13px; border: 1px solid #e4ebf5; border-radius: 30px; background: linear-gradient(135deg, #f6f9ff, #fbfaff); box-shadow: 0 24px 70px rgba(31,75,145,.09); }
.course-showcase .course-copy, .course-showcase .course-map, .story-card > p, .story-card footer { transition: opacity .16s ease, transform .16s ease; }
.course-showcase.swapping .course-copy, .course-showcase.swapping .course-map, .story-card.swapping > p, .story-card.swapping footer { opacity: 0; transform: translateY(5px); }
.course-copy { padding: 50px 44px; }
.course-label { display: inline-flex; padding: 7px 12px; border-radius: 999px; color: var(--brand); background: #e7efff; font-size: 10px; font-weight: 800; }
.course-copy h3 { max-width: 500px; margin: 19px 0 0; color: #1b3152; font-size: 31px; line-height: 1.5; letter-spacing: -.025em; }
.course-copy > p { max-width: 530px; margin: 17px 0 0; color: #708099; font-size: 14px; line-height: 1.9; }
.course-points { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 16px; margin-top: 25px; }
.course-points span { position: relative; padding-left: 22px; color: #445b7c; font-size: 12px; font-weight: 700; }
.course-points span::before { content: "✓"; position: absolute; left: 0; top: 0; width: 16px; height: 16px; display: grid; place-items: center; border-radius: 50%; color: var(--brand); background: #e5eeff; font-size: 8px; }
.course-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.text-link { padding: 0; border: 0; color: #38506f; background: none; cursor: pointer; font-size: 12px; font-weight: 800; }
.text-link:hover { color: var(--brand); }

.course-map { padding: 35px; border-radius: 22px; color: #fff; background: linear-gradient(145deg, #183c78 0%, #285bc1 56%, #7657ea 130%); box-shadow: 0 18px 45px rgba(25,71,146,.25); }
.map-topline { display: flex; justify-content: space-between; align-items: center; padding-bottom: 19px; border-bottom: 1px solid rgba(255,255,255,.14); }
.map-topline span { color: #b9d0fa; font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.map-topline b { padding: 5px 9px; border-radius: 999px; color: #e6efff; background: rgba(255,255,255,.11); font-size: 8px; }
.course-map ol { list-style: none; margin: 20px 0 0; padding: 0; }
.course-map li { position: relative; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 13px; padding: 12px 0; }
.course-map li::after { content: ""; position: absolute; left: 18px; top: 47px; width: 1px; height: 29px; background: rgba(255,255,255,.2); }
.course-map li:last-child::after { display: none; }
.course-map li > span { width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; color: #bfd0ee; background: rgba(255,255,255,.08); font-size: 9px; font-weight: 800; }
.course-map li.active > span { color: #27519e; background: #fff; box-shadow: 0 8px 20px rgba(3,25,75,.2); }
.course-map li div { display: flex; flex-direction: column; }
.course-map li strong { font-size: 13px; }
.course-map li small { margin-top: 2px; color: #b7c8e7; font-size: 9px; }
.course-map li > i { color: #bcd0f3; font-size: 8px; font-style: normal; }
.map-foot { display: flex; gap: 18px; margin-top: 18px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.14); color: #d9e5fa; font-size: 8px; }
.map-foot span { display: flex; align-items: center; gap: 6px; }
.map-foot i { width: 5px; height: 5px; border-radius: 50%; background: #6ee1d1; box-shadow: 0 0 0 3px rgba(110,225,209,.12); }

.method-section { position: relative; overflow: hidden; background: linear-gradient(180deg, #f7f9fe, #f4f7fd); }
.method-section::before { content: ""; position: absolute; width: 460px; height: 460px; right: -190px; top: 40px; border: 1px solid rgba(33,104,243,.08); border-radius: 50%; box-shadow: inset 0 0 120px rgba(33,104,243,.025); }
.split-heading { display: grid; grid-template-columns: 1fr .68fr; align-items: end; gap: 60px; }
.split-heading > p { margin: 0 0 7px; color: #71809a; font-size: 15px; line-height: 1.9; }
.method-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 18px; margin-top: 50px; }
.method-card { position: relative; min-height: 236px; display: flex; flex-direction: column; padding: 31px; overflow: hidden; border: 1px solid #e2e8f2; border-radius: 22px; background: rgba(255,255,255,.91); box-shadow: 0 12px 34px rgba(31,75,145,.06); transition: transform .25s ease, box-shadow .25s ease; }
.method-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(31,75,145,.1); }
.method-card-featured { grid-row: 1 / 3; min-height: 490px; color: #fff; background: linear-gradient(150deg, #2168f3, #465cd4 58%, #7358e7); border-color: transparent; box-shadow: 0 25px 60px rgba(33,104,243,.22); }
.method-card-featured::before { content: ""; position: absolute; width: 330px; height: 330px; right: -145px; bottom: -160px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.025), 0 0 0 95px rgba(255,255,255,.018); }
.method-number { position: absolute; right: 23px; top: 18px; color: #e8edf5; font: 800 28px/1 Arial, sans-serif; letter-spacing: -.05em; }
.method-card-featured .method-number { color: rgba(255,255,255,.17); font-size: 46px; }
.method-icon { position: relative; z-index: 1; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; color: var(--brand); background: #edf3ff; }
.method-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.method-card-featured .method-icon { color: #fff; background: rgba(255,255,255,.14); }
.method-card h3 { position: relative; z-index: 1; margin: 25px 0 0; color: #243956; font-size: 21px; }
.method-card-featured h3 { color: #fff; font-size: 28px; margin-top: 30px; }
.method-card p { position: relative; z-index: 1; margin: 10px 0 0; color: #74829a; font-size: 12px; line-height: 1.85; }
.method-card-featured p { max-width: 340px; color: #d7e5ff; font-size: 13px; }
.method-card > a { position: relative; z-index: 1; margin-top: auto; color: var(--brand); font-size: 10px; font-weight: 800; }
.diagnosis-mini { position: relative; z-index: 1; display: grid; gap: 18px; margin-top: auto; padding: 22px; border: 1px solid rgba(255,255,255,.12); border-radius: 17px; background: rgba(255,255,255,.1); backdrop-filter: blur(10px); }
.diagnosis-mini span { position: relative; height: 8px; border-radius: 99px; background: rgba(255,255,255,.12); }
.diagnosis-mini b { display: block; width: var(--w); height: 100%; border-radius: inherit; background: linear-gradient(90deg, #8ee8df, #fff); }
.diagnosis-mini em { position: absolute; left: 0; top: -16px; color: #dce8ff; font-size: 8px; font-style: normal; }

.platform-section { position: relative; overflow: hidden; color: #fff; background: linear-gradient(122deg, #112c5a 0%, #153a7a 50%, #483d9d 100%); }
.platform-section::before, .platform-section::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.platform-section::before { width: 650px; height: 650px; right: -260px; top: -240px; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 0 0 80px rgba(255,255,255,.018), 0 0 0 160px rgba(255,255,255,.012); }
.platform-section::after { width: 320px; height: 320px; left: -170px; bottom: -180px; background: radial-gradient(circle, rgba(76,201,240,.13), transparent 70%); }
.platform-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 70px; }
.eyebrow.light { color: #aac5f1; }
.eyebrow.light .eyebrow-dot { background: rgba(255,255,255,.12); }
.eyebrow.light .eyebrow-dot::before { background: #6ce0d8; }
.platform-copy h2 { margin: 17px 0 0; font-size: clamp(36px, 3.3vw, 49px); line-height: 1.42; letter-spacing: -.035em; }
.platform-copy h2 span { color: #7adfd8; }
.platform-copy > p { margin: 19px 0 0; color: #b4c5e1; font-size: 13px; line-height: 1.95; }
.platform-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; list-style: none; margin: 29px 0 0; padding: 0; }
.platform-list li { display: flex; align-items: center; gap: 10px; padding: 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(255,255,255,.06); }
.platform-list li > span { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 9px; color: #98e7e1; background: rgba(112,222,215,.12); font: 800 8px/1 Arial, sans-serif; }
.platform-list div { display: flex; flex-direction: column; }
.platform-list strong { font-size: 11px; }
.platform-list small { color: #9eb1d0; font-size: 8px; }
.button-light { margin-top: 28px; color: #2156a4; background: #fff; box-shadow: 0 14px 30px rgba(0,21,67,.2); }

.platform-preview { position: relative; padding: 21px; border: 1px solid rgba(255,255,255,.14); border-radius: 32px; background: rgba(255,255,255,.08); box-shadow: 0 35px 90px rgba(0,16,53,.25); backdrop-filter: blur(10px); }
.preview-window { height: 565px; display: grid; grid-template-columns: 64px 1fr; overflow: hidden; border-radius: 20px; color: #18304e; background: #f5f8fc; }
.preview-sidebar { display: flex; flex-direction: column; align-items: center; gap: 25px; padding-top: 17px; background: #fff; box-shadow: 3px 0 14px rgba(44,77,129,.04); }
.preview-sidebar img { width: 38px; height: 38px; margin-bottom: 10px; }
.preview-sidebar i { position: relative; width: 18px; height: 18px; border-radius: 6px; background: #e6ebf3; }
.preview-sidebar i::before { content: ""; position: absolute; inset: 5px; border: 1.5px solid #abb6c6; border-radius: 2px; }
.preview-sidebar i.selected { background: #e8f0ff; box-shadow: 0 0 0 7px #f3f7ff; }
.preview-sidebar i.selected::before { border-color: var(--brand); }
.preview-main { padding: 18px 20px 25px; overflow: hidden; }
.preview-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid #e7ecf3; }
.preview-header div { display: flex; gap: 5px; }
.preview-header div span { width: 6px; height: 6px; border-radius: 50%; background: #dfe5ed; }
.preview-header b { font-size: 10px; }
.preview-header em { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--brand), var(--violet)); font-size: 8px; font-style: normal; font-weight: 800; }
.preview-greeting { display: flex; align-items: center; justify-content: space-between; margin-top: 17px; padding: 15px 17px; border-radius: 14px; color: #fff; background: linear-gradient(110deg, #2b6bd6, #5f5dd8); }
.preview-greeting div { display: flex; flex-direction: column; }
.preview-greeting small { color: #c7dafe; font-size: 7px; letter-spacing: .12em; }
.preview-greeting strong { margin-top: 3px; font-size: 12px; }
.preview-greeting > span { padding: 6px 9px; border-radius: 999px; background: rgba(255,255,255,.12); font-size: 7px; }
.preview-greeting > span b { color: #8ef0dd; font-size: 10px; }
.preview-columns { display: grid; grid-template-columns: 1.5fr .85fr; gap: 12px; margin-top: 12px; }
.preview-chart, .preview-score, .preview-tasks { padding: 15px; border: 1px solid #e7ecf3; border-radius: 14px; background: #fff; }
.preview-title { display: flex; align-items: center; justify-content: space-between; }
.preview-title span { font-size: 9px; font-weight: 800; }
.preview-title small { color: #9aa5b5; font-size: 7px; }
.preview-chart svg { width: 100%; height: 112px; margin-top: 8px; overflow: visible; }
.chart-area { fill: url(#chartFill); }
.chart-line { fill: none; stroke: #4f82e8; stroke-width: 3; stroke-linecap: round; }
.preview-chart circle { fill: #fff; stroke: #4f82e8; stroke-width: 3; }
.chart-days { display: flex; justify-content: space-between; color: #a1adbd; font-size: 6px; }
.score-ring { width: 112px; height: 112px; display: grid; place-items: center; margin: 18px auto 0; border-radius: 50%; background: conic-gradient(#6b5de6 0 86%, #ebedf6 86%); }
.score-ring::before { content: ""; position: absolute; width: 87px; height: 87px; border-radius: 50%; background: #fff; }
.score-ring > div { position: relative; z-index: 1; display: grid; text-align: center; }
.score-ring b { color: #403e89; font-size: 23px; line-height: 1; }
.score-ring small { color: #9aa5b5; font-size: 6px; }
.preview-score p { text-align: center; color: #7b889a; font-size: 7px; }
.preview-score p i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; border-radius: 50%; background: #4ccbc3; }
.preview-tasks { margin-top: 12px; }
.task-row { display: grid; grid-template-columns: 25px 1fr auto; align-items: center; gap: 9px; padding: 10px 0; border-top: 1px solid #edf0f5; }
.preview-tasks .task-row:nth-child(2) { margin-top: 8px; }
.task-row > i { width: 23px; height: 23px; display: grid; place-items: center; border-radius: 7px; color: #fff; background: #4b80e4; font-size: 7px; font-style: normal; font-weight: 800; }
.task-row:nth-child(3) > i { color: #765de9; background: #efeafd; }
.task-row:nth-child(4) > i { color: #8f9aad; background: #edf1f6; }
.task-row > span { display: flex; flex-direction: column; }
.task-row b { font-size: 8px; }.task-row small { color: #a3adba; font-size: 6px; }.task-row em { color: #7d8ca1; font-size: 6px; font-style: normal; }

.team-section { background: #fff; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; margin-top: 47px; }
.team-card { overflow: hidden; border: 1px solid #e3e9f2; border-radius: 23px; background: #fff; box-shadow: 0 13px 38px rgba(31,75,145,.07); transition: transform .25s ease, box-shadow .25s ease; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 22px 52px rgba(31,75,145,.12); }
.team-portrait { position: relative; height: 244px; display: grid; place-items: center; overflow: hidden; }
.portrait-blue { background: linear-gradient(145deg, #dceaff, #edf4ff); }
.portrait-violet { background: linear-gradient(145deg, #ece7ff, #f5f1ff); }
.portrait-orange { background: linear-gradient(145deg, #ffeadb, #fff4ec); }
.portrait-letter { position: relative; z-index: 3; width: 105px; height: 128px; display: grid; place-items: center; border-radius: 55px 55px 28px 28px; color: #fff; background: linear-gradient(145deg, #2674e8, #5c5edb); box-shadow: 0 22px 42px rgba(39,93,182,.25); font-size: 50px; font-weight: 800; }
.portrait-violet .portrait-letter { background: linear-gradient(145deg, #8064ef, #ad5bcf); box-shadow: 0 22px 42px rgba(111,72,178,.24); }
.portrait-orange .portrait-letter { background: linear-gradient(145deg, #ff9c62, #ef6d66); box-shadow: 0 22px 42px rgba(217,100,75,.22); }
.portrait-letter::before { content: ""; position: absolute; width: 134px; height: 52px; left: -14px; bottom: -24px; border-radius: 50%; background: #fff; opacity: .22; }
.portrait-waves { position: absolute; width: 290px; height: 130px; border: 1px solid rgba(61,107,191,.12); border-radius: 50%; transform: rotate(-10deg); box-shadow: 0 0 0 25px rgba(61,107,191,.04), 0 0 0 50px rgba(61,107,191,.025); }
.team-portrait > small { position: absolute; right: 17px; bottom: 12px; color: rgba(42,74,127,.32); font: 800 8px/1 Arial, sans-serif; letter-spacing: .18em; }
.team-info { padding: 24px; }
.team-info > span { color: var(--brand); font-size: 9px; font-weight: 800; }
.team-info h3 { margin: 4px 0 0; font-size: 20px; }
.team-info p { min-height: 66px; margin: 10px 0 0; color: #748199; font-size: 11px; line-height: 1.8; }
.team-info div { display: flex; gap: 8px; margin-top: 14px; }
.team-info i { padding: 5px 9px; border-radius: 999px; color: #61728e; background: #f2f5fa; font-size: 8px; font-style: normal; }
.team-note { display: flex; align-items: center; gap: 16px; margin-top: 19px; padding: 20px 24px; border: 1px solid #e1e8f3; border-radius: 18px; background: linear-gradient(90deg, #f5f8ff, #fbf9ff); }
.team-note-icon { flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: #fff; background: linear-gradient(135deg, var(--brand), var(--violet)); }
.team-note p { flex: 1; margin: 0; color: #6e7d94; font-size: 12px; }
.team-note p strong { color: #2d4261; }
.team-note a { color: var(--brand); font-size: 10px; font-weight: 800; }

.resources-section { background: #f7f9fd; }
.resource-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.resource-heading .text-link { margin-bottom: 8px; }
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; margin-top: 45px; }
.resource-card { overflow: hidden; border: 1px solid #e2e8f2; border-radius: 22px; background: #fff; box-shadow: 0 10px 34px rgba(31,75,145,.06); transition: transform .25s ease, box-shadow .25s ease; }
.resource-card:hover { transform: translateY(-5px); box-shadow: 0 19px 48px rgba(31,75,145,.11); }
.resource-art { position: relative; height: 218px; overflow: hidden; }
.art-blue { background: linear-gradient(135deg, #ddebff, #a8c9ff); }
.art-violet { background: linear-gradient(135deg, #ebe5ff, #c7b8ff); }
.art-orange { background: linear-gradient(135deg, #ffe8d5, #ffc49f); }
.art-pill { position: absolute; z-index: 4; left: 16px; top: 16px; padding: 6px 10px; border: 1px solid rgba(255,255,255,.65); border-radius: 999px; color: #3e5e8c; background: rgba(255,255,255,.55); backdrop-filter: blur(8px); font-size: 8px; font-weight: 800; }
.resource-art > svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.resource-art > svg path { fill: none; stroke: rgba(255,255,255,.5); stroke-width: 2; }
.art-book { position: absolute; z-index: 3; left: 50%; top: 55%; width: 130px; height: 86px; transform: translate(-50%,-50%) rotate(-8deg); }
.art-book::before, .art-book::after { content: ""; position: absolute; top: 5px; width: 68px; height: 78px; border-radius: 8px 22px 12px 7px; background: #fff; box-shadow: 0 14px 30px rgba(45,86,153,.2); }
.art-book::before { left: 0; transform: skewY(5deg); }.art-book::after { right: 0; transform: scaleX(-1) skewY(5deg); }
.art-book i { position: absolute; z-index: 3; width: 42px; height: 2px; border-radius: 2px; background: #b8d1fa; }.art-book i:nth-child(1) { left: 15px; top: 28px; }.art-book i:nth-child(2) { left: 15px; top: 38px; width: 34px; }.art-book i:nth-child(3) { right: 15px; top: 28px; }
.art-chart { position: absolute; z-index: 3; left: 50%; top: 54%; width: 138px; height: 100px; display: flex; align-items: end; justify-content: center; gap: 10px; padding: 15px; border: 1px solid rgba(255,255,255,.65); border-radius: 18px; background: rgba(255,255,255,.48); box-shadow: 0 18px 34px rgba(76,61,145,.16); transform: translate(-50%,-50%) rotate(4deg); backdrop-filter: blur(8px); }
.art-chart i { width: 18px; height: 28%; border-radius: 5px 5px 2px 2px; background: linear-gradient(to top, #8067e8, #b19ef8); }.art-chart i:nth-child(2) { height: 55%; }.art-chart i:nth-child(3) { height: 43%; }.art-chart i:nth-child(4) { height: 80%; background: linear-gradient(to top, #4c82e8, #86b6ff); }
.art-compass { position: absolute; z-index: 3; left: 50%; top: 54%; width: 120px; height: 120px; border: 13px solid rgba(255,255,255,.55); border-radius: 50%; background: #fff7f0; box-shadow: 0 18px 35px rgba(179,96,53,.16); transform: translate(-50%,-50%) rotate(10deg); }
.art-compass::before, .art-compass::after { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.art-compass::before { border-left: 13px solid transparent; border-right: 13px solid transparent; border-bottom: 42px solid #ee7b4b; transform: translate(-50%,-86%) rotate(-14deg); }
.art-compass::after { width: 10px; height: 10px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 5px #5975c8; }
.resource-body { padding: 23px 24px 25px; }
.resource-body > span { color: var(--brand); font-size: 9px; font-weight: 800; }
.resource-body h3 { margin: 7px 0 0; color: #273b59; font-size: 18px; line-height: 1.55; }
.resource-body p { min-height: 62px; margin: 10px 0 0; color: #7c899d; font-size: 11px; line-height: 1.8; }
.resource-body a { display: inline-flex; margin-top: 14px; color: var(--brand); font-size: 10px; font-weight: 800; }

.insights-section { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #f6f9ff 100%); }
.insights-section::before { content: ""; position: absolute; width: 520px; height: 520px; left: -330px; top: -260px; border: 1px solid rgba(33,104,243,.08); border-radius: 50%; box-shadow: 0 0 0 54px rgba(33,104,243,.018), 0 0 0 108px rgba(33,104,243,.012); pointer-events: none; }
.insights-heading { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 44px; }
.insights-heading h2 { margin: 15px 0 0; color: #152a48; font-size: clamp(34px, 3vw, 45px); line-height: 1.35; letter-spacing: -.035em; }
.insights-heading p { max-width: 690px; margin: 15px 0 0; color: #71809a; font-size: 13px; line-height: 1.9; }
.insights-all { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px; margin-bottom: 7px; color: var(--brand); font-size: 11px; font-weight: 800; }
.insights-all:hover span { transform: translateX(3px); }
.insights-all span { transition: transform .2s ease; }
.insight-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 19px; margin-top: 40px; }
.insight-card { min-width: 0; min-height: 285px; display: flex; flex-direction: column; overflow: hidden; padding: 27px 26px 25px; border: 1px solid #dfe7f3; border-radius: 22px; background: rgba(255,255,255,.96); box-shadow: 0 12px 38px rgba(31,75,145,.07); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.insight-card:hover { transform: translateY(-5px); border-color: #c9d9f2; box-shadow: 0 21px 50px rgba(31,75,145,.12); }
.insight-card-link { min-height: 285px; display: flex; flex-direction: column; }
.insight-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #8b98aa; font-size: 9px; }
.insight-meta span { overflow: hidden; padding: 5px 9px; color: #3e6db7; background: #edf4ff; border-radius: 999px; font-weight: 750; text-overflow: ellipsis; white-space: nowrap; }
.insight-meta time { white-space: nowrap; }
.insight-card h3 { margin: 17px 0 0; color: #263d5e; font-size: 19px; line-height: 1.55; letter-spacing: -.02em; }
.insight-card h3 a:hover { color: var(--brand); }
.insight-card p { margin: 12px 0 0; overflow: hidden; color: #738198; font-size: 11px; line-height: 1.85; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.insight-link { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 22px; color: var(--brand); font-size: 10px; font-weight: 800; }
.insight-link span { transition: transform .2s ease; }
.insight-card:hover .insight-link span { transform: translateX(3px); }

.story-section { position: relative; overflow: hidden; background: #fff; }
.story-section::before { content: ""; position: absolute; width: 610px; height: 610px; right: -230px; top: -180px; border-radius: 50%; background: radial-gradient(circle, rgba(111,90,238,.09), transparent 70%); }
.story-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 75px; }
.story-copy h2 { margin: 15px 0 0; color: #1a304e; font-size: clamp(34px, 3.2vw, 46px); line-height: 1.48; letter-spacing: -.035em; }
.story-copy h2 span { color: var(--brand); }
.story-copy > p { margin: 18px 0 0; color: #748299; font-size: 13px; line-height: 1.9; }
.story-switch { display: flex; gap: 8px; margin-top: 28px; }
.story-switch button { padding: 8px 13px; border: 1px solid #e1e8f2; border-radius: 999px; color: #6a7890; background: #fff; cursor: pointer; font-size: 10px; transition: .2s ease; }
.story-switch button:hover { border-color: #aec6ed; color: var(--brand); }
.story-switch button.active { border-color: transparent; color: #fff; background: linear-gradient(135deg, var(--brand), var(--violet)); box-shadow: 0 8px 20px rgba(33,104,243,.2); font-weight: 800; }
.story-card { position: relative; margin: 0; padding: 43px 43px 26px; overflow: hidden; border: 1px solid #dee6f2; border-radius: 28px; background: linear-gradient(135deg, #f4f8ff, #faf8ff); box-shadow: 0 20px 55px rgba(31,75,145,.1); }
.story-card::before { content: ""; position: absolute; width: 240px; height: 240px; right: -110px; bottom: -120px; border: 1px solid rgba(33,104,243,.1); border-radius: 50%; box-shadow: 0 0 0 30px rgba(33,104,243,.025), 0 0 0 60px rgba(33,104,243,.018); }
.quote-mark { position: absolute; top: 16px; right: 31px; color: #dce6f9; font: 800 72px/1 Georgia, serif; }
.story-card > p { position: relative; z-index: 1; min-height: 104px; margin: 0; color: #314969; font-size: 18px; line-height: 2; }
.story-card footer { position: relative; z-index: 1; display: flex; align-items: center; gap: 12px; margin-top: 28px; padding-top: 21px; border-top: 1px solid #e1e8f2; }
.story-avatar { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--brand), var(--violet)); font-size: 14px; font-weight: 800; box-shadow: 0 7px 16px rgba(33,104,243,.2); }
.story-card footer div { display: flex; flex: 1; flex-direction: column; }
.story-card footer strong { font-size: 12px; }.story-card footer small { color: #8a96a8; font-size: 9px; }
.story-note { padding: 5px 9px; border-radius: 999px; color: #8793a5; background: #edf1f7; font-size: 7px; }
.story-progress { position: relative; z-index: 1; height: 3px; margin-top: 22px; border-radius: 99px; background: #e5eaf2; overflow: hidden; }
.story-progress i { display: block; width: 33.333%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--brand), var(--violet)); transition: transform .3s ease; transform-origin: left; }

.faq-section { background: #f7f9fd; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 80px; }
.faq-heading { position: sticky; top: 118px; }
.faq-heading h2 { margin: 15px 0 0; font-size: 42px; line-height: 1.35; }
.faq-heading p { max-width: 320px; margin: 16px 0 0; color: #78869b; font-size: 13px; line-height: 1.8; }
.faq-heading .button { margin-top: 25px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { overflow: hidden; border: 1px solid #e0e7f1; border-radius: 17px; background: #fff; transition: box-shadow .2s ease, border-color .2s ease; }
.faq-item.open { border-color: #ccdaf0; box-shadow: 0 13px 35px rgba(31,75,145,.07); }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; border: 0; background: transparent; cursor: pointer; text-align: left; font-size: 14px; font-weight: 800; }
.faq-item button i { position: relative; flex: 0 0 auto; width: 25px; height: 25px; border-radius: 8px; background: #eef3fb; }
.faq-item button i::before, .faq-item button i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 9px; height: 1.5px; border-radius: 2px; background: var(--brand); transform: translate(-50%,-50%); transition: transform .2s ease; }
.faq-item button i::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item.open button i::after { transform: translate(-50%,-50%) rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > p { min-height: 0; overflow: hidden; margin: 0; padding: 0 24px; color: #758299; font-size: 12px; line-height: 1.9; transition: padding .25s ease; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding: 0 24px 23px; }

.consult-section { position: relative; padding: 110px 0; overflow: hidden; background: #fff; }
.consult-shell { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; min-height: 560px; overflow: hidden; border-radius: 34px; color: #fff; background: linear-gradient(125deg, #1555be 0%, #2458c9 42%, #614bd3 100%); box-shadow: 0 30px 80px rgba(28,74,156,.22); }
.consult-shell::before { content: ""; position: absolute; width: 520px; height: 520px; left: -230px; bottom: -310px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 56px rgba(255,255,255,.025), 0 0 0 112px rgba(255,255,255,.018); }
.consult-copy { position: relative; z-index: 1; padding: 69px 24px 60px 65px; }
.consult-kicker { color: #abc9ff; font: 800 9px/1 Arial, sans-serif; letter-spacing: .18em; }
.consult-copy h2 { margin: 19px 0 0; font-size: clamp(36px, 3.4vw, 50px); line-height: 1.48; letter-spacing: -.04em; }
.consult-copy h2 span { color: #8ce5dc; }
.consult-copy > p { max-width: 530px; margin: 18px 0 0; color: #c4d5f3; font-size: 13px; line-height: 1.9; }
.consult-benefits { display: flex; flex-wrap: wrap; gap: 10px 17px; margin-top: 28px; }
.consult-benefits span { display: flex; align-items: center; gap: 7px; color: #e3edff; font-size: 10px; }
.consult-benefits i { width: 17px; height: 17px; display: grid; place-items: center; border-radius: 50%; color: #1850a4; background: #88e0d8; font-size: 8px; font-style: normal; font-weight: 900; }
.consult-swoosh { position: absolute; left: 53px; bottom: 45px; width: 330px; height: 95px; opacity: .17; }
.consult-swoosh i { position: absolute; left: 0; width: 100%; height: 55px; border-top: 2px solid #fff; border-radius: 50%; transform: rotate(-8deg); }.consult-swoosh i:nth-child(2) { top: 22px; left: 40px; width: 75%; }.consult-swoosh i:nth-child(3) { top: 44px; left: 80px; width: 48%; }

.consult-form { position: relative; z-index: 2; align-self: center; margin: 27px 27px 27px 5px; padding: 30px 32px 26px; border: 1px solid rgba(255,255,255,.5); border-radius: 25px; color: var(--ink); background: rgba(255,255,255,.97); box-shadow: 0 24px 60px rgba(7,25,76,.23); }
.form-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.form-heading div { display: flex; flex-direction: column; }
.form-heading span { font-size: 20px; font-weight: 800; }.form-heading small { margin-top: 2px; color: #8793a6; font-size: 9px; }.form-heading b { color: #9ba8bb; font: 800 8px/1 Arial, sans-serif; letter-spacing: .08em; }
.consult-form > label:not(.consent-row) { display: block; margin-top: 14px; }
.consult-form label > span { display: block; margin-bottom: 7px; color: #415570; font-size: 11px; font-weight: 800; }
.consult-form input[type="text"], .consult-form input[type="tel"], .consult-form select { width: 100%; height: 48px; padding: 0 14px; border: 1px solid #dce4ef; border-radius: 11px; outline: 0; color: #263b59; background: #f9fbfe; font-size: 12px; transition: border-color .2s ease, box-shadow .2s ease; }
.consult-form input::placeholder { color: #a8b2c1; }
.consult-form input:focus, .consult-form select:focus { border-color: #8fb3ef; box-shadow: 0 0 0 4px rgba(33,104,243,.08); }
.consult-form label.invalid input, .consult-form label.invalid select { border-color: #ef8c83; box-shadow: 0 0 0 4px rgba(232,93,83,.06); }
.field-error { display: block; min-height: 14px; margin-top: 2px; color: #d95d54; font-size: 8px; }
.consent-row { display: flex; align-items: center; gap: 8px; margin-top: 9px; cursor: pointer; }
.consent-row input { width: 15px; height: 15px; accent-color: var(--brand); }
.consult-form .consent-row > span { margin: 0; color: #8490a2; font-size: 9px; font-weight: 400; }
.consent-row.invalid span { color: #d95d54; }
.form-submit { width: 100%; min-height: 49px; margin-top: 14px; }
.form-submit:disabled { cursor: wait; opacity: .72; transform: none; box-shadow: none; }
.honeypot-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.form-note { display: flex; align-items: flex-start; gap: 6px; margin: 10px 0 0; color: #929cad; font-size: 8px; line-height: 1.5; }
.form-note i { color: #8297b8; font-style: normal; }

.about-strip { padding: 66px 0 56px; border-top: 1px solid #e8edf4; background: #f8fafc; }
.about-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; }
.about-brand img { width: 216px; height: auto; }
.about-brand p { margin: 13px 0 0; color: #758197; font-size: 12px; }
.about-links { display: grid; grid-template-columns: .8fr .8fr 1.4fr; gap: 40px; }
.about-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.about-links strong { margin-bottom: 4px; color: #344762; font-size: 12px; }
.about-links a, .about-links span { color: #818da0; font-size: 10px; }
.about-links a:hover { color: var(--brand); }
.site-footer { padding: 18px 0; color: #8b96a7; background: #101e33; font-size: 9px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-inner p { margin: 0; }
.footer-inner div { display: flex; gap: 18px; }
.footer-inner a:hover { color: #fff; }

.floating-contact { position: fixed; z-index: 50; right: 19px; top: 50%; display: grid; overflow: hidden; border: 1px solid #e1e7f0; border-radius: 15px; background: rgba(255,255,255,.94); box-shadow: 0 14px 42px rgba(31,75,145,.14); backdrop-filter: blur(12px); transform: translateY(-50%); }
.floating-contact a { width: 62px; height: 62px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; border-top: 1px solid #eef1f6; color: #68768c; transition: color .2s ease, background .2s ease; }
.floating-contact a:first-child { border-top: 0; color: #fff; background: linear-gradient(135deg, var(--brand), var(--violet)); }
.floating-contact a:hover { color: var(--brand); background: #f2f6fd; }.floating-contact a:first-child:hover { color: #fff; background: linear-gradient(135deg, #155be1, #5e55d9); }
.floating-contact span { font-size: 14px; font-weight: 800; }.floating-contact em { font-size: 8px; font-style: normal; }

.toast { position: fixed; z-index: 100; right: 24px; bottom: 24px; max-width: calc(100% - 48px); display: flex; align-items: center; gap: 12px; padding: 15px 16px; border: 1px solid #dce5f1; border-radius: 15px; background: #fff; box-shadow: 0 20px 60px rgba(24,59,116,.2); opacity: 0; pointer-events: none; transform: translateY(20px); transition: opacity .25s ease, transform .25s ease; }
.toast.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.toast > span { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 11px; color: #fff; background: #35b7a6; font-weight: 900; }
.toast.error > span { background: #e05e55; }
.toast > div { display: flex; flex-direction: column; }.toast strong { color: #2b405d; font-size: 11px; }.toast small { color: #8793a5; font-size: 8px; }
.toast button { margin-left: 8px; padding: 5px; border: 0; color: #8f9aaa; background: none; cursor: pointer; font-size: 18px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.65,.3,1), transform .7s cubic-bezier(.2,.65,.3,1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 1240px) {
  .container { width: min(1080px, calc(100% - 40px)); }
  .primary-nav { gap: 20px; }
  .header-cta { padding-inline: 13px; }
  .hero-grid { gap: 25px; }
  .dashboard-shell { width: 535px; }
  .float-card-left { left: -10px; }.float-card-right { right: -8px; }
  .floating-contact { display: none; }
}

@media (max-width: 1024px) {
  .site-header { height: 70px; }
  .brand img { width: 185px; }
  .primary-nav { position: fixed; inset: 70px 0 auto 0; height: calc(100vh - 70px); display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 24px 90px; overflow-y: auto; visibility: hidden; pointer-events: none; background: rgba(255,255,255,.98); clip-path: inset(0 0 0 100%); transition: clip-path .3s ease, visibility .3s ease; }
  .primary-nav.open { visibility: visible; pointer-events: auto; clip-path: inset(0); }
  .primary-nav a { flex: 0 0 58px; height: 58px; display: flex; justify-content: flex-start; border-bottom: 1px solid #edf1f6; font-size: 16px; }
  .primary-nav a::after { left: 0; bottom: 14px; width: 18px; transform: scaleX(0); }.primary-nav a.active::after { transform: scaleX(1); }
  .header-cta { margin-left: auto; }
  .menu-toggle { width: 42px; height: 42px; display: grid; place-content: center; gap: 5px; padding: 0; border: 1px solid #e1e7f0; border-radius: 12px; background: #fff; cursor: pointer; }
  .menu-toggle span { width: 18px; height: 2px; border-radius: 2px; background: #344c6c; transition: .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding-top: 67px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; padding-bottom: 18px; text-align: center; margin-inline: auto; }
  .hero-eyebrow, .hero-tags, .hero-actions, .hero-trust { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-visual { width: 100%; max-width: 650px; margin-inline: auto; }
  .dashboard-shell { width: 100%; max-width: 590px; transform: rotate(0); }
  .hero-metrics { margin-top: 12px; }
  .route-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 92px 0; }
  .course-showcase { grid-template-columns: 1fr; }
  .course-copy { padding: 38px 35px 23px; }
  .course-map { min-height: 420px; }
  .method-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .method-card-featured { grid-row: auto; min-height: 300px; }.diagnosis-mini { margin-top: 35px; }
  .platform-grid { grid-template-columns: 1fr; }.platform-copy { max-width: 700px; }.platform-preview { width: 100%; max-width: 760px; margin-inline: auto; }
  .faq-grid { gap: 48px; }
  .consult-copy { padding-left: 45px; }
  .consult-form { margin-left: 0; }
}

@media (max-width: 768px) {
  .reveal { opacity: 1; transform: none; }
  .container { width: min(100% - 30px, 680px); }
  .notice-inner { justify-content: flex-start; overflow: hidden; white-space: nowrap; }.notice-inner p { text-overflow: ellipsis; overflow: hidden; }.notice-inner a { display: none; }
  .header-cta { display: none; }
  .hero { min-height: auto; padding-top: 50px; }
  .hero h1 { font-size: clamp(40px, 11vw, 56px); }.hero-lead { font-size: 15px; }
  .hero-visual { min-height: 520px; }
  .dashboard-shell { width: 100%; }
  .float-card { transform: scale(.9); }.float-card-left { left: -16px; top: 125px; }.float-card-right { right: -16px; bottom: 55px; }
  .visual-badge-one { right: 6px; }.visual-badge-two { left: 3px; bottom: 10px; }
  .hero-metrics { grid-template-columns: 1fr 1fr; }.hero-metrics div:nth-child(2)::after { display: none; }.hero-metrics div:nth-child(-n+2) { border-bottom: 1px solid #e8edf4; }
  .route-strip { padding-top: 54px; }.route-grid { grid-template-columns: 1fr 1fr; }.route-card { min-height: 118px; padding: 17px; }.route-icon { width: 45px; height: 45px; }.route-card strong { font-size: 15px; }
  .section-heading h2 { font-size: 34px; }.section-heading > p { font-size: 13px; }
  .course-tabs { justify-content: flex-start; width: 100%; }.course-tab { min-width: 122px; }
  .course-copy { padding: 29px 21px 20px; }.course-copy h3 { font-size: 25px; }.course-map { padding: 25px 21px; }
  .split-heading { grid-template-columns: 1fr; gap: 18px; }.split-heading > p { max-width: 600px; }
  .method-grid { grid-template-columns: 1fr 1fr; }.method-card { padding: 25px; }
  .platform-preview { padding: 12px; }.preview-window { height: 510px; grid-template-columns: 50px 1fr; }.preview-sidebar { gap: 21px; }.preview-main { padding: 14px; }.preview-greeting { padding: 12px; }.preview-columns { grid-template-columns: 1fr .75fr; }.score-ring { width: 94px; height: 94px; }.score-ring::before { width: 73px; height: 73px; }
  .team-grid, .resources-grid { grid-template-columns: 1fr; }.team-card { display: grid; grid-template-columns: 230px 1fr; }.team-portrait { height: 100%; min-height: 270px; }.team-info { align-self: center; }.team-info p { min-height: 0; }
  .resource-heading { align-items: start; }.resource-heading .text-link { display: none; }.resource-art { height: 255px; }
  .insights-heading { align-items: flex-start; }.insights-all { margin-top: 13px; }.insight-grid { grid-template-columns: 1fr; }.insight-card, .insight-card-link { min-height: 235px; }
  .story-grid { grid-template-columns: 1fr; gap: 35px; }.story-card > p { min-height: 0; }
  .faq-grid { grid-template-columns: 1fr; }.faq-heading { position: static; }.faq-heading p { max-width: 560px; }
  .consult-shell { grid-template-columns: 1fr; }.consult-copy { padding: 54px 38px 110px; }.consult-swoosh { bottom: 15px; }.consult-form { margin: -66px 18px 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 38px; }.about-links { grid-template-columns: 1fr 1fr; }.about-links > div:last-child { grid-column: 1 / 3; }
}

@media (max-width: 560px) {
  html { scroll-padding-top: 75px; }
  .container { width: min(100% - 24px, 520px); }
  .brand img { width: 170px; }
  .hero-copy { text-align: left; }.hero-eyebrow, .hero-tags, .hero-actions, .hero-trust { justify-content: flex-start; }
  .hero h1 { font-size: 40px; line-height: 1.26; }.hero-lead { font-size: 14px; }.hero-tags { gap: 10px 16px; }.hero-actions { align-items: stretch; flex-direction: column; }.hero-actions .button { width: 100%; }.hero-trust { margin-top: 23px; }
  .hero-visual { min-height: 460px; margin-top: 25px; }.dashboard-body { padding: 15px; }.progress-panel { grid-template-columns: 88px 1fr; gap: 12px; padding: 13px; }.progress-ring { width: 80px; height: 80px; }.progress-ring::before { width: 62px; height: 62px; }.progress-ring strong { font-size: 19px; }.today-panel { padding: 14px; }.today-panel li { grid-template-columns: 27px 1fr; }.today-panel li em { display: none; }.float-card { display: none; }.visual-badge-one { top: 2px; }.visual-badge-two { bottom: 1px; }
  .hero-metrics { border-radius: 18px; }.hero-metrics div { min-height: 78px; flex-direction: column; gap: 4px; }.hero-metrics strong { font-size: 20px; }.hero-metrics div > span { font-size: 10px; }
  .route-grid { grid-template-columns: 1fr; gap: 10px; }.route-card { min-height: 100px; }.route-card em { margin-top: 2px; }
  .section { padding: 76px 0; }.section-heading h2 { font-size: 30px; }.section-heading > p { margin-top: 14px; }
  .course-tab { min-width: 116px; padding-inline: 13px; }.course-showcase { border-radius: 23px; }.course-copy h3 { font-size: 23px; }.course-points { grid-template-columns: 1fr; }.course-actions { align-items: stretch; flex-direction: column; gap: 14px; }.course-actions .button { width: 100%; }.course-actions .text-link { text-align: center; }.course-map { min-height: auto; padding: 23px 18px; }.map-foot { flex-direction: column; gap: 7px; }
  .method-grid { grid-template-columns: 1fr; }.method-card, .method-card-featured { min-height: 250px; }.diagnosis-mini { margin-top: 30px; }
  .platform-list { grid-template-columns: 1fr 1fr; }.platform-preview { margin-top: -10px; }.preview-window { height: 425px; grid-template-columns: 38px 1fr; }.preview-sidebar { gap: 16px; padding-top: 11px; }.preview-sidebar img { width: 29px; height: 29px; }.preview-sidebar i { width: 14px; height: 14px; }.preview-main { padding: 10px; }.preview-greeting { margin-top: 10px; }.preview-greeting > span { display: none; }.preview-columns { grid-template-columns: 1fr; }.preview-score { display: none; }.preview-chart svg { height: 87px; }.preview-tasks { margin-top: 8px; padding: 11px; }.task-row { padding: 7px 0; }
  .team-card { display: block; }.team-portrait { min-height: 230px; height: 230px; }.team-note { align-items: flex-start; flex-wrap: wrap; }.team-note p { min-width: calc(100% - 60px); }.team-note a { margin-left: 54px; }
  .resource-art { height: 220px; }
  .insights-heading { display: block; }.insights-heading h2 { font-size: 30px; }.insights-all { margin-top: 22px; }.insight-grid { margin-top: 28px; }.insight-card { min-height: 0; padding: 23px 21px; }.insight-card-link { min-height: 0; }.insight-card h3 { font-size: 18px; }
  .story-copy h2 { font-size: 31px; }.story-card { padding: 35px 24px 22px; }.story-card > p { font-size: 15px; }.story-note { display: none; }
  .faq-heading h2 { font-size: 34px; }.faq-item button { padding: 20px; }.faq-item.open .faq-answer > p { padding: 0 20px 20px; }
  .consult-section { padding: 70px 0; }.consult-shell { border-radius: 26px; }.consult-copy { padding: 45px 24px 100px; }.consult-copy h2 { font-size: 34px; }.consult-benefits { display: grid; grid-template-columns: 1fr 1fr; }.consult-form { padding: 25px 20px 22px; margin-inline: 12px; }.consult-swoosh { left: 15px; }
  .about-links { grid-template-columns: 1fr; }.about-links > div:last-child { grid-column: auto; }.footer-inner { align-items: flex-start; flex-direction: column; }.footer-inner div { flex-wrap: wrap; }
  .toast { left: 12px; right: 12px; bottom: 12px; max-width: none; }.toast button { margin-left: auto; }
}

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