:root {
  --bg: #f5f7fb;
  --bg-soft: #eef3f9;
  --surface: rgba(255, 255, 255, .84);
  --surface-solid: #ffffff;
  --surface-strong: #edf2f8;
  --text: #142033;
  --text-soft: #5e6d82;
  --text-faint: #8793a5;
  --line: rgba(28, 48, 78, .11);
  --line-strong: rgba(28, 48, 78, .18);
  --brand: #2259b8;
  --brand-strong: #153f8a;
  --brand-soft: #e8f0ff;
  --accent: #16a085;
  --accent-soft: #e4f7f2;
  --danger: #b42318;
  --warning: #a15c00;
  --shadow-sm: 0 8px 24px rgba(31, 50, 79, .08);
  --shadow-md: 0 22px 70px rgba(26, 43, 67, .12);
  --shadow-lg: 0 40px 110px rgba(23, 40, 64, .18);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --container: 1180px;
  --header-h: 76px;
}
html[data-theme="dark"] {
  --bg: #0b111b;
  --bg-soft: #101925;
  --surface: rgba(18, 28, 42, .84);
  --surface-solid: #121c2a;
  --surface-strong: #172334;
  --text: #edf4ff;
  --text-soft: #aab8cb;
  --text-faint: #7e8da2;
  --line: rgba(211, 227, 249, .10);
  --line-strong: rgba(211, 227, 249, .18);
  --brand: #73a2ff;
  --brand-strong: #9abaff;
  --brand-soft: rgba(74, 122, 219, .16);
  --accent: #5bd0b7;
  --accent-soft: rgba(60, 184, 157, .13);
  --danger: #ff8a80;
  --warning: #ffc270;
  --shadow-sm: 0 10px 28px rgba(0, 0, 0, .25);
  --shadow-md: 0 28px 84px rgba(0, 0, 0, .34);
  --shadow-lg: 0 44px 130px rgba(0, 0, 0, .42);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body { margin: 0; min-width: 320px; background: var(--bg); color: var(--text); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
button, input { font: inherit; }
a { color: inherit; }
img, svg { max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; background: var(--surface-solid); color: var(--text); padding: 12px 16px; border-radius: 12px; box-shadow: var(--shadow-md); transition: top .2s ease; }
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 108px 0; }
.section-shell { position: relative; overflow: hidden; }
.section-muted { background: var(--bg-soft); border-block: 1px solid var(--line); }
.kicker { margin: 0 0 12px; color: var(--brand); text-transform: uppercase; letter-spacing: .12em; font-weight: 800; font-size: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 46px; padding: 11px 18px; border-radius: 13px; border: 1px solid transparent; font-weight: 760; text-decoration: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .theme-control button:focus-visible, .menu-button:focus-visible, input:focus-visible, summary:focus-visible { outline: 3px solid color-mix(in srgb, var(--brand) 32%, transparent); outline-offset: 3px; }
.button-primary { background: var(--brand); color: #fff; box-shadow: 0 12px 30px color-mix(in srgb, var(--brand) 28%, transparent); }
html[data-theme="dark"] .button-primary { color: #08111e; }
.button-primary:hover { background: var(--brand-strong); }
.button-ghost { background: color-mix(in srgb, var(--surface-solid) 78%, transparent); border-color: var(--line-strong); color: var(--text); backdrop-filter: blur(16px); }
.button-ghost:hover { border-color: color-mix(in srgb, var(--brand) 34%, var(--line)); box-shadow: var(--shadow-sm); }
.button-light { background: #fff; color: #17345f; box-shadow: 0 14px 36px rgba(4, 16, 35, .18); }
.button-large { min-height: 54px; padding: 14px 22px; border-radius: 15px; }
.button-full { width: 100%; }

.site-header { position: sticky; top: 0; z-index: 100; height: var(--header-h); border-bottom: 1px solid transparent; background: color-mix(in srgb, var(--bg) 70%, transparent); backdrop-filter: blur(18px); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 34px rgba(22, 39, 62, .06); background: color-mix(in srgb, var(--bg) 91%, transparent); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand-lockup { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; letter-spacing: -.035em; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; background: linear-gradient(145deg, var(--brand), color-mix(in srgb, var(--brand) 72%, var(--accent))); color: #fff; box-shadow: 0 10px 24px color-mix(in srgb, var(--brand) 24%, transparent); font-size: 17px; }
.brand-word { font-size: 20px; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a, .text-action { color: var(--text-soft); text-decoration: none; font-size: 14px; font-weight: 680; }
.desktop-nav a:hover, .text-action:hover { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.theme-control { display: inline-flex; gap: 3px; padding: 4px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); }
.theme-control button { width: 30px; height: 30px; padding: 0; border: 0; border-radius: 8px; background: transparent; color: var(--text-soft); cursor: pointer; }
.theme-control button.is-active { background: var(--surface-solid); color: var(--brand); box-shadow: 0 3px 12px rgba(20, 35, 55, .10); }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); padding: 10px; cursor: pointer; }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: var(--text); border-radius: 2px; }
.mobile-menu { position: absolute; top: var(--header-h); inset-inline: 0; background: var(--surface-solid); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); }
.mobile-menu-inner { display: grid; gap: 4px; padding-block: 16px 22px; }
.mobile-menu a:not(.button) { padding: 12px 4px; color: var(--text-soft); text-decoration: none; font-weight: 700; }

.hero { padding: 86px 0 94px; min-height: 720px; display: grid; align-items: center; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 82%); opacity: .28; pointer-events: none; }
.hero-glow { position: absolute; border-radius: 999px; filter: blur(80px); opacity: .26; pointer-events: none; }
.hero-glow-a { width: 480px; height: 480px; background: var(--brand); right: -160px; top: 30px; }
.hero-glow-b { width: 360px; height: 360px; background: var(--accent); left: -140px; bottom: 20px; opacity: .16; }
.hero-grid { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 66px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--text-soft); font-size: 12px; font-weight: 760; box-shadow: var(--shadow-sm); }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.hero h1 { margin: 24px 0 20px; max-width: 760px; font-size: clamp(48px, 5.8vw, 76px); line-height: .99; letter-spacing: -.065em; font-weight: 880; }
.hero h1 span { color: var(--brand); }
.hero-lead { max-width: 650px; color: var(--text-soft); font-size: clamp(17px, 1.6vw, 20px); line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 28px; color: var(--text-faint); font-size: 12px; font-weight: 720; }
.hero-proof span::before { content: "✓"; margin-right: 7px; color: var(--accent); }
.product-stage { position: relative; min-width: 0; }
.product-window { overflow: hidden; border: 1px solid var(--line-strong); border-radius: 24px; background: var(--surface-solid); box-shadow: var(--shadow-lg); transform: perspective(1200px) rotateY(-4deg) rotateX(2deg); }
.window-chrome { display: flex; align-items: center; gap: 16px; height: 45px; padding: 0 14px; border-bottom: 1px solid var(--line); background: var(--surface-strong); }
.window-dots { display: flex; gap: 5px; }.window-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--line-strong); }
.window-address { flex: 1; max-width: 280px; margin-inline: auto; padding: 5px 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface-solid); color: var(--text-faint); font-size: 9px; text-align: center; }
.app-preview { display: grid; grid-template-columns: 68px 1fr; min-height: 430px; }
.preview-sidebar { display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 18px 10px; border-right: 1px solid var(--line); background: color-mix(in srgb, var(--brand) 4%, var(--surface-solid)); }
.preview-logo { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; background: var(--brand); color: #fff; font-weight: 900; margin-bottom: 8px; }
.preview-nav { width: 30px; height: 7px; border-radius: 5px; background: var(--line-strong); }.preview-nav.short { width: 22px; }.preview-nav.is-active { background: var(--brand); }
.preview-main { min-width: 0; padding: 22px; background: linear-gradient(180deg, color-mix(in srgb, var(--bg) 38%, var(--surface-solid)), var(--surface-solid)); }
.preview-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }.preview-topbar small { display: block; color: var(--text-faint); font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }.preview-topbar strong { display: block; margin-top: 4px; font-size: 15px; }.avatar { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 10px; background: var(--brand-soft); color: var(--brand); font-size: 9px; font-weight: 900; }
.preview-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }.preview-stats > div { padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-solid); }.preview-stats small, .preview-stats i { display: block; color: var(--text-faint); font-size: 7px; font-style: normal; }.preview-stats strong { display: block; margin: 7px 0 3px; font-size: 19px; }
.preview-content { display: grid; grid-template-columns: 1.4fr .8fr; gap: 12px; margin-top: 12px; }.chart-card, .task-card { min-height: 190px; padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-solid); }.chart-head { display: flex; justify-content: space-between; font-size: 8px; color: var(--text-soft); }.chart-head b { color: var(--accent); }.bars { height: 128px; display: flex; align-items: end; gap: 8px; padding-top: 18px; }.bars i { flex: 1; height: 60%; border-radius: 5px 5px 2px 2px; background: linear-gradient(180deg, var(--brand), color-mix(in srgb, var(--brand) 40%, var(--accent))); opacity: .82; }
.bars i:nth-child(1) { height: 45%; } .bars i:nth-child(2) { height: 68%; } .bars i:nth-child(3) { height: 54%; } .bars i:nth-child(4) { height: 78%; } .bars i:nth-child(5) { height: 62%; } .bars i:nth-child(6) { height: 88%; } .bars i:nth-child(7) { height: 72%; }.task-card span, .task-card b { display: block; font-size: 8px; }.task-card b { margin: 5px 0 18px; font-size: 11px; }.task-line { height: 8px; margin: 10px 0; border-radius: 5px; background: var(--line); }.task-line.done { background: color-mix(in srgb, var(--accent) 42%, var(--line)); }
.floating-card { position: absolute; display: flex; align-items: center; gap: 11px; min-width: 190px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 15px; background: color-mix(in srgb, var(--surface-solid) 90%, transparent); box-shadow: var(--shadow-md); backdrop-filter: blur(14px); }.floating-card small, .floating-card strong { display: block; }.floating-card small { color: var(--text-faint); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }.floating-card strong { margin-top: 3px; font-size: 11px; }.floating-website { left: -32px; bottom: 30px; }.floating-security { right: -26px; top: 56px; }.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px var(--accent-soft); }.shield { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 9px; background: var(--brand-soft); color: var(--brand); font-weight: 900; }
.trust-strip { border-block: 1px solid var(--line); background: var(--surface); }.trust-row { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--text-soft); font-size: 12px; font-weight: 720; }.trust-row i { width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong); }

.section-heading { margin-bottom: 50px; }.section-heading h2, .showcase-copy h2, .security-copy h2, .faq-intro h2 { margin: 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -.045em; }.section-heading > p, .split-heading > p, .showcase-copy > p, .security-copy > p, .faq-intro > p { color: var(--text-soft); line-height: 1.75; font-size: 17px; }.split-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 72px; align-items: end; }.split-heading > p { margin: 0; }.centered { max-width: 780px; margin-inline: auto; text-align: center; }.centered > p { max-width: 680px; margin: 18px auto 0; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }.value-card { min-height: 320px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface-solid); box-shadow: var(--shadow-sm); }.value-card.featured { background: linear-gradient(145deg, color-mix(in srgb, var(--brand) 10%, var(--surface-solid)), var(--surface-solid)); border-color: color-mix(in srgb, var(--brand) 22%, var(--line)); }.icon-chip { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: var(--brand-soft); color: var(--brand); font-size: 11px; font-weight: 900; }.value-card h3 { margin: 46px 0 12px; font-size: 23px; letter-spacing: -.025em; }.value-card p { color: var(--text-soft); line-height: 1.7; }.value-card a { display: inline-block; margin-top: 18px; color: var(--brand); text-decoration: none; font-weight: 780; font-size: 13px; }
.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }.module-card { position: relative; min-height: 240px; padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface-solid); }.module-state { position: absolute; right: 18px; top: 18px; padding: 5px 8px; border-radius: 999px; background: var(--surface-strong); color: var(--text-faint); font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }.module-card.live .module-state { background: var(--accent-soft); color: color-mix(in srgb, var(--accent) 70%, var(--text)); }.module-card.core .module-state { background: var(--brand-soft); color: var(--brand); }.module-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--surface-strong); color: var(--brand); font-size: 22px; }.module-card h3 { margin: 34px 0 10px; font-size: 20px; }.module-card p { margin: 0; color: var(--text-soft); line-height: 1.65; font-size: 14px; }
.website-showcase { overflow: hidden; }.showcase-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 80px; }.showcase-copy > p strong { color: var(--text); }.feature-list { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 13px; }.feature-list li { display: flex; gap: 10px; color: var(--text-soft); }.feature-list span { display: grid; place-items: center; flex: 0 0 23px; height: 23px; border-radius: 8px; background: var(--accent-soft); color: var(--accent); font-weight: 900; font-size: 11px; }.device-stack { position: relative; min-height: 530px; }.browser-device { position: absolute; width: 88%; right: 0; top: 20px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 22px; background: var(--surface-solid); box-shadow: var(--shadow-lg); transform: rotate(1.5deg); }.browser-bar { height: 38px; display: flex; align-items: center; gap: 5px; padding: 0 11px; background: var(--surface-strong); border-bottom: 1px solid var(--line); }.browser-bar > span { width: 7px; height: 7px; border-radius: 50%; background: var(--line-strong); }.browser-bar div { width: 52%; margin: auto; padding: 4px 8px; border: 1px solid var(--line); border-radius: 7px; background: var(--surface-solid); color: var(--text-faint); font-size: 7px; text-align: center; }.school-site-preview { min-height: 420px; background: linear-gradient(145deg, color-mix(in srgb, var(--brand) 11%, #f8fbff), #f7efe4); color: #18304f; }.school-site-nav { height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; background: rgba(255,255,255,.75); }.school-site-nav b { font-family: Georgia, serif; font-size: 13px; }.school-site-nav span { font-size: 7px; color: #51647d; }.school-site-hero { padding: 55px 34px; }.school-site-hero small { color: #7e5b16; font-size: 7px; letter-spacing: .14em; font-weight: 800; }.school-site-hero h3 { margin: 12px 0; max-width: 360px; font-family: Georgia, serif; font-size: 35px; line-height: 1.05; letter-spacing: -.03em; }.school-site-hero p { max-width: 380px; color: #53657b; font-size: 10px; line-height: 1.7; }.school-site-hero button { margin-top: 12px; border: 0; border-radius: 8px; padding: 9px 12px; background: #173e74; color: #fff; font-size: 8px; }.school-site-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 34px 28px; }.school-site-cards i { height: 62px; border-radius: 10px; background: rgba(255,255,255,.74); }.phone-device { position: absolute; left: 0; bottom: 0; width: 170px; height: 340px; border: 7px solid #142033; border-radius: 34px; background: #f7f3eb; box-shadow: var(--shadow-lg); overflow: hidden; transform: rotate(-4deg); }.phone-notch { width: 70px; height: 18px; margin: -1px auto 0; border-radius: 0 0 13px 13px; background: #142033; }.phone-hero { padding: 42px 16px; color: #1a385e; }.phone-hero span { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 10px; background: #173e74; color: #fff; font-family: Georgia, serif; }.phone-hero small { display: block; margin-top: 26px; font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }.phone-hero h4 { margin: 12px 0 18px; font-family: Georgia, serif; font-size: 27px; line-height: 1.03; }.phone-hero b { display: inline-block; padding: 9px 10px; border-radius: 8px; background: #173e74; color: #fff; font-size: 8px; }
.security-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr .8fr; gap: 60px; align-items: center; padding: 60px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(145deg, color-mix(in srgb, var(--brand) 7%, var(--surface-solid)), var(--surface-solid)); box-shadow: var(--shadow-sm); }.security-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }.security-tags span { padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--text-soft); font-size: 11px; font-weight: 720; }.security-visual { position: relative; min-height: 330px; display: grid; place-items: center; }.security-ring { position: absolute; border: 1px solid color-mix(in srgb, var(--brand) 30%, var(--line)); border-radius: 50%; }.ring-a { width: 300px; height: 300px; }.ring-b { width: 220px; height: 220px; border-style: dashed; animation: rotate 18s linear infinite; }.security-core { position: relative; z-index: 2; display: grid; place-items: center; width: 160px; height: 160px; border-radius: 48px; background: var(--brand); color: #fff; box-shadow: 0 24px 64px color-mix(in srgb, var(--brand) 34%, transparent); text-align: center; }.security-core span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 13px; background: rgba(255,255,255,.18); font-weight: 900; }.security-core strong { font-size: 15px; }.security-core small { opacity: .78; font-size: 9px; }.pricing-story { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--line); }.pricing-story > div { min-height: 230px; padding: 30px; background: var(--surface-solid); }.pricing-story span { color: var(--brand); font-size: 11px; font-weight: 900; }.pricing-story h3 { margin: 48px 0 10px; font-size: 20px; }.pricing-story p { color: var(--text-soft); line-height: 1.7; font-size: 14px; }.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; }.faq-list { border-top: 1px solid var(--line); }.faq-list details { border-bottom: 1px solid var(--line); }.faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; cursor: pointer; list-style: none; font-weight: 780; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary span { color: var(--brand); font-size: 22px; transition: transform .2s ease; }.faq-list details[open] summary span { transform: rotate(45deg); }.faq-list details p { margin: -6px 0 24px; max-width: 670px; color: var(--text-soft); line-height: 1.75; }.final-cta { padding: 0 0 100px; }.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 56px; border-radius: var(--radius-xl); background: linear-gradient(135deg, #163f88, #245ab6 56%, #1d8f83); color: #fff; box-shadow: var(--shadow-lg); }.cta-panel .kicker { color: #b9e9df; }.cta-panel h2 { margin: 0; max-width: 760px; font-size: clamp(34px, 4vw, 52px); line-height: 1.06; letter-spacing: -.045em; }.cta-panel p:not(.kicker) { max-width: 700px; margin-bottom: 0; color: rgba(255,255,255,.76); line-height: 1.7; }
.site-footer { padding: 68px 0 28px; border-top: 1px solid var(--line); background: var(--surface-solid); }.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 50px; }.footer-brand p { max-width: 330px; color: var(--text-soft); line-height: 1.7; }.footer-theme { margin-top: 22px; }.footer-grid h3 { margin: 3px 0 16px; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-faint); }.footer-grid > div:not(.footer-brand) a { display: block; margin: 11px 0; color: var(--text-soft); text-decoration: none; font-size: 14px; }.footer-grid a:hover { color: var(--text); }.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--text-faint); font-size: 12px; }

.registration-shell { min-height: calc(100vh - var(--header-h)); padding: 70px 0 100px; background: radial-gradient(circle at 12% 10%, color-mix(in srgb, var(--brand) 10%, transparent), transparent 34rem), var(--bg); }.registration-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 72px; align-items: start; }.registration-story { position: sticky; top: 120px; padding-top: 20px; }.back-link { display: inline-block; margin-bottom: 58px; color: var(--text-soft); text-decoration: none; font-size: 13px; font-weight: 700; }.registration-story h1 { margin: 0; font-size: clamp(45px, 5vw, 64px); line-height: 1; letter-spacing: -.055em; }.registration-story h1 span { color: var(--brand); }.registration-story > p:not(.kicker) { max-width: 520px; color: var(--text-soft); line-height: 1.75; font-size: 17px; }.registration-benefits { display: grid; gap: 18px; margin-top: 38px; }.registration-benefits > div { display: flex; gap: 14px; align-items: flex-start; }.registration-benefits > div > span { display: grid; place-items: center; flex: 0 0 34px; height: 34px; border-radius: 11px; background: var(--brand-soft); color: var(--brand); font-size: 11px; font-weight: 900; }.registration-benefits p { margin: 0; }.registration-benefits strong, .registration-benefits small { display: block; }.registration-benefits strong { font-size: 14px; }.registration-benefits small { margin-top: 5px; color: var(--text-faint); line-height: 1.55; }.registration-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--surface-solid); box-shadow: var(--shadow-md); }.form-heading { display: flex; gap: 16px; align-items: center; padding-bottom: 26px; border-bottom: 1px solid var(--line); }.form-step { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--brand-soft); color: var(--brand); font-size: 11px; font-weight: 900; }.form-heading h2 { margin: 0; font-size: 24px; letter-spacing: -.025em; }.form-heading p { margin: 5px 0 0; color: var(--text-soft); font-size: 13px; }.registration-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding-top: 26px; }.field-group { min-width: 0; }.field-group.full, .form-divider, .regional-settings, .authority-note, .registration-form > .button, .existing-account-note, .form-alert { grid-column: 1 / -1; }.field-group label { display: block; margin-bottom: 8px; color: var(--text-soft); font-size: 12px; font-weight: 760; }.field-group input { width: 100%; height: 48px; border: 1px solid var(--line-strong); border-radius: 12px; padding: 0 13px; background: var(--bg); color: var(--text); transition: border-color .15s ease, box-shadow .15s ease, background .15s ease; }.field-group input:focus { border-color: var(--brand); background: var(--surface-solid); box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 10%, transparent); outline: none; }.slug-field { display: flex; align-items: center; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 12px; background: var(--bg); }.slug-field:focus-within { border-color: var(--brand); box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 10%, transparent); }.slug-field input { border: 0; border-radius: 0; box-shadow: none !important; }.slug-field span { padding-right: 13px; color: var(--text-faint); font-size: 12px; white-space: nowrap; }.field-hint, .field-error { display: block; margin-top: 7px; font-size: 11px; line-height: 1.45; }.field-hint { color: var(--text-faint); }.field-hint.is-success { color: var(--accent); }.field-hint.is-error, .field-error { color: var(--danger); }.form-divider { display: flex; align-items: center; gap: 12px; margin: 5px 0; color: var(--text-faint); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }.form-divider::before, .form-divider::after { content: ""; height: 1px; flex: 1; background: var(--line); }.regional-settings { margin-top: 2px; border: 1px solid var(--line); border-radius: 16px; background: var(--bg); }.regional-settings summary { padding: 15px 16px; cursor: pointer; font-weight: 780; font-size: 13px; }.regional-settings summary span { margin-left: 8px; color: var(--brand); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }.regional-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 0 16px 16px; }.authority-note, .existing-account-note { margin: 0; color: var(--text-faint); font-size: 11px; line-height: 1.55; }.existing-account-note { text-align: center; }.form-alert { padding: 12px 14px; border: 1px solid color-mix(in srgb, var(--danger) 25%, var(--line)); border-radius: 12px; background: color-mix(in srgb, var(--danger) 7%, var(--surface-solid)); color: var(--danger); font-size: 12px; }.form-alert ul { margin: 0; padding-left: 18px; }
.status-shell { min-height: calc(100vh - var(--header-h)); display: grid; place-items: center; padding: 70px 20px 100px; background: radial-gradient(circle at 50% 18%, color-mix(in srgb, var(--brand) 10%, transparent), transparent 32rem), var(--bg); }.status-card { width: min(100%, 620px); padding: 48px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--surface-solid); box-shadow: var(--shadow-md); text-align: center; }.status-icon { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 26px; border-radius: 20px; font-size: 24px; font-weight: 900; }.status-icon.mail { background: var(--brand-soft); color: var(--brand); }.status-icon.success { background: var(--accent-soft); color: var(--accent); }.status-icon.error { background: color-mix(in srgb, var(--danger) 10%, var(--surface-solid)); color: var(--danger); }.status-card h1 { margin: 0 0 14px; font-size: clamp(32px, 5vw, 44px); line-height: 1.06; letter-spacing: -.045em; }.status-card > p:not(.kicker):not(.status-fine) { color: var(--text-soft); line-height: 1.75; }.status-note { margin: 28px 0; padding: 18px; border-radius: 15px; background: var(--bg); text-align: left; }.status-note span { font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; color: var(--brand); }.status-note p { margin: 7px 0 0; color: var(--text-soft); font-size: 12px; line-height: 1.65; }.verify-form { margin-top: 28px; }.status-fine { margin: 14px 0 0; color: var(--text-faint); font-size: 11px; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }.is-visible[data-reveal] { opacity: 1; transform: translateY(0); }
@keyframes rotate { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } [data-reveal] { opacity: 1; transform: none; } }
@media (max-width: 1040px) { .desktop-nav { display: none; }.menu-button { display: block; }.hero-grid { grid-template-columns: 1fr; gap: 52px; }.hero-copy { max-width: 760px; }.product-stage { max-width: 760px; margin-inline: auto; width: 100%; }.split-heading, .showcase-grid, .security-panel, .faq-grid, .registration-grid { grid-template-columns: 1fr; }.value-grid, .module-grid { grid-template-columns: repeat(2, 1fr); }.showcase-grid { gap: 42px; }.device-stack { max-width: 760px; width: 100%; margin-inline: auto; }.security-panel { gap: 20px; }.security-visual { min-height: 280px; }.footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }.footer-grid > div:last-child { grid-column: 2 / 4; }.registration-story { position: static; }.registration-story .back-link { margin-bottom: 28px; } }
@media (max-width: 720px) { :root { --header-h: 68px; }.container { width: min(calc(100% - 28px), var(--container)); }.section { padding: 78px 0; }.desktop-only { display: none; }.header-actions { gap: 8px; }.theme-control { padding: 3px; }.theme-control button { width: 28px; height: 28px; }.hero { min-height: auto; padding: 58px 0 70px; }.hero h1 { font-size: clamp(44px, 13vw, 62px); }.hero-lead { font-size: 16px; }.hero-actions .button { width: 100%; }.product-window { transform: none; border-radius: 18px; }.app-preview { grid-template-columns: 48px 1fr; min-height: 330px; }.preview-sidebar { padding-inline: 7px; }.preview-main { padding: 14px; }.preview-content { grid-template-columns: 1fr; }.task-card { display: none; }.floating-card { display: none; }.trust-row { overflow-x: auto; justify-content: flex-start; white-space: nowrap; padding-block: 18px; }.split-heading { gap: 18px; }.value-grid, .module-grid, .pricing-story { grid-template-columns: 1fr; }.value-card { min-height: 260px; }.value-card h3 { margin-top: 30px; }.device-stack { min-height: 420px; }.browser-device { width: 96%; }.phone-device { width: 135px; height: 280px; border-width: 6px; }.phone-hero h4 { font-size: 21px; }.security-panel { padding: 30px; }.security-visual { min-height: 240px; }.ring-a { width: 230px; height: 230px; }.ring-b { width: 165px; height: 165px; }.security-core { width: 130px; height: 130px; border-radius: 38px; }.cta-panel { align-items: flex-start; flex-direction: column; padding: 34px; }.cta-panel .button { width: 100%; }.footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }.footer-brand { grid-column: 1 / -1; }.footer-grid > div:last-child { grid-column: auto; }.footer-bottom { flex-direction: column; }.registration-shell { padding: 42px 0 70px; }.registration-grid { gap: 34px; }.registration-card { padding: 22px; border-radius: 24px; }.registration-form, .regional-grid { grid-template-columns: 1fr; }.field-group { grid-column: 1 / -1; }.slug-field span { font-size: 10px; }.status-card { padding: 32px 22px; }.school-site-nav span { display: none; } }
.hero-signin { align-self: center; color: var(--text-soft); text-decoration: none; font-size: 13px; font-weight: 720; padding: 8px 2px; }
.hero-signin:hover { color: var(--brand); }
.finder-card { max-width: 560px; }
.finder-form { display: grid; gap: 14px; margin-top: 28px; text-align: left; }
.finder-form > label { color: var(--text-soft); font-size: 12px; font-weight: 760; }
.finder-form .slug-field input { width: 100%; height: 50px; padding: 0 13px; border: 0; outline: 0; background: transparent; color: var(--text); }
.finder-form .form-alert { margin: 0; }
@media (max-width: 720px) { .hero-signin { width: 100%; text-align: center; } }

/* W2.5A — Business contact */
.contact-teaser { border-top: 1px solid var(--line); }
.contact-teaser-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr); gap: 54px; align-items: center; }
.contact-teaser h2 { margin: 0 0 16px; max-width: 760px; font-size: clamp(34px, 4.3vw, 56px); line-height: 1.06; letter-spacing: -.045em; }
.contact-teaser p { color: var(--text-soft); line-height: 1.7; }
.contact-teaser-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.contact-page-shell { min-height: calc(100vh - var(--header-h)); padding: 76px 0 108px; background: linear-gradient(180deg, var(--bg), var(--bg-soft)); }
.contact-page-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(460px, 1.12fr); gap: 72px; align-items: start; }
.contact-story { position: sticky; top: calc(var(--header-h) + 36px); }
.contact-story h1 { margin: 18px 0; max-width: 640px; font-size: clamp(44px, 5vw, 68px); line-height: 1; letter-spacing: -.055em; }
.contact-story > p { max-width: 620px; color: var(--text-soft); font-size: 17px; line-height: 1.75; }
.contact-route-list { display: grid; gap: 12px; margin: 32px 0; }
.contact-route-list > div { display: grid; gap: 5px; padding: 17px 18px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.contact-route-list strong { color: var(--text); }
.contact-route-list span { color: var(--text-soft); font-size: 13px; line-height: 1.5; }
.contact-privacy-note { padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px !important; }
.contact-form-card { position: relative; padding: 32px; border: 1px solid var(--line-strong); border-radius: var(--radius-xl); background: var(--surface-solid); box-shadow: var(--shadow-md); }
.contact-form { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.contact-form .field-group.full { grid-column: 1 / -1; }
.contact-form .field-group label { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 8px; color: var(--text); font-size: 13px; font-weight: 760; }
.contact-form .field-group label span { color: var(--text-faint); font-weight: 620; }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; border: 1px solid var(--line-strong); border-radius: 12px; background: var(--surface-solid); color: var(--text); padding: 12px 13px; font: inherit; }
.contact-form textarea { resize: vertical; min-height: 170px; line-height: 1.6; }
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible { outline: 3px solid color-mix(in srgb, var(--brand) 26%, transparent); outline-offset: 2px; border-color: var(--brand); }
.contact-form .button { grid-column: 1 / -1; margin-top: 4px; }
.honeypot-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.status-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 24px; }
@media (max-width: 900px) {
  .contact-teaser-grid,
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-story { position: static; }
  .contact-form-card { padding: 24px; }
}
@media (max-width: 620px) {
  .contact-page-shell { padding: 46px 0 72px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .field-group.full,
  .contact-form .button { grid-column: auto; }
}

/* W2.5B — Book a Demo */
.demo-page-grid { align-items: start; }
.demo-form-card { max-width: 760px; width: 100%; justify-self: end; }
.demo-interest-fieldset { border: 0; padding: 0; margin: 0; }
.demo-interest-fieldset legend { margin-bottom: 10px; color: var(--text); font-size: 13px; font-weight: 760; }
.demo-interest-grid > div { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.demo-interest-grid label { display: flex; align-items: flex-start; gap: 10px; min-height: 48px; padding: 12px 13px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--text-soft); cursor: pointer; line-height: 1.35; }
.demo-interest-grid input { width: auto; margin-top: 2px; accent-color: var(--brand); }
.demo-booking-note { display: flex; flex-direction: column; gap: 4px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-soft); }
.demo-booking-note strong { color: var(--text); font-size: 13px; }
.demo-booking-note span { color: var(--text-soft); font-size: 12px; line-height: 1.5; }
.demo-form .full { grid-column: 1 / -1; }

@media (max-width: 620px) {
  .demo-interest-grid > div { grid-template-columns: 1fr; }
  .demo-form .full { grid-column: auto; }
}

/* W2.5C — Searchable canonical regional settings */
.regional-grid select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 0 13px;
  background: var(--bg);
  color: var(--text);
  font: inherit;
}

.regional-search {
  position: relative;
}

.regional-search-input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 0 42px 0 13px;
  background: var(--bg);
  color: var(--text);
  font: inherit;
  text-overflow: ellipsis;
}

.regional-search::after {
  content: "⌄";
  position: absolute;
  right: 14px;
  top: 14px;
  color: var(--text-faint);
  pointer-events: none;
  font-size: 14px;
}

.regional-search-input:focus {
  border-color: var(--brand);
  background: var(--surface-solid);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 10%, transparent);
  outline: none;
}

.regional-search-list {
  position: absolute;
  z-index: 30;
  left: 0;
  right: 0;
  top: calc(100% + 7px);
  max-height: 280px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: var(--surface-solid);
  box-shadow: var(--shadow-md);
}

.regional-search-option {
  padding: 10px 11px;
  border-radius: 9px;
  color: var(--text-soft);
  cursor: pointer;
  font-size: 12px;
  line-height: 1.4;
}

.regional-search-option:hover,
.regional-search-option.is-active {
  background: var(--brand-soft);
  color: var(--text);
}

.regional-search-empty {
  position: absolute;
  z-index: 30;
  left: 0;
  right: 0;
  top: calc(100% + 7px);
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-solid);
  color: var(--text-faint);
  box-shadow: var(--shadow-sm);
  font-size: 12px;
}

/* W2.5D — Public UloBook loading identity */
.public-loader {
  --loader-color: var(--brand);
  --loader-track: color-mix(in srgb, var(--loader-color) 18%, var(--line));
  display: inline-block;
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  border: 2.5px solid var(--loader-track);
  border-top-color: var(--loader-color);
  border-radius: 999px;
  animation: public-loader-spin .8s linear infinite;
}

.public-loader--button {
  --loader-color: currentColor;
  --loader-track: color-mix(in srgb, currentColor 30%, transparent);
  width: 1rem;
  height: 1rem;
  border-width: 2px;
}

@keyframes public-loader-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .public-loader {
    animation: none !important;
    border-top-color: var(--loader-color);
    border-right-color: var(--loader-color);
  }
}

/* W2.6D.9 — Password requirement checklist */
.password-requirements {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface-solid) 82%, var(--bg));
}

.password-requirements__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.password-requirements__heading > div {
  display: grid;
  gap: 3px;
}

.password-requirements__heading strong {
  color: var(--text);
  font-size: 12px;
}

.password-requirements__heading small,
.password-requirements__heading > span {
  color: var(--text-faint);
  font-size: 11px;
  line-height: 1.4;
}

.password-requirements__heading > span {
  flex: 0 0 auto;
  text-align: right;
}

.password-requirements[data-complete="true"] .password-requirements__heading > span {
  color: var(--accent);
  font-weight: 700;
}

.password-requirements__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 14px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.password-requirement,
.password-requirements__placeholder {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: var(--text-faint);
  font-size: 11px;
  line-height: 1.4;
}

.password-requirement__icon {
  display: inline-grid;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
}

.password-requirement.is-passed {
  color: var(--text);
}

.password-requirement.is-passed .password-requirement__icon {
  border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
  background: color-mix(in srgb, var(--accent) 12%, var(--surface-solid));
  color: var(--accent);
  font-weight: 800;
}

.password-requirements__fallback {
  margin: 10px 0 0;
  color: var(--text-faint);
  font-size: 11px;
  line-height: 1.45;
}

@media (max-width: 720px) {
  .password-requirements__heading {
    display: grid;
  }

  .password-requirements__heading > span {
    text-align: left;
  }

  .password-requirements__list {
    grid-template-columns: 1fr;
  }
}
