@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root {
  --ink: #123227;
  --ink-deep: #09251b;
  --green: #2f7253;
  --green-bright: #54a77b;
  --mint: #dff0e5;
  --mint-light: #f1f8f3;
  --coral: #ff765c;
  --coral-dark: #ed5f44;
  --cream: #f8f6ef;
  --paper: #fffefa;
  --white: #ffffff;
  --muted: #617069;
  --line: #d8dfd9;
  --font-heading: 'Manrope', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace;
  --maxw: 1180px;
  --radius: 14px;
  --shadow: 0 24px 70px rgba(9, 37, 27, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 400 18px/1.68 var(--font-body); -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-heading); line-height: 1.08; letter-spacing: -0.045em; }
h1 { font-size: clamp(3rem, 6vw, 5.6rem); font-weight: 800; }
h2 { font-size: clamp(2.25rem, 4.2vw, 4rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 700; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.kicker, .eyebrow { margin-bottom: 18px; color: var(--green); font: 700 0.84rem/1.2 var(--font-mono); letter-spacing: 0.11em; text-transform: uppercase; }
.kicker.light { color: #a9d8bc; }

.nav { position: sticky; z-index: 50; top: 0; border-bottom: 1px solid rgba(18, 50, 39, 0.11); background: rgba(255, 254, 250, 0.92); backdrop-filter: blur(16px); }
.nav-inner { display: flex; min-height: 74px; align-items: center; justify-content: space-between; gap: 30px; }
.nav-brand, .footer-brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-heading); font-weight: 800; letter-spacing: -0.035em; }
.nav-brand img { width: 196px; height: auto; border-radius: 0; }
.nav-links { display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; list-style: none; }
.nav-links a { color: #486158; font-size: 1rem; font-weight: 600; }
.nav-links a:hover { color: var(--green); }
.nav-links .nav-cta { padding: 10px 17px; border: 1px solid var(--ink); border-radius: 10px; color: var(--ink); }
.nav-links .nav-cta:hover { color: var(--white); background: var(--ink); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; border: 0; background: transparent; }
.nav-toggle span { width: 24px; height: 2px; border-radius: 2px; background: var(--ink); }

.hero { position: relative; overflow: hidden; padding: clamp(72px, 10vw, 132px) 0 100px; background: var(--cream); }
.hero::before { content: ''; position: absolute; inset: auto -10% -220px 35%; height: 430px; border-radius: 50%; background: #e5eee5; filter: blur(2px); transform: rotate(-7deg); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, 0.84fr); align-items: center; gap: clamp(45px, 8vw, 110px); }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 30px; height: 2px; background: var(--coral); }
.hero h1 { max-width: 750px; text-wrap: balance; }
.hero .lede { max-width: 610px; margin-top: 28px; color: #42594f; font-size: clamp(1.1rem, 1.7vw, 1.3rem); line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 36px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 20px; min-height: 56px; padding: 14px 24px; border: 0; border-radius: 11px; font-family: var(--font-heading); font-size: 1.06rem; font-weight: 800; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--coral); box-shadow: 0 12px 30px rgba(237, 95, 68, 0.28); }
.btn-primary:hover { color: var(--white); background: var(--coral-dark); }
.btn-light { color: var(--ink); background: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 9px; padding-bottom: 3px; border-bottom: 1px solid currentColor; color: var(--green); font-weight: 700; }
.text-link.dark { color: var(--ink); }
.hero-note { display: flex; align-items: center; gap: 9px; margin-top: 27px; color: var(--muted); font-size: 1rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 4px rgba(84, 167, 123, 0.15); }

.product-stage { position: relative; min-height: 560px; padding: 52px 35px 40px; background: var(--ink); box-shadow: var(--shadow); }
.stage-grid { position: absolute; inset: 0; opacity: 0.12; background-image: linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px); background-size: 36px 36px; }
.popup-demo { position: relative; z-index: 2; width: min(100%, 350px); margin: 0 auto; padding: 17px; border: 1px solid #dde5df; border-radius: 17px; background: #fafcf9; box-shadow: 16px 20px 0 rgba(0, 0, 0, 0.18); transform: rotate(1.5deg); }
.demo-topbar { display: flex; align-items: center; justify-content: space-between; padding: 2px 2px 15px; font: 700 1rem var(--font-heading); }
.demo-brand { display: flex; align-items: center; gap: 9px; }
.demo-brand img { width: 25px; height: 25px; border-radius: 6px; }
.demo-gear { color: #7a8881; letter-spacing: 2px; }
.demo-card { display: grid; grid-template-columns: 20px 1fr; gap: 8px; margin-bottom: 9px; padding: 12px; border: 1px solid #d8e1da; border-radius: 10px; background: var(--white); }
.demo-grip { color: #a5b0aa; }
.demo-card div { display: flex; flex-direction: column; }
.demo-card strong { margin-bottom: 3px; font-size: 0.9rem; }
.demo-card span { color: #66766e; font-size: 0.9rem; }
.demo-query { margin-top: 12px; padding: 11px 12px; border-left: 3px solid var(--coral); background: #eef5f0; }
.demo-query small { display: block; margin-bottom: 5px; color: #62726a; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.demo-query code { display: block; overflow: hidden; color: var(--ink); font: 700 0.86rem/1.55 var(--font-mono); }
.demo-search { width: 100%; margin-top: 12px; padding: 10px 14px; border: 0; border-radius: 9px; color: var(--white); background: var(--green); font-weight: 700; }
.stage-stamp { position: absolute; z-index: 3; right: -28px; bottom: 32px; padding: 15px 20px; border: 1px solid var(--ink); background: var(--coral); color: var(--ink-deep); font: 600 0.88rem/1.4 var(--font-mono); transform: rotate(-4deg); }
.stage-stamp strong { font-size: 1.08rem; }

.use-cases { border-block: 1px solid var(--line); background: var(--paper); }
.use-case-row { display: flex; min-height: 86px; align-items: center; justify-content: space-between; gap: 24px; }
.use-case-row span { color: var(--green); font: 700 0.88rem var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; }
.use-case-row p { color: #52655d; font-size: 1.04rem; }

.how-section { padding: 120px 0; }
.split-heading { display: grid; grid-template-columns: 0.45fr 1.2fr 0.75fr; gap: 45px; align-items: start; }
.split-heading p:last-child { padding-top: 8px; color: var(--muted); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 68px; border: 1px solid var(--line); }
.step { position: relative; min-height: 340px; padding: 32px; border-right: 1px solid var(--line); background: var(--white); }
.step:last-child { border-right: 0; }
.step-featured { color: var(--white); background: var(--green); transform: translateY(-16px); box-shadow: 0 18px 40px rgba(47, 114, 83, .18); }
.step-number { position: absolute; top: 24px; right: 27px; color: #75867e; font: 700 0.84rem var(--font-mono); }
.step-featured .step-number { color: #b4d8c3; }
.step-mark { display: grid; width: 68px; height: 68px; margin: 36px 0 50px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--coral); font: 700 1.2rem var(--font-mono); }
.step-featured .step-mark { border-color: rgba(255,255,255,.35); color: #ffd4ca; }
.step h3 { margin-bottom: 13px; }
.step p { color: var(--muted); font-size: 1.06rem; }
.step-featured p { color: rgba(255,255,255,.78); }

.operator-section { padding: 120px 0; color: var(--white); background: var(--ink-deep); }
.operator-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 90px; }
.operator-copy { position: sticky; top: 120px; align-self: start; }
.operator-copy h2 { margin-bottom: 26px; }
.operator-copy > p:not(.kicker) { max-width: 470px; margin-bottom: 31px; color: #aac0b6; }
.operator-copy .text-link { color: #b7d7c4; }
.operator-list { border-top: 1px solid rgba(255,255,255,.2); }
.operator-list > div { display: grid; grid-template-columns: 135px 1fr 1fr; align-items: center; gap: 20px; min-height: 75px; border-bottom: 1px solid rgba(255,255,255,.15); }
.operator-list code { color: #ff9b87; font: 700 0.94rem var(--font-mono); }
.operator-list span { font-family: var(--font-heading); font-weight: 700; }
.operator-list small { color: #a6b9b0; font-size: 0.94rem; }

.control-section { padding: 120px 0; background: var(--mint-light); }
.control-grid { display: grid; grid-template-columns: 1fr 0.85fr; align-items: center; gap: 110px; }
.control-visual { position: relative; min-height: 470px; padding: 72px 55px; border: 1px solid #bcd5c6; background: var(--mint); }
.control-visual::after { content: ''; position: absolute; inset: 28px; border: 1px dashed rgba(47, 114, 83, 0.26); pointer-events: none; }
.order-card { position: relative; z-index: 2; display: grid; grid-template-columns: 25px 1fr 28px; align-items: center; width: 82%; min-height: 75px; margin-bottom: 15px; padding: 15px 18px; border: 1px solid var(--line); background: var(--white); box-shadow: 0 12px 24px rgba(35, 83, 61, .1); }
.order-card span { color: #9caaa3; }
.order-card strong { font-family: var(--font-heading); }
.order-card em { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 50%; color: var(--green); background: var(--mint); font: normal 700 0.82rem var(--font-mono); }
.order-two { margin-left: 9%; }
.order-three { margin-left: 18%; }
.control-visual > p { position: relative; z-index: 2; margin-top: 30px; color: var(--green); font: 700 0.86rem var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; }
.control-copy h2 { margin-bottom: 26px; }
.control-copy > p:not(.kicker) { color: var(--muted); }
.check-list { display: grid; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; font-weight: 600; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--coral); font-weight: 800; }

.final-cta { padding: 100px 0; color: var(--white); background: var(--green); }
.final-cta-inner { display: grid; grid-template-columns: 1fr .75fr; align-items: end; gap: 100px; }
.final-cta h2 { font-size: clamp(2.8rem, 5.3vw, 5rem); }
.final-cta-inner > div:last-child > p { max-width: 470px; margin-bottom: 28px; color: #cce2d4; font-size: 1.1rem; }

.footer { position: relative; overflow: hidden; padding: 82px 0 30px; color: #c8d6cf; background: var(--ink-deep); }
.footer::after { content: ''; position: absolute; right: -110px; bottom: -180px; width: 430px; height: 430px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.018); pointer-events: none; }
.footer-main { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(260px, 1.05fr) 1.45fr; gap: clamp(60px, 10vw, 140px); align-items: start; padding-bottom: 68px; }
.footer-lockup { max-width: 370px; }
.footer-brand { color: var(--white); font-size: 1.38rem; }
.footer-brand img { width: 42px; height: 42px; border-radius: 11px; }
.footer-tagline { max-width: 320px; margin-top: 21px; color: #a4bab0; font-size: 1.08rem; line-height: 1.6; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px; }
.footer-column { display: grid; align-content: start; gap: 12px; }
.footer-heading { margin-bottom: 7px; color: #8aa397; font: 700 .9rem/1.2 var(--font-mono); letter-spacing: .11em; text-transform: uppercase; }
.footer-column a { width: fit-content; color: #d4ded9; font-size: 1.02rem; }
.footer-column a:hover { color: var(--white); text-decoration: underline; text-decoration-color: var(--coral); text-underline-offset: 5px; }
.footer-bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 25px; padding-top: 27px; border-top: 1px solid rgba(255,255,255,.14); color: #90a69b; font-size: .94rem; }
.footer-note { display: inline-flex; align-items: center; gap: 10px; }
.footer-note::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }

/* Shared inner pages */
section { padding: 90px 0; }
.bg-alt { background: var(--mint-light); }
.page-hero { padding: 88px 0; text-align: center; color: var(--white); background: var(--ink); }
.page-hero h1 { margin-bottom: 16px; font-size: clamp(2.6rem, 5vw, 4.8rem); }
.page-hero p { color: #bdd3c8; font-size: 1.1rem; }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { margin-bottom: 18px; }
.section-head p, .muted { color: var(--muted); }
.center { text-align: center; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.card { padding: 28px; border: 1px solid var(--line); background: var(--white); }
.card .op, .op { display: inline-block; margin-bottom: 32px; padding: 6px 10px; color: var(--green); background: var(--mint-light); font: 700 .88rem var(--font-mono); }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 1.05rem; }
.group-label { margin: 34px 0 14px; color: var(--green); font: 700 .86rem var(--font-mono); letter-spacing: .1em; text-transform: uppercase; }
.prose { max-width: 760px; }
.prose p { margin-bottom: 1.25rem; }
.prose h2 { margin: 2.8rem 0 1rem; font-size: 2rem; }
.prose h3 { margin: 2rem 0 .8rem; font-size: 1.25rem; }
.prose li { margin-bottom: .55rem; }
.prose a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.spec-list { max-width: 900px; margin: auto; border-top: 1px solid var(--line); }
.spec-row { display: grid; grid-template-columns: 220px 1fr; gap: 35px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.spec-name { font-family: var(--font-heading); font-weight: 700; }
.spec-desc { color: var(--muted); }
.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.audience-item { padding-top: 22px; border-top: 3px solid var(--green); }
.audience-item p { color: var(--muted); }
.cta-band { padding: 50px 30px; text-align: center; color: var(--white); background: var(--green); }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { margin: 0 auto 25px; color: #d5e9dc; }
.faq-list { max-width: 820px; margin: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; border: 0; color: var(--ink); background: transparent; text-align: left; font-family: var(--font-heading); font-size: 1.16rem; font-weight: 700; cursor: pointer; }
.faq-q .chev { color: var(--coral); font-size: 1.4rem; transition: transform 180ms ease; }
.faq-item.open .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 260ms ease; }
.faq-a-inner { padding: 0 45px 24px 0; color: var(--muted); }
.form-card { max-width: 650px; margin: auto; padding: 35px; border: 1px solid var(--line); background: var(--white); }
.field { margin-bottom: 20px; }
.field label { display: block; margin-bottom: 6px; font-weight: 700; }
.field input, .field textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 7px; color: var(--ink); background: var(--cream); }
.field input:focus, .field textarea:focus { outline: 3px solid rgba(84,167,123,.2); border-color: var(--green); }
.field textarea { min-height: 150px; resize: vertical; }
.overlay { position: fixed; z-index: 100; inset: 0; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(9,37,27,.72); }
.overlay.show { display: flex; }
.overlay-box { max-width: 430px; padding: 38px; text-align: center; background: var(--white); }
.overlay-box .check { display: grid; width: 58px; height: 58px; margin: 0 auto 18px; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); }
/* install and removal lifecycle pages */
.lifecycle-hero { position: relative; overflow: hidden; padding: clamp(82px, 10vw, 130px) 0; background: var(--cream); }
.lifecycle-hero::after { content: ''; position: absolute; top: -160px; right: -130px; width: 480px; height: 480px; border: 1px solid rgba(47,114,83,.13); border-radius: 50%; box-shadow: 0 0 0 65px rgba(47,114,83,.035), 0 0 0 130px rgba(47,114,83,.025); pointer-events: none; }
.lifecycle-success { background: linear-gradient(90deg, var(--cream) 0 62%, #e7f2e9 62%); }
.lifecycle-removed { background: linear-gradient(90deg, var(--cream) 0 62%, #f0eae2 62%); }
.lifecycle-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(370px, .78fr); gap: clamp(60px, 9vw, 120px); align-items: center; }
.lifecycle-copy h1 { max-width: 760px; margin-bottom: 28px; font-size: clamp(3rem, 6vw, 5.6rem); }
.lifecycle-copy > p:not(.lifecycle-status) { max-width: 650px; color: var(--muted); font-size: 1.2rem; }
.lifecycle-status { display: flex; align-items: center; gap: 11px; width: fit-content; margin-bottom: 24px; color: var(--green); font: 700 .88rem var(--font-mono); letter-spacing: .08em; text-transform: uppercase; }
.lifecycle-status span { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); }
.lifecycle-status.removed { color: #765e50; }
.lifecycle-status.removed span { background: #765e50; }
.lifecycle-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 27px; margin-top: 36px; }
.ready-card, .removed-card { padding: 27px; border: 1px solid #cdd9d1; background: var(--white); box-shadow: 15px 18px 0 rgba(18,50,39,.1); }
.ready-card-head { display: grid; grid-template-columns: 48px 1fr 34px; gap: 14px; align-items: center; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.ready-card-head img { width: 48px; height: 48px; border-radius: 11px; }
.ready-card-head > div { display: grid; }
.ready-card-head span { color: var(--muted); font-size: .91rem; }
.ready-card-head b { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); }
.ready-card ol { display: grid; gap: 0; margin: 0; padding: 7px 0 0; list-style: none; }
.ready-card li { display: grid; grid-template-columns: 36px 1fr; gap: 13px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.ready-card li:last-child { border-bottom: 0; }
.ready-card li > span { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; color: var(--green); background: var(--mint); font: 700 .8rem var(--font-mono); }
.ready-card li div { display: grid; }
.ready-card li strong { font-family: var(--font-heading); }
.ready-card li small { color: var(--muted); font-size: .9rem; }
.first-search-section { background: var(--paper); }
.lifecycle-heading { max-width: 760px; }
.first-search-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.first-search-grid article { position: relative; min-height: 320px; padding: 34px; border-right: 1px solid var(--line); background: var(--white); }
.first-search-grid article:last-child { border-right: 0; }
.first-search-number { position: absolute; top: 28px; right: 29px; color: #82928a; font: 700 .82rem var(--font-mono); }
.first-search-grid code { display: inline-block; margin: 58px 0 34px; padding: 7px 10px; color: var(--green); background: var(--mint-light); font: 700 .88rem var(--font-mono); }
.first-search-grid h3 { margin-bottom: 13px; }
.first-search-grid p { color: var(--muted); }
.lifecycle-help-row { display: flex; align-items: center; justify-content: space-between; gap: 35px; margin-top: 42px; padding: 27px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lifecycle-help-row > div { display: flex; align-items: center; gap: 15px; }
.lifecycle-help-row img { width: 43px; height: 43px; border-radius: 10px; }
.lifecycle-help-row span { display: grid; }
.lifecycle-help-row strong { font-family: var(--font-heading); }
.lifecycle-help-row small { color: var(--muted); font-size: .92rem; }
.removed-card { text-align: center; }
.removed-icon { position: relative; width: fit-content; margin: 4px auto 26px; }
.removed-icon img { width: 104px; height: 104px; border-radius: 25px; filter: grayscale(.45); opacity: .68; }
.removed-icon span { position: absolute; right: -9px; bottom: -7px; display: grid; width: 38px; height: 38px; place-items: center; border: 4px solid var(--white); border-radius: 50%; color: var(--white); background: #765e50; font-weight: 800; }
.removed-card .kicker { margin-bottom: 12px; }
.removed-card h2 { margin-bottom: 13px; font-size: 2rem; }
.removed-card > p:not(.kicker) { color: var(--muted); }
.removed-rule { display: flex; align-items: center; gap: 14px; margin-top: 25px; color: #765e50; font: 700 .82rem var(--font-mono); text-transform: uppercase; }
.removed-rule span { flex: 1; height: 2px; background: #d8cbc1; }
.departure-section { background: var(--mint-light); }
.departure-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: start; }
.departure-copy { position: sticky; top: 120px; }
.departure-copy h2 { max-width: 520px; margin-bottom: 22px; }
.departure-copy > p:not(.kicker) { max-width: 520px; margin-bottom: 27px; color: var(--muted); }
.departure-notes { border-top: 1px solid var(--line); }
.departure-notes > div { display: grid; grid-template-columns: 55px 1fr; gap: 4px 18px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.departure-notes span { grid-row: 1 / 3; color: var(--coral); font: 700 .86rem var(--font-mono); }
.departure-notes strong { font-family: var(--font-heading); font-size: 1.15rem; }
.departure-notes p { color: var(--muted); }
/* uninstall guide */
.page-hero .page-kicker { margin-bottom: 18px; color: #9ec9af; font: 700 .88rem/1.2 var(--font-mono); letter-spacing: .11em; text-transform: uppercase; }
.uninstall-guide { background: var(--cream); }
.uninstall-shell { display: grid; gap: 76px; }
.uninstall-intro { display: grid; grid-template-columns: 1fr .9fr; gap: 70px; align-items: center; padding: 48px; border: 1px solid #bcd5c6; background: var(--mint); }
.uninstall-intro h2 { max-width: 560px; margin-bottom: 18px; font-size: clamp(2rem, 3.5vw, 3.2rem); }
.uninstall-intro > div:first-child > p:last-child { max-width: 610px; color: var(--muted); }
.browser-address { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 8px 14px; padding: 22px 25px; border: 1px solid var(--line); background: var(--white); box-shadow: 10px 12px 0 rgba(47,114,83,.1); }
.browser-address > span { grid-row: 1 / 3; display: grid; width: 43px; height: 43px; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); font-size: 1.35rem; }
.browser-address code { color: var(--ink); font: 700 1.15rem var(--font-mono); }
.browser-address small { color: var(--muted); font-size: .9rem; }
.uninstall-steps { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.uninstall-step { display: grid; grid-template-columns: 70px minmax(0, 1fr) minmax(260px, .75fr); gap: 35px; align-items: center; min-height: 250px; padding: 42px 0; border-bottom: 1px solid var(--line); }
.uninstall-number { align-self: start; padding-top: 4px; color: var(--coral); font: 700 .96rem var(--font-mono); }
.uninstall-label { margin-bottom: 11px; color: var(--green); font: 700 .86rem var(--font-mono); letter-spacing: .09em; text-transform: uppercase; }
.uninstall-copy h3 { max-width: 600px; margin-bottom: 16px; font-size: clamp(1.5rem, 2.5vw, 2.15rem); }
.uninstall-copy > p:last-child { max-width: 660px; color: var(--muted); }
.uninstall-copy code { padding: 2px 6px; color: var(--green); background: var(--mint); font: 700 .92em var(--font-mono); }
.uninstall-action { display: grid; grid-template-columns: 48px 1fr; gap: 2px 13px; align-items: center; padding: 22px; border: 1px solid var(--line); background: var(--white); }
.action-icon { grid-row: 1 / 3; display: grid; width: 48px; height: 48px; place-items: center; color: var(--green); background: var(--mint); font-size: 1.25rem; }
.uninstall-action span:not(.action-icon) { color: var(--muted); font-size: .9rem; }
.uninstall-action strong { font-family: var(--font-heading); font-size: 1rem; }
.extension-row-demo { display: grid; grid-template-columns: 48px 1fr auto; gap: 14px; align-items: center; padding: 20px; border: 1px solid var(--line); background: var(--white); box-shadow: 8px 9px 0 rgba(18,50,39,.07); }
.extension-row-demo img { width: 48px; height: 48px; border-radius: 11px; }
.extension-row-demo > span { display: grid; }
.extension-row-demo strong { font-family: var(--font-heading); }
.extension-row-demo small { color: var(--muted); }
.extension-row-demo b { color: var(--muted); letter-spacing: 2px; }
.remove-demo { display: flex; align-items: center; gap: 15px; padding: 21px; color: var(--white); background: var(--green); }
.remove-demo > span { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; font-weight: 800; }
.remove-demo div { display: grid; }
.remove-demo small { color: #cce2d4; }
.remove-demo strong { font-family: var(--font-heading); font-size: 1.15rem; }
.shortcut-panel { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; padding: 54px; color: var(--white); background: var(--ink); }
.shortcut-panel h2 { margin-bottom: 14px; }
.shortcut-panel > div:first-child > p:last-child { color: #afc4ba; }
.shortcut-list { display: grid; gap: 15px; }
.shortcut-list > div { display: flex; align-items: center; gap: 9px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.16); }
.shortcut-list span { width: 90px; color: #b8cbc2; }
.shortcut-list kbd { min-width: 44px; padding: 8px 11px; border: 1px solid rgba(255,255,255,.3); border-bottom-width: 3px; border-radius: 7px; color: var(--white); background: rgba(255,255,255,.08); text-align: center; font: 700 .86rem var(--font-mono); }
.shortcut-list b { color: #6f9181; font-weight: 500; }
.uninstall-help { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 38px 0 6px; border-top: 1px solid var(--line); }
.uninstall-help > div { display: flex; align-items: center; gap: 20px; }
.help-mark { display: grid; flex: 0 0 auto; width: 54px; height: 54px; place-items: center; border-radius: 50%; color: var(--white); background: var(--coral); font: 800 1.35rem var(--font-heading); }
.uninstall-help h2 { margin-bottom: 7px; font-size: 1.45rem; }
.uninstall-help p { max-width: 680px; color: var(--muted); }
.uninstall-links { display: flex; flex: 0 0 auto; gap: 24px; }
.hidden { display: none; }

.cookie-banner { position: fixed; z-index: 200; right: 18px; bottom: 18px; display: none; width: min(460px, calc(100% - 36px)); align-items: center; gap: 18px; padding: 18px; border: 1px solid #345546; color: var(--white); background: var(--ink-deep); box-shadow: var(--shadow); }
.cookie-banner.show { display: flex; }
.cookie-banner p { flex: 1; color: #d5e0da; font-size: .94rem; line-height: 1.5; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button { padding: 8px 12px; border: 1px solid #6d887b; color: var(--white); background: transparent; cursor: pointer; }
.cookie-actions .cookie-accept { border-color: var(--coral); background: var(--coral); }

@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .nav-links { position: absolute; top: 74px; left: 0; right: 0; display: none; align-items: stretch; gap: 0; padding: 12px 20px 20px; border-bottom: 1px solid var(--line); background: var(--paper); }
  .nav-links.open { display: flex; flex-direction: column; }
  .nav-links a { display: block; padding: 12px 0; }
  .nav-links .nav-cta { margin-top: 6px; padding: 11px 14px; text-align: center; }
  .hero-grid, .operator-layout, .control-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .product-stage { width: min(100%, 580px); margin: auto; }
  .use-case-row { flex-wrap: wrap; justify-content: flex-start; padding-block: 22px; }
  .use-case-row span { flex-basis: 100%; }
  .split-heading { grid-template-columns: 1fr; gap: 15px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .step-featured { transform: none; }
  .step-mark { margin: 25px 0 30px; }
  .operator-copy { position: static; }
  .control-grid { gap: 60px; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-main { grid-template-columns: 1fr; gap: 48px; }
  .lifecycle-grid { grid-template-columns: 1fr; }
  .lifecycle-success, .lifecycle-removed { background: var(--cream); }
  .ready-card, .removed-card { width: min(100%, 560px); }
  .first-search-grid { grid-template-columns: 1fr; }
  .first-search-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .first-search-grid article:last-child { border-bottom: 0; }
  .departure-grid { grid-template-columns: 1fr; gap: 50px; }
  .departure-copy { position: static; }
  .uninstall-intro, .shortcut-panel { grid-template-columns: 1fr; gap: 35px; }
  .uninstall-step { grid-template-columns: 50px 1fr; }
  .uninstall-step > :last-child { grid-column: 2; }
}

@media (max-width: 620px) {
  body { font-size: 17px; }
  .wrap { width: min(100% - 28px, var(--maxw)); }
  .hero { padding: 65px 0 70px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .product-stage { min-height: 500px; padding: 38px 16px; }
  .popup-demo { transform: none; }
  .stage-stamp { right: -5px; bottom: 18px; }
  .how-section, .operator-section, .control-section, .final-cta, section { padding: 75px 0; }
  .operator-list > div { grid-template-columns: 105px 1fr; }
  .operator-list small { display: none; }
  .control-visual { min-height: 395px; padding: 60px 26px; }
  .order-card { width: 90%; }
  .order-two { margin-left: 5%; }
  .order-three { margin-left: 10%; }
  .spec-row { grid-template-columns: 1fr; gap: 8px; }
  .audience { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; gap: 9px; }
  .uninstall-shell { gap: 55px; }
  .uninstall-intro, .shortcut-panel { padding: 30px 24px; }
  .uninstall-step { grid-template-columns: 1fr; gap: 18px; padding: 35px 0; }
  .uninstall-step > :last-child { grid-column: 1; }
  .uninstall-number { padding: 0; }
  .shortcut-list > div { flex-wrap: wrap; }
  .shortcut-list span { flex-basis: 100%; width: auto; }
  .uninstall-help { align-items: flex-start; flex-direction: column; }
  .uninstall-links { align-items: flex-start; flex-direction: column; gap: 14px; }
  .lifecycle-help-row { align-items: flex-start; flex-direction: column; }
  .cookie-banner { align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
