:root {
    color-scheme: light;
    --ink: #18213a;
    --muted: #5f6880;
    --blue: #2454d8;
    --violet: #6c4ee3;
    --coral: #ff6f61;
    --line: rgba(30, 44, 89, .12);
    --surface: #ffffff;
    --soft: #f5f7ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #fff 0%, #f7f8ff 100%);
}
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.hero { position: relative; overflow: hidden; padding: 96px 0 72px; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, .65fr); gap: 48px; align-items: end; }
.hero__glow { position: absolute; border-radius: 999px; filter: blur(12px); opacity: .18; pointer-events: none; }
.hero__glow--one { width: 420px; height: 420px; background: var(--blue); top: -230px; right: 10%; }
.hero__glow--two { width: 300px; height: 300px; background: var(--coral); bottom: -210px; left: -70px; }
[data-content-key="hero.eyebrow"] { display: inline-flex; margin-bottom: 22px; padding: 9px 14px; border: 1px solid rgba(36,84,216,.18); border-radius: 999px; color: var(--blue); background: rgba(36,84,216,.06); font-weight: 750; letter-spacing: .04em; text-transform: uppercase; font-size: 13px; }
h1 { max-width: 850px; margin: 0; font-size: clamp(48px, 7vw, 92px); line-height: .96; letter-spacing: -.055em; }
[data-content-key="hero.subtitle"] { max-width: 720px; margin: 28px 0 0; font-size: clamp(19px, 2.1vw, 27px); line-height: 1.38; color: var(--muted); }
.status-card { position: relative; padding: 28px; border-radius: 28px; color: white; background: linear-gradient(145deg, var(--blue), var(--violet)); box-shadow: 0 28px 70px rgba(56,70,173,.22); }
.status-card__dot { display: block; width: 12px; height: 12px; margin-bottom: 24px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 8px rgba(255,111,97,.16); }
.status-card span[data-content-key] { display: block; font-size: 18px; line-height: 1.35; }
.status-card strong { display: block; margin-top: 36px; font-size: 15px; overflow-wrap: anywhere; }
.status-card small { display: block; margin-top: 7px; opacity: .72; }
.content-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; padding-bottom: 72px; }
.content-card { min-height: 290px; padding: 34px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.88); box-shadow: 0 18px 55px rgba(41,54,112,.07); }
.content-card--wide { grid-column: 1 / -1; min-height: 250px; }
.content-card--accent { background: linear-gradient(145deg, #fff 0%, #fff4f1 100%); border-color: rgba(255,111,97,.24); }
h2 { margin: 0; font-size: clamp(28px, 3.4vw, 46px); line-height: 1.02; letter-spacing: -.035em; }
.content-card p { max-width: 760px; margin: 24px 0 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.footer { padding: 0 0 44px; color: var(--muted); }
.footer p { margin: 0; }
[data-ai-editable="1"] { outline: 0 solid transparent; transition: outline-color .2s ease, background-color .2s ease; }
html.ai-edit-mode [data-ai-editable="1"] { outline: 1px dashed rgba(36,84,216,.45); outline-offset: 6px; cursor: text; }
@media (max-width: 820px) {
    .hero { padding-top: 64px; }
    .hero__grid, .content-grid { grid-template-columns: 1fr; }
    .content-card--wide { grid-column: auto; }
    h1 { font-size: clamp(44px, 14vw, 72px); }
}
