:root {
  --navy: #071426;
  --navy-2: #0d213d;
  --navy-3: #17345d;
  --ink: #101b2c;
  --muted: #667085;
  --ivory: #f6f1e8;
  --paper: #fffdf9;
  --gold: #d3a34b;
  --gold-light: #f1d28e;
  --line: rgba(18, 38, 67, .12);
  --green: #2c805d;
  --danger: #b9563b;
  --shadow: 0 25px 80px rgba(3, 12, 25, .18);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::selection { background: var(--gold-light); color: var(--navy); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(970px, calc(100% - 40px)); }
.section { padding: 112px 0; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(3.2rem, 6.6vw, 6.6rem); margin-bottom: 28px; }
h2 { font-size: clamp(2.35rem, 4.6vw, 4.6rem); margin-bottom: 25px; }
h3 { font-size: 1.3rem; }
em { color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }

.launch-bar {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, #b27c2b, #e2bd71, #b27c2b);
  color: #071426;
  font-size: .82rem;
  letter-spacing: .02em;
}
.launch-bar span { opacity: .78; }
.launch-bar strong { font-weight: 800; }
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(7, 20, 38, .88);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.header-inner { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: white; font-size: .98rem; font-weight: 800; letter-spacing: .075em; }
.brand b { color: var(--gold-light); }
.brand-mark { width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid rgba(241,210,142,.55); border-radius: 10px; background: rgba(255,255,255,.04); }
.brand-mark svg { width: 22px; fill: none; stroke: var(--gold-light); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.desktop-nav { display: flex; align-items: center; gap: 27px; margin-left: auto; }
.desktop-nav a { color: rgba(255,255,255,.7); font-size: .88rem; transition: color .2s ease; }
.desktop-nav a:hover { color: white; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 11px;
  color: white;
  font-weight: 780;
  line-height: 1.1;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 43px; padding-inline: 19px; background: rgba(255,255,255,.08); font-size: .85rem; }
.button-primary { color: #081426; border-color: #f4d997; background: linear-gradient(135deg, #f2d187 0%, #c99239 100%); box-shadow: 0 13px 35px rgba(211,163,75,.24); }
.button-primary:hover { filter: brightness(1.05); box-shadow: 0 18px 45px rgba(211,163,75,.33); }
.button-large { min-height: 61px; padding-inline: 28px; font-size: 1rem; }
.button-full { width: 100%; min-height: 61px; }
.button svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.hero { position: relative; overflow: hidden; padding: 84px 0 100px; color: white; background: radial-gradient(circle at 80% 20%, #1b3354 0, #071426 43%, #040b14 100%); }
.hero::after { content: ""; position: absolute; inset: 0; opacity: .22; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(to bottom, black, transparent 86%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.hero-glow-one { width: 420px; height: 420px; right: -120px; top: -100px; background: rgba(210,159,70,.16); }
.hero-glow-two { width: 320px; height: 320px; left: 25%; bottom: -260px; background: rgba(38,90,151,.24); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 55px; }
.hero-copy { padding-top: 15px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--gold-light); font-size: .72rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 28px; height: 1px; background: currentColor; }
.eyebrow-dark { color: #a7762f; }
.hero-lead { max-width: 620px; color: rgba(255,255,255,.73); font-size: 1.15rem; line-height: 1.7; }
.hero-lead strong { color: white; font-weight: 650; }
.check-list { list-style: none; margin: 28px 0 0; padding: 0; }
.check-list li { position: relative; margin: 13px 0; padding-left: 31px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .05em; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: #09162a; background: var(--gold-light); font-size: .73rem; font-weight: 900; }
.hero-list { color: rgba(255,255,255,.86); font-size: .96rem; }
.hero-offer { display: flex; align-items: center; gap: 26px; margin-top: 36px; }
.price-block { display: flex; flex-direction: column; min-width: 138px; }
.price-block span { color: rgba(255,255,255,.58); font-size: .72rem; }
.price-block strong { color: white; font-size: 3rem; line-height: 1; letter-spacing: -.06em; }
.price-block small { margin-right: 5px; color: var(--gold-light); font-size: .85rem; letter-spacing: 0; vertical-align: top; }
.trust-line { display: flex; gap: 20px; margin-top: 19px; color: rgba(255,255,255,.58); font-size: .76rem; }
.trust-line span { display: inline-flex; align-items: center; gap: 7px; }
.trust-line svg { width: 17px; fill: none; stroke: var(--gold-light); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hero-visual { position: relative; margin-right: -90px; }
.mockup-frame { position: relative; border: 1px solid rgba(241,210,142,.24); border-radius: 28px; box-shadow: 0 55px 120px rgba(0,0,0,.45), 0 0 75px rgba(212,162,74,.08); transform: perspective(1200px) rotateY(-3deg) rotateX(1deg); overflow: visible; }
.mockup-frame::before { content: ""; position: absolute; inset: -1px; z-index: 2; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); pointer-events: none; }
.mockup-frame img { border-radius: 27px; }
.float-chip { position: absolute; z-index: 4; display: flex; align-items: center; gap: 9px; padding: 10px 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; background: rgba(7,20,38,.88); box-shadow: 0 12px 35px rgba(0,0,0,.28); backdrop-filter: blur(10px); color: white; font-size: .72rem; font-weight: 700; white-space: nowrap; }
.float-chip span { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: var(--green); }
.chip-one { left: -34px; bottom: 13%; }
.chip-two { right: 4%; top: -16px; }
.chip-two span { background: var(--danger); }

.proof-strip { position: relative; z-index: 5; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: 0 -22px 60px rgba(3,12,25,.05); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid div { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 125px; text-align: center; }
.proof-grid div:not(:last-child)::after { content: ""; position: absolute; right: 0; width: 1px; height: 42px; background: var(--line); }
.proof-grid strong { color: var(--navy); font-family: Georgia, serif; font-size: 2rem; line-height: 1.2; }
.proof-grid span { color: var(--muted); font-size: .76rem; }

.problem-section { background: linear-gradient(180deg, #fffdf9, #f4eee4); text-align: center; }
.problem-section h2 em { color: #ae7832; }
.section-lead { max-width: 810px; margin: 0 auto; color: var(--muted); font-size: 1.08rem; }
.risk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 58px; text-align: left; }
.risk-card { position: relative; min-height: 230px; padding: 32px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.62); transition: transform .25s ease, box-shadow .25s ease; }
.risk-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(21,38,64,.08); }
.risk-icon { color: #bd8740; font-family: Georgia, serif; font-size: .9rem; }
.risk-card h3 { margin: 36px 0 12px; }
.risk-card p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }

.process-section { color: white; background: var(--navy); }
.section-heading { margin-bottom: 55px; }
.section-heading p { max-width: 710px; margin: 18px auto 0; color: var(--muted); }
.section-heading.centered { text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.process-card { position: relative; min-height: 335px; padding: 34px; border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); overflow: hidden; }
.process-card::after { content: ""; position: absolute; right: -50px; bottom: -60px; width: 140px; height: 140px; border: 1px solid rgba(241,210,142,.15); border-radius: 50%; }
.step-number { position: absolute; right: 26px; top: 21px; color: rgba(255,255,255,.16); font-family: Georgia, serif; font-size: 3.8rem; line-height: 1; }
.line-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 58px; border: 1px solid rgba(241,210,142,.35); border-radius: 14px; background: rgba(211,163,75,.08); }
.line-icon svg { width: 33px; fill: none; stroke: var(--gold-light); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.process-card h3 { margin-bottom: 12px; color: white; }
.process-card p { margin: 0; color: rgba(255,255,255,.6); font-size: .9rem; }
.microcopy { margin: 31px auto 0; color: rgba(255,255,255,.45); font-size: .79rem; text-align: center; }

.agents-section { background: #f6f1e8; }
.agents-section .section-heading { max-width: 790px; margin-inline: auto; }
.agents-section .section-heading h2 em { color: #a8732e; }
.agents-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.agent-card { min-height: 360px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.72); transition: transform .25s ease, box-shadow .25s ease; }
.agent-card:hover { transform: translateY(-5px); box-shadow: 0 24px 55px rgba(22,43,74,.09); }
.agent-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 33px; color: #a8732e; font-family: Georgia, serif; }
.agent-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; background: #eef0ef; }
.agent-icon svg { width: 26px; fill: none; stroke: var(--navy-2); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.agent-card h3 { margin-bottom: 12px; }
.agent-card p { color: var(--muted); font-size: .88rem; }
.agent-card ul { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; margin: auto 0 0; padding: 0; }
.agent-card li { padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; color: #506077; background: white; font-size: .66rem; }
.accent-agent { color: white; border-color: rgba(255,255,255,.08); background: linear-gradient(150deg, var(--navy-2), #071426); }
.accent-agent p { color: rgba(255,255,255,.63); }
.accent-agent .agent-icon { background: rgba(255,255,255,.08); }
.accent-agent .agent-icon svg { stroke: var(--gold-light); }
.accent-agent li { color: rgba(255,255,255,.72); border-color: rgba(255,255,255,.11); background: rgba(255,255,255,.05); }

.demo-section { color: white; background: linear-gradient(125deg, #071426 0%, #102844 65%, #071426 100%); overflow: hidden; }
.demo-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 80px; }
.demo-copy p { color: rgba(255,255,255,.63); }
.demo-copy .check-list { color: rgba(255,255,255,.82); font-size: .9rem; }
.demo-stack { position: relative; min-height: 570px; }
.screen { position: absolute; margin: 0; border: 1px solid rgba(241,210,142,.25); border-radius: 14px; background: white; box-shadow: 0 35px 80px rgba(0,0,0,.4); overflow: hidden; }
.screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.screen-one { z-index: 3; left: 24%; top: 0; width: 46%; height: 540px; transform: rotate(-1deg); }
.screen-two { z-index: 2; right: 0; top: 60px; width: 42%; height: 470px; transform: rotate(5deg); }
.screen-three { z-index: 1; left: 0; top: 75px; width: 40%; height: 455px; transform: rotate(-6deg); }

.included-section { background: var(--paper); }
.included-head { display: grid; grid-template-columns: 1.45fr .55fr; align-items: end; gap: 70px; margin-bottom: 50px; }
.included-head h2 { margin-bottom: 0; }
.included-head h2 em { color: #a8732e; }
.included-head > p { margin-bottom: 12px; color: var(--muted); font-size: .94rem; }
.kit-showcase { max-height: 660px; margin-bottom: 26px; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.kit-showcase img { width: 100%; height: 100%; object-fit: cover; }
.resources-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.resource-card { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 23px; border: 1px solid var(--line); border-radius: 14px; background: white; }
.resource-card > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; color: #9e6d2d; background: #f7edda; font-family: Georgia, serif; }
.resource-card h3 { margin: 1px 0 7px; font-size: 1.06rem; }
.resource-card p { margin: 0; color: var(--muted); font-size: .82rem; }
.wide-resource { grid-column: 1 / -1; }

.compare-section { color: white; background: #050d18; }
.compare-wrap { max-width: 970px; }
.comparison { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); overflow: hidden; }
.compare-column { padding: 40px; }
.old-way { background: rgba(255,255,255,.035); }
.new-way { border-left: 1px solid rgba(241,210,142,.18); background: linear-gradient(145deg, rgba(211,163,75,.13), rgba(255,255,255,.035)); }
.compare-title { display: flex; align-items: center; gap: 13px; margin-bottom: 30px; }
.compare-title span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: white; background: #7f3e34; font-weight: 900; }
.new-way .compare-title span { color: #061427; background: var(--gold-light); }
.compare-title h3 { margin: 0; }
.compare-column ul { list-style: none; margin: 0; padding: 0; }
.compare-column li { position: relative; margin: 17px 0; padding: 0 0 17px 26px; border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.62); font-size: .88rem; }
.compare-column li::before { content: "–"; position: absolute; left: 1px; color: #bd6752; }
.new-way li { color: rgba(255,255,255,.82); }
.new-way li::before { content: "✓"; color: var(--gold-light); }

.offer-section { background: linear-gradient(180deg, #f4eee4, #fffdf9); }
.offer-shell { display: grid; grid-template-columns: .95fr .7fr; align-items: center; gap: 90px; }
.offer-copy h2 { font-size: clamp(2.45rem, 4.4vw, 4.5rem); }
.offer-copy > p { max-width: 610px; color: var(--muted); font-size: 1.02rem; }
.offer-guarantee { display: flex; align-items: center; gap: 17px; margin-top: 38px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.7); }
.offer-guarantee svg { width: 43px; fill: none; stroke: #a8732e; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.offer-guarantee div { display: flex; flex-direction: column; }
.offer-guarantee span { color: var(--muted); font-size: .8rem; }
.checkout-card { position: relative; padding: 30px; border: 1px solid rgba(20,42,73,.12); border-radius: 24px; background: white; box-shadow: 0 30px 80px rgba(17,35,60,.15); }
.checkout-badge { position: absolute; z-index: 2; top: 17px; left: 17px; padding: 7px 10px; border-radius: 7px; color: white; background: rgba(7,20,38,.9); font-size: .62rem; font-weight: 800; letter-spacing: .1em; }
.checkout-cover { width: 100%; aspect-ratio: 16 / 10; margin-bottom: 25px; border-radius: 14px; object-fit: cover; object-position: 50% 55%; }
.checkout-card h3 { margin-bottom: 18px; }
.checkout-list { list-style: none; margin: 0 0 23px; padding: 0; }
.checkout-list li { display: flex; align-items: center; gap: 9px; margin: 9px 0; color: #4f5e72; font-size: .8rem; }
.checkout-list span { color: var(--green); font-weight: 900; }
.checkout-price { display: flex; flex-direction: column; margin: 15px 0 21px; padding-top: 19px; border-top: 1px solid var(--line); }
.checkout-price > span { color: var(--muted); font-size: .75rem; }
.checkout-price strong { font-size: 3.7rem; line-height: 1; letter-spacing: -.065em; }
.checkout-price small { margin-right: 7px; color: #a8732e; font-size: 1rem; letter-spacing: 0; vertical-align: top; }
.secure-copy { display: flex; justify-content: center; align-items: center; gap: 7px; margin: 14px 0 0; color: #7c8797; font-size: .68rem; text-align: center; }
.secure-copy svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.guarantee-section { padding: 76px 0; background: var(--paper); }
.guarantee-wrap { max-width: 900px; display: grid; grid-template-columns: 145px 1fr; align-items: center; gap: 50px; }
.guarantee-seal { width: 145px; height: 145px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid #c49244; border-radius: 50%; outline: 1px dashed rgba(164,113,44,.45); outline-offset: -8px; color: #a8732e; background: #f8f0df; }
.guarantee-seal span { font-family: Georgia, serif; font-size: 3.5rem; line-height: .9; }
.guarantee-seal small { font-weight: 800; letter-spacing: .18em; }
.guarantee-wrap h2 { margin-bottom: 10px; font-size: 2.5rem; }
.guarantee-wrap p { margin-bottom: 0; color: var(--muted); }

.faq-section { color: white; background: var(--navy); }
.faq-wrap { display: grid; grid-template-columns: .65fr 1fr; gap: 100px; }
.faq-intro { position: sticky; top: 115px; align-self: start; }
.faq-intro p { color: rgba(255,255,255,.55); }
.faq-list details { border-bottom: 1px solid rgba(255,255,255,.12); }
.faq-list summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; color: white; cursor: pointer; font-weight: 650; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--gold-light); font-size: 1.4rem; font-weight: 300; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 650px; margin: -5px 0 25px; color: rgba(255,255,255,.58); font-size: .9rem; }

.final-cta { position: relative; overflow: hidden; padding: 115px 0; color: white; background: #050c16; text-align: center; }
.final-content { position: relative; z-index: 2; }
.final-content .eyebrow { justify-content: center; }
.final-content h2 { font-size: clamp(2.5rem, 5vw, 5rem); }
.final-content p { max-width: 650px; margin: 0 auto 34px; color: rgba(255,255,255,.62); }
.final-content > span { display: block; margin-top: 15px; color: rgba(255,255,255,.44); font-size: .73rem; }
.final-orb { position: absolute; border-radius: 50%; filter: blur(20px); }
.orb-one { width: 480px; height: 480px; left: -250px; top: -150px; background: rgba(37,83,139,.22); }
.orb-two { width: 380px; height: 380px; right: -160px; bottom: -190px; background: rgba(211,163,75,.16); }

footer { padding: 55px 0 105px; color: white; background: #030910; }
.footer-grid { display: flex; justify-content: space-between; gap: 45px; padding-bottom: 35px; }
.footer-brand { margin-bottom: 15px; }
.footer-grid p { max-width: 460px; margin-bottom: 0; color: rgba(255,255,255,.4); font-size: .78rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; align-items: flex-start; color: rgba(255,255,255,.55); font-size: .78rem; }
.footer-links a:hover { color: white; }
.disclaimer { display: flex; justify-content: space-between; gap: 40px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.32); font-size: .68rem; }
.disclaimer p { max-width: 830px; margin: 0; }
.disclaimer > span { flex: 0 0 auto; }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, .risk-card, .agent-card { transition: none; }
}

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { max-width: 820px; margin: 15px auto 0; }
  .mockup-frame { transform: none; }
  .agents-grid { grid-template-columns: repeat(2, 1fr); }
  .demo-grid { gap: 45px; }
  .offer-shell { gap: 55px; }
}

@media (max-width: 820px) {
  .section { padding: 82px 0; }
  .desktop-nav { display: none; }
  .header-inner > .button { display: none; }
  .header-inner { height: 67px; }
  .hero { padding-top: 68px; }
  .hero-offer { align-items: flex-end; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid div:nth-child(2)::after { display: none; }
  .risk-grid, .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 285px; }
  .line-icon { margin-bottom: 40px; }
  .demo-grid, .included-head, .offer-shell, .faq-wrap { grid-template-columns: 1fr; }
  .demo-stack { min-height: 540px; }
  .included-head { gap: 12px; }
  .included-head > p { max-width: 620px; }
  .offer-shell { max-width: 660px; }
  .faq-wrap { gap: 30px; }
  .faq-intro { position: static; }
  .mobile-cta { position: fixed; z-index: 100; right: 12px; bottom: 12px; left: 12px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 10px 10px 16px; border: 1px solid rgba(241,210,142,.35); border-radius: 15px; background: rgba(7,20,38,.94); box-shadow: 0 15px 45px rgba(0,0,0,.34); backdrop-filter: blur(14px); color: white; }
  .mobile-cta > div { display: flex; flex-direction: column; line-height: 1.15; }
  .mobile-cta span { color: rgba(255,255,255,.5); font-size: .63rem; }
  .mobile-cta strong { font-size: 1.14rem; }
  .mobile-cta .button { min-height: 46px; padding-inline: 17px; font-size: .78rem; }
  footer { padding-bottom: 125px; }
}

@media (max-width: 590px) {
  .container, .narrow { width: min(100% - 28px, 1160px); }
  .section { padding: 70px 0; }
  h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  h2 { font-size: clamp(2.2rem, 10.7vw, 3.6rem); }
  .launch-bar { gap: 6px; font-size: .69rem; }
  .hero { padding: 54px 0 75px; }
  .hero-lead { font-size: 1rem; }
  .hero-offer { flex-direction: column; align-items: stretch; gap: 17px; }
  .price-block { align-items: flex-start; }
  .hero-offer .button { width: 100%; }
  .trust-line { flex-wrap: wrap; gap: 8px 17px; }
  .hero-visual { margin-top: 14px; }
  .float-chip { display: none; }
  .mockup-frame { border-radius: 15px; }
  .mockup-frame img { border-radius: 14px; }
  .proof-grid div { min-height: 100px; }
  .proof-grid strong { font-size: 1.65rem; }
  .risk-grid { margin-top: 38px; }
  .risk-card { min-height: auto; }
  .agents-grid { grid-template-columns: 1fr; }
  .agent-card { min-height: 330px; }
  .demo-stack { min-height: 410px; margin-top: 15px; }
  .screen-one { left: 20%; width: 53%; height: 390px; }
  .screen-two { width: 45%; height: 345px; }
  .screen-three { width: 45%; height: 330px; }
  .resources-grid { grid-template-columns: 1fr; }
  .wide-resource { grid-column: auto; }
  .comparison { grid-template-columns: 1fr; }
  .compare-column { padding: 28px; }
  .new-way { border-top: 1px solid rgba(241,210,142,.18); border-left: 0; }
  .checkout-card { padding: 19px; }
  .guarantee-wrap { grid-template-columns: 1fr; gap: 25px; text-align: center; }
  .guarantee-seal { margin: auto; }
  .footer-grid, .disclaimer { flex-direction: column; gap: 24px; }
  .footer-links { flex-direction: column; gap: 8px; }
}
