:root {
  --ink: #081022;
  --blue: #365cff;
  --lime: #caff69;
  --paper: #f6f7fb;
  --muted: #687085;
  --line: #dfe3eb;
  --stage-accent: #365cff;
  --stage-soft: #edf1ff;
}

* { box-sizing: border-box; }
html { color: var(--ink); background: var(--paper); font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
body { margin: 0; min-width: 320px; }
a { color: inherit; text-decoration: none; }

.stage-creative {
  --stage-accent: #ff7568;
  --stage-soft: #fff0ee;
}

.stage-header {
  width: min(1320px, calc(100% - 48px));
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stage-brand { display: inline-flex; align-items: center; }
.stage-brand img { width: 118px; height: auto; display: block; }
.stage-header nav { display: flex; align-items: center; gap: 26px; color: #555e70; font-size: 13px; font-weight: 700; }
.stage-open { padding: 11px 15px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: rgba(255,255,255,.72); }

.stage-hero {
  position: relative;
  width: min(1320px, calc(100% - 48px));
  min-height: calc(100svh - 146px);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 128px) clamp(28px, 5vw, 76px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 38px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 36px 95px rgba(30,41,75,.1);
}

.stage-glow { position: absolute; width: 620px; height: 620px; left: -260px; bottom: -330px; border-radius: 50%; background: var(--stage-soft); filter: blur(2px); }
.stage-copy { position: relative; z-index: 2; }
.stage-eyebrow { margin: 0 0 28px; color: var(--stage-accent); font-size: 11px; font-weight: 850; letter-spacing: .18em; }
.stage-eyebrow span { margin-right: 12px; color: #9299a8; }
.stage-copy h1 { max-width: 650px; margin: 0; font-size: clamp(56px, 6.5vw, 94px); line-height: .91; letter-spacing: -.075em; text-wrap: balance; }
.stage-copy h1 em { color: var(--stage-accent); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.stage-lede { max-width: 620px; margin: 34px 0 0; color: var(--muted); font-size: clamp(16px, 1.5vw, 20px); line-height: 1.65; text-wrap: pretty; }
.stage-actions { margin-top: 40px; display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.stage-primary { min-height: 56px; padding: 0 15px 0 22px; display: inline-flex; align-items: center; gap: 30px; border-radius: 15px; color: white; background: var(--ink); font-size: 14px; font-weight: 780; box-shadow: 0 16px 34px rgba(8,16,34,.18); transition: transform 180ms ease, box-shadow 180ms ease; }
.stage-primary span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: var(--ink); background: var(--lime); font-size: 18px; }
.stage-secondary { color: #555e70; font-size: 13px; font-weight: 730; }
.stage-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 42px rgba(8,16,34,.23); }
.stage-primary:focus-visible,
.stage-secondary:focus-visible,
.stage-header a:focus-visible { outline: 3px solid color-mix(in srgb, var(--stage-accent) 46%, transparent); outline-offset: 4px; }

.stage-console { position: relative; z-index: 2; padding: 24px; border: 1px solid #d9dee9; border-radius: 28px; background: #fbfcff; box-shadow: 0 24px 60px rgba(35,47,82,.1); }
.console-top { min-height: 40px; display: flex; align-items: center; justify-content: space-between; color: #8a92a3; font-size: 8px; font-weight: 850; letter-spacing: .13em; }
.console-top b { padding: 8px 10px; border-radius: 99px; color: #48526a; background: var(--stage-soft); letter-spacing: 0; }
.console-input { margin-top: 14px; padding: 24px; border-radius: 18px; color: white; background: var(--ink); }
.console-input small { display: block; color: #8791aa; font-size: 8px; font-weight: 850; letter-spacing: .15em; }
.console-input strong { margin-top: 14px; display: block; max-width: 470px; font-size: clamp(20px, 2vw, 29px); line-height: 1.2; letter-spacing: -.035em; }
.console-grid { margin-top: 14px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.console-grid article { min-height: 190px; padding: 19px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 18px; background: white; }
.console-grid article > span { color: var(--stage-accent); font-size: 9px; font-weight: 850; letter-spacing: .12em; }
.console-grid h2 { margin: auto 0 0; font-size: 20px; letter-spacing: -.045em; }
.console-grid p { margin: 9px 0 0; color: #788093; font-size: 11px; line-height: 1.55; text-wrap: pretty; }

.stage-footer { width: min(1320px, calc(100% - 48px)); min-height: 74px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; color: #838b9a; font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.stage-footer a:hover { color: var(--ink); }

@media (max-width: 980px) {
  .stage-hero { min-height: auto; grid-template-columns: 1fr; }
  .stage-console { max-width: 760px; }
}

@media (max-width: 640px) {
  .stage-header { width: calc(100% - 32px); height: 76px; }
  .stage-header nav > a:first-child { display: none; }
  .stage-brand img { width: 108px; }
  .stage-hero { width: calc(100% - 24px); padding: 62px 20px 26px; gap: 44px; border-radius: 27px; }
  .stage-copy h1 { font-size: clamp(49px, 14vw, 66px); }
  .stage-lede { margin-top: 26px; font-size: 15px; }
  .stage-actions { align-items: stretch; flex-direction: column; }
  .stage-primary { justify-content: space-between; }
  .stage-secondary { padding: 8px 4px; }
  .stage-console { padding: 14px; border-radius: 22px; }
  .console-top b { display: none; }
  .console-input { padding: 20px; }
  .console-grid { grid-template-columns: 1fr; }
  .console-grid article { min-height: 136px; }
  .stage-footer { width: calc(100% - 32px); align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; line-height: 1.5; }
}

@media (prefers-reduced-motion: reduce) {
  .stage-primary { transition: none; }
}
