:root {
  --primary-700: #1847d8;
  --primary-600: #245cff;
  --primary-100: #e9efff;
  --signal-600: #c85a10;
  --signal-500: #ff8a34;
  --signal-100: #fff0e5;
  --ink: #111a2e;
  --muted: #5f6b80;
  --line: #dce4f1;
  --surface: #ffffff;
  --canvas: #f5f8fd;
  --canvas-2: #eef3fb;
  --success: #0b6b52;
  --warning: #9a4b07;
  --danger: #b72f2a;
  --shadow-sm: 0 10px 28px rgba(24, 43, 82, 0.08);
  --shadow-md: 0 24px 70px rgba(24, 43, 82, 0.14);
  --shadow-float: 0 32px 90px rgba(19, 38, 79, 0.22);
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --container: 1240px;
  --header-height: 74px;
  --font-sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 108px 0; }
.section--white { background: var(--surface); }
.section--canvas { background: var(--canvas); }
.section--subtle { background: var(--canvas-2); }
.section-grid {
  background:
    radial-gradient(circle at 83% 18%, rgba(36, 92, 255, 0.17), transparent 31%),
    radial-gradient(circle at 96% 72%, rgba(255, 138, 52, 0.13), transparent 23%),
    linear-gradient(rgba(45, 73, 125, 0.048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 73, 125, 0.048) 1px, transparent 1px),
    var(--canvas);
  background-size: auto, auto, 32px 32px, 32px 32px, auto;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(36, 61, 111, 0.1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}
.site-header__inner { display: flex; align-items: center; height: 100%; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; text-decoration: none; white-space: nowrap; }
.brand__logo { display: block; width: 195px; height: auto; }
.brand__logo--footer { width: 195px; }
.site-nav { display: flex; align-items: center; gap: 25px; margin-left: auto; }
.site-nav a {
  position: relative;
  color: #344058;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary-600);
  transition: right 180ms ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.site-header__cta { margin-left: 6px; }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.menu-button span { display: block; height: 2px; margin: 4px 0; border-radius: 2px; background: var(--ink); transition: transform 180ms ease, opacity 180ms ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid rgba(36, 92, 255, 0.28); outline-offset: 3px; }
.button--primary { color: #fff; background: var(--primary-600); box-shadow: 0 12px 28px rgba(36, 92, 255, 0.24); }
.button--primary:hover { background: var(--primary-700); box-shadow: 0 16px 34px rgba(36, 92, 255, 0.32); }
.button--secondary { color: var(--ink); border-color: var(--line); background: #fff; }
.button--secondary:hover { border-color: rgba(36, 92, 255, 0.38); box-shadow: var(--shadow-sm); }
.button--white { color: var(--primary-700); background: #fff; box-shadow: 0 18px 42px rgba(15, 32, 76, 0.2); }
.button--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.35); background: rgba(255, 255, 255, 0.08); }
.button--ghost:hover { background: rgba(255, 255, 255, 0.16); }
.button--large { min-height: 56px; padding-inline: 28px; }
.button--block { width: 100%; }

.hero { overflow: hidden; padding: 76px 0 104px; }
.hero__layout { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr); gap: 62px; align-items: center; }
.hero__copy { position: relative; z-index: 2; }
.eyebrow, .kicker, .module-label {
  margin: 0 0 18px;
  color: var(--primary-700);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.085em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.eyebrow span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--primary-600);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: -0.02em;
}
.hero h1, .section-heading h2, .founder h2, .cta-panel h2, .contact-layout h2 {
  margin: 0;
  font-weight: 860;
  line-height: 1.04;
  letter-spacing: -0.048em;
}
.hero h1 { max-width: 760px; font-size: clamp(46px, 4.7vw, 66px); }
.hero__lead { margin-top: 26px; }
.hero__lead > strong { display: block; margin-bottom: 13px; font-size: 17px; }
.signal-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 0; padding: 0; list-style: none; }
.signal-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  min-height: 82px;
  align-items: start;
  padding: 13px;
  border: 1px solid rgba(36, 92, 255, 0.13);
  border-radius: 14px;
  color: #354159;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 30px rgba(32, 61, 113, 0.045);
  font-size: 13px;
  line-height: 1.42;
}
.signal-list__number { color: var(--primary-600); font-family: var(--font-mono); font-size: 11px; font-weight: 800; letter-spacing: 0.05em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero__trial-facts { display: flex; flex-wrap: wrap; gap: 9px 21px; margin-top: 22px; color: var(--muted); font-size: 13px; }
.hero__trial-facts span { position: relative; padding-left: 15px; }
.hero__trial-facts span::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 6px; height: 6px; border-radius: 50%; background: var(--signal-500); box-shadow: 0 0 0 4px var(--signal-100); }
.hero__trial-facts strong { color: var(--ink); }

.product-stage { position: relative; min-width: 0; padding: 24px 0 48px; }
.product-stage::before {
  content: "";
  position: absolute;
  inset: 8% -7% 2% 3%;
  border-radius: 44px;
  background: linear-gradient(145deg, rgba(36, 92, 255, 0.08), rgba(255, 255, 255, 0.3));
  border: 1px solid rgba(36, 92, 255, 0.09);
  transform: rotate(2deg);
}
.product-stage__label {
  position: absolute;
  z-index: 4;
  right: 24px;
  top: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--signal-600);
  box-shadow: 0 10px 26px rgba(200, 90, 16, 0.28);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.product-stage__label i { width: 7px; height: 7px; border: 2px solid #fff; border-radius: 50%; }
.browser-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(24, 61, 130, 0.16);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.browser-frame--hero { transform: perspective(1400px) rotateY(-3deg) rotateX(1deg); transform-origin: center; }
.browser-frame__bar {
  display: flex;
  height: 40px;
  align-items: center;
  gap: 14px;
  padding: 0 14px;
  border-bottom: 1px solid #e4e9f2;
  color: #657086;
  background: #f7f9fc;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.02em;
}
.browser-frame__dots { display: flex; gap: 5px; }
.browser-frame__dots i { width: 7px; height: 7px; border-radius: 50%; background: #ccd4e3; }
.browser-frame__dots i:nth-child(1) { background: #f39a7c; }
.browser-frame__dots i:nth-child(2) { background: #f2c96e; }
.browser-frame__dots i:nth-child(3) { background: #70c694; }
.browser-frame > img { width: 100%; aspect-ratio: 1.905 / 1; object-fit: cover; object-position: center top; }
.zoom-card {
  position: absolute;
  z-index: 3;
  width: 188px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(36, 92, 255, 0.17);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-float);
}
.zoom-card figcaption { display: flex; justify-content: space-between; gap: 10px; align-items: center; margin-bottom: 7px; }
.zoom-card figcaption span { color: var(--primary-600); font-family: var(--font-mono); font-size: 8px; font-weight: 900; letter-spacing: 0.08em; }
.zoom-card figcaption strong { overflow: hidden; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.zoom-card__viewport { overflow: hidden; height: 126px; border-radius: 10px; background: var(--canvas-2); }
.zoom-card__viewport img { width: 100%; height: auto; }
.zoom-card--bids { right: -24px; bottom: 2px; transform: rotate(2deg); }
.zoom-card--bids .zoom-card__viewport img { transform: translateY(-22%); }
.zoom-card--signals { left: -28px; bottom: 26px; width: 174px; transform: rotate(-2deg); }
.zoom-card--signals .zoom-card__viewport img { transform: translateY(-2%); }

.section-heading { margin-bottom: 50px; }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.75fr); gap: 72px; align-items: end; }
.section-heading h2 { max-width: 820px; font-size: clamp(38px, 4vw, 58px); }
.section-heading > p, .section-heading > div > p:not(.kicker), .section-heading--split > p, .section-heading--split > div:last-child { margin: 0; color: var(--muted); font-size: 17px; }
.section-heading--compact { margin-bottom: 28px; }
.section-heading--compact h3 { margin: 0; font-size: clamp(30px, 3vw, 42px); line-height: 1.08; letter-spacing: -0.035em; }
.kicker--light { color: #dfe8ff; }

.audience-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 20px; align-items: stretch; }
.audience-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.role-card, .not-fit {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}
.role-card { display: flex; flex-direction: column; min-height: 286px; box-shadow: 0 14px 36px rgba(26, 51, 97, 0.05); }
.role-card__number { margin-bottom: auto; color: var(--primary-600); font-family: var(--font-mono); font-size: 12px; font-weight: 850; }
.role-card h3, .not-fit h3 { margin: 36px 0 12px; font-size: 21px; line-height: 1.2; letter-spacing: -0.025em; }
.role-card p, .not-fit p { margin: 0; color: var(--muted); font-size: 14px; }
.not-fit { position: relative; overflow: hidden; color: #fff; border: 0; background: var(--ink); }
.not-fit::after { content: ""; position: absolute; right: -85px; bottom: -115px; width: 230px; height: 230px; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 50%; box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.035), 0 0 0 78px rgba(255, 255, 255, 0.025); }
.not-fit__label { position: relative; z-index: 1; display: inline-flex; padding: 6px 9px; border-radius: 999px; color: #362014; background: var(--signal-500); font-family: var(--font-mono); font-size: 10px; font-weight: 850; letter-spacing: 0.06em; text-transform: uppercase; }
.not-fit h3, .not-fit p { position: relative; z-index: 1; }
.not-fit p { color: #cad3e6; }

.capability-list { display: grid; gap: 34px; }
.capability {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 46px;
  align-items: center;
  min-height: 620px;
  padding: 48px;
  border: 1px solid rgba(36, 92, 255, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(26, 51, 97, 0.055);
}
.capability--right .capability__copy { order: 2; }
.capability--right .capability__visual { order: 1; }
.capability__copy h3 { margin: 0 0 17px; font-size: clamp(33px, 3.2vw, 48px); line-height: 1.05; letter-spacing: -0.04em; }
.capability__copy > p:not(.module-label) { margin: 0 0 22px; color: var(--muted); font-size: 16px; }
.module-label { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 17px; }
.module-label span { display: inline-grid; width: 30px; height: 30px; place-items: center; border-radius: 9px; color: #fff; background: var(--primary-600); font-size: 10px; }
.check-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 24px; color: #354159; font-size: 14px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 0.58em; width: 8px; height: 8px; border: 2px solid var(--primary-600); border-radius: 50%; box-shadow: 0 0 0 4px var(--primary-100); }
.capability__visual { position: relative; min-width: 0; padding: 20px 26px 42px 0; }
.capability--right .capability__visual { padding: 20px 0 42px 26px; }
.capability__visual::before { content: ""; position: absolute; inset: 0 5% 16px 4%; border-radius: 30px; background: linear-gradient(145deg, var(--primary-100), rgba(255, 255, 255, 0)); border: 1px solid rgba(36, 92, 255, 0.08); }
.capability--right .capability__visual::before { inset: 0 4% 16px 5%; }
.capability__visual .browser-frame { transform: perspective(1300px) rotateY(-2deg); }
.capability--right .capability__visual .browser-frame { transform: perspective(1300px) rotateY(2deg); }
.detail-panel {
  position: absolute;
  z-index: 4;
  right: -2px;
  bottom: 0;
  width: 205px;
  padding: 9px;
  border: 1px solid rgba(36, 92, 255, 0.18);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow-float);
}
.detail-panel--left { right: auto; left: -2px; }
.detail-panel > span { display: block; margin: 0 2px 6px; color: var(--primary-600); font-family: var(--font-mono); font-size: 8px; font-weight: 850; letter-spacing: 0.08em; }
.detail-panel > div { overflow: hidden; height: 154px; border-radius: 9px; background: var(--canvas-2); }
.detail-panel img { width: 100%; height: auto; }
.detail-panel--right img { transform: translateY(-2%); }
.detail-panel--bids img { transform: translateY(-22%); }
.capability__visual--analytics { padding-bottom: 72px; }
.metric-strip {
  position: absolute;
  z-index: 4;
  right: 2px;
  bottom: 0;
  left: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(36, 92, 255, 0.14);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.metric-strip div { min-width: 0; padding: 13px 14px; border-right: 1px solid var(--line); }
.metric-strip div:last-child { border-right: 0; }
.metric-strip span { display: block; overflow: hidden; color: var(--muted); font-family: var(--font-mono); font-size: 7.5px; font-weight: 800; letter-spacing: 0.05em; text-overflow: ellipsis; white-space: nowrap; }
.metric-strip strong { display: block; margin-top: 2px; font-family: var(--font-mono); font-size: 18px; }
.metric-strip__signal { background: var(--signal-100); }
.metric-strip__signal strong { color: var(--signal-600); }
.context-tags { position: absolute; z-index: 4; right: 8px; bottom: 0; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }
.context-tags span { padding: 7px 10px; border: 1px solid rgba(36, 92, 255, 0.16); border-radius: 999px; color: var(--primary-700); background: #fff; box-shadow: var(--shadow-sm); font-family: var(--font-mono); font-size: 9px; font-weight: 800; }

.ecosystem {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 62px;
  align-items: center;
  margin-top: 34px;
  padding: 58px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 94% 24%, rgba(255, 138, 52, 0.27), transparent 25%),
    linear-gradient(135deg, #132959, #245cff 72%);
  box-shadow: 0 28px 80px rgba(21, 55, 134, 0.24);
}
.ecosystem::after { content: ""; position: absolute; right: -110px; bottom: -180px; width: 390px; height: 390px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 50%; box-shadow: 0 0 0 52px rgba(255, 255, 255, 0.035), 0 0 0 104px rgba(255, 255, 255, 0.024); }
.ecosystem__copy, .ecosystem__flow { position: relative; z-index: 1; }
.ecosystem__copy h3 { margin: 0 0 18px; font-size: clamp(38px, 4vw, 56px); line-height: 1.04; letter-spacing: -0.045em; }
.ecosystem__copy p:last-child { margin: 0; color: #d9e3fb; }
.ecosystem__flow { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }
.ecosystem__flow li { min-height: 142px; padding: 18px; border: 1px solid rgba(255, 255, 255, 0.17); border-radius: 16px; background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(8px); }
.ecosystem__flow span { display: block; color: #ffbb82; font-family: var(--font-mono); font-size: 10px; font-weight: 850; }
.ecosystem__flow strong { display: block; margin-top: 22px; font-size: 20px; }
.ecosystem__flow small { display: block; margin-top: 2px; color: #d9e3fb; font-size: 12px; }
.roadmap { margin-top: 84px; }
.roadmap__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.roadmap__grid article { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.roadmap__grid article > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 12px; color: var(--primary-600); background: var(--primary-100); font-family: var(--font-mono); font-size: 11px; font-weight: 850; }
.roadmap h4 { margin: 0 0 8px; font-size: 20px; line-height: 1.25; letter-spacing: -0.02em; }
.roadmap article p { margin: 0; color: var(--muted); font-size: 14px; }

.founder__layout { display: grid; grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr); gap: 72px; align-items: center; }
.founder__photo { position: relative; overflow: hidden; margin: 0; min-height: 660px; border-radius: var(--radius-xl); background: var(--canvas-2); box-shadow: var(--shadow-md); }
.founder__photo img { width: 100%; height: 100%; min-height: 660px; object-fit: cover; object-position: 55% center; }
.founder__photo::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(transparent, rgba(9, 17, 35, 0.78)); }
.founder__photo figcaption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 24px; color: #fff; }
.founder__photo figcaption span { display: block; font-size: 22px; font-weight: 850; }
.founder__photo figcaption small { display: block; margin-top: 2px; color: #d8e0ee; }
.founder__copy h2 { margin-bottom: 24px; font-size: clamp(40px, 4.2vw, 60px); }
.founder__copy > p:not(.kicker) { color: #3f4b62; font-size: 17px; }
.founder blockquote { position: relative; margin: 30px 0 0; padding: 25px 25px 25px 30px; border-left: 4px solid var(--primary-600); border-radius: 0 16px 16px 0; color: #2f3b52; background: var(--canvas); font-size: 15px; }

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.65fr);
  gap: 54px;
  align-items: center;
  padding: 62px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 10% 110%, rgba(255, 255, 255, 0.12), transparent 34%),
    radial-gradient(circle at 95% 0%, rgba(255, 138, 52, 0.24), transparent 29%),
    linear-gradient(135deg, #15306f, #245cff 75%);
  box-shadow: 0 28px 80px rgba(21, 55, 134, 0.22);
}
.cta-panel h2 { max-width: 800px; font-size: clamp(40px, 4vw, 58px); }
.cta-panel__copy > p:not(.kicker) { max-width: 700px; color: #d9e3fb; font-size: 17px; }
.cta-panel__actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 26px; }
.cta-panel__help { padding: 28px; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 20px; background: rgba(255, 255, 255, 0.09); backdrop-filter: blur(9px); }
.cta-panel__help h3 { margin: 0 0 13px; font-size: 22px; }
.cta-panel__help ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.cta-panel__help li { position: relative; padding-left: 18px; color: #e3eaff; font-size: 13px; }
.cta-panel__help li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 6px; height: 6px; border-radius: 50%; background: #ffbb82; }
.cta-panel__help a { font-weight: 800; }

.billing-switch { display: inline-flex; margin-bottom: 28px; padding: 5px; border: 1px solid var(--line); border-radius: 14px; background: var(--canvas); }
.billing-switch button { min-height: 44px; padding: 9px 16px; border: 0; border-radius: 10px; color: var(--muted); background: transparent; font-size: 13px; font-weight: 800; cursor: pointer; }
.billing-switch button.is-active { color: #fff; background: var(--primary-600); box-shadow: 0 8px 20px rgba(36, 92, 255, 0.22); }
.billing-switch button span { color: inherit; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; min-width: 0; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: 0 14px 38px rgba(24, 43, 82, 0.055); }
.price-card--featured { border-color: rgba(36, 92, 255, 0.58); box-shadow: 0 24px 65px rgba(36, 92, 255, 0.16); }
.price-card__recommend { position: absolute; right: 18px; top: -12px; padding: 7px 10px; border-radius: 999px; color: #362014; background: var(--signal-500); font-family: var(--font-mono); font-size: 9px; font-weight: 900; letter-spacing: 0.05em; text-transform: uppercase; }
.price-card__head > span { color: var(--muted); font-family: var(--font-mono); font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.price-card h3 { margin: 7px 0 22px; font-size: 28px; line-height: 1; letter-spacing: -0.035em; }
.price { margin: 0; }
.price strong { display: block; font-family: var(--font-mono); font-size: clamp(34px, 3vw, 43px); line-height: 1; letter-spacing: -0.055em; }
.price span { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; }
.price-note { min-height: 22px; margin: 7px 0 21px; color: var(--primary-700); font-size: 12px; font-weight: 750; }
.price-card > ul { display: grid; gap: 11px; flex: 1; margin: 0 0 27px; padding: 21px 0 0; border-top: 1px solid var(--line); list-style: none; }
.price-card > ul li { position: relative; padding-left: 20px; color: #3d4960; font-size: 13px; }
.price-card > ul li::before { content: ""; position: absolute; left: 0; top: 0.58em; width: 7px; height: 7px; border: 2px solid var(--primary-600); border-radius: 50%; }
.trial-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px 50px;
  align-items: center;
  margin-top: 28px;
  padding: 40px;
  border: 1px solid rgba(36, 92, 255, 0.16);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 86% 18%, rgba(36, 92, 255, 0.11), transparent 28%),
    var(--canvas);
}
.trial-card__copy h3 { margin: 0 0 8px; font-size: clamp(30px, 3vw, 42px); line-height: 1.05; letter-spacing: -0.04em; }
.trial-card__copy > p:not(.kicker) { margin: 0; color: var(--muted); }
.trial-facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 9px; margin: 24px 0 0; padding: 0; list-style: none; }
.trial-facts li { min-width: 0; padding: 12px; border: 1px solid rgba(36, 92, 255, 0.12); border-radius: 12px; background: #fff; }
.trial-facts strong { display: block; font-family: var(--font-mono); font-size: 18px; line-height: 1.1; }
.trial-facts span { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; text-transform: uppercase; }
.trial-card__action { min-width: 245px; text-align: center; }
.trial-card__action small { display: block; margin-top: 9px; color: var(--muted); font-size: 10px; }
.consent { grid-column: 1 / -1; display: grid; gap: 10px; padding-top: 24px; border-top: 1px solid var(--line); }
.consent label { display: grid; grid-template-columns: 22px 1fr; gap: 10px; min-height: 44px; align-items: start; padding: 4px 0; color: #3d4960; font-size: 12px; }
.consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--primary-600); }
.consent a { color: var(--primary-700); font-weight: 750; }
.consent__message { margin: 0; color: var(--danger); font-size: 12px; font-weight: 800; }

.support-note { margin-top: 15px !important; font-size: 14px !important; }
.support-note a { color: var(--primary-700); font-weight: 800; }
.materials-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.material-card { display: flex; flex-direction: column; min-height: 258px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: 0 12px 34px rgba(24, 43, 82, 0.045); text-decoration: none; transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.material-card:hover { transform: translateY(-5px); border-color: rgba(36, 92, 255, 0.38); box-shadow: var(--shadow-sm); }
.material-card > span { color: var(--primary-600); font-family: var(--font-mono); font-size: 11px; font-weight: 850; }
.material-card h3 { margin: 28px 0 9px; font-size: 20px; line-height: 1.2; letter-spacing: -0.02em; }
.material-card p { margin: 0 0 18px; color: var(--muted); font-size: 13px; }
.material-card strong { margin-top: auto; color: var(--primary-700); font-size: 12px; }

.contact-layout { display: grid; grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr); gap: 70px; align-items: start; }
.contact-layout h2 { font-size: clamp(42px, 4.5vw, 64px); }
.contact-layout__copy > p:not(.kicker) { color: var(--muted); font-size: 17px; }
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.contact-card { display: flex; flex-direction: column; min-height: 306px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.contact-card--primary { border-color: rgba(36, 92, 255, 0.33); background: linear-gradient(145deg, #fff, var(--primary-100)); }
.contact-card > span { color: var(--muted); font-family: var(--font-mono); font-size: 10px; font-weight: 850; letter-spacing: 0.06em; text-transform: uppercase; }
.contact-card h3 { margin: 10px 0 15px; overflow-wrap: anywhere; font-family: var(--font-mono); font-size: clamp(20px, 2vw, 28px); letter-spacing: -0.04em; }
.contact-card p { margin: 0 0 24px; color: var(--muted); font-size: 14px; }
.contact-card .button { margin-top: auto; }

.site-footer { color: #cbd4e6; background: var(--ink); }
.site-footer__top { display: flex; justify-content: space-between; gap: 40px; align-items: center; padding-top: 42px; padding-bottom: 34px; }
.brand--footer { color: #fff; }
.site-footer__links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 15px 24px; }
.site-footer__links a { color: #cbd4e6; font-size: 12px; text-decoration: none; }
.site-footer__links a:hover { color: #fff; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 18px; padding-bottom: 26px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; }
.mobile-trial-bar { display: none; }

@media (max-width: 1180px) {
  :root { --container: 1040px; }
  .site-nav { gap: 17px; }
  .site-nav a { font-size: 13px; }
  .hero__layout { grid-template-columns: minmax(0, 0.93fr) minmax(470px, 1.07fr); gap: 42px; }
  .hero h1 { font-size: clamp(45px, 5.2vw, 64px); }
  .signal-list { grid-template-columns: 1fr; }
  .signal-list li { min-height: 0; }
  .audience-layout { grid-template-columns: 1fr; }
  .not-fit { min-height: 220px; }
  .not-fit h3 { max-width: 650px; }
  .capability { grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr); padding: 38px; gap: 34px; }
  .ecosystem { padding: 48px; gap: 44px; }
  .founder__layout { gap: 52px; }
  .cta-panel { padding: 50px; }
  .materials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .material-card { min-height: 230px; }
}

@media (max-width: 980px) {
  :root { --header-height: 68px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 86px 0; }
  .site-header__inner { gap: 16px; }
  .site-header__cta { margin-left: auto; }
  .site-nav {
    position: fixed;
    z-index: 999;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 16px;
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    pointer-events: none;
    transition: max-height 220ms ease, opacity 180ms ease, padding 220ms ease, border-color 180ms ease;
  }
  .site-nav.is-open { max-height: 380px; padding-top: 9px; padding-bottom: 15px; border-bottom-color: var(--line); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 13px 4px; border-bottom: 1px solid #edf1f7; font-size: 15px; }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a::after { display: none; }
  .menu-button { display: block; }

  .hero { padding: 62px 0 88px; }
  .hero__layout { grid-template-columns: 1fr; gap: 48px; }
  .hero__copy { max-width: 820px; }
  .hero h1 { max-width: 820px; font-size: clamp(46px, 7.8vw, 70px); }
  .signal-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-stage { width: min(100%, 880px); }
  .section-heading--split { grid-template-columns: 1fr; gap: 19px; align-items: start; }
  .section-heading--split > p, .section-heading--split > div:last-child { max-width: 780px; }
  .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .role-card:last-child { grid-column: 1 / -1; min-height: 240px; }
  .capability, .capability--right {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 38px;
    padding: 42px;
  }
  .capability--right .capability__copy, .capability--right .capability__visual { order: initial; }
  .capability__copy { max-width: 800px; }
  .capability__visual, .capability--right .capability__visual { width: min(100%, 900px); padding: 18px 28px 48px 0; }
  .capability--right .capability__visual .browser-frame, .capability__visual .browser-frame { transform: none; }
  .capability__visual--analytics { padding-bottom: 76px; }
  .ecosystem { grid-template-columns: 1fr; }
  .ecosystem__copy { max-width: 760px; }
  .roadmap__grid { grid-template-columns: 1fr; }
  .founder__layout { grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr); gap: 38px; }
  .founder__photo, .founder__photo img { min-height: 560px; }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-panel__help { max-width: 700px; }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-card--featured { grid-row: span 1; }
  .price-card:last-child { grid-column: 1 / -1; }
  .trial-card { grid-template-columns: 1fr; }
  .trial-card__action { min-width: 0; text-align: left; }
  .contact-layout { grid-template-columns: 1fr; gap: 34px; }
  .contact-layout__copy { max-width: 700px; }
}

@media (max-width: 760px) {
  :root { --header-height: 64px; }
  html { scroll-padding-top: calc(var(--header-height) + 10px); }
  body { padding-bottom: 76px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 70px 0; }
  .site-header__cta { display: none; }
  .brand__logo { width: 158px; }
  .hero { padding: 42px 0 72px; }
  .eyebrow { align-items: flex-start; font-size: 10px; }
  .hero h1 { font-size: clamp(39px, 11.8vw, 58px); line-height: 1.01; letter-spacing: -0.055em; }
  .hero__lead { margin-top: 22px; }
  .signal-list { grid-template-columns: 1fr; }
  .signal-list li { grid-template-columns: 28px 1fr; min-height: 0; padding: 12px; }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .hero__actions .button { width: 100%; }
  .hero__trial-facts { display: grid; gap: 8px; }
  .product-stage { margin-top: 2px; padding-bottom: 34px; }
  .product-stage::before { inset: 6% -3% 0; border-radius: 28px; }
  .product-stage__label { right: 9px; top: 5px; font-size: 8px; }
  .browser-frame--hero { transform: none; }
  .browser-frame { border-radius: 14px; }
  .browser-frame__bar { height: 34px; padding-inline: 10px; font-size: 8px; }
  .browser-frame > img { aspect-ratio: 1.25 / 1; object-position: 60% top; }
  .zoom-card { display: none; }

  .section-heading { margin-bottom: 34px; }
  .section-heading h2 { font-size: clamp(34px, 10vw, 47px); }
  .section-heading > p, .section-heading--split > p, .section-heading--split > div:last-child { font-size: 15px; }
  .audience-grid { grid-template-columns: 1fr; }
  .role-card, .role-card:last-child { grid-column: auto; min-height: 0; padding: 22px; }
  .role-card__number { margin-bottom: 36px; }
  .role-card h3, .not-fit h3 { margin-top: 0; font-size: 19px; }
  .not-fit { min-height: 260px; padding: 24px; }
  .not-fit h3 { margin-top: 42px; }

  .capability-list { gap: 20px; }
  .capability, .capability--right { gap: 27px; padding: 25px; border-radius: 24px; }
  .capability__copy h3 { font-size: clamp(31px, 9vw, 42px); }
  .capability__copy > p:not(.module-label) { font-size: 15px; }
  .check-list { gap: 9px; }
  .check-list li { font-size: 13px; }
  .capability__visual, .capability--right .capability__visual { padding: 8px 0 0; }
  .capability__visual::before { inset: -8px -8px 8px; border-radius: 20px; }
  .capability__visual .browser-frame > img { aspect-ratio: 1.22 / 1; object-position: 64% top; }
  .capability__visual--farpost .browser-frame > img { object-position: 58% top; }
  .detail-panel, .context-tags, .metric-strip { position: static; width: auto; margin-top: 11px; }
  .detail-panel { display: grid; grid-template-columns: auto 1fr; gap: 9px; align-items: center; padding: 8px; box-shadow: var(--shadow-sm); }
  .detail-panel > span { writing-mode: vertical-rl; transform: rotate(180deg); }
  .detail-panel > div { height: 114px; }
  .detail-panel--bids img { transform: translateY(-24%); }
  .capability__visual--analytics { padding-bottom: 0; }
  .metric-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .metric-strip div { padding: 10px 8px; }
  .metric-strip span { font-size: 6.5px; }
  .metric-strip strong { font-size: 14px; }
  .context-tags { justify-content: flex-start; }
  .ecosystem { margin-top: 22px; padding: 31px 24px; border-radius: 24px; }
  .ecosystem__copy h3 { font-size: clamp(34px, 10vw, 46px); }
  .ecosystem__flow { grid-template-columns: 1fr; }
  .ecosystem__flow li { min-height: 112px; }
  .ecosystem__flow strong { margin-top: 13px; }
  .roadmap { margin-top: 62px; }
  .section-heading--compact h3 { font-size: clamp(31px, 9vw, 42px); }
  .roadmap__grid article { grid-template-columns: 40px 1fr; padding: 21px; }
  .roadmap__grid article > span { width: 36px; height: 36px; }
  .roadmap h4 { font-size: 18px; }

  .founder__layout { grid-template-columns: 1fr; gap: 34px; }
  .founder__photo { min-height: 470px; max-height: 620px; }
  .founder__photo img { min-height: 470px; object-position: 58% 43%; }
  .founder__photo figcaption { left: 20px; right: 20px; bottom: 18px; }
  .founder__copy h2 { font-size: clamp(35px, 10vw, 48px); }
  .founder__copy > p:not(.kicker) { font-size: 15px; }
  .founder blockquote { padding: 21px 20px 21px 24px; font-size: 14px; }

  .cta-panel { gap: 30px; padding: 33px 24px; border-radius: 24px; }
  .cta-panel h2 { font-size: clamp(34px, 10vw, 47px); }
  .cta-panel__copy > p:not(.kicker) { font-size: 15px; }
  .cta-panel__actions { display: grid; }
  .cta-panel__actions .button { width: 100%; }
  .cta-panel__help { padding: 22px; }

  .billing-switch { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card:last-child { grid-column: auto; }
  .price-card { padding: 25px; }
  .trial-card { gap: 27px; padding: 26px; }
  .trial-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trial-card__action .button { width: 100%; }
  .consent { padding-top: 21px; }

  .materials-grid { grid-template-columns: 1fr; }
  .material-card { min-height: 215px; padding: 22px; }
  .material-card h3 { margin-top: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { min-height: 270px; padding: 25px; }

  .site-footer__top { display: grid; justify-items: start; }
  .site-footer__links { justify-content: flex-start; }
  .site-footer__bottom { display: grid; }
  .mobile-trial-bar {
    position: fixed;
    z-index: 1100;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 14px max(8px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(36, 61, 111, 0.13);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 -12px 30px rgba(21, 39, 77, 0.1);
  }
  .mobile-trial-bar > span { display: grid; line-height: 1.1; }
  .mobile-trial-bar strong { font-family: var(--font-mono); font-size: 14px; }
  .mobile-trial-bar small { color: var(--muted); font-size: 9px; text-transform: uppercase; }
  .mobile-trial-bar .button { min-height: 44px; padding-inline: 18px; }
}

@media (max-width: 420px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .section { padding: 62px 0; }
  .hero h1 { font-size: clamp(36px, 11.6vw, 48px); }
  .hero__trial-facts { font-size: 12px; }
  .capability, .capability--right { padding: 20px; }
  .metric-strip { grid-template-columns: 1fr; }
  .metric-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .metric-strip div:last-child { border-bottom: 0; }
  .detail-panel { grid-template-columns: 1fr; }
  .detail-panel > span { writing-mode: initial; transform: none; }
  .ecosystem__flow li { min-height: 100px; }
  .roadmap__grid article { grid-template-columns: 1fr; }
  .founder__photo, .founder__photo img { min-height: 430px; }
  .cta-panel, .trial-card { padding: 23px 20px; }
  .price strong { font-size: 34px; }
  .contact-card h3 { font-size: 20px; }
  .mobile-trial-bar > span { display: none; }
  .mobile-trial-bar .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .button:hover, .material-card:hover { transform: none; }
}

@media (max-width: 760px) {
  .mobile-trial-bar {
    transform: translateY(112%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 180ms ease;
  }
  .mobile-trial-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}


/* GATE-06 revision — centred product-first hero, approved 2026-07-22 */
.hero {
  padding: 58px 0 112px;
}
.hero__layout {
  display: block;
}
.hero__copy {
  position: relative;
  z-index: 4;
  max-width: 1120px;
  margin-inline: auto;
  text-align: center;
}
.hero .eyebrow {
  justify-content: center;
}
.hero h1 {
  max-width: 1120px;
  margin-inline: auto;
  font-size: clamp(52px, 5vw, 68px);
  text-wrap: balance;
}
.hero h1 em {
  color: var(--primary-600);
  font-style: normal;
  white-space: nowrap;
}
.hero__summary {
  max-width: 760px;
  margin: 23px auto 0;
  color: #455169;
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.48;
  text-wrap: balance;
}
.hero__actions {
  justify-content: center;
  margin-top: 31px;
}
.hero__trial-facts {
  justify-content: center;
  margin-top: 20px;
}
.product-stage--wide {
  width: min(100%, 1180px);
  margin: 55px auto 0;
  padding: 25px 0 36px;
  isolation: isolate;
}
.product-stage--wide::before {
  inset: 8% -3.5% -1%;
  border-radius: 52px;
  background:
    radial-gradient(circle at 50% 12%, rgba(36, 92, 255, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(36, 92, 255, 0.075), rgba(255, 255, 255, 0.42));
  border-color: rgba(36, 92, 255, 0.11);
  transform: none;
}
.product-stage--wide::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 12%;
  right: 12%;
  bottom: 0;
  height: 42%;
  border-radius: 50%;
  background: rgba(36, 92, 255, 0.14);
  filter: blur(54px);
}
.product-stage--wide .product-stage__label {
  right: 28px;
  top: 0;
}
.product-stage--wide .browser-frame--hero {
  border-radius: 26px;
  box-shadow: 0 34px 90px rgba(19, 38, 79, 0.2);
  transform: perspective(1800px) rotateX(1.1deg);
  transform-origin: center top;
}
.product-stage--wide .browser-frame__bar {
  height: 43px;
  padding-inline: 17px;
}
.product-stage--wide .browser-frame > img {
  aspect-ratio: 1.905 / 1;
  object-fit: cover;
  object-position: center top;
}
.hero__lead {
  width: min(100%, 1180px);
  margin: 14px auto 0;
  text-align: left;
}
.hero__lead > strong {
  display: block;
  margin: 0 0 14px;
  font-size: 16px;
}
.hero .signal-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.hero .signal-list li {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  min-height: 154px;
  padding: 20px 18px;
  border-color: rgba(36, 92, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 38px rgba(32, 61, 113, 0.07);
  backdrop-filter: blur(8px);
}
.hero .signal-list__number {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  color: var(--primary-700);
  background: var(--primary-100);
}
.signal-list__copy {
  display: block;
  min-width: 0;
}
.signal-list__copy > strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}
.signal-list__copy > span {
  display: block;
  color: #4f5b70;
  font-size: 12.5px;
  line-height: 1.48;
}

@media (max-width: 1180px) {
  .hero__layout { display: block; }
  .hero h1 { max-width: 1040px; font-size: clamp(50px, 5.6vw, 65px); }
  .hero .signal-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero .signal-list li { min-height: 132px; }
}

@media (max-width: 980px) {
  .hero { padding: 52px 0 92px; }
  .hero__copy { max-width: 880px; }
  .hero h1 { max-width: 880px; font-size: clamp(48px, 7.2vw, 64px); }
  .product-stage--wide { width: min(100%, 900px); margin-top: 48px; }
  .hero__lead { width: min(100%, 900px); }
}

@media (max-width: 760px) {
  .hero { padding: 38px 0 72px; }
  .hero .eyebrow { justify-content: center; align-items: center; }
  .hero h1 {
    max-width: 660px;
    font-size: clamp(40px, 11.1vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }
  .hero h1 em { white-space: normal; }
  .hero__summary { margin-top: 19px; font-size: 16px; }
  .hero__actions { margin-top: 25px; }
  .hero__trial-facts { justify-items: center; text-align: left; }
  .product-stage--wide { margin-top: 38px; padding: 22px 0 27px; }
  .product-stage--wide::before { inset: 7% -2.5% 0; border-radius: 30px; }
  .product-stage--wide::after { left: 4%; right: 4%; filter: blur(34px); }
  .product-stage--wide .product-stage__label { right: 8px; top: 2px; }
  .product-stage--wide .browser-frame--hero { border-radius: 15px; transform: none; }
  .product-stage--wide .browser-frame__bar { height: 34px; padding-inline: 10px; }
  .product-stage--wide .browser-frame > img {
    aspect-ratio: 1.22 / 1;
    object-position: 64% top;
  }
  .hero__lead { margin-top: 10px; }
  .hero__lead > strong { margin-bottom: 12px; text-align: center; }
  .hero .signal-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .hero .signal-list li {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 190px;
    padding: 16px 14px;
  }
  .signal-list__copy > strong { font-size: 14px; }
  .signal-list__copy > span { font-size: 12px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(37px, 10.9vw, 46px); }
  .hero__summary { max-width: 330px; }
  .hero__trial-facts { width: fit-content; margin-inline: auto; }
  .hero .signal-list { grid-template-columns: 1fr; }
  .hero .signal-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 0;
    padding: 16px;
  }
}
.founder__photo picture { display: block; width: 100%; height: 100%; min-height: inherit; }
.founder__photo picture img { width: 100%; height: 100%; }
.founder__photo picture { display: block; width: 100%; height: 100%; min-height: inherit; }
.founder__photo picture img { width: 100%; height: 100%; }
