@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ink: #0a0a0a;
  --ink-soft: #3b3b3b;
  --muted: #666662;
  --canvas: #f7f7f5;
  --paper: #ffffff;
  --line: rgba(10, 10, 10, 0.12);
  --line-soft: rgba(10, 10, 10, 0.07);
  --coral: #ff3c00;
  --coral-dark: #e33200;
  --blush: #ffd8cc;
  --blush-soft: #fff0eb;
  --green: #117345;
  --green-soft: #e2f3e9;
  --yellow: #f6e47b;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-window: 0 32px 80px rgba(95, 32, 11, 0.18), 0 3px 12px rgba(38, 13, 5, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
p, h1, h2, h3, blockquote { margin-top: 0; }
::selection { background: var(--coral); color: white; }

.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 100; left: 16px; top: 16px; padding: 12px 16px; border-radius: 10px; background: var(--ink); color: white; transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: absolute; z-index: 20; inset: 0 0 auto; }
.nav { height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-size: 17px; font-weight: 700; letter-spacing: -.045em; }
.brand-mark { width: 24px; height: 24px; display: inline-flex; align-items: flex-end; justify-content: center; gap: 2px; padding: 5px 4px 4px; border-radius: 7px; background: var(--coral); transform: rotate(45deg); }
.brand-mark i { width: 3px; border-radius: 8px; background: white; transform: rotate(-45deg) translate(1px, 1px); }
.brand-mark i:nth-child(1) { height: 7px; }
.brand-mark i:nth-child(2) { height: 13px; }
.brand-mark i:nth-child(3) { height: 9px; }
.nav-links { display: flex; align-items: center; gap: 32px; font-size: 13px; font-weight: 500; }
.nav-links > a:not(.button) { position: relative; padding: 12px 0; }
.nav-links > a:not(.button)::after { content: ''; position: absolute; inset: auto 0 6px; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.nav-links > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 24px; padding: 0 22px; border: 1px solid var(--coral); border-radius: var(--radius-sm); background: var(--coral); color: white; font-size: 13px; font-weight: 600; box-shadow: 0 5px 0 var(--coral-dark); transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 7px 0 var(--coral-dark); }
.button:active { transform: translateY(3px); box-shadow: 0 2px 0 var(--coral-dark); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid rgba(255, 60, 0, .35); outline-offset: 3px; }
.button span { font-size: 16px; line-height: 1; }
.button-small { min-height: 42px; padding: 0 17px; gap: 14px; box-shadow: none; border-color: var(--ink); background: var(--ink); }
.button-small:hover { box-shadow: none; background: var(--coral); border-color: var(--coral); }
.button-secondary { border-color: var(--ink); background: transparent; color: var(--ink); box-shadow: none; }
.button-secondary:hover { background: white; box-shadow: none; }

.eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 22px; color: var(--ink-soft); font-size: 11px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow > span { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(255, 60, 0, .12); }
.eyebrow.light { color: rgba(255, 255, 255, .8); }
.eyebrow.light > span { background: white; box-shadow: 0 0 0 4px rgba(255, 255, 255, .16); }

.hero { position: relative; padding: 170px 0 74px; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -350px; left: 50%; width: 900px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 60, 0, .12), rgba(255, 216, 204, .04) 50%, transparent 70%); transform: translateX(-50%); pointer-events: none; }
.hero-inner { position: relative; }
.hero-copy { max-width: 880px; margin: 0 auto 78px; text-align: center; }
.hero-copy .eyebrow { justify-content: center; }
.hero h1 { max-width: 940px; margin: 0 auto 26px; font-size: clamp(54px, 7.1vw, 96px); font-weight: 600; line-height: .96; letter-spacing: -.075em; text-wrap: balance; }
.hero-lead { max-width: 680px; margin: 0 auto; color: var(--muted); font-size: 17px; line-height: 1.65; text-wrap: balance; }
.hero-actions { display: flex; justify-content: center; gap: 14px; margin-top: 34px; }

.signal-stage { position: relative; max-width: 1050px; min-height: 670px; margin: 0 auto; padding: 86px 74px 62px; border-radius: var(--radius-lg); background:
  linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px) 0 0 / 34px 100%,
  linear-gradient(120deg, #ffdad0 0%, #ff8f6c 43%, #ff3c00 100%);
  overflow: hidden;
}
.signal-stage::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(102deg, transparent 0 45px, rgba(255, 255, 255, .2) 46px 48px, transparent 49px 83px); mask-image: linear-gradient(to bottom, #000, transparent 82%); }
.signal-stage::after { content: ''; position: absolute; width: 480px; height: 480px; right: -220px; top: -230px; border: 90px solid rgba(255, 255, 255, .1); border-radius: 50%; }
.signal-orbit { position: absolute; z-index: 0; border: 1px solid rgba(255, 255, 255, .45); border-radius: 50%; }
.signal-orbit-one { width: 440px; height: 440px; left: -260px; top: 90px; }
.signal-orbit-two { width: 580px; height: 580px; right: -390px; bottom: -420px; }
.stage-note { position: absolute; z-index: 3; top: 34px; display: flex; align-items: center; gap: 7px; padding: 9px 12px; border: 1px solid rgba(255, 255, 255, .55); border-radius: 999px; background: rgba(255, 255, 255, .78); box-shadow: 0 8px 30px rgba(70, 17, 0, .1); backdrop-filter: blur(14px); color: #6c230d; font-size: 11px; font-weight: 600; }
.stage-note i { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 3px rgba(255, 60, 0, .14); }
.stage-note-left { left: 78px; }
.stage-note-right { right: 78px; }
.stage-note-right i { background: var(--green); box-shadow: 0 0 0 3px rgba(17, 115, 69, .14); }

.product-window { position: relative; z-index: 2; overflow: hidden; border: 1px solid rgba(10, 10, 10, .1); border-radius: 18px; background: var(--paper); box-shadow: var(--shadow-window); }
.hero-console { transform: rotateX(2deg); }
.window-bar { min-height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border-bottom: 1px solid var(--line-soft); background: rgba(255, 255, 255, .9); }
.window-brand { display: flex; align-items: center; gap: 8px; font-size: 11px; }
.window-brand strong { font-size: 12px; letter-spacing: -.02em; }
.window-brand em { color: #888; font-style: normal; }
.mini-mark { width: 17px; height: 17px; border-radius: 5px; background: var(--coral); }
.window-tools { display: flex; align-items: center; gap: 12px; }
.live-state, .monitoring { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-size: 10px; font-weight: 600; }
.live-state i, .monitoring i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }
.operator-avatar { width: 27px; height: 27px; display: inline-grid; place-items: center; border-radius: 50%; background: #151515; color: white; font-size: 9px; font-style: normal; font-weight: 700; }
.operator-avatar.large { width: 42px; height: 42px; flex: none; font-size: 11px; }
.hero-console-body { min-height: 470px; display: grid; grid-template-columns: 56px 1fr; background: #fbfbfa; }
.mini-sidebar { padding-top: 28px; border-right: 1px solid var(--line-soft); background: #111; }
.mini-sidebar span { width: 24px; height: 24px; display: block; margin: 0 auto 17px; border-radius: 7px; background: rgba(255, 255, 255, .08); }
.mini-sidebar span.active { background: var(--coral); box-shadow: 0 0 0 5px rgba(255, 60, 0, .16); }
.console-main { padding: 28px 30px; }
.console-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.ui-label { display: block; margin-bottom: 7px; color: #888; font-size: 8px; font-weight: 700; letter-spacing: .13em; }
.console-heading strong { display: block; font-size: 19px; letter-spacing: -.04em; }
.filter-chip { padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; background: white; font-size: 9px; }
.console-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 21px 0 15px; }
.console-stats > div { min-height: 82px; display: grid; grid-template: auto 1fr / auto 1fr; padding: 12px; border: 1px solid var(--line-soft); border-radius: 10px; background: white; }
.console-stats span { grid-column: 1 / -1; color: #777; font-size: 8px; }
.console-stats strong { align-self: end; font-size: 25px; letter-spacing: -.06em; }
.console-stats em { align-self: end; justify-self: end; color: var(--coral); font-size: 8px; font-style: normal; }
.active-recovery { padding: 15px; border: 1px solid #ffcabb; border-radius: 11px; background: #fff5f1; }
.recovery-top { display: flex; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid #ffded4; color: #8f3b23; font-size: 8px; font-weight: 600; }
.recovery-top > span { display: flex; align-items: center; gap: 5px; text-transform: uppercase; letter-spacing: .08em; }
.recovery-top i { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.recovery-top time { color: #9a756a; }
.recovery-grid { display: grid; grid-template-columns: 32px 1fr auto auto; align-items: center; gap: 12px; padding-top: 13px; }
.caller-badge { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: var(--blush); color: #923319; font-size: 9px; font-weight: 700; }
.recovery-copy strong { display: block; margin-bottom: 3px; font-size: 10px; }
.recovery-copy p { margin: 0; color: #7d5a50; font-size: 8px; }
.owner-cell { padding: 0 15px; border-left: 1px solid #ffded4; }
.owner-cell span { display: block; color: #a6786b; font-size: 7px; }
.owner-cell strong { font-size: 9px; }
.status-chip { padding: 7px 9px; border-radius: 999px; background: var(--coral); color: white; font-size: 7px; font-weight: 600; }
.ledger { margin-top: 14px; border: 1px solid var(--line-soft); border-radius: 10px; background: white; overflow: hidden; }
.ledger-title, .ledger-row { display: grid; grid-template-columns: .55fr 1fr auto; gap: 12px; align-items: center; padding: 9px 13px; font-size: 8px; }
.ledger-title { display: flex; justify-content: space-between; background: #f6f6f3; color: #777; text-transform: uppercase; letter-spacing: .08em; }
.ledger-title em { color: #aaa; font-style: normal; text-transform: none; letter-spacing: 0; }
.ledger-row + .ledger-row { border-top: 1px solid var(--line-soft); }
.ledger-row > span { color: #888; }
.ledger-row > strong { font-size: 8px; }
.ledger-row > em { padding: 4px 7px; border-radius: 999px; font-style: normal; }
.ledger-row .confirmed { background: var(--green-soft); color: var(--green); }
.ledger-row .warning { background: var(--blush-soft); color: var(--coral-dark); }
.ledger-row .scheduled { background: #eeeefa; color: #5d58a8; }

.operating-rail { position: relative; z-index: 4; max-width: 930px; display: grid; grid-template-columns: repeat(4, 1fr); margin: -26px auto 0; border: 1px solid var(--line); border-radius: 15px; background: white; box-shadow: 0 14px 34px rgba(10, 10, 10, .08); }
.operating-rail > div { display: flex; align-items: center; gap: 12px; padding: 21px 18px; }
.operating-rail > div + div { border-left: 1px solid var(--line); }
.operating-rail span { color: var(--coral); font-size: 9px; font-weight: 700; }
.operating-rail strong { font-size: 11px; }

.standard-section { padding: 110px 0; }
.standard-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 88px; align-items: center; padding: 66px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; overflow: hidden; }
.standard-grid::after { content: ''; position: absolute; width: 210px; height: 210px; right: -138px; top: -138px; border: 1px solid var(--blush); border-radius: 50%; box-shadow: 0 0 0 38px rgba(255, 60, 0, .035), 0 0 0 76px rgba(255, 60, 0, .02); pointer-events: none; }
.standard-copy, .standard-support { position: relative; z-index: 1; }
.standard-grid h2, .section-heading h2 { margin-bottom: 0; font-size: clamp(42px, 5vw, 70px); font-weight: 600; line-height: 1.03; letter-spacing: -.065em; text-wrap: balance; }
.standard-grid h2 { font-size: clamp(42px, 4.35vw, 60px); }
.standard-support { align-self: end; }
.standard-record { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 34px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.standard-record > div { min-height: 88px; display: flex; flex-direction: column; justify-content: space-between; padding: 16px; background: var(--canvas); }
.standard-record > div + div { border-left: 1px solid var(--line); }
.standard-record span { color: var(--coral); font-size: 9px; font-weight: 700; }
.standard-record strong { font-size: 12px; }
.section-lead, .section-heading > p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }

.platform-section { padding: 130px 0 150px; background: white; }
.section-heading.centered { max-width: 820px; margin: 0 auto 70px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered h2 { margin-bottom: 26px; }
.section-heading.centered > p:not(.eyebrow) { max-width: 680px; margin: 0 auto; }
.platform-stage { position: relative; min-height: 690px; padding: 72px 64px; border-radius: var(--radius-lg); background:
  linear-gradient(rgba(255, 255, 255, .2) 1px, transparent 1px) 0 0 / 100% 35px,
  linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px) 0 0 / 35px 100%,
  linear-gradient(135deg, #ffc6b4, #ff6b3d 56%, #ff3c00);
  overflow: hidden;
}
.platform-stage::before { content: ''; position: absolute; width: 600px; height: 600px; left: -380px; top: -170px; border: 1px solid rgba(255, 255, 255, .55); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255, 255, 255, .08), 0 0 0 160px rgba(255, 255, 255, .05); }
.platform-glow { position: absolute; width: 420px; height: 420px; right: -130px; bottom: -250px; border-radius: 50%; background: rgba(255, 238, 171, .46); filter: blur(30px); }
.platform-window { min-height: 540px; }
.light-bar { min-height: 62px; }
.platform-body { min-height: 478px; display: grid; grid-template-columns: 175px 1fr; }
.platform-sidebar { display: flex; flex-direction: column; gap: 5px; padding: 24px 14px; border-right: 1px solid var(--line-soft); background: #121212; color: white; }
.platform-sidebar > strong { margin: 2px 10px 23px; color: white; font-size: 10px; letter-spacing: .12em; }
.platform-sidebar > span { display: flex; justify-content: space-between; padding: 10px; border-radius: 7px; color: rgba(255, 255, 255, .55); font-size: 9px; }
.platform-sidebar > span.active { background: var(--coral); color: white; }
.platform-sidebar b { display: grid; min-width: 17px; min-height: 17px; place-items: center; border-radius: 999px; background: rgba(255, 255, 255, .14); font-size: 7px; }
.platform-sidebar em { margin: auto 10px 0; color: rgba(255, 255, 255, .35); font-size: 8px; font-style: normal; }
.platform-main { padding: 25px 26px; background: #fbfbfa; }
.platform-head { display: flex; align-items: flex-start; justify-content: space-between; }
.platform-head h3 { margin: 0 0 5px; font-size: 17px; letter-spacing: -.04em; }
.platform-head p { margin: 0; color: #888; font-size: 9px; }
.platform-head > span { padding: 8px 10px; border: 1px solid var(--line); border-radius: 7px; background: white; font-size: 8px; text-transform: uppercase; letter-spacing: .06em; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 20px 0 16px; }
.metric-row > div { min-height: 86px; display: grid; grid-template: auto 1fr / auto 1fr; padding: 13px; border: 1px solid var(--line-soft); border-radius: 9px; background: white; }
.metric-row span { grid-column: 1 / -1; color: #888; font-size: 8px; }
.metric-row strong { align-self: end; font-size: 26px; letter-spacing: -.06em; }
.metric-row em { align-self: end; justify-self: end; color: var(--coral); font-size: 7px; font-style: normal; text-transform: uppercase; }
.metric-row em.good { color: var(--green); }
.call-queue { border: 1px solid var(--line-soft); border-radius: 9px; background: white; overflow: hidden; }
.queue-heading { display: flex; justify-content: space-between; padding: 10px 12px; background: #f5f5f2; color: #777; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.case-row { min-height: 58px; display: grid; grid-template-columns: 28px 1fr auto 62px; align-items: center; gap: 10px; padding: 8px 11px; }
.case-row + .case-row { border-top: 1px solid var(--line-soft); }
.case-row.featured-case { background: #fff9f7; box-shadow: inset 3px 0 var(--coral); }
.case-avatar { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: var(--blush); color: #8d2f15; font-size: 7px; font-weight: 700; }
.case-avatar.violet { background: #e9e6ff; color: #635ca9; }
.case-avatar.mint { background: var(--green-soft); color: var(--green); }
.case-row strong { display: block; margin-bottom: 4px; font-size: 8px; }
.case-row small { display: block; color: #999; font-size: 6.5px; }
.case-row > em { padding: 5px 7px; border-radius: 999px; background: var(--blush-soft); color: var(--coral-dark); font-size: 6px; font-style: normal; }
.case-row > em.review-risk { background: #f0efff; color: #635ca9; }
.case-row button { border: 0; background: transparent; color: var(--coral); font-size: 7px; font-weight: 600; text-align: right; }
.audit-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 14px; border: 1px solid var(--line-soft); border-radius: 9px; background: white; }
.audit-strip > div { padding: 10px 12px; }
.audit-strip > div + div { border-left: 1px solid var(--line-soft); }
.audit-strip span, .audit-strip strong { display: block; font-size: 7px; }
.audit-strip span { margin-bottom: 4px; color: #999; }
.floating-proof { position: absolute; z-index: 4; display: grid; grid-template-columns: 30px auto; column-gap: 9px; min-width: 176px; padding: 12px; border: 1px solid rgba(255, 255, 255, .7); border-radius: 12px; background: rgba(255, 255, 255, .92); box-shadow: 0 15px 40px rgba(74, 18, 0, .16); backdrop-filter: blur(12px); }
.floating-proof i { grid-row: 1 / 3; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: var(--green); color: white; font-size: 12px; font-style: normal; }
.floating-proof span { color: #888; font-size: 7px; text-transform: uppercase; letter-spacing: .08em; }
.floating-proof strong { margin-top: 3px; font-size: 9px; }
.proof-one { right: 24px; top: 30px; }
.proof-two { left: 20px; bottom: 26px; }
.proof-two i { background: var(--coral); }

.problem-section { padding: 125px 0; background: white; }
.problem-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 76px; align-items: stretch; }
.problem-copy .section-heading h2 { max-width: 590px; margin-bottom: 46px; font-size: clamp(44px, 4.45vw, 62px); }
.signal-list { margin: 0; padding: 0; list-style: none; }
.signal-list li { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 22px 0; border-top: 1px solid var(--line); }
.signal-list li:last-child { border-bottom: 1px solid var(--line); }
.signal-list li > span { color: var(--coral); font-size: 10px; font-weight: 700; }
.signal-list strong { display: block; margin-bottom: 8px; font-size: 15px; }
.signal-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.incident-card { position: relative; display: flex; flex-direction: column; justify-content: space-between; margin-top: 0; padding: 28px; border: 1px solid #ffc9b9; border-radius: 24px; background: var(--blush-soft); box-shadow: 0 22px 55px rgba(10, 10, 10, .07); }
.incident-head { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 20px; border-bottom: 1px solid var(--line-soft); }
.incident-head span, .incident-head strong { display: block; }
.incident-head span { margin-bottom: 7px; color: #888; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.incident-head strong { font-size: 17px; letter-spacing: -.03em; }
.incident-head em { padding: 7px 10px; border-radius: 7px; background: var(--blush-soft); color: var(--coral); font-size: 9px; font-style: normal; font-weight: 600; }
.message { display: grid; grid-template-columns: 62px 1fr; align-items: start; gap: 12px; margin: 18px 0; }
.message span { padding-top: 10px; color: #888; font-size: 8px; font-weight: 600; text-transform: uppercase; }
.message p { margin: 0; padding: 12px 14px; border: 1px solid var(--line-soft); border-radius: 4px 12px 12px 12px; background: white; font-size: 11px; line-height: 1.55; }
.agent-message p { background: rgba(255, 255, 255, .62); }
.system-checks { margin: 26px 0 15px; border: 1px solid var(--line-soft); border-radius: 11px; overflow: hidden; }
.system-checks > div { display: flex; justify-content: space-between; align-items: center; padding: 13px 14px; background: #fbfbfa; font-size: 9px; }
.system-checks > div + div { border-top: 1px solid var(--line-soft); }
.system-checks > div > span { color: #888; }
.system-checks strong { display: flex; align-items: center; gap: 7px; }
.system-checks i { width: 16px; height: 16px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: white; font-size: 8px; font-style: normal; }
.system-checks .warn { background: #fff9f7; }
.system-checks .warn i { background: var(--coral); }
.incident-alert { padding: 15px; border-radius: 11px; background: var(--coral); color: white; }
.incident-alert span { display: block; margin-bottom: 6px; font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.incident-alert p { margin: 0; font-size: 11px; line-height: 1.5; }

.recovery-section { padding: 120px 0; background: var(--canvas); }
.recovery-shell { position: relative; padding: 76px; border-radius: var(--radius-lg); background:
  linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 42px 100%,
  #111;
  color: white;
  overflow: hidden;
}
.recovery-shell::before { content: ''; position: absolute; width: 390px; height: 390px; right: -280px; top: -280px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 50%; box-shadow: 0 0 0 65px rgba(255, 255, 255, .025), 0 0 0 130px rgba(255, 255, 255, .018); pointer-events: none; }
.recovery-heading { position: relative; z-index: 1; max-width: none; display: block; margin-bottom: 60px; }
.recovery-heading .eyebrow { color: rgba(255, 255, 255, .65); }
.recovery-heading h2 { max-width: 980px; font-size: clamp(44px, 4.55vw, 64px); }
.recovery-heading > p:not(.eyebrow) { max-width: 800px; margin: 28px 0 0; color: rgba(255, 255, 255, .6); }
.control-builder { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 44px 1.1fr; gap: 0; align-items: stretch; }
.operator-decision { display: flex; flex-direction: column; min-height: 100%; padding: 28px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 20px; background: rgba(255, 255, 255, .055); }
.decision-head { display: flex; align-items: center; gap: 12px; }
.decision-head span, .decision-head strong { display: block; }
.decision-head span { margin-bottom: 4px; color: rgba(255, 255, 255, .5); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.decision-head strong { font-size: 11px; }
.operator-decision blockquote { margin: auto 0 0; padding-top: 38px; font-size: clamp(20px, 2vw, 27px); font-weight: 500; line-height: 1.35; letter-spacing: -.04em; }
.control-line { align-self: center; height: 1px; background: linear-gradient(90deg, rgba(255, 255, 255, .2), var(--coral)); }
.control-line span { display: block; width: 9px; height: 9px; margin-left: auto; border: 2px solid #111; border-radius: 50%; background: var(--coral); transform: translate(4px, -4px); }
.control-rail { border-radius: 20px; background: white; color: var(--ink); overflow: hidden; }
.control-rail details + details { border-top: 1px solid var(--line); }
.control-rail summary { display: grid; grid-template-columns: 28px 1fr auto 18px; align-items: center; gap: 12px; min-height: 70px; padding: 0 18px; cursor: pointer; list-style: none; }
.control-rail summary::-webkit-details-marker { display: none; }
.control-rail summary > span { color: var(--coral); font-size: 9px; font-weight: 700; }
.control-rail summary > strong { font-size: 12px; }
.control-rail summary > em { color: #888; font-size: 9px; font-style: normal; }
.control-rail summary > i { position: relative; width: 16px; height: 16px; }
.control-rail summary > i::before, .control-rail summary > i::after { content: ''; position: absolute; background: var(--ink); transition: transform .2s ease; }
.control-rail summary > i::before { width: 10px; height: 1px; left: 3px; top: 8px; }
.control-rail summary > i::after { width: 1px; height: 10px; left: 8px; top: 3px; }
.control-rail details[open] { display: flow-root; background: #fff5f1; }
.control-rail details[open] summary > i::after { transform: rotate(90deg); }
.control-rail details p { margin: -7px 48px 20px 58px; color: #70554c; font-size: 11px; line-height: 1.55; }
.approval-checkpoint { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 18px; padding: 17px 19px; border-radius: 12px; background: var(--coral); box-shadow: 0 4px 0 var(--coral-dark); }
.approval-checkpoint span { display: flex; align-items: center; gap: 8px; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.approval-checkpoint i { width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--coral); font-style: normal; }
.approval-checkpoint strong { max-width: 520px; font-size: 13px; line-height: 1.4; text-align: right; white-space: nowrap; }

.review-section { padding: 120px 0; background: white; }
.review-shell { position: relative; display: grid; grid-template-columns: 1fr .7fr; gap: 70px; padding: 75px; border-radius: var(--radius-lg); background:
  linear-gradient(90deg, rgba(255, 255, 255, .14) 1px, transparent 1px) 0 0 / 38px 100%,
  linear-gradient(135deg, #ff7044, var(--coral));
  color: white;
  overflow: hidden;
}
.review-shell::before { content: ''; position: absolute; width: 440px; height: 440px; left: -310px; bottom: -280px; border: 1px solid rgba(255, 255, 255, .35); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255, 255, 255, .06), 0 0 0 140px rgba(255, 255, 255, .04); }
.review-copy { position: relative; z-index: 1; }
.review-copy h2 { margin-bottom: 24px; font-size: clamp(42px, 5vw, 67px); line-height: 1; letter-spacing: -.065em; text-wrap: balance; }
.review-copy > p:not(.eyebrow) { max-width: 560px; color: rgba(255, 255, 255, .82); font-size: 15px; line-height: 1.65; }
.review-copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 32px 0 0; padding: 0; list-style: none; font-size: 11px; }
.review-copy li { display: flex; align-items: center; gap: 8px; }
.review-copy li i { width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, .17); font-size: 8px; font-style: normal; }
.booking-card { position: relative; z-index: 1; align-self: center; padding: 30px; border: 1px solid rgba(255, 255, 255, .7); border-radius: 20px; background: white; color: var(--ink); box-shadow: 0 24px 60px rgba(104, 23, 0, .22); }
.booking-icon { width: 40px; height: 40px; display: grid; place-items: center; margin-bottom: 34px; border-radius: 10px; background: var(--ink); color: white; }
.booking-card h3 { margin-bottom: 10px; font-size: 25px; letter-spacing: -.045em; }
.booking-card > p { color: var(--muted); font-size: 12px; line-height: 1.55; }
.booking-facts { margin: 24px 0; border-top: 1px solid var(--line); }
.booking-facts > div { display: grid; grid-template-columns: 110px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.booking-facts strong { font-size: 10px; }
.booking-facts span { color: #888; font-size: 9px; }
.booking-button { width: 100%; }

.site-footer { padding: 80px 0 35px; background: var(--canvas); }
.footer-main { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.footer-brand > span { display: block; margin-top: 45px; color: #999; font-size: 10px; }
.social-links { display: flex; gap: 8px; margin-top: 18px; }
.social-links a { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 9px; font-size: 10px; font-weight: 600; transition: background-color .2s, color .2s; }
.social-links a:hover { background: var(--ink); color: white; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.footer-links nav { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-links h2 { margin: 0 0 8px; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.footer-links a { color: var(--muted); font-size: 11px; }
.footer-links a:hover { color: var(--coral); }

.has-motion .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2, .8, .2, 1); }
.has-motion .reveal.is-visible { opacity: 1; transform: translateY(0); }
.has-motion .signal-stage.is-visible .hero-console { animation: console-arrive .9s .15s both cubic-bezier(.2, .8, .2, 1); }
.has-motion .signal-stage.is-visible .stage-note { animation: note-arrive .6s .65s both ease-out; }
@keyframes console-arrive { from { opacity: 0; transform: translateY(40px) scale(.97) rotateX(2deg); } to { opacity: 1; transform: translateY(0) scale(1) rotateX(2deg); } }
@keyframes note-arrive { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 980px) {
  .nav-links { gap: 20px; }
  .nav-links > a:not(.button) { display: none; }
  .hero { padding-top: 150px; }
  .signal-stage { min-height: 580px; padding: 76px 36px 42px; }
  .standard-grid { gap: 48px; padding: 48px; }
  .platform-stage { min-height: 600px; padding: 55px 34px; }
  .platform-sidebar { display: none; }
  .platform-body { grid-template-columns: 1fr; }
  .problem-grid { gap: 48px; }
  .recovery-shell { padding: 56px 48px; }
  .recovery-heading > p:not(.eyebrow) { max-width: 620px; }
  .control-builder { grid-template-columns: 1fr; gap: 18px; }
  .control-line { width: 1px; height: 25px; justify-self: center; background: linear-gradient(rgba(255,255,255,.2), var(--coral)); }
  .control-line span { margin: auto 0 0; transform: translate(-4px, 4px); }
  .approval-checkpoint { grid-column: 1; }
  .review-shell { gap: 45px; padding: 55px 45px; }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 32px, 620px); }
  .site-header { position: absolute; }
  .nav { height: 76px; }
  .menu-toggle { position: relative; z-index: 3; width: 42px; height: 42px; display: block; border: 1px solid var(--line); border-radius: 11px; background: white; }
  .menu-toggle i { position: absolute; left: 12px; width: 17px; height: 1px; background: var(--ink); transition: transform .2s, top .2s; }
  .menu-toggle i:nth-of-type(1) { top: 17px; }
  .menu-toggle i:nth-of-type(2) { top: 23px; }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(1) { top: 20px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(2) { top: 20px; transform: rotate(-45deg); }
  .nav-links { position: absolute; z-index: 2; top: 10px; left: 16px; right: 16px; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 80px 18px 18px; border: 1px solid var(--line); border-radius: 17px; background: white; box-shadow: 0 18px 50px rgba(10, 10, 10, .12); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .2s, visibility .2s, transform .2s; }
  .nav-links.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links > a:not(.button) { display: block; padding: 14px 4px; border-bottom: 1px solid var(--line-soft); }
  .nav-links > a:not(.button)::after { display: none; }
  .button-small { margin-top: 12px; }
  .hero { padding: 125px 0 45px; }
  .hero-copy { margin-bottom: 54px; }
  .hero h1 { font-size: clamp(48px, 14.5vw, 70px); }
  .hero-lead { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .signal-stage { min-height: 478px; padding: 68px 15px 24px; border-radius: 22px; }
  .stage-note { top: 22px; font-size: 8px; }
  .stage-note-left { left: 16px; }
  .stage-note-right { right: 16px; }
  .window-bar { min-height: 47px; padding: 0 11px; }
  .window-brand em, .live-state { display: none; }
  .hero-console-body { min-height: 340px; grid-template-columns: 38px 1fr; }
  .mini-sidebar { padding-top: 22px; }
  .mini-sidebar span { width: 18px; height: 18px; margin-bottom: 13px; }
  .console-main { padding: 18px 13px; }
  .filter-chip { display: none; }
  .console-stats { gap: 5px; margin: 14px 0 9px; }
  .console-stats > div { min-height: 62px; padding: 8px; }
  .console-stats span { font-size: 6px; }
  .console-stats strong { font-size: 19px; }
  .console-stats em { display: none; }
  .recovery-top time, .owner-cell { display: none; }
  .recovery-grid { grid-template-columns: 27px 1fr auto; gap: 7px; }
  .status-chip { padding: 6px; font-size: 5px; }
  .ledger-row, .ledger-title { font-size: 6px; }
  .ledger-row { grid-template-columns: .7fr 1fr auto; }
  .ledger-title em { display: none; }
  .operating-rail { grid-template-columns: 1fr 1fr; margin-top: 13px; }
  .operating-rail > div { padding: 15px 12px; }
  .operating-rail > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .operating-rail > div:nth-child(4) { border-top: 1px solid var(--line); }
  .standard-section, .problem-section, .recovery-section { padding: 95px 0; }
  .standard-grid, .problem-grid { grid-template-columns: 1fr; gap: 35px; }
  .standard-grid { padding: 34px 22px 22px; border-radius: 22px; }
  .standard-grid h2, .section-heading h2 { font-size: clamp(40px, 11vw, 58px); }
  .standard-record { margin-top: 25px; }
  .standard-record > div { min-height: 72px; padding: 12px; }
  .platform-section { padding: 95px 0; }
  .section-heading.centered { margin-bottom: 45px; }
  .platform-stage { min-height: 420px; padding: 26px 10px; border-radius: 22px; }
  .platform-window { min-height: 380px; }
  .monitoring { font-size: 7px; }
  .platform-main { padding: 17px 11px; }
  .platform-head p, .platform-head > span { display: none; }
  .metric-row { margin: 14px 0 10px; gap: 5px; }
  .metric-row > div { min-height: 63px; padding: 8px; }
  .metric-row strong { font-size: 18px; }
  .metric-row em { display: none; }
  .case-row { grid-template-columns: 24px 1fr 50px; gap: 6px; min-height: 52px; padding: 7px; }
  .case-row > em, .case-row small { display: none; }
  .case-row button { font-size: 6px; }
  .audit-strip strong { font-size: 6px; }
  .floating-proof { display: none; }
  .problem-copy .section-heading h2 { margin-bottom: 35px; }
  .incident-card { margin-top: 0; padding: 17px; }
  .message { grid-template-columns: 1fr; gap: 5px; }
  .message span { padding: 0; }
  .recovery-shell { padding: 40px 18px 18px; border-radius: 22px; }
  .recovery-heading { margin-bottom: 38px; }
  .recovery-heading h2 { font-size: clamp(40px, 11vw, 52px); }
  .operator-decision { min-height: auto; padding: 22px; }
  .operator-decision blockquote { margin-top: 0; padding-top: 30px; }
  .control-rail summary { grid-template-columns: 25px 1fr 16px; gap: 7px; padding: 0 13px; }
  .control-rail summary > em { display: none; }
  .control-rail details p { margin: -4px 24px 18px 45px; }
  .approval-checkpoint { align-items: flex-start; flex-direction: column; gap: 12px; }
  .approval-checkpoint strong { max-width: none; text-align: left; white-space: normal; }
  .review-section { padding: 70px 0; }
  .review-shell { grid-template-columns: 1fr; gap: 45px; padding: 45px 22px 22px; border-radius: 22px; }
  .review-copy h2 { font-size: 45px; }
  .review-copy ul { grid-template-columns: 1fr; }
  .booking-card { padding: 24px 20px; }
  .footer-main { grid-template-columns: 1fr; gap: 55px; }
  .footer-links { grid-template-columns: 1fr 1fr; row-gap: 45px; }
}

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