:root {
  --bg: #080b0a;
  --panel: #101513;
  --panel-2: #151c18;
  --line: rgba(177, 255, 75, .16);
  --text: #f2f5ee;
  --muted: #aeb8ad;
  --green: #b7ff50;
  --green-2: #75d528;
  --orange: #ffb343;
  --danger: #ff735f;
  --shadow: 0 24px 80px rgba(0, 0, 0, .35);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 76% 7%, rgba(183, 255, 80, .10), transparent 28rem),
    radial-gradient(circle at 0 55%, rgba(255, 179, 67, .05), transparent 24rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .24;
  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: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  background: rgba(8, 11, 10, .82);
  backdrop-filter: blur(18px);
}

.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .08em; white-space: nowrap; }

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #0a0d0b;
  background: var(--green);
  clip-path: polygon(0 0, 78% 0, 100% 24%, 100% 100%, 22% 100%, 0 78%);
  box-shadow: 0 0 28px rgba(183, 255, 80, .24);
}

.brand small { display: block; color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .18em; }

.nav-links { display: flex; align-items: center; gap: 28px; color: #cbd3ca; font-size: 14px; }
.nav-links a:hover { color: var(--green); }

.nav-refund {
  padding: 9px 16px;
  border: 1px solid rgba(255, 115, 95, .55);
  border-radius: 999px;
  color: #ffd3cc !important;
  background: rgba(255, 115, 95, .08);
}

.menu-toggle { display: none; border: 0; color: var(--text); background: transparent; font-size: 26px; cursor: pointer; }

.hero { position: relative; padding: 104px 0 76px; }

.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 76px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--green); box-shadow: 0 0 10px var(--green); }

h1, h2, h3, p { margin-top: 0; }

h1 { margin-bottom: 24px; font-size: clamp(44px, 6.3vw, 82px); line-height: 1.02; letter-spacing: -.045em; }
h1 span { display: block; color: var(--green); text-shadow: 0 0 38px rgba(183, 255, 80, .14); }

.hero-copy > p { max-width: 640px; margin-bottom: 34px; color: var(--muted); font-size: 18px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #0b1008; background: var(--green); box-shadow: 0 15px 40px rgba(183, 255, 80, .14); }
.btn-secondary { border: 1px solid rgba(255, 255, 255, .16); background: rgba(255, 255, 255, .04); }
.btn-refund { border: 1px solid rgba(255, 115, 95, .5); color: #ffe0db; background: rgba(255, 115, 95, .1); }

.hero-notes { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 27px; color: #bec8bd; font-size: 13px; }
.hero-notes span::before { content: "✓"; margin-right: 8px; color: var(--green); font-weight: 900; }

.hero-visual { position: relative; min-height: 520px; }

.visual-shell {
  position: absolute;
  inset: 20px 0 0 16px;
  overflow: hidden;
  border: 1px solid rgba(183, 255, 80, .22);
  border-radius: 10px 10px 70px 10px;
  background: #111815;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.visual-shell img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .72; filter: saturate(.85) contrast(1.08); }
.visual-shell::after { content: ""; position: absolute; inset: 0; background: linear-gradient(125deg, rgba(8, 11, 10, .1), rgba(8, 11, 10, .68)); }

.status-card {
  position: absolute;
  top: 0;
  right: -20px;
  z-index: 2;
  width: 250px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(14, 19, 16, .92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.status-line { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 12px; }
.status-line strong { color: var(--green); }
.status-card h3 { margin: 16px 0 6px; font-size: 26px; }
.status-card p { margin-bottom: 0; color: var(--muted); font-size: 13px; }

.floating-tag {
  position: absolute;
  left: -18px;
  bottom: 20px;
  z-index: 2;
  padding: 16px 20px;
  border-left: 3px solid var(--orange);
  background: rgba(12, 16, 14, .94);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.floating-tag small { display: block; color: var(--muted); font-weight: 500; }

.strip { border-block: 1px solid rgba(255, 255, 255, .08); background: rgba(255, 255, 255, .025); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-item { padding: 25px 24px; border-right: 1px solid rgba(255, 255, 255, .08); }
.strip-item:last-child { border-right: 0; }
.strip-item b { display: block; margin-bottom: 4px; color: var(--green); font-size: 20px; }
.strip-item span { color: var(--muted); font-size: 13px; }

section { padding: 100px 0; }

.section-head { max-width: 740px; margin-bottom: 48px; }
.section-head h2 { margin-bottom: 18px; font-size: clamp(34px, 4vw, 56px); line-height: 1.1; letter-spacing: -.035em; }
.section-head p { color: var(--muted); font-size: 17px; }

.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

.feature-card {
  position: relative;
  min-height: 250px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
}

.feature-card::after { content: attr(data-num); position: absolute; right: 22px; bottom: -32px; color: rgba(255, 255, 255, .035); font-size: 118px; font-weight: 900; line-height: 1; }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 46px; border: 1px solid var(--line); border-radius: 12px; color: var(--green); background: rgba(183, 255, 80, .06); font-weight: 900; }
.feature-card h3 { margin-bottom: 10px; font-size: 22px; }
.feature-card p { max-width: 490px; margin-bottom: 0; color: var(--muted); }

.gallery-section { background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .025), transparent); }
.image-gallery { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; }
.shot { position: relative; min-height: 530px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius); background: var(--panel); }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.shot:first-child img { object-position: center; }
.shot:last-child img { object-position: center 22%; }
.shot:hover img { transform: scale(1.025); }
.shot-caption { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 18px 20px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 14px; background: rgba(8, 11, 10, .88); backdrop-filter: blur(16px); }
.shot-caption strong { display: block; margin-bottom: 4px; }
.shot-caption span { color: var(--muted); font-size: 13px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: flow; }
.step { min-height: 230px; padding: 30px; border-top: 2px solid var(--green); background: var(--panel); counter-increment: flow; }
.step::before { content: "0" counter(flow); display: block; margin-bottom: 52px; color: var(--green); font-size: 13px; font-weight: 900; letter-spacing: .1em; }
.step h3 { margin-bottom: 8px; }
.step p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.compatibility { display: grid; grid-template-columns: .78fr 1.22fr; gap: 54px; align-items: start; }
.device-list { display: grid; gap: 12px; }
.device { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px; border: 1px solid rgba(255,255,255,.09); border-radius: 14px; background: var(--panel); }
.device b { display: block; }
.device span { color: var(--muted); font-size: 13px; }
.device em { color: var(--green); font-size: 12px; font-style: normal; font-weight: 800; }

.refund-box {
  position: relative;
  overflow: hidden;
  padding: 50px;
  border: 1px solid rgba(255, 115, 95, .35);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 115, 95, .11), rgba(255, 179, 67, .035));
}

.refund-box::after { content: "售后"; position: absolute; right: 4%; top: -34px; color: rgba(255, 255, 255, .035); font-size: 140px; font-weight: 900; }
.refund-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.refund-box h2 { margin-bottom: 10px; font-size: 34px; }
.refund-box p { max-width: 680px; margin-bottom: 0; color: #d0b8b4; }

.faq-list { border-top: 1px solid rgba(255, 255, 255, .1); }
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, .1); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; border: 0; color: var(--text); background: transparent; text-align: left; font-weight: 800; cursor: pointer; }
.faq-question span { color: var(--green); font-size: 24px; font-weight: 400; transition: transform .2s ease; }
.faq-answer { max-height: 0; overflow: hidden; color: var(--muted); transition: max-height .3s ease; }
.faq-answer p { max-width: 800px; padding-bottom: 24px; margin-bottom: 0; }
.faq-item.open .faq-answer { max-height: 180px; }
.faq-item.open .faq-question span { transform: rotate(45deg); }

.final-cta { padding-top: 20px; }
.cta-panel { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; padding: 62px; border-radius: 30px; color: #0c1208; background: var(--green); }
.cta-panel h2 { max-width: 670px; margin-bottom: 10px; font-size: clamp(32px, 4vw, 52px); line-height: 1.08; }
.cta-panel p { margin-bottom: 0; color: #344525; }
.cta-panel .btn { color: var(--text); background: #0b0f0d; }

footer { margin-top: 100px; padding: 42px 0; border-top: 1px solid rgba(255, 255, 255, .08); color: var(--muted); font-size: 13px; }
.footer-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; }
.footer-copy { max-width: 720px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a:hover { color: var(--text); }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links { position: absolute; top: 72px; left: 0; right: 0; display: none; padding: 18px 20px 24px; border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(8,11,10,.98); }
  .nav-links.open { display: grid; gap: 18px; }
  .nav-refund { width: fit-content; }
  .hero { padding-top: 72px; }
  .hero-grid, .compatibility { grid-template-columns: 1fr; }
  .hero-grid { gap: 44px; }
  .hero-visual { min-height: 470px; }
  .status-card { right: 10px; }
  .floating-tag { left: 10px; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(2) { border-right: 0; }
  .strip-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .image-gallery { grid-template-columns: 1fr; }
  .shot { min-height: 500px; }
  .steps { grid-template-columns: 1fr; }
  .refund-inner, .footer-grid { align-items: flex-start; flex-direction: column; }
  .cta-panel { grid-template-columns: 1fr; padding: 48px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero { padding: 58px 0 48px; }
  h1 { font-size: 45px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 390px; }
  .visual-shell { inset: 12px 0 0; border-radius: 10px 10px 42px 10px; }
  .status-card { top: -4px; right: -4px; width: 205px; padding: 14px; }
  .status-card h3 { font-size: 20px; }
  .floating-tag { left: 10px; bottom: 12px; padding: 12px 14px; font-size: 14px; }
  section { padding: 74px 0; }
  .features { grid-template-columns: 1fr; }
  .feature-card { min-height: 230px; padding: 26px; }
  .shot { min-height: 390px; }
  .shot:last-child { min-height: 500px; }
  .refund-box { padding: 32px 24px; }
  .refund-inner { display: block; }
  .refund-box .btn { width: 100%; margin-top: 24px; }
  .cta-panel { padding: 38px 26px; }
  .cta-panel .btn { width: 100%; }
}

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

/* ===== BRUTALIST OVERRIDE ===== */
:root {
  --bg: #f1efe5;
  --panel: #fbfaf4;
  --panel-2: #e6e3d6;
  --line: #151713;
  --text: #151713;
  --muted: #5f625a;
  --green: #baf436;
  --green-2: #91cf10;
  --orange: #ff6b35;
  --danger: #d83a25;
  --shadow: 10px 10px 0 #151713;
  --radius: 0;
}

body {
  color: var(--text);
  background: var(--bg);
  font-family: "Arial Narrow", "DIN Alternate", Impact, "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: .01em;
}

body::before {
  opacity: .4;
  background-image: repeating-linear-gradient(135deg, rgba(21, 23, 19, .035) 0 1px, transparent 1px 14px);
  background-size: auto;
  mask-image: none;
}

.container { width: min(1240px, calc(100% - 48px)); }

.site-header {
  border-bottom: 3px solid var(--text);
  background: rgba(241, 239, 229, .94);
  backdrop-filter: blur(12px);
}

.nav { min-height: 78px; }
.brand { gap: 10px; color: var(--text); font-size: 18px; letter-spacing: .03em; }
.brand-mark { width: 42px; height: 42px; border: 2px solid var(--text); color: var(--text); background: var(--green); clip-path: none; box-shadow: none; }
.brand small { color: var(--muted); letter-spacing: .16em; }
.nav-links { color: var(--text); font-size: 14px; font-weight: 800; }
.nav-links a { padding-bottom: 3px; border-bottom: 2px solid transparent; }
.nav-links a:hover { border-color: var(--text); color: var(--text); }
.nav-refund { padding: 9px 15px !important; border: 2px solid var(--text) !important; border-radius: 0; color: var(--text) !important; background: var(--orange); box-shadow: 4px 4px 0 var(--text); }
.menu-toggle { color: var(--text); }

.hero { padding: 78px 0 70px; }
.hero::before { content: "DELTA / 2026 / CHEAT SYSTEM"; position: absolute; top: 24px; left: max(24px, calc((100vw - 1240px) / 2)); color: var(--muted); font: 700 11px/1 monospace; letter-spacing: .15em; }
.hero-grid { grid-template-columns: .92fr 1.08fr; gap: 58px; }
.eyebrow { margin-bottom: 20px; padding: 6px 10px; border: 2px solid var(--text); color: var(--text); background: var(--green); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; letter-spacing: .08em; }
.eyebrow::before { width: 8px; height: 8px; border-radius: 50%; background: var(--text); box-shadow: none; }
h1 { margin-bottom: 26px; font-size: clamp(52px, 7vw, 94px); line-height: .91; letter-spacing: -.065em; text-transform: uppercase; }
h1 span { display: inline; padding: 0 .08em; color: var(--text); background: var(--green); box-decoration-break: clone; -webkit-box-decoration-break: clone; text-shadow: none; }
.hero-copy > p { max-width: 610px; margin-bottom: 30px; padding-left: 18px; border-left: 4px solid var(--text); color: var(--muted); font-family: ui-sans-serif, system-ui, sans-serif; font-size: 16px; }
.btn { min-height: 54px; padding: 0 24px; border: 2px solid var(--text); border-radius: 0; color: var(--text); font-family: ui-sans-serif, system-ui, sans-serif; box-shadow: 5px 5px 0 var(--text); }
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--text); }
.btn-primary { color: var(--text); background: var(--green); box-shadow: 5px 5px 0 var(--text); }
.btn-secondary { border: 2px solid var(--text); color: var(--text); background: var(--panel); }
.btn-refund { border: 2px solid var(--text); color: var(--text); background: var(--panel); }
.hero-notes { gap: 8px; margin-top: 30px; color: var(--text); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; }
.hero-notes span { padding: 5px 8px; border: 1px solid var(--text); background: var(--panel); }
.hero-notes span::before { content: "■"; margin-right: 7px; color: var(--orange); }

.hero-visual { min-height: 540px; }
.hero-visual::before { content: "01 / LIVE INTERFACE"; position: absolute; top: -28px; right: 0; font: 700 11px/1 monospace; letter-spacing: .12em; }
.visual-shell { inset: 0 14px 24px 0; border: 3px solid var(--text); border-radius: 0; background: var(--text); box-shadow: 12px 12px 0 var(--orange); transform: none; }
.visual-shell img { opacity: 1; filter: saturate(.72) contrast(1.12); }
.visual-shell::after { background: linear-gradient(to top, rgba(21, 23, 19, .28), transparent 46%); }
.status-card { top: 24px; right: -16px; width: 240px; padding: 16px; border: 3px solid var(--text); border-radius: 0; color: var(--text); background: var(--green); box-shadow: 7px 7px 0 var(--text); backdrop-filter: none; }
.status-line { color: var(--text); font-family: monospace; }
.status-line strong { color: var(--text); }
.status-card h3 { margin: 13px 0 3px; font-size: 25px; text-transform: uppercase; }
.status-card p { color: #34372f; font-family: ui-sans-serif, system-ui, sans-serif; }
.floating-tag { left: -20px; bottom: 0; padding: 14px 18px; border: 3px solid var(--text); color: var(--text); background: var(--panel); box-shadow: 6px 6px 0 var(--text); }
.floating-tag small { color: var(--muted); font-family: monospace; }

.strip { border-block: 3px solid var(--text); color: #fff; background: var(--text); }
.strip-item { padding: 24px; border-right: 1px solid #55584f; }
.strip-item b { color: var(--green); font-size: 22px; }
.strip-item span { color: #bfc2b8; font-family: ui-sans-serif, system-ui, sans-serif; }

section { padding: 92px 0; }
.section-head { max-width: 820px; margin-bottom: 42px; }
.section-head h2 { margin-bottom: 16px; font-size: clamp(42px, 5vw, 66px); line-height: .98; letter-spacing: -.05em; }
.section-head p { max-width: 720px; color: var(--muted); font-family: ui-sans-serif, system-ui, sans-serif; font-size: 16px; }

.features { gap: 0; border-top: 3px solid var(--text); border-left: 3px solid var(--text); }
.feature-card { min-height: 270px; padding: 30px; border: 0; border-right: 3px solid var(--text); border-bottom: 3px solid var(--text); border-radius: 0; background: var(--panel); }
.feature-card:nth-child(2), .feature-card:nth-child(3) { background: #dedbcf; }
.feature-card::after { right: 18px; bottom: -24px; color: rgba(21, 23, 19, .07); font-size: 120px; }
.feature-icon { width: 48px; height: 48px; margin-bottom: 48px; border: 2px solid var(--text); border-radius: 0; color: var(--text); background: var(--green); box-shadow: 4px 4px 0 var(--text); }
.feature-card h3 { font-size: 27px; }
.feature-card p { color: var(--muted); font-family: ui-sans-serif, system-ui, sans-serif; }

.gallery-section { color: #f4f2e9; background: var(--text); }
.gallery-section .eyebrow { color: var(--text); }
.gallery-section .section-head p { color: #bfc2b8; }
.image-gallery { grid-template-columns: 1.25fr .75fr; gap: 26px; }
.shot { min-height: 560px; overflow: visible; border: 3px solid #f4f2e9; border-radius: 0; background: #090a08; }
.shot:first-child { box-shadow: 12px 12px 0 var(--green); }
.shot:last-child { box-shadow: 12px 12px 0 var(--orange); }
.shot img { filter: saturate(.78) contrast(1.08); }
.shot-caption { left: 16px; right: auto; bottom: 16px; min-width: 250px; padding: 13px 16px; border: 2px solid var(--text); border-radius: 0; color: var(--text); background: var(--green); backdrop-filter: none; }
.shot-caption span { color: #3e4238; font-family: ui-sans-serif, system-ui, sans-serif; }
.shot:last-child .shot-caption { background: var(--orange); }

.steps { gap: 20px; }
.step { min-height: 250px; padding: 28px; border: 3px solid var(--text); background: var(--panel); box-shadow: 7px 7px 0 var(--text); }
.step::before { width: fit-content; margin-bottom: 58px; padding: 3px 8px; color: var(--text); background: var(--green); }
.step h3 { font-size: 25px; }
.step p { color: var(--muted); font-family: ui-sans-serif, system-ui, sans-serif; }

#devices { border-block: 3px solid var(--text); background: #dedbd0; }
.device-list { gap: 0; border: 3px solid var(--text); }
.device { padding: 23px; border: 0; border-bottom: 2px solid var(--text); border-radius: 0; background: var(--panel); }
.device:last-child { border-bottom: 0; }
.device:nth-child(2) { background: var(--green); }
.device b { font-size: 20px; }
.device span { color: var(--muted); font-family: ui-sans-serif, system-ui, sans-serif; }
.device em { padding: 3px 8px; border: 1px solid var(--text); color: var(--text); background: var(--panel); font-family: monospace; }

.refund-box { padding: 48px; border: 3px solid var(--text); border-radius: 0; background: var(--orange); box-shadow: 12px 12px 0 var(--text); }
.refund-box::after { right: 2%; top: -42px; color: rgba(21, 23, 19, .08); font-size: 150px; }
.refund-box p { color: #4b281c; font-family: ui-sans-serif, system-ui, sans-serif; }
.refund-box .eyebrow { background: var(--panel); }

.faq-list { border-top: 3px solid var(--text); }
.faq-item { border-bottom: 3px solid var(--text); }
.faq-question { padding: 24px 4px; color: var(--text); font-size: 18px; }
.faq-question span { width: 32px; height: 32px; display: grid; place-items: center; border: 2px solid var(--text); color: var(--text); background: var(--green); }
.faq-answer { color: var(--muted); font-family: ui-sans-serif, system-ui, sans-serif; }

.cta-panel { padding: 58px; border: 3px solid var(--text); border-radius: 0; color: var(--text); background: var(--green); box-shadow: 12px 12px 0 var(--text); }
.cta-panel h2 { font-size: clamp(38px, 5vw, 62px); letter-spacing: -.05em; }
.cta-panel p { color: #414936; font-family: ui-sans-serif, system-ui, sans-serif; }
.cta-panel .btn { color: #fff; background: var(--text); box-shadow: 5px 5px 0 var(--orange); }

footer { margin-top: 110px; padding: 42px 0; border-top: 3px solid var(--text); color: var(--muted); font-family: ui-sans-serif, system-ui, sans-serif; }
.footer-copy strong { color: var(--text); font-family: "Arial Narrow", Impact, sans-serif; font-size: 22px; }
.footer-links a { padding-bottom: 2px; border-bottom: 1px solid var(--text); color: var(--text); }

@media (max-width: 900px) {
  .nav-links { top: 78px; border-bottom: 3px solid var(--text); background: var(--bg); }
  .hero-grid { grid-template-columns: 1fr; }
  .strip-item { border-right: 1px solid #55584f; }
  .strip-item:nth-child(-n+2) { border-bottom: 1px solid #55584f; }
  .image-gallery { grid-template-columns: 1fr; gap: 34px; }
  .shot { overflow: hidden; }
  .compatibility { gap: 36px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1240px); }
  .hero::before { left: 14px; }
  h1 { font-size: 53px; }
  .hero-copy > p { padding-left: 12px; }
  .hero-visual { min-height: 390px; }
  .visual-shell { inset: 0 5px 14px 0; box-shadow: 7px 7px 0 var(--orange); }
  .status-card { top: 14px; right: -3px; width: 200px; }
  .floating-tag { left: -3px; bottom: 0; }
  .section-head h2 { font-size: 42px; }
  .features { grid-template-columns: 1fr; }
  .feature-card:nth-child(3) { background: var(--panel); }
  .feature-card:nth-child(4) { background: #dedbcf; }
  .shot { min-height: 380px; }
  .shot:last-child { min-height: 500px; }
  .shot-caption { right: 12px; min-width: 0; }
  .refund-box { padding: 32px 22px; box-shadow: 7px 7px 0 var(--text); }
  .cta-panel { padding: 36px 24px; box-shadow: 7px 7px 0 var(--text); }
}

/* ===== ANTI-CRAWL ===== */
html:not(.kzfm) body {
    filter: blur(10px);
    -webkit-filter: blur(10px);
}
body {
    transition: filter 0.5s ease, opacity 0.5s ease;
}
