:root {
  --ink: #07111f;
  --ink-soft: #0b1727;
  --panel: #0e1d30;
  --panel-raised: #13253a;
  --paper: #f4f1e9;
  --paper-bright: #fbfaf6;
  --text: #f4f7fb;
  --muted: #9fb0c4;
  --dark-text: #102033;
  --dark-muted: #59697a;
  --blue: #4c9dff;
  --blue-strong: #177be8;
  --gold: #ffc94d;
  --green: #59d890;
  --red: #ff7676;
  --line: rgba(255, 255, 255, .11);
  --dark-line: rgba(16, 32, 51, .13);
  --shadow: 0 30px 80px rgba(0, 0, 0, .28);
  --radius: 22px;
  --shell: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::selection { color: var(--ink); background: var(--gold); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }
.page-shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.section { padding: 110px 0; }
.skip-link { position: fixed; z-index: 999; left: 16px; top: -80px; padding: 10px 16px; color: var(--ink); background: var(--gold); font-weight: 800; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.03; letter-spacing: -.04em; }
h1 { margin-bottom: 26px; font-size: clamp(3.8rem, 7vw, 6.8rem); font-weight: 850; }
h2 { margin-bottom: 22px; font-size: clamp(2.7rem, 5vw, 5rem); font-weight: 820; }
h3 { font-size: 1.45rem; }
h1 em, h2 em { color: var(--gold); font-style: normal; }
.section-heading { max-width: 760px; margin-bottom: 50px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading > p:last-child, .section-copy > p, .setup-copy > p, .support-card > div > p { color: var(--muted); font-size: 1.06rem; }
.small-note, .risk-note { color: var(--muted); font-size: .76rem; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 31, .88);
  backdrop-filter: blur(20px);
}
.nav-shell { width: min(calc(100% - 40px), var(--shell)); min-height: 78px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: .04em; }
.brand img { width: 46px; height: 46px; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .35)); }
.brand strong { color: var(--gold); }
#main-nav { display: flex; align-items: center; gap: 30px; }
#main-nav a { color: #c2cedb; font-size: .84rem; font-weight: 750; transition: color .2s ease; }
#main-nav a:hover { color: #fff; }
#main-nav .nav-discord { padding: 9px 12px; border: 1px solid rgba(88, 101, 242, .5); border-radius: 8px; color: #dfe2ff; background: rgba(88, 101, 242, .14); }
#main-nav .nav-discord:hover { border-color: #7884ff; background: rgba(88, 101, 242, .25); }
#main-nav .nav-buy { padding: 12px 18px; border-radius: 9px; color: var(--ink); background: var(--gold); }
.menu-button { display: none; color: var(--text); border: 1px solid var(--line); background: transparent; border-radius: 8px; padding: 8px 12px; font-weight: 800; }

.hero { position: relative; min-height: 760px; padding: 105px 0 80px; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .3; 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: 48px 48px; mask-image: linear-gradient(to bottom, black, transparent 88%); }
.hero-glow { position: absolute; width: 560px; height: 560px; border-radius: 50%; filter: blur(120px); opacity: .16; }
.hero-glow-one { right: 4%; top: 4%; background: var(--blue); }
.hero-glow-two { left: -260px; bottom: -300px; background: var(--gold); }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr); align-items: center; gap: 72px; }
.status-pill { width: fit-content; margin-bottom: 26px; padding: 8px 13px; border: 1px solid rgba(89, 216, 144, .25); border-radius: 999px; color: #b9efd0; background: rgba(89,216,144,.08); font-size: .76rem; font-weight: 800; }
.status-pill i, .live-badge i { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(89,216,144,.12); }
.hero-lead { max-width: 650px; margin-bottom: 30px; color: #b3c1d0; font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 14px; padding: 0 22px; border: 1px solid transparent; border-radius: 10px; cursor: pointer; font-size: .84rem; font-weight: 900; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--gold); box-shadow: 0 12px 28px rgba(255,201,77,.15); }
.button-primary:hover { background: #ffd66f; box-shadow: 0 16px 34px rgba(255,201,77,.23); }
.button-secondary { color: var(--text); border-color: var(--line); background: rgba(255,255,255,.04); }
.button-secondary:hover { background: rgba(255,255,255,.08); }
.button:disabled { cursor: not-allowed; filter: grayscale(.5); opacity: .48; transform: none; }
.hero-trust { display: flex; gap: 28px; margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust b { font-size: .9rem; }
.hero-trust span { color: var(--muted); font-size: .72rem; }
.risk-note { margin: 20px 0 0; }

.product-window { overflow: hidden; border: 1px solid rgba(93, 171, 255, .26); border-radius: 18px; background: #0a1625; box-shadow: 0 40px 100px rgba(0,0,0,.42); transform: perspective(1200px) rotateY(-2deg); }
.window-bar { min-height: 46px; display: flex; align-items: center; gap: 7px; padding: 0 16px; border-bottom: 1px solid var(--line); color: #8294a8; font-size: .67rem; text-transform: uppercase; letter-spacing: .1em; }
.window-bar > span { width: 8px; height: 8px; border-radius: 50%; background: #425b74; }
.window-bar b { margin-left: 8px; }
.window-bar em { margin-left: auto; color: var(--green); font-style: normal; font-weight: 800; }
.product-shot { position: relative; min-height: 365px; overflow: hidden; background: #091320; }
.product-shot img { width: 100%; height: 100%; min-height: 365px; object-fit: cover; object-position: center; }
.shot-fade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,17,31,.72), transparent 40%); }
.live-badge { position: absolute; top: 18px; right: 18px; padding: 8px 12px; border: 1px solid rgba(89,216,144,.22); border-radius: 7px; background: rgba(7,17,31,.88); color: #c9f6dc; font-size: .68rem; font-weight: 850; text-transform: uppercase; }
.product-proof { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.product-proof div { min-height: 82px; padding: 16px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.product-proof div:last-child { border: 0; }
.product-proof span { color: var(--blue); font-size: .58rem; font-weight: 900; letter-spacing: .12em; }
.product-proof b { margin-top: 4px; font-size: .75rem; }

.confidence-bar { position: relative; z-index: 2; border-block: 1px solid var(--line); background: #091523; }
.confidence-bar .page-shell { min-height: 76px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.confidence-bar span { padding: 0 20px; color: #b8c5d3; border-right: 1px solid var(--line); font-size: .78rem; font-weight: 750; }
.confidence-bar span:first-child { padding-left: 0; }
.confidence-bar span:last-child { border: 0; }
.confidence-bar b { margin-right: 10px; color: var(--gold); }

.proof-section { background: var(--paper); color: var(--dark-text); }
.proof-grid, .instance-grid, .setup-grid, .faq-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 80px; }
.proof-section .section-copy > p, .pricing-section .section-heading > p:last-child, .faq-section .section-heading > p:last-child { color: var(--dark-muted); }
.clean-list { padding: 0; margin: 28px 0; list-style: none; }
.clean-list li { padding: 8px 0; font-weight: 750; }
.clean-list span { margin-right: 10px; color: #16864b; }
.text-link { display: inline-flex; gap: 8px; color: var(--blue-strong); font-size: .86rem; font-weight: 850; border-bottom: 1px solid currentColor; }
.video-card { overflow: hidden; border: 1px solid var(--dark-line); border-radius: var(--radius); background: #fff; box-shadow: 0 25px 70px rgba(15,32,51,.13); }
.video-label { padding: 14px 18px; font-size: .7rem; font-weight: 900; letter-spacing: .12em; }
.video-label i { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: #f04444; }
.video-card iframe { width: 100%; aspect-ratio: 16 / 9; display: block; border: 0; background: #05090e; }
.video-footer { display: flex; justify-content: space-between; gap: 10px; padding: 14px 18px; color: var(--dark-muted); font-size: .68rem; font-weight: 750; }

.product-section { background: var(--ink); }
.attack-demo-card { margin-bottom: 18px; display: grid; grid-template-columns: .72fr 1.28fr; align-items: stretch; overflow: hidden; border: 1px solid rgba(76,157,255,.3); border-radius: 20px; background: linear-gradient(120deg, rgba(76,157,255,.1), rgba(255,255,255,.025)); box-shadow: 0 26px 70px rgba(0,0,0,.22); }
.attack-demo-copy { padding: 36px; display: flex; align-items: flex-start; justify-content: center; flex-direction: column; }
.demo-kicker { color: #baf1cf; font-size: .65rem; font-weight: 900; letter-spacing: .13em; }
.demo-kicker i { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(89,216,144,.11); }
.attack-demo-copy h3 { margin: 22px 0 14px; font-size: clamp(1.7rem, 3vw, 2.7rem); }
.attack-demo-copy p { color: var(--muted); font-size: .86rem; }
.attack-demo-copy .text-link { margin-top: 8px; color: #80b9ff; }
.attack-video-wrap { min-height: 380px; background: #03070c; }
.attack-video-wrap iframe { width: 100%; height: 100%; min-height: 380px; display: block; border: 0; }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.bento-card { position: relative; min-height: 280px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); }
.bento-card:hover { border-color: rgba(76,157,255,.35); }
.bento-card.bento-wide { min-height: 360px; grid-column: span 2; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 24px; }
.bento-card.bento-wide img { width: 100%; height: 270px; object-fit: cover; border: 1px solid var(--line); border-radius: 12px; }
.feature-number { color: #6b7f94; font-size: .68rem; font-weight: 900; letter-spacing: .14em; }
.bento-card h3 { margin: 30px 0 14px; }
.bento-card p { color: var(--muted); font-size: .9rem; }
.bento-wide h3 { margin-top: 18px; font-size: 2rem; }
.feature-icon { width: 48px; height: 48px; margin-top: 30px; display: grid; place-items: center; border-radius: 12px; color: var(--gold); background: rgba(255,201,77,.09); font-size: 1.5rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-row span { padding: 5px 8px; border: 1px solid var(--line); border-radius: 5px; color: #aebdcb; font-size: .64rem; }

.instance-section { background: #091523; }
.instance-grid { grid-template-columns: 1.1fr .9fr; }
.instance-visual { padding: 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink-soft); box-shadow: var(--shadow); }
.instance-visual > img { width: 100%; height: 330px; object-fit: cover; border-radius: 12px; }
.instance-tabs { display: flex; gap: 5px; margin-top: 12px; overflow: hidden; }
.instance-tabs span { padding: 9px 12px; white-space: nowrap; border: 1px solid var(--line); border-radius: 6px 6px 0 0; color: var(--muted); font-size: .66rem; font-weight: 750; }
.instance-tabs .active { color: #fff; background: var(--blue-strong); }
.instance-status { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.instance-status div { padding: 12px; display: grid; grid-template-columns: auto 1fr; column-gap: 8px; border-right: 1px solid var(--line); }
.instance-status div:last-child { border: 0; }
.instance-status i { width: 7px; height: 7px; margin-top: 6px; grid-row: span 2; border-radius: 50%; background: var(--green); }
.instance-status b { font-size: .7rem; }
.instance-status span { color: var(--muted); font-size: .62rem; }
.instance-features { margin: 32px 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.instance-features div { padding: 16px; border-left: 2px solid var(--blue); background: rgba(255,255,255,.035); }
.instance-features b, .instance-features span { display: block; }
.instance-features b { font-size: .88rem; }
.instance-features span { color: var(--muted); font-size: .7rem; }

.workflow-section { color: var(--dark-text); background: var(--paper-bright); }
.workflow-section .section-heading { margin-bottom: 40px; }
.workflow { padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-block: 1px solid var(--dark-line); }
.workflow li { min-height: 220px; padding: 30px; border-right: 1px solid var(--dark-line); }
.workflow li:last-child { border: 0; }
.workflow > li > span { color: var(--blue-strong); font-size: .7rem; font-weight: 900; }
.workflow h3 { margin: 62px 0 10px; font-size: 1.2rem; }
.workflow p { color: var(--dark-muted); font-size: .8rem; }

.setup-section { background: var(--ink); }
.setup-grid { grid-template-columns: 1fr 1fr; }
.requirement-grid { margin: 30px 0; display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.requirement-grid div { min-height: 115px; padding: 20px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.requirement-grid div:nth-child(2n) { border-right: 0; }
.requirement-grid div:nth-last-child(-n+2) { border-bottom: 0; }
.requirement-grid span { color: var(--blue); font-size: .62rem; font-weight: 900; letter-spacing: .1em; }
.requirement-grid b { margin-top: 8px; }
.requirement-grid small { color: var(--muted); }
.setup-panel { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); box-shadow: var(--shadow); }
.setup-panel-top { padding: 22px; display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); }
.setup-panel-top div { display: flex; flex-direction: column; }
.setup-panel-top small { color: var(--blue); font-size: .6rem; font-weight: 900; letter-spacing: .12em; }
.setup-panel-top > span { margin-left: auto; padding: 7px 10px; border-radius: 7px; color: #bdf0d1; background: rgba(89,216,144,.1); font-size: .7rem; font-weight: 850; }
.setup-panel ul { padding: 0; margin: 0; list-style: none; }
.setup-panel li { padding: 17px 22px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); }
.setup-panel li:last-child { border: 0; }
.setup-panel li > i { width: 10px; height: 10px; border: 2px solid var(--green); border-radius: 50%; }
.setup-panel li span { display: flex; flex-direction: column; }
.setup-panel li b { font-size: .82rem; }
.setup-panel li small { color: var(--muted); }
.setup-panel li em { color: var(--green); font-size: .62rem; font-style: normal; font-weight: 900; }

.release-section { padding-top: 0; }
.release-card { padding: 36px 42px; display: flex; align-items: center; justify-content: space-between; gap: 40px; border: 1px solid rgba(76,157,255,.24); border-radius: var(--radius); background: linear-gradient(100deg, rgba(76,157,255,.12), rgba(255,255,255,.025)); }
.release-card > div:first-child { max-width: 760px; }
.release-title { display: flex; align-items: center; gap: 16px; }
.release-title > span { padding: 8px 12px; border-radius: 8px; color: var(--ink); background: var(--gold); font-weight: 900; }
.release-title h2 { margin: 0; font-size: 2rem; }
.release-card p { margin: 16px 0 0; color: var(--muted); }
.release-actions { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 12px; }

.pricing-section { color: var(--dark-text); background: var(--paper); }
.pricing-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.currency-picker { min-width: 250px; display: flex; flex-direction: column; gap: 8px; }
.currency-picker span { color: var(--dark-muted); font-size: .65rem; font-weight: 900; letter-spacing: .12em; }
.currency-picker select { width: 100%; height: 48px; padding: 0 14px; border: 1px solid var(--dark-line); border-radius: 9px; color: var(--dark-text); background: #fff; font-weight: 750; }
.pricing-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; align-items: stretch; }
.price-card { position: relative; min-height: 480px; padding: 28px; display: flex; flex-direction: column; grid-column: span 3; border: 1px solid var(--dark-line); border-radius: 16px; background: #fff; box-shadow: 0 12px 34px rgba(15,32,51,.05); }
.price-card.compact-plan { min-height: auto; grid-column: span 12; display: grid; grid-template-columns: 1fr 1fr 2fr 1fr; align-items: center; gap: 24px; }
.price-card.featured { border: 2px solid var(--blue-strong); box-shadow: 0 18px 55px rgba(23,123,232,.15); }
.price-card.lifetime { color: var(--text); border-color: #1b3047; background: var(--ink-soft); }
.plan-label { color: var(--blue-strong); font-size: .65rem; font-weight: 900; letter-spacing: .15em; }
.lifetime .plan-label { color: var(--gold); }
.price-card h3 { margin: 12px 0; }
.price { display: flex; align-items: baseline; gap: 5px; margin: 16px 0; }
.price sup { font-size: 1rem; font-weight: 900; }
.price b { font-size: 3.2rem; line-height: 1; letter-spacing: -.06em; }
.price small { color: var(--dark-muted); font-size: .62rem; font-weight: 850; }
.lifetime .price small, .lifetime > p { color: var(--muted); }
.price-card > p { min-height: 70px; color: var(--dark-muted); font-size: .82rem; }
.price-card ul { padding: 20px 0; margin: 0 0 24px; list-style: none; border-top: 1px solid var(--dark-line); }
.price-card li { padding: 5px 0; color: var(--dark-muted); font-size: .75rem; }
.price-card li::before { content: "\2713"; margin-right: 8px; color: #16864b; font-weight: 900; }
.lifetime ul { border-color: var(--line); }
.lifetime li { color: var(--muted); }
.price-card > .button { width: 100%; margin-top: auto; }
.pricing-section .button-secondary { color: var(--dark-text); border-color: var(--dark-line); background: #f8f9fa; }
.lifetime .button-secondary { color: var(--text); border-color: var(--line); background: rgba(255,255,255,.04); }
.popular { position: absolute; top: -13px; right: 18px; padding: 6px 10px; border-radius: 999px; color: #fff; background: var(--blue-strong); font-size: .56rem; font-weight: 900; letter-spacing: .08em; }
.try-free { margin-top: 16px; padding: 28px; display: flex; justify-content: space-between; align-items: center; gap: 30px; border: 1px solid var(--dark-line); border-radius: 15px; background: var(--paper-bright); }
.try-free h3 { margin: 10px 0 6px; }
.try-free p, .try-free small { margin: 0; color: var(--dark-muted); }
.try-free > div:last-child { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.purchase-assurance { margin-top: 30px; padding: 20px 0; display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--dark-line); }
.purchase-assurance span { text-align: center; color: var(--dark-muted); font-size: .72rem; font-weight: 800; border-right: 1px solid var(--dark-line); }
.purchase-assurance span::before { content: "\2713"; margin-right: 7px; color: #16864b; }
.purchase-assurance span:last-child { border: 0; }
.pricing-risk { max-width: 850px; margin: 24px auto 0; color: var(--dark-muted); text-align: center; font-size: .68rem; }
.pricing-risk a { color: var(--blue-strong); text-decoration: underline; }

.faq-section { color: var(--dark-text); background: var(--paper-bright); }
.faq-grid { grid-template-columns: .72fr 1.28fr; align-items: start; }
.accordion details { border-top: 1px solid var(--dark-line); }
.accordion details:last-child { border-bottom: 1px solid var(--dark-line); }
.accordion summary { padding: 24px 0; display: flex; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-weight: 850; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--blue-strong); font-size: 1.3rem; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 760px; padding: 0 36px 24px 0; margin: 0; color: var(--dark-muted); font-size: .88rem; }

.support-section { background: var(--ink); }
.support-card { padding: 54px; display: grid; grid-template-columns: 1fr .8fr; gap: 70px; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(130deg, var(--panel), var(--ink-soft)); }
.support-card h2 { font-size: clamp(2.5rem, 4vw, 4rem); }
.support-points { display: flex; flex-wrap: wrap; gap: 8px; }
.support-points span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 6px; color: var(--muted); font-size: .68rem; }
.discord-box { position: relative; padding: 28px; display: grid; grid-template-columns: auto 1fr; gap: 16px; overflow: hidden; border: 1px solid rgba(116, 126, 255, .42); border-radius: 16px; background: linear-gradient(140deg, rgba(88,101,242,.22), rgba(255,255,255,.035)); box-shadow: 0 24px 60px rgba(0,0,0,.2); }
.discord-box::before { content: ""; position: absolute; width: 180px; height: 180px; right: -70px; top: -90px; border-radius: 50%; background: #5865f2; filter: blur(70px); opacity: .24; pointer-events: none; }
.discord-box > * { position: relative; z-index: 1; }
.discord-box > div { display: flex; flex-direction: column; justify-content: center; }
.discord-box small { color: var(--blue); font-size: .58rem; font-weight: 900; letter-spacing: .12em; }
.discord-box b { font-size: 1.1rem; }
.discord-box span { color: var(--muted); font-size: .7rem; }
.discord-box .button { margin-top: 20px; grid-column: span 2; }
.discord-float { position: fixed; z-index: 90; right: 22px; bottom: 22px; min-width: 230px; padding: 12px 14px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; border: 1px solid rgba(155,162,255,.52); border-radius: 14px; color: #fff; background: rgba(67,77,205,.94); box-shadow: 0 20px 50px rgba(0,0,0,.38); backdrop-filter: blur(15px); transition: transform .2s ease, background .2s ease; }
.discord-float:hover { transform: translateY(-3px); background: #5865f2; }
.discord-float-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: rgba(255,255,255,.14); font-size: 1.25rem; }
.discord-float > span:nth-child(2) { display: flex; flex-direction: column; line-height: 1.2; }
.discord-float small { color: #cdd1ff; font-size: .55rem; font-weight: 900; letter-spacing: .12em; }
.discord-float b { margin-top: 3px; font-size: .78rem; }
.discord-float em { font-style: normal; }
.final-cta { padding: 55px 0; color: var(--dark-text); background: var(--gold); }
.final-cta .page-shell { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta .eyebrow { color: #795800; }
.final-cta h2 { margin: 0; font-size: clamp(2.3rem, 4vw, 4rem); }
.final-cta h2 em { color: var(--dark-text); }
.final-cta .button-primary { color: #fff; background: var(--ink); box-shadow: none; }

footer { padding: 70px 0 28px; background: #050d17; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 70px; }
.footer-grid > div { display: flex; flex-direction: column; gap: 10px; }
.footer-grid > div:first-child { max-width: 420px; }
.footer-grid p { margin-top: 14px; color: var(--muted); font-size: .8rem; }
.footer-grid b { margin-bottom: 8px; color: #72869b; font-size: .64rem; letter-spacing: .13em; }
.footer-grid a:not(.brand) { color: #a9b7c5; font-size: .78rem; }
.footer-grid a:hover { color: #fff; }
.legal-line { margin-top: 50px; padding-top: 22px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); color: #6f8296; font-size: .64rem; }
.legal-line p { max-width: 700px; margin: 0; text-align: right; }

dialog { width: min(calc(100% - 30px), 620px); max-height: calc(100vh - 30px); padding: 0; overflow: auto; color: var(--dark-text); border: 0; border-radius: 20px; background: var(--paper-bright); box-shadow: 0 40px 100px rgba(0,0,0,.55); }
dialog::backdrop { background: rgba(2, 8, 15, .78); backdrop-filter: blur(8px); }
.checkout-shell { position: relative; padding: 42px; }
.dialog-close { position: absolute; z-index: 2; right: 16px; top: 14px; width: 36px; height: 36px; cursor: pointer; border: 1px solid var(--dark-line); border-radius: 50%; color: var(--dark-text); background: #fff; font-size: 1.3rem; }
.checkout-intro > img { margin-bottom: 20px; }
.checkout-intro h2 { margin-bottom: 8px; font-size: 2.3rem; }
#checkout-plan-copy { color: var(--blue-strong); font-weight: 850; }
.checkout-intro ul { margin: 24px 0; padding: 18px 0; list-style: none; border-block: 1px solid var(--dark-line); }
.checkout-intro li { padding: 5px 0; color: var(--dark-muted); font-size: .8rem; }
.checkout-intro li::before { content: "\2713"; margin-right: 8px; color: #16864b; font-weight: 900; }
.checkout-email { display: flex; flex-direction: column; gap: 7px; }
.checkout-email span { color: var(--dark-muted); font-size: .64rem; font-weight: 900; letter-spacing: .12em; }
.checkout-email input { height: 52px; padding: 0 14px; border: 1px solid var(--dark-line); border-radius: 9px; color: var(--dark-text); background: #fff; outline: none; }
.checkout-email input:focus { border-color: var(--blue-strong); box-shadow: 0 0 0 3px rgba(23,123,232,.12); }
.checkout-email small { color: var(--dark-muted); font-size: .66rem; }
.risk-confirm { margin: 20px 0; display: grid; grid-template-columns: auto 1fr; gap: 10px; color: var(--dark-muted); font-size: .74rem; }
.risk-confirm input { margin-top: 4px; accent-color: var(--blue-strong); }
.checkout-intro > .button { width: 100%; }
.checkout-error { margin: 12px 0 0; color: #c53333; font-size: .74rem; }
.checkout-back { margin-bottom: 18px; padding: 0; cursor: pointer; border: 0; color: var(--blue-strong); background: transparent; font-weight: 800; }
.payment-preview { overflow: hidden; border: 1px solid var(--dark-line); border-radius: 14px; background: #fff; }
.payment-preview-top { padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--dark-line); }
.stripe-wordmark { color: #635bff; font-size: 1.45rem; font-weight: 900; font-style: italic; }
.payment-badge { padding: 5px 8px; border-radius: 999px; color: #16864b; background: #e9f8ef; font-size: .57rem; font-weight: 900; letter-spacing: .08em; }
.payment-preview-copy { padding: 22px 20px 12px; }
.payment-preview-copy h3 { margin-bottom: 10px; }
.payment-preview-copy > p:last-child { color: var(--dark-muted); font-size: .75rem; }
.payment-order { margin: 0 20px; border-block: 1px solid var(--dark-line); }
.payment-order > div { padding: 11px 0; display: flex; justify-content: space-between; gap: 20px; color: var(--dark-muted); font-size: .7rem; }
.payment-order strong { color: var(--dark-text); text-align: right; }
.payment-order .payment-total { font-size: .9rem; }
.payment-method-note { padding: 18px 20px 8px; display: flex; flex-wrap: wrap; gap: 6px; }
.payment-method-note span { padding: 6px 8px; border: 1px solid var(--dark-line); border-radius: 5px; color: var(--dark-muted); font-size: .6rem; font-weight: 750; }
.wallet-note { display: block; padding: 0 20px 15px; color: var(--dark-muted); font-size: .58rem; }
#stripe-checkout { padding: 0 16px 16px; }
.stripe-button { width: calc(100% - 40px); min-height: 50px; margin: 4px 20px 18px; cursor: pointer; border: 0; border-radius: 8px; color: #fff; background: #635bff; }
.stripe-button strong { font-size: 1.1rem; }
.payment-security { margin: 0 20px 16px; padding: 12px; display: flex; gap: 10px; border-radius: 8px; background: #f2f7f4; }
.payment-security p { margin: 0; color: var(--dark-muted); font-size: .65rem; }
.payment-status { margin: 0; padding: 12px 20px; color: var(--dark-muted); background: #f6f7f9; font-size: .68rem; text-align: center; }
.payment-status.ready { color: #116f3b; background: #e8f7ee; }

@media (max-width: 1040px) {
  .hero-layout { grid-template-columns: 1fr; gap: 50px; }
  .hero-copy { max-width: 780px; }
  .product-window { max-width: 820px; transform: none; }
  .proof-grid, .instance-grid, .setup-grid, .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .instance-visual { order: 2; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .attack-demo-card { grid-template-columns: 1fr; }
  .attack-video-wrap, .attack-video-wrap iframe { min-height: 420px; }
  .bento-card.bento-wide { grid-column: span 2; }
  .workflow { grid-template-columns: repeat(2, 1fr); }
  .workflow li:nth-child(2) { border-right: 0; }
  .workflow li:nth-child(-n+2) { border-bottom: 1px solid var(--dark-line); }
  .price-card { grid-column: span 6; }
  .price-card.featured { order: -1; }
  .price-card.compact-plan { order: -2; }
  .price-card.lifetime { grid-column: span 12; min-height: 390px; }
}

@media (max-width: 760px) {
  .page-shell, .nav-shell { width: min(calc(100% - 28px), var(--shell)); }
  .section { padding: 76px 0; }
  h1 { font-size: clamp(3.2rem, 16vw, 5rem); }
  h2 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .site-header { background: rgba(7,17,31,.96); }
  .nav-shell { min-height: 68px; }
  .brand img { width: 40px; height: 40px; }
  .menu-button { display: block; }
  #main-nav { position: absolute; left: 14px; right: 14px; top: 66px; padding: 18px; display: none; align-items: stretch; flex-direction: column; gap: 4px; border: 1px solid var(--line); border-radius: 12px; background: #0a1726; box-shadow: var(--shadow); }
  #main-nav.open { display: flex; }
  #main-nav a { padding: 11px 10px; }
  #main-nav .nav-buy { text-align: center; }
  #main-nav .nav-discord { text-align: center; }
  .hero { min-height: auto; padding-top: 78px; }
  .hero-layout { gap: 42px; }
  .hero-trust { gap: 16px; justify-content: space-between; }
  .hero-trust b { font-size: .72rem; }
  .hero-trust span { font-size: .6rem; }
  .product-shot, .product-shot img { min-height: 255px; }
  .product-proof { grid-template-columns: 1fr; }
  .product-proof div { min-height: 62px; border-right: 0; border-bottom: 1px solid var(--line); }
  .confidence-bar .page-shell { padding: 14px 0; grid-template-columns: 1fr 1fr; row-gap: 12px; }
  .confidence-bar span { padding: 0 10px; font-size: .66rem; }
  .confidence-bar span:nth-child(2) { border: 0; }
  .video-footer { display: none; }
  .bento-grid { grid-template-columns: 1fr; }
  .attack-demo-copy { padding: 28px; }
  .attack-video-wrap, .attack-video-wrap iframe { min-height: 230px; }
  .bento-card.bento-wide { grid-column: auto; grid-template-columns: 1fr; }
  .bento-card.bento-wide img { height: 210px; }
  .instance-visual > img { height: 250px; }
  .instance-tabs span { padding: 8px; font-size: .58rem; }
  .instance-status { grid-template-columns: 1fr; }
  .instance-status div { border-right: 0; border-bottom: 1px solid var(--line); }
  .workflow { grid-template-columns: 1fr; }
  .workflow li, .workflow li:nth-child(2) { min-height: auto; border-right: 0; border-bottom: 1px solid var(--dark-line); }
  .workflow h3 { margin-top: 35px; }
  .requirement-grid { grid-template-columns: 1fr; }
  .requirement-grid div, .requirement-grid div:nth-child(2n), .requirement-grid div:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .requirement-grid div:last-child { border-bottom: 0; }
  .release-card, .pricing-head, .try-free, .final-cta .page-shell { align-items: stretch; flex-direction: column; }
  .release-card { padding: 28px; }
  .release-title { align-items: flex-start; flex-direction: column; }
  .release-actions { align-items: stretch; }
  .currency-picker { width: 100%; }
  .price-card, .price-card.lifetime { grid-column: span 12; min-height: auto; }
  .price-card.compact-plan { display: flex; grid-column: span 12; align-items: stretch; gap: 0; }
  .price-card > p { min-height: 0; }
  .price-card > .button { margin-top: 25px; }
  .try-free > div:last-child { align-items: stretch; }
  .purchase-assurance { grid-template-columns: 1fr 1fr; row-gap: 14px; }
  .purchase-assurance span:nth-child(2) { border: 0; }
  .support-card { padding: 28px; grid-template-columns: 1fr; gap: 35px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .footer-grid > div:first-child { grid-column: span 2; }
  .legal-line { flex-direction: column; }
  .legal-line p { text-align: left; }
  .checkout-shell { padding: 34px 20px 24px; }
  .payment-order > div { flex-direction: column; gap: 3px; }
  .payment-order strong { text-align: left; }
  .discord-float { right: 12px; bottom: 12px; min-width: 0; padding: 10px; border-radius: 12px; }
  .discord-float > span:nth-child(2), .discord-float > em { display: none; }
}

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