:root {
  --navy: #061f41;
  --navy-2: #0b2e5c;
  --ink: #0b2b55;
  --muted: #6a7e9b;
  --paper: #fbfdff;
  --mist: #eff5fb;
  --line: #d7e4f0;
  --blue: #087ff5;
  --blue-soft: #e7f2ff;
  --cyan: #16b9c4;
  --green: #23b58e;
  --amber: #efb44e;
  --red: #e5586e;
  --violet: #6e67db;
  --shadow: 0 18px 50px rgba(11, 43, 85, .10);
  --shadow-soft: 0 8px 24px rgba(11, 43, 85, .07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

.app-shell { min-height: 100vh; }
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 246px;
  padding: 28px 20px 20px;
  color: #dcecff;
  background: linear-gradient(180deg, #082952 0%, #061f41 58%, #061c39 100%);
  display: flex;
  flex-direction: column;
  z-index: 20;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 154px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.brand-lockup img { width: 132px; height: auto; display: block; }
.brand-product {
  display: block;
  margin: -15px 0 18px 32px;
  color: #6e8db5;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .26em;
}
.sidebar-context {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #1d558d;
  border-radius: 7px;
  color: #bce3ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(35,181,142,.12); }
.sidebar-label {
  margin: 30px 10px 10px;
  color: #6f93be;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.sidebar-nav { display: grid; gap: 4px; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 9px;
  border-radius: 6px;
  color: #afc8e3;
  font-size: 12px;
  transition: .2s ease;
}
.sidebar-nav a:hover, .sidebar-nav a.is-active { color: #fff; background: rgba(56, 118, 178, .26); }
.nav-index { width: 20px; color: #6da7df; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.sidebar-divider { height: 1px; margin: 18px 0 0; background: rgba(161, 198, 231, .17); }
.sidebar-spacer { flex: 1; }
.reserved-card {
  padding: 14px;
  border: 1px solid #234d78;
  border-radius: 8px;
  background: rgba(12, 50, 94, .54);
}
.reserved-card small, .reserved-card strong, .reserved-card span { display: block; }
.reserved-card small { color: #72a9dd; font-size: 8px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.reserved-card strong { margin-top: 6px; color: #fff; font-size: 12px; }
.reserved-card span { margin-top: 4px; color: #8eafd1; font-size: 10px; }
.sidebar-footer { margin-top: 16px; color: #6085ae; font-size: 9px; }

.main { margin-left: 246px; min-width: 0; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 64px;
  padding: 0 42px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-title { display: flex; align-items: baseline; gap: 10px; color: var(--ink); font-size: 13px; }
.topbar-title strong { font-size: 14px; }
.topbar-title span { color: #7790ad; font-size: 12px; }
.eyebrow { color: var(--blue); font-size: 9px; font-weight: 850; letter-spacing: .25em; text-transform: uppercase; }
.topbar .eyebrow { margin: 0; }
.topbar-meta { display: flex; align-items: center; gap: 8px; color: #66809f; font-size: 10px; }
.status-pill, .tag { display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border-radius: 999px; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.status-pill { color: #138466; background: #e8faf4; }
.status-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.tag { color: #4e6e90; background: #edf4fb; }
.mobile-menu { display: none; border: 1px solid var(--line); border-radius: 7px; padding: 8px 10px; color: var(--ink); background: #fff; }

.section { padding: 88px 72px; }
.hero {
  position: relative;
  min-height: 670px;
  padding: 94px 72px 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 25%, rgba(7, 133, 245, .13), transparent 28%),
    radial-gradient(circle at 15% 10%, rgba(45, 185, 204, .08), transparent 28%),
    #fff;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .55;
  background-image: radial-gradient(#c5d9ec 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.42), transparent 70%);
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(290px, .8fr); gap: 56px; align-items: center; max-width: 1240px; margin: 0 auto; }
.hero-copy h1 { max-width: 760px; margin: 17px 0 20px; font-size: clamp(48px, 6.2vw, 88px); line-height: .98; letter-spacing: -.065em; font-weight: 800; }
.hero-copy h1 em { color: var(--blue); font-style: normal; }
.hero-copy .lead { max-width: 710px; margin: 0; color: #58708f; font-size: 19px; line-height: 1.55; }
.hero-kicker { display: inline-flex; align-items: center; gap: 8px; color: #51769d; font-size: 11px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 44px; padding: 0 17px; border: 1px solid var(--line); border-radius: 7px; color: var(--ink); background: #fff; font-size: 12px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.button-primary { border-color: var(--blue); color: #fff; background: var(--blue); box-shadow: 0 10px 24px rgba(8,127,245,.22); }
.button-primary:hover { background: #006bd2; }
.button-ghost { border-color: #bdd4e8; color: #2b5c8e; background: rgba(255,255,255,.72); }
.hero-motors { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.motor-chip { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; border: 1px solid #d5e4f1; border-radius: 7px; color: #5e7795; background: rgba(255,255,255,.8); font-size: 10px; font-weight: 800; }
.motor-chip b { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 5px; color: var(--blue); background: var(--blue-soft); font-size: 9px; }
.hero-card { position: relative; min-height: 448px; padding: 24px; border-radius: 14px; color: #e6f2ff; background: linear-gradient(145deg, #0a376d, #061c3c 74%); box-shadow: 0 24px 50px rgba(6,31,65,.28); overflow: hidden; }
.hero-card::before { content: ""; position: absolute; width: 270px; height: 270px; right: -80px; top: -70px; border-radius: 50%; border: 1px solid rgba(136,211,255,.22); box-shadow: 0 0 0 34px rgba(136,211,255,.035), 0 0 0 70px rgba(136,211,255,.025); }
.hero-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(155deg, transparent 40%, rgba(31,185,196,.16)); pointer-events: none; }
.candidate-photo { position: relative; z-index: 1; width: 128px; height: 128px; border-radius: 50%; border: 1px solid rgba(199,228,255,.45); background: #234f7e; box-shadow: 0 0 0 12px rgba(148,209,255,.08); overflow: hidden; }
.candidate-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.candidate-photo--waldo img { object-position: 76% center; }
.candidate-photo--jasmine img { object-position: 37% center; }
.hero-card .card-eyebrow { position: relative; z-index: 1; margin-top: 34px; color: #7dbaf1; font-size: 9px; font-weight: 850; letter-spacing: .22em; text-transform: uppercase; }
.hero-card h2 { position: relative; z-index: 1; max-width: 260px; margin: 7px 0 5px; color: #fff; font-size: 34px; line-height: 1; letter-spacing: -.045em; }
.hero-card p { position: relative; z-index: 1; max-width: 275px; margin: 0; color: #a5c1dd; font-size: 12px; }
.hero-card-note { position: relative; z-index: 2; margin-top: 22px; padding: 15px; border-radius: 10px; color: #c8def5; background: rgba(15, 56, 103, .82); border: 1px solid rgba(158,206,243,.2); }
.hero-card-note small { display: block; color: #7cc7b1; font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.hero-card-note strong { display: block; margin-top: 5px; color: #fff; font-size: 13px; }
.hero-card-note span { display: block; margin-top: 4px; font-size: 11px; line-height: 1.45; }
.hero-card-note a { display: inline-block; margin-top: 10px; color: #87c8ff; font-size: 11px; font-weight: 800; }

.metric-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.metric { min-height: 138px; padding: 22px 28px; border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric small { display: block; color: #6e86a2; font-size: 9px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.metric strong { display: block; margin-top: 8px; color: var(--ink); font-size: 30px; line-height: 1; letter-spacing: -.05em; }
.metric span { display: block; margin-top: 8px; color: #7890aa; font-size: 11px; }
.metric .accent-blue { color: var(--blue); }
.metric .accent-green { color: var(--green); }
.metric .accent-violet { color: var(--violet); }
.metric .accent-amber { color: #cc8c18; }

.section-muted { background: var(--mist); }
.section-head { max-width: 820px; margin: 0 auto 38px; }
.section-head h2 { margin: 12px 0 11px; font-size: clamp(34px, 4vw, 55px); line-height: 1.03; letter-spacing: -.06em; }
.section-head p { max-width: 720px; margin: 0; color: var(--muted); font-size: 16px; }
.section-head--wide { max-width: 1160px; }
.intro-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); gap: 22px; }
.panel { border: 1px solid var(--line); border-radius: 11px; background: #fff; box-shadow: var(--shadow-soft); }
.panel-pad { padding: 28px; }
.panel h3 { margin: 0; font-size: 21px; letter-spacing: -.035em; }
.panel p { color: #657b99; font-size: 13px; }
.panel p:last-child { margin-bottom: 0; }
.quote-panel { position: relative; min-height: 255px; padding: 34px; border-radius: 12px; color: #fff; background: linear-gradient(145deg, #0c3f79, #08244a); overflow: hidden; }
.quote-panel::after { content: "“"; position: absolute; right: 24px; bottom: -44px; color: rgba(135,204,255,.16); font-family: Georgia, serif; font-size: 220px; line-height: 1; }
.quote-panel .eyebrow { color: #86c9ff; }
.quote-panel blockquote { position: relative; z-index: 1; max-width: 680px; margin: 28px 0 0; font-size: clamp(25px, 3vw, 40px); line-height: 1.09; letter-spacing: -.05em; }
.quote-panel cite { position: relative; z-index: 1; display: block; margin-top: 18px; color: #a8c9e8; font-size: 11px; font-style: normal; }
.focus-list { display: grid; gap: 12px; margin: 18px 0 0; padding: 0; list-style: none; }
.focus-list li { display: grid; grid-template-columns: 26px 1fr; gap: 10px; align-items: start; color: #526d8c; font-size: 13px; }
.focus-list li::before { content: "→"; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 6px; color: var(--blue); background: var(--blue-soft); font-weight: 850; }
.mini-note { margin-top: 21px; padding: 13px 14px; border-left: 3px solid var(--amber); color: #6c7890; background: #fff9ed; font-size: 11px; }
.selection-window { max-width: 1160px; margin: 22px auto 0; padding: 25px 28px; border: 1px solid #c6ddf0; border-radius: 12px; background: linear-gradient(110deg, #eef7ff, #ffffff 66%); display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: center; }
.selection-window h3 { max-width: 560px; margin: 9px 0 8px; color: var(--ink); font-size: clamp(24px, 3vw, 34px); line-height: 1.05; letter-spacing: -.05em; }
.selection-window p:not(.eyebrow) { max-width: 650px; margin: 0; color: #617995; font-size: 13px; line-height: 1.55; }
.window-grid { display: grid; gap: 9px; }
.window-grid div { display: grid; grid-template-columns: 32px 1fr; gap: 10px; align-items: center; padding: 12px 13px; border: 1px solid #d9e7f3; border-radius: 8px; background: rgba(255,255,255,.8); }
.window-grid strong { color: var(--blue); font-size: 10px; letter-spacing: .12em; }
.window-grid span { color: #526f8e; font-size: 11px; }

.motor-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.motor-card { position: relative; min-height: 252px; padding: 23px; border: 1px solid var(--line); border-radius: 11px; background: #fff; box-shadow: var(--shadow-soft); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.motor-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.motor-card::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: var(--blue); }
.motor-card:nth-child(2)::before { background: var(--violet); }
.motor-card:nth-child(3)::before { background: var(--cyan); }
.motor-card:nth-child(4)::before { background: var(--amber); }
.motor-icon { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 22px; border-radius: 9px; color: var(--blue); background: var(--blue-soft); font-size: 13px; font-weight: 900; }
.motor-card:nth-child(2) .motor-icon { color: var(--violet); background: #efefff; }
.motor-card:nth-child(3) .motor-icon { color: #078d99; background: #e7fbfc; }
.motor-card:nth-child(4) .motor-icon { color: #b47b15; background: #fff4dd; }
.motor-card h3 { font-size: 19px; }
.motor-card p { min-height: 78px; margin: 8px 0 0; color: #6b809a; font-size: 12px; }
.motor-card a { display: inline-flex; margin-top: 13px; color: var(--blue); font-size: 11px; font-weight: 850; }
.motor-card .label { display: inline-flex; padding: 5px 7px; border-radius: 5px; color: #6e83a1; background: #f1f6fb; font-size: 8px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }

.agent-panel { max-width: 1160px; margin: 0 auto; padding: 28px; }
.agent-panel-head { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.agent-panel-head p { max-width: 690px; margin: 8px 0 0; color: #6a7f9c; font-size: 13px; }
.agent-panel-head .tag { color: #5d62b6; background: #eeeeff; }
.agent-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 24px; }
.agent-action { padding: 17px; border: 1px solid var(--line); border-radius: 9px; background: #fbfdff; }
.agent-action strong { display: block; font-size: 13px; }
.agent-action span { display: block; margin-top: 5px; color: #7187a1; font-size: 11px; }
.agent-action b { display: block; margin-top: 10px; color: var(--blue); font-size: 10px; }

.cycle-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px; align-items: start; }
.cycle-list { display: grid; gap: 10px; }
.cycle-step { display: grid; grid-template-columns: 42px 1fr; gap: 15px; align-items: start; padding: 16px; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.cycle-step .step-no { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 8px; color: var(--blue); background: var(--blue-soft); font-size: 11px; font-weight: 900; }
.cycle-step:nth-child(2) .step-no { color: #077d85; background: #e7fbfc; }
.cycle-step:nth-child(3) .step-no { color: #b47b15; background: #fff4dd; }
.cycle-step:nth-child(4) .step-no { color: #5d62b6; background: #efefff; }
.cycle-step h3 { margin: 1px 0 3px; font-size: 15px; }
.cycle-step p { margin: 0; color: #6f849d; font-size: 12px; }
.loop-card { position: sticky; top: 92px; padding: 25px; border: 1px solid #c7d9eb; border-radius: 12px; background: linear-gradient(145deg, #eaf5ff, #f8fcff); }
.loop-card h3 { margin: 0; font-size: 22px; letter-spacing: -.04em; }
.loop-card p { color: #66809d; font-size: 12px; }
.loop-rail { position: relative; display: grid; gap: 10px; margin-top: 20px; }
.loop-rail::before { content: ""; position: absolute; top: 19px; bottom: 19px; left: 11px; width: 1px; background: #9fc7e6; }
.loop-item { position: relative; display: grid; grid-template-columns: 23px 1fr; gap: 10px; align-items: start; }
.loop-item i { position: relative; z-index: 1; display: block; width: 23px; height: 23px; border: 5px solid #eaf5ff; border-radius: 50%; background: var(--blue); }
.loop-item:nth-child(2) i { background: var(--cyan); }
.loop-item:nth-child(3) i { background: var(--violet); }
.loop-item:nth-child(4) i { background: var(--green); }
.loop-item strong { display: block; font-size: 12px; }
.loop-item span { display: block; color: #6b829c; font-size: 11px; }

.people-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.person-card { padding: 25px; border: 1px solid var(--line); border-radius: 11px; background: #fff; box-shadow: var(--shadow-soft); }
.person-top { display: flex; align-items: center; gap: 15px; }
.person-avatar { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; color: #fff; background: var(--navy-2); font-size: 16px; font-weight: 900; }
.person-card h3 { margin: 0; font-size: 20px; }
.person-card .role { margin: 2px 0 0; color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.person-card p { color: #687f9b; font-size: 13px; }
.person-points { display: grid; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; }
.person-points li { padding: 10px 12px; border-radius: 7px; color: #58728f; background: #f5f9fd; font-size: 11px; }
.person-points li strong { color: var(--ink); }
.team-callout { max-width: 1160px; margin: 18px auto 0; padding: 21px 25px; border: 1px solid #c4e4de; border-radius: 10px; color: #3a6c69; background: #effbf8; font-size: 13px; }
.team-callout strong { color: #12675d; }

.studio-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; align-items: stretch; }
.studio-card { padding: 28px; border-radius: 12px; color: #e8f5ff; background: linear-gradient(145deg, #0b376a, #061d3d); box-shadow: var(--shadow); }
.studio-card .eyebrow { color: #85c7ff; }
.studio-card h3 { max-width: 470px; margin: 15px 0 12px; color: #fff; font-size: clamp(28px, 3vw, 42px); line-height: 1.05; letter-spacing: -.06em; }
.studio-card p { color: #a9c7e5; font-size: 13px; }
.studio-steps { display: grid; gap: 10px; margin-top: 24px; }
.studio-step { display: flex; gap: 10px; align-items: start; }
.studio-step i { display: grid; place-items: center; flex: 0 0 auto; width: 24px; height: 24px; border-radius: 6px; color: #83c6ff; background: rgba(90,174,244,.15); font-size: 10px; font-style: normal; font-weight: 900; }
.studio-step span { color: #b3cbe3; font-size: 11px; }
.studio-workflow { padding: 28px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: var(--shadow-soft); }
.studio-workflow h3 { margin: 0; font-size: 22px; }
.studio-workflow > p { color: #6e829d; font-size: 13px; }
.workflow-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 28px; }
.workflow-node { position: relative; padding: 0 8px; text-align: center; }
.workflow-node:not(:last-child)::after { content: "→"; position: absolute; top: 13px; right: -7px; color: #9bb9d4; font-size: 16px; font-weight: 800; }
.workflow-node b { display: grid; place-items: center; width: 31px; height: 31px; margin: 0 auto 8px; border-radius: 50%; color: #fff; background: var(--blue); font-size: 10px; }
.workflow-node:nth-child(2) b { background: var(--violet); }
.workflow-node:nth-child(3) b { background: var(--cyan); }
.workflow-node:nth-child(4) b { background: var(--green); }
.workflow-node:nth-child(5) b { background: var(--amber); }
.workflow-node strong { display: block; font-size: 10px; }
.workflow-node span { display: block; margin-top: 3px; color: #71869f; font-size: 9px; line-height: 1.3; }
.approval-note { margin-top: 27px; padding: 13px 14px; border-left: 3px solid var(--green); color: #5e768f; background: #f1faf7; font-size: 11px; }

.plan-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.plan-card { min-height: 188px; padding: 20px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.plan-card .period { color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.plan-card h3 { margin: 12px 0 8px; font-size: 16px; }
.plan-card p { margin: 0; color: #6d839e; font-size: 11px; }
.result-panel { max-width: 1160px; margin: 20px auto 0; padding: 28px; border-radius: 12px; color: #fff; background: linear-gradient(105deg, #082a55, #0b4f7c); }
.result-panel .eyebrow { color: #82caff; }
.result-panel h3 { max-width: 750px; margin: 12px 0 9px; font-size: 30px; line-height: 1.1; letter-spacing: -.05em; }
.result-panel p { max-width: 760px; margin: 0; color: #b1d0e9; font-size: 13px; }
.result-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 21px; }
.result-badges span { padding: 7px 10px; border: 1px solid rgba(180,220,250,.26); border-radius: 6px; color: #d9edff; background: rgba(255,255,255,.07); font-size: 10px; font-weight: 800; }

.closing { padding-top: 72px; padding-bottom: 48px; background: #fff; }
.closing-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.closing h2 { max-width: 720px; margin: 12px 0 0; font-size: clamp(32px, 4vw, 56px); line-height: 1; letter-spacing: -.06em; }
.closing p { max-width: 580px; color: #6d819a; font-size: 13px; }
.closing-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.footer { max-width: 1160px; margin: 56px auto 0; padding-top: 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: #7a8ea7; font-size: 10px; }
.footer strong { color: var(--ink); }
.footer-note { max-width: 650px; }
.toast { position: fixed; right: 22px; bottom: 22px; z-index: 40; max-width: 350px; padding: 13px 16px; border: 1px solid #cae0f0; border-radius: 8px; color: #45627f; background: #fff; box-shadow: var(--shadow); font-size: 12px; transform: translateY(20px); opacity: 0; pointer-events: none; transition: .25s ease; }
.toast.is-visible { transform: translateY(0); opacity: 1; }

@media (max-width: 1100px) {
  .section, .hero { padding-left: 44px; padding-right: 44px; }
  .hero-inner { gap: 34px; }
  .hero-copy h1 { font-size: clamp(45px, 6vw, 72px); }
  .motor-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .sidebar { width: 220px; transform: translateX(-100%); transition: transform .25s ease; box-shadow: 10px 0 30px rgba(0,0,0,.14); }
  .sidebar.is-open { transform: translateX(0); }
  .main { margin-left: 0; }
  .topbar { padding: 0 20px; }
  .mobile-menu { display: inline-flex; }
  .topbar-title { flex: 1; }
  .topbar-title strong { font-size: 12px; }
  .topbar-title span, .topbar-meta > span { display: none; }
  .section, .hero { padding: 68px 22px; }
  .hero { min-height: auto; padding-top: 72px; }
  .hero-inner, .intro-grid, .cycle-grid, .studio-grid { grid-template-columns: 1fr; }
  .selection-window { grid-template-columns: 1fr; gap: 18px; }
  .hero-copy h1 { font-size: clamp(43px, 14vw, 69px); }
  .hero-copy .lead { font-size: 16px; }
  .hero-card { min-height: 365px; }
  .metric-strip { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .motor-grid, .people-grid, .plan-grid { grid-template-columns: 1fr; }
  .agent-actions { grid-template-columns: 1fr; }
  .loop-card { position: static; }
  .workflow-row { grid-template-columns: 1fr; gap: 13px; }
  .workflow-node { display: grid; grid-template-columns: 31px 1fr; gap: 9px; align-items: center; text-align: left; }
  .workflow-node b { margin: 0; }
  .workflow-node:not(:last-child)::after { top: 32px; right: auto; left: 10px; content: "↓"; }
  .workflow-node strong, .workflow-node span { grid-column: 2; }
  .workflow-node strong { grid-row: 1; }
  .workflow-node span { grid-row: 2; margin-top: -7px; }
  .closing-inner { display: block; }
  .footer { display: block; }
  .footer-note { margin-bottom: 10px; }
}
@media (max-width: 500px) {
  .brand-lockup { width: 140px; }
  .hero-card { min-height: 340px; }
  .hero-card h2 { font-size: 29px; }
  .metric { padding: 18px 16px; }
  .metric strong { font-size: 25px; }
  .metric span { font-size: 10px; }
  .panel-pad, .agent-panel, .studio-card, .studio-workflow, .result-panel { padding: 22px; }
}
