:root {
  --ink: #090a0c;
  --ink-2: #111318;
  --paper: #f3f2ed;
  --paper-2: #e9e8e2;
  --mist: #d9dce3;
  --quiet-dark: #777b86;
  --quiet-light: #77766f;
  --mint: #79ebcc;
  --violet: #9c8cff;
  --sky: #68aef3;
  --line-dark: rgba(243,242,237,.12);
  --line-light: rgba(9,10,12,.14);
  --ease: cubic-bezier(.2,.72,.16,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.q2-body {
  overflow-x: clip;
  background: var(--ink);
  color: var(--paper);
  font-family: "Google Sans Flex", "Helvetica Neue", Arial, sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}

.q2-body ::selection { background: var(--mint); color: var(--ink); }
.q2-skip { position: fixed; z-index: 1000; top: -60px; left: 14px; padding: 12px 16px; border-radius: 999px; background: var(--paper); color: var(--ink); transition: top .2s; }
.q2-skip:focus { top: 14px; }
.q2-symbol { font-family: "Google Symbols", sans-serif; font-variation-settings: "FILL" 0,"wght" 350,"GRAD" 0,"opsz" 24; }

.q2-mark { width: 24px; height: 24px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.q2-mark circle { fill: var(--mint); stroke: none; }
.q2-brand { display: inline-flex; align-items: center; gap: 11px; color: var(--paper); font-size: 17px; font-weight: 510; letter-spacing: -.02em; }

.q2-header {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  left: 0;
  height: 80px;
  padding: 0 clamp(22px,4.2vw,72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg,rgba(7,8,10,.78),rgba(7,8,10,0));
  transition: transform .55s var(--ease),background .4s,border-color .4s;
}
.q2-header.is-scrolled { border-color: rgba(243,242,237,.08); background: rgba(8,9,11,.78); backdrop-filter: blur(18px); }
.q2-header.is-hidden { transform: translateY(-105%); }
.q2-nav { display: flex; align-items: center; gap: 36px; }
.q2-nav a { position: relative; color: #b4b6be; font-size: 14px; transition: color .25s; }
.q2-nav a::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: var(--mint); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.q2-nav a:hover { color: var(--paper); }
.q2-nav a:hover::after { transform: scaleX(1); }
.q2-header-cta { justify-self: end; }

.q2-button { min-height: 48px; padding: 0 23px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid transparent; border-radius: 999px; font-size: 14px; font-weight: 520; transition: transform .35s var(--ease),background .3s,color .3s,border-color .3s; }
.q2-button:hover { transform: translateY(-2px); }
.q2-button--paper { background: var(--paper); color: var(--ink); }
.q2-button--paper:hover { background: #fff; }
.q2-button--ghost { border-color: rgba(243,242,237,.19); background: rgba(255,255,255,.025); color: var(--paper); }
.q2-button--ghost:hover { border-color: rgba(243,242,237,.42); background: rgba(255,255,255,.06); }
.q2-button--ink { background: var(--ink); color: var(--paper); }
.q2-button--outline-dark { border-color: rgba(9,10,12,.22); color: var(--ink); }

.q2-menu-toggle { display: none; justify-self: end; width: 42px; height: 42px; border: 1px solid rgba(243,242,237,.16); border-radius: 50%; background: transparent; }
.q2-menu-toggle span { width: 15px; height: 1px; display: block; margin: 4px auto; background: var(--paper); }
.q2-mobile-menu { position: fixed; z-index: 300; inset: 0; padding: 18px; display: none; background: var(--ink); opacity: 0; visibility: hidden; transition: opacity .3s; }
.q2-mobile-menu.is-open { opacity: 1; visibility: visible; }
.q2-mobile-head { display: flex; align-items: center; justify-content: space-between; }
.q2-mobile-head button { width: 44px; height: 44px; border: 0; background: transparent; color: var(--paper); font-size: 34px; }
.q2-mobile-menu nav { margin-top: 90px; display: flex; flex-direction: column; }
.q2-mobile-menu nav a { padding: 20px 2px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line-dark); font-size: 34px; letter-spacing: -.04em; }

/* Hero: Quarry topography, deliberately distinct from Antigravity's particle orbit. */
.q2-hero { position: relative; min-height: 100svh; overflow: hidden; display: grid; place-items: center; background: #07080a; }
.q2-hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.q2-hero-shade { position: absolute; inset: 0; background: radial-gradient(circle at 50% 48%,transparent 0,rgba(7,8,10,.12) 34%,rgba(7,8,10,.86) 84%),linear-gradient(180deg,rgba(7,8,10,.15),transparent 60%,rgba(7,8,10,.5)); pointer-events: none; }
.q2-hero-content { position: relative; z-index: 2; width: min(1260px,calc(100% - 48px)); text-align: center; }
.q2-lockup { margin-bottom: 44px; display: inline-flex; align-items: center; gap: 12px; color: #d7d8dd; font-size: clamp(17px,1.3vw,22px); }
.q2-lockup b { color: #747884; font-weight: 430; }
.q2-hero h1 { margin: 0; font-size: clamp(68px,7.1vw,126px); font-weight: 440; line-height: .91; letter-spacing: -.069em; text-wrap: balance; }
.q2-hero-actions { margin-top: 53px; display: flex; align-items: center; justify-content: center; gap: 7px; }

/* Oracle product film: one autonomous viewport, with the full 16:9 composition always visible. */
.q2-demo-scroll { position: relative; min-height: 100svh; background: var(--paper); color: var(--paper); }
.q2-demo-sticky { position: relative; height: 100svh; padding: 8px; display: grid; place-items: center; overflow: hidden; }
.q2-demo-frame { position: relative; width: 100%; height: calc(100svh - 16px); overflow: hidden; border: 1px solid rgba(243,242,237,.13); border-radius: 30px; background: #090a0c; box-shadow: 0 45px 140px rgba(0,0,0,.2),inset 0 0 0 1px rgba(243,242,237,.025); transform: scale(.52) translateY(26vh); transform-origin: center; }
.q2-demo-film { width: 100%; height: 100%; display: block; object-fit: contain; background: #090a0c; }
.q2-visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

/* White interlude replaces the copied icon bubble strip. */
.q2-thesis { min-height: 100svh; padding: clamp(100px,10vw,180px) clamp(24px,7vw,120px); display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 5vw; overflow: hidden; background: var(--paper); color: var(--ink); }
.q2-thesis-copy > span,.q2-chapter-copy > span,.q2-updates-head > span,.q2-cta-content > span { color: #367866; font: 9px "Google Sans Code",monospace; letter-spacing: .12em; text-transform: uppercase; }
.q2-thesis h2 { margin: 0 0 36px; font-size: clamp(51px,5.4vw,94px); font-weight: 450; line-height: .94; letter-spacing: -.065em; }
.q2-thesis h2 em { color: #74736c; font-style: normal; }
.q2-thesis-copy p { max-width: 610px; margin: 0; color: #5f605d; font-size: clamp(15px,1.2vw,20px); line-height: 1.5; }
.q2-thesis-visual { position: relative; width: 100%; aspect-ratio: 900/620; }
.q2-attention-system { overflow: hidden; border: 1px solid rgba(9,10,12,.1); border-radius: 32px; background: #e8e7e1; box-shadow: inset 0 1px rgba(255,255,255,.7); }
.q2-attention-system::before { content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(9,10,12,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(9,10,12,.035) 1px,transparent 1px); background-size:50px 50px; mask-image:linear-gradient(90deg,#000,transparent 72%); }
.q2-attention-system svg { position:absolute; inset:0; width:100%; height:100%; overflow:visible; }
.q2-attention-path { fill:none; stroke:rgba(9,10,12,.16); stroke-width:2; }
.q2-intel-traces .q2-attention-path:nth-child(2),.q2-intel-traces .q2-attention-path:nth-child(6) { stroke:rgba(156,140,255,.38); }
.q2-intel-traces .q2-attention-path:nth-child(4),.q2-intel-traces .q2-attention-path:nth-child(7) { stroke:rgba(55,119,99,.42); }
.q2-evidence-node { fill:#777872; }.q2-evidence-node:nth-child(3n+1) { fill:#9c8cff; }.q2-evidence-node:nth-child(3n+2) { fill:#55b99b; }
.q2-aperture-edge { fill:none; stroke:#090a0c; stroke-width:2.5; }
.q2-ranked-output { fill:none; stroke:rgba(9,10,12,.22); stroke-width:2.5; }
.q2-ranked-output--one { stroke:#45a689; stroke-width:4; }
.q2-output-node { fill:#777872; }.q2-output-node--one { fill:var(--mint); stroke:#377763; stroke-width:2; filter:drop-shadow(0 0 10px rgba(121,235,204,.65)); }
.q2-attention-field-label { position:absolute; z-index:3; top:8%; left:7%; }
.q2-attention-field-label span,.q2-attention-field-label small { display:block; color:#6e716d; font:8px "Google Sans Code",monospace; letter-spacing:.11em; text-transform:uppercase; }
.q2-attention-field-label b { display:block; margin:7px 0 4px; font:450 clamp(34px,4vw,63px) "Google Sans Code",monospace; letter-spacing:-.09em; line-height:1; }
.q2-attention-aperture { position:absolute; z-index:3; top:50%; left:54.45%; width:112px; height:112px; display:grid; place-content:center; justify-items:center; border:1px solid rgba(55,119,99,.34); border-radius:50%; background:var(--paper); transform:translate(-50%,-50%); box-shadow:0 18px 55px rgba(9,10,12,.1),0 0 0 13px rgba(121,235,204,.06); }
.q2-attention-aperture span { color:#377763; font:500 clamp(18px,2vw,28px) "Google Sans Code",monospace; letter-spacing:-.06em; }
.q2-attention-aperture small { margin-top:5px; color:#74736c; font:7px "Google Sans Code",monospace; letter-spacing:.06em; text-transform:uppercase; }
.q2-attention-choice { position:absolute; z-index:3; top:8%; right:5%; width:31%; }
.q2-attention-choice span,.q2-attention-choice small { display:block; color:#567267; font:8px "Google Sans Code",monospace; letter-spacing:.11em; text-transform:uppercase; }
.q2-attention-choice b { display:block; margin:9px 0 10px; font-size:clamp(25px,2.6vw,44px); font-weight:500; line-height:.92; letter-spacing:-.055em; }
.q2-attention-ranks { position:absolute; z-index:3; right:6%; top:21%; bottom:12%; display:flex; flex-direction:column; justify-content:space-between; color:#74736c; font:8px "Google Sans Code",monospace; }
.q2-attention-ranks span:first-child { color:#377763; font-size:10px; }

/* Exactly three product chapters, each one viewport and one dominant visual idea. */
.q2-method { background: var(--paper); }
.q2-chapter { position: relative; min-height: 100svh; padding: clamp(100px,8vw,150px) clamp(24px,6vw,104px); display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: clamp(48px,7vw,130px); overflow: hidden; }
.q2-chapter--light { background: var(--paper); color: var(--ink); border-top: 1px solid var(--line-light); }
.q2-chapter--dark { background: #0a0c0f; color: var(--paper); border-top: 1px solid var(--line-dark); }
.q2-chapter-copy { position: relative; z-index: 3; }
.q2-chapter-copy h2 { margin: 0 0 30px; font-size: clamp(51px,5.5vw,95px); font-weight: 450; line-height: .91; letter-spacing: -.068em; }
.q2-chapter-copy p { max-width: 530px; margin: 0; color: var(--quiet-light); font-size: clamp(15px,1.15vw,19px); line-height: 1.5; }
.q2-chapter--dark .q2-chapter-copy p { color: #9a9eaa; }
.q2-chapter-visual { position: relative; width: 100%; aspect-ratio: 1.13; overflow: hidden; border-radius: 34px; }
.q2-chapter-visual canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.q2-frontier-visual { background: linear-gradient(145deg,#ebeae4,#dddcd5); border: 1px solid rgba(9,10,12,.08); }
.q2-frontier-visual svg { position: absolute; inset: 8%; width: 84%; height: 84%; overflow: visible; }
.q2-frontier-visual path { fill: none; stroke: rgba(9,10,12,.18); stroke-width: 1.7; }
.q2-frontier-visual .q2-search-cut { stroke: #54b99b; stroke-width: 4; filter: drop-shadow(0 0 9px rgba(55,119,99,.28)); }
.q2-frontier-visual circle { fill: var(--ink); }
.q2-frontier-visual .q2-search-point { fill: var(--mint); filter: drop-shadow(0 0 14px rgba(121,235,204,.68)); }
.q2-search-origin,.q2-search-found { position: absolute; z-index: 3; padding: 27px 30px; border: 1px solid rgba(9,10,12,.12); border-radius: 18px; background: rgba(243,242,237,.92); box-shadow: 0 18px 55px rgba(9,10,12,.07); }
.q2-search-origin { top: 50%; left: 7%; transform: translateY(-50%); }
.q2-search-found { top: 8%; right: 6%; border-color: rgba(55,119,99,.28); }
.q2-search-origin span,.q2-search-found span { display: block; margin-bottom: 10px; color: #567267; font: 11px "Google Sans Code",monospace; letter-spacing: .09em; }
.q2-search-origin b,.q2-search-found b { display: block; max-width: 220px; font-size: clamp(20px,1.8vw,30px); font-weight: 480; line-height: 1.04; letter-spacing: -.035em; }
.q2-proof-visual { background: linear-gradient(145deg,#101319,#0b0d11); border: 1px solid rgba(243,242,237,.1); }
.q2-proof-main { position: absolute; z-index: 3; top: 11%; left: 8%; }
.q2-proof-main span,.q2-proof-main small { display: block; color: #9196a0; font: 11px "Google Sans Code",monospace; letter-spacing: .08em; }
.q2-proof-main b { display: block; margin: 15px 0 12px; color: var(--mint); font: 450 clamp(74px,8vw,138px) "Google Sans Code",monospace; letter-spacing: -.1em; line-height: .82; }
.q2-proof-bars { position: absolute; z-index: 3; right: 8%; bottom: 18%; left: 8%; display: grid; gap: 25px; }
.q2-proof-bars > div { display: grid; grid-template-columns: 170px 1fr 90px; align-items: center; gap: 22px; }
.q2-proof-bars span { color: #c2c5cc; font-size: 15px; }
.q2-proof-bars i { height: 18px; overflow: hidden; border-radius: 999px; background: rgba(243,242,237,.08); }
.q2-proof-bars i b { display: block; width: var(--bar); height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--mint),#52a991); }
.q2-proof-bars > div + div i b { background: #656a75; }
.q2-proof-bars strong { color: var(--paper); font: 450 30px "Google Sans Code",monospace; letter-spacing: -.07em; text-align: right; }
.q2-proof-caption { position: absolute; z-index: 3; right: 8%; bottom: 7%; left: 8%; margin: 0; padding-top: 15px; border-top: 1px solid rgba(243,242,237,.08); color: #747985; font-size: 11px; line-height: 1.4; }

.q2-outcome-visual { background: #e6e5df; border: 1px solid rgba(9,10,12,.08); }
.q2-outcome-path { position: absolute; z-index: 3; top: 50%; right: 8%; left: 8%; display: grid; grid-template-columns: repeat(4,1fr); transform: translateY(-50%); }
.q2-outcome-path::before { content: ""; position: absolute; top: 28px; right: 12.5%; left: 12.5%; height: 1px; background: linear-gradient(90deg,var(--violet),var(--sky),var(--mint)); }
.q2-outcome-path span { position: relative; display: flex; align-items: center; flex-direction: column; text-align: center; }
.q2-outcome-path b { position: relative; z-index: 2; width: 57px; height: 57px; display: grid; place-items: center; border: 1px solid rgba(9,10,12,.16); border-radius: 50%; background: var(--paper); color: #4e504e; font: 8px "Google Sans Code",monospace; box-shadow: 0 12px 30px rgba(9,10,12,.07); }
.q2-outcome-path span:last-child b { border-color: rgba(55,119,99,.35); background: var(--mint); color: var(--ink); }
.q2-outcome-path i { margin-top: 17px; font-size: 13px; font-style: normal; font-weight: 550; }
.q2-outcome-path small { margin-top: 3px; color: #77766f; font-size: 9px; }
.q2-outcome-visual > p { position: absolute; z-index: 3; right: 7%; bottom: 7%; margin: 0; display: flex; align-items: center; gap: 7px; color: #6c6d68; font: 8px "Google Sans Code",monospace; }

/* News/progress replaces the inward-looking founder card strip. */
.q2-updates { min-height: 100svh; padding: clamp(110px,9vw,160px) clamp(24px,5.5vw,94px); background: #0a0c0f; color: var(--paper); }
.q2-updates-head { display: grid; grid-template-columns: .15fr 1fr .55fr; align-items: end; gap: 30px; }
.q2-updates-head > span { align-self: start; color: var(--mint); }
.q2-updates h2 { margin: 0; font-size: clamp(55px,6vw,104px); font-weight: 450; line-height: .9; letter-spacing: -.07em; }
.q2-updates-head p { max-width: 430px; margin: 0 0 8px; color: #8f949e; font-size: 16px; line-height: 1.45; }
.q2-update-grid { margin-top: clamp(75px,8vw,140px); display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.q2-update-grid article { min-height: 410px; padding: 34px clamp(23px,2.5vw,42px) 42px; display: flex; flex-direction: column; border-right: 1px solid var(--line-dark); }
.q2-update-grid article:last-child { border-right: 0; }
.q2-update-grid article > span { color: #777c87; font: 8px "Google Sans Code",monospace; letter-spacing: .1em; }
.q2-update-grid article > b { margin: 60px 0 37px; color: var(--mint); font: 460 clamp(58px,5.5vw,94px) "Google Sans Code",monospace; letter-spacing: -.1em; line-height: .88; }
.q2-update-grid article:nth-child(2) > b { color: var(--violet); }
.q2-update-grid article:nth-child(3) > b { color: var(--sky); }
.q2-update-grid h3 { margin: 0; max-width: 420px; font-size: clamp(23px,2vw,34px); font-weight: 480; line-height: 1.03; letter-spacing: -.04em; }
.q2-update-grid p { max-width: 420px; margin: 20px 0 34px; color: #858a95; font-size: 13px; line-height: 1.48; }

/* Full-viewport close. */
.q2-cta { position: relative; min-height: 100svh; overflow: hidden; display: grid; place-items: center; background: var(--paper); color: var(--ink); }
.q2-cta > canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.q2-cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 67% 50%,transparent 0,rgba(243,242,237,.1) 36%,rgba(243,242,237,.9) 82%); pointer-events: none; }
.q2-cta-content { position: relative; z-index: 2; width: min(1500px,calc(100% - 48px)); }
.q2-cta h2 { margin: 28px 0 24px; font-size: clamp(72px,9vw,158px); font-weight: 450; line-height: .84; letter-spacing: -.079em; }
.q2-cta-content > p { margin: 0 0 40px; color: #62635f; font-size: 18px; }
.q2-cta-content > div { display: flex; gap: 7px; }

.q2-footer { position: relative; min-height: 360px; padding: 70px clamp(24px,5vw,86px) 30px; display: grid; grid-template-columns: 1.55fr .55fr .55fr; gap: 50px; border-top: 1px solid var(--line-dark); background: var(--ink); color: var(--paper); }
.q2-footer-lead h2 { max-width: 550px; margin: 58px 0 0; font-size: clamp(29px,3vw,50px); font-weight: 450; line-height: .98; letter-spacing: -.045em; }
.q2-footer nav { display: flex; align-items: flex-start; flex-direction: column; gap: 10px; }
.q2-footer nav span { margin-bottom: 15px; color: #686d78; font-size: 12px; }
.q2-footer nav a { color: #cacbd0; font-size: 13px; }
.q2-footer-bottom { position: absolute; right: clamp(24px,5vw,86px); bottom: 30px; left: clamp(24px,5vw,86px); padding-top: 20px; display: flex; justify-content: flex-end; gap: 30px; border-top: 1px solid var(--line-dark); color: #606570; font-size: 10px; }

@media (max-width: 1024px) {
  .q2-header { grid-template-columns: 1fr auto; }
  .q2-nav { display: none; }
  .q2-header-cta { display: none; }
  .q2-menu-toggle,.q2-mobile-menu { display: block; }
  .q2-thesis,.q2-chapter { grid-template-columns: 1fr; }
  .q2-thesis { padding-top: 130px; }
  .q2-thesis-visual { max-width: 760px; margin: 0 auto; }
  .q2-chapter { min-height: auto; padding-top: 130px; padding-bottom: 130px; }
  .q2-chapter-copy { max-width: 760px; }
  .q2-chapter-visual { max-width: 900px; }
  .q2-updates-head { grid-template-columns: 1fr 1fr; }
  .q2-updates-head > span { grid-column: 1/-1; }
}

@media (max-width: 767px) {
  .q2-header { height: 66px; padding: 0 16px; }
  .q2-brand { font-size: 15px; }.q2-brand .q2-mark { width: 21px; height: 21px; }
  .q2-hero-content { width: calc(100% - 28px); }
  .q2-lockup { margin-bottom: 35px; font-size: 15px; }
  .q2-hero h1 { font-size: clamp(48px,14.8vw,68px); line-height: .92; }
  .q2-hero-actions { margin-top: 40px; align-items: stretch; flex-direction: column; }
  .q2-button { min-height: 46px; font-size: 13px; }

  .q2-demo-sticky { padding: 5px; }
  .q2-demo-frame { height: calc(100svh - 10px); border-radius: 24px; }

  .q2-thesis { min-height: auto; padding: 105px 20px 90px; gap: 55px; }
  .q2-thesis h2 { margin: 0 0 25px; font-size: 48px; }
  .q2-thesis-copy p { font-size: 15px; }
  .q2-thesis-visual { width: 100%; margin: 0; }
  .q2-attention-system { aspect-ratio:.86; border-radius:24px; }
  .q2-attention-system svg { width:145%; max-width:none; transform:translateX(-21%); }
  .q2-attention-field-label { top:7%; left:7%; }
  .q2-attention-choice { top:auto; right:7%; bottom:7%; width:47%; }
  .q2-attention-choice b { font-size:28px; }
  .q2-attention-aperture { left:49%; width:94px; height:94px; }
  .q2-attention-ranks { right:6%; top:27%; bottom:22%; }

  .q2-chapter { padding: 95px 16px; gap: 54px; }
  .q2-chapter-copy { padding: 0 4px; }
  .q2-chapter-copy h2 { margin: 0 0 23px; font-size: 50px; }
  .q2-chapter-copy p { font-size: 15px; }
  .q2-chapter-visual { aspect-ratio: .86; border-radius: 23px; }
  .q2-search-origin,.q2-search-found { padding: 18px; border-radius: 14px; }
  .q2-search-origin { top: 66%; left: 5%; }
  .q2-search-found { top: 7%; right: 5%; }
  .q2-search-origin span,.q2-search-found span { margin-bottom: 7px; font-size: 8px; }
  .q2-search-origin b,.q2-search-found b { max-width: 145px; font-size: 19px; }
  .q2-proof-main { top: 8%; right: auto; left: 7%; }
  .q2-proof-main span,.q2-proof-main small { font-size: 10px; }
  .q2-proof-main b { font-size: 68px; }
  .q2-proof-bars { right: 7%; bottom: 20%; left: 7%; gap: 19px; }
  .q2-proof-bars > div { grid-template-columns: 98px 1fr 52px; gap: 9px; }
  .q2-proof-bars span { font-size: 10px; }
  .q2-proof-bars i { height: 13px; }
  .q2-proof-bars strong { font-size: 16px; }
  .q2-proof-caption { right: 7%; bottom: 6%; left: 7%; font-size: 9px; }
  .q2-outcome-path { top: 47%; right: 5%; left: 5%; grid-template-columns: repeat(2,1fr); row-gap: 64px; }
  .q2-outcome-path::before { display: none; }
  .q2-outcome-path b { width: 48px; height: 48px; }
  .q2-outcome-path i { margin-top: 9px; font-size: 11px; }
  .q2-outcome-visual > p { font-size: 6px; }

  .q2-updates { min-height: auto; padding: 100px 16px; }
  .q2-updates-head { grid-template-columns: 1fr; padding: 0 4px; }
  .q2-updates h2 { font-size: 52px; }
  .q2-updates-head p { font-size: 15px; }
  .q2-update-grid { margin-top: 70px; grid-template-columns: 1fr; }
  .q2-update-grid article { min-height: 350px; padding: 30px 20px 40px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .q2-update-grid article:last-child { border-bottom: 0; }
  .q2-update-grid article > b { margin: 50px 0 31px; font-size: 73px; }

  .q2-cta-content { width: calc(100% - 32px); }
  .q2-cta h2 { font-size: 65px; line-height: .86; }
  .q2-cta-content > p { font-size: 15px; }
  .q2-cta-content > div { align-items: stretch; flex-direction: column; }

  .q2-footer { min-height: 610px; padding: 54px 20px 32px; grid-template-columns: 1fr 1fr; gap: 50px 24px; }
  .q2-footer-lead { grid-column: 1/-1; }
  .q2-footer-lead h2 { margin-top: 45px; font-size: 38px; }
  .q2-footer-bottom { right: 20px; bottom: 27px; left: 20px; justify-content: flex-start; flex-wrap: wrap; gap: 11px 20px; }
}

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