:root {
  --bg: #05100d;
  --bg-2: #071713;
  --surface: rgba(255, 255, 255, .075);
  --surface-strong: rgba(255, 255, 255, .12);
  --surface-dark: rgba(2, 12, 10, .72);
  --line: rgba(198, 255, 232, .16);
  --line-strong: rgba(83, 255, 176, .34);
  --text: #f3fff9;
  --muted: #a9c9bf;
  --muted-2: #6f9188;
  --green: #43ff9d;
  --green-2: #b7ffd8;
  --blue: #36b7ff;
  --cyan: #76f8ff;
  --gray: #d8e5df;
  --black: #020706;
  --danger: #ff6a6a;
  --warning: #ffd36b;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-soft: 0 22px 80px rgba(0, 0, 0, .35);
  --shadow-green: 0 22px 70px rgba(67, 255, 157, .16);
  --container: 1180px;
  --display: "Aptos Display", "Segoe UI Variable Display", "SF Pro Display", "Trebuchet MS", sans-serif;
  --body: "Aptos", "Segoe UI Variable Text", "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(circle at 18% -8%, rgba(67, 255, 157, .24), transparent 30rem),
    radial-gradient(circle at 90% 8%, rgba(54, 183, 255, .20), transparent 34rem),
    linear-gradient(180deg, #04100d 0%, #061612 38%, #030907 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .11;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

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

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 200;
  background: var(--green);
  color: var(--black);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
}

.skip-link:focus { top: 12px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.site-header.is-scrolled {
  background: rgba(3, 13, 11, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  position: relative;
  background:
    linear-gradient(135deg, rgba(67,255,157,.95), rgba(54,183,255,.78)),
    radial-gradient(circle at 70% 20%, white, transparent 22px);
  box-shadow: 0 0 34px rgba(67,255,157,.42);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: #03120e;
  border-radius: 999px;
}

.brand-mark::before {
  width: 25px;
  height: 3px;
  left: 7px;
  top: 18px;
  transform: rotate(-18deg);
}

.brand-mark::after {
  width: 9px;
  height: 9px;
  right: 7px;
  top: 7px;
  box-shadow: -15px 17px 0 #03120e;
}

.brand-text {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -.04em;
  font-size: 1.2rem;
}

.brand-text span { color: var(--green); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .93rem;
  color: var(--muted);
}

.primary-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.primary-nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,.08);
}

.primary-nav .nav-cta {
  color: #03100c;
  background: var(--green);
  font-weight: 900;
  box-shadow: 0 10px 35px rgba(67,255,157,.23);
}

.primary-nav .nav-cta:hover {
  color: #03100c;
  background: var(--green-2);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 999px;
}

.hero {
  min-height: 92vh;
  position: relative;
  padding: 90px 0 38px;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.orb {
  position: absolute;
  filter: blur(14px);
  border-radius: 50%;
  pointer-events: none;
}

.orb-a {
  width: 430px;
  height: 430px;
  top: 12%;
  right: -90px;
  background: radial-gradient(circle, rgba(54,183,255,.18), transparent 68%);
}

.orb-b {
  width: 520px;
  height: 520px;
  left: -190px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(67,255,157,.18), transparent 68%);
}

.grid-floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 32vh;
  opacity: .18;
  background:
    linear-gradient(rgba(67,255,157,.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67,255,157,.2) 1px, transparent 1px);
  background-size: 52px 52px;
  transform: perspective(480px) rotateX(64deg);
  transform-origin: bottom;
  mask-image: linear-gradient(to top, black, transparent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green-2);
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  display: inline-block;
  background: linear-gradient(90deg, var(--green), transparent);
}

h1, h2, h3 {
  font-family: var(--display);
  letter-spacing: -.055em;
  line-height: .98;
  margin: 0;
}

h1 {
  font-size: clamp(3.15rem, 7.4vw, 7.25rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.85rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

p {
  color: var(--muted);
  margin: 0;
}

.hero-subtitle {
  max-width: 680px;
  margin-top: 26px;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  gap: 10px;
  border-radius: 999px;
  padding: 15px 22px;
  border: 1px solid transparent;
  font-weight: 950;
  letter-spacing: -.02em;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #03100c;
  background: linear-gradient(135deg, var(--green), #b9ffdb 56%, var(--cyan));
  box-shadow: var(--shadow-green), inset 0 1px 0 rgba(255,255,255,.45);
}

.btn-primary:hover {
  box-shadow: 0 28px 80px rgba(67,255,157,.25);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  border-color: var(--line-strong);
  background: rgba(255,255,255,.09);
}

.full { width: 100%; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.trust-row div,
.stats-panel,
.comparison-card,
.roi-card,
.product-card,
.proof-card,
.video-card,
.guarantee-panel,
.final-panel,
.scenario,
.feature-matrix article,
.pain-list article {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.trust-row div {
  border-radius: 20px;
  padding: 18px;
}

.trust-row strong {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1;
}

.trust-row span {
  display: block;
  color: var(--muted-2);
  font-size: .86rem;
  margin-top: 8px;
}

.laser-stage {
  position: relative;
  border-radius: 36px;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(112,255,193,.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.04)),
    radial-gradient(circle at 24% 16%, rgba(67,255,157,.18), transparent 35%),
    radial-gradient(circle at 76% 24%, rgba(54,183,255,.16), transparent 38%),
    rgba(3, 12, 10, .72);
  box-shadow: 0 40px 120px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.16);
}

.stage-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 20px;
  color: var(--muted-2);
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.12);
}

.stage-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--danger);
}

.stage-topbar span:nth-child(2) { background: var(--warning); }
.stage-topbar span:nth-child(3) { background: var(--green); }
.stage-topbar p { margin-left: auto; font-size: .83rem; }

.beam {
  position: absolute;
  top: 68px;
  left: 50%;
  width: 2px;
  height: 446px;
  background: linear-gradient(to bottom, transparent, var(--green), transparent);
  box-shadow: 0 0 24px var(--green), 0 0 80px rgba(67,255,157,.5);
  animation: beam 3.4s ease-in-out infinite;
}

@keyframes beam {
  0%, 100% { transform: translateX(-120px); opacity: .42; }
  50% { transform: translateX(98px); opacity: 1; }
}

.file-stack {
  position: absolute;
  left: 22px;
  top: 86px;
  width: min(330px, calc(100% - 44px));
  display: grid;
  gap: 12px;
}

.file-card {
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(2, 10, 8, .66);
  border-radius: 22px;
  padding: 18px;
  transform: rotate(-2deg);
}

.file-card:nth-child(2) { transform: rotate(2deg) translateX(28px); }
.file-card:nth-child(3) { transform: rotate(-1deg) translateX(8px); }

.file-card.active {
  border-color: rgba(67,255,157,.45);
  box-shadow: 0 20px 50px rgba(67,255,157,.13);
}

.file-card small {
  color: var(--green);
  font-weight: 950;
  letter-spacing: .1em;
}

.file-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.18rem;
}

.file-card p {
  margin-top: 8px;
  font-size: .91rem;
}

.machine {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 34px;
  min-height: 230px;
  border-radius: 28px;
  color: rgba(183,255,216,.88);
  border: 1px solid rgba(67,255,157,.24);
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(67,255,157,.32) 49% 50%, transparent 50%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 26px),
    rgba(0,0,0,.28);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.machine svg {
  width: 82%;
  opacity: .88;
  filter: drop-shadow(0 0 12px rgba(67,255,157,.4));
}

.machine-head {
  position: absolute;
  top: 0;
  left: 52%;
  width: 52px;
  height: 44px;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(180deg, rgba(67,255,157,.9), rgba(54,183,255,.75));
  box-shadow: 0 0 34px rgba(67,255,157,.42);
  animation: head 3.4s ease-in-out infinite;
}

@keyframes head {
  0%, 100% { transform: translateX(-130px); }
  50% { transform: translateX(90px); }
}

.cut-line {
  position: absolute;
  top: 42px;
  left: 50%;
  width: 1px;
  height: 150px;
  background: var(--green);
  box-shadow: 0 0 20px var(--green);
  animation: head 3.4s ease-in-out infinite;
}

.ecosystem {
  position: relative;
  z-index: 2;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted-2);
}

.ecosystem span {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.ecosystem a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.04);
}

.section {
  padding: clamp(76px, 10vw, 132px) 0;
  position: relative;
}

.split,
.solution-grid,
.categories-grid,
.proof-grid,
.faq-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  margin-top: 20px;
  max-width: 710px;
  font-size: 1.08rem;
}

.center {
  text-align: center;
  max-width: 910px;
  margin-inline: auto;
}

.center .eyebrow { justify-content: center; }
.center p { margin-inline: auto; }

.pain-list {
  display: grid;
  gap: 16px;
}

.pain-list article {
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
}

.pain-list span {
  grid-row: span 2;
  color: var(--green);
  font-weight: 950;
  opacity: .85;
}

.pain-list p { margin-top: 8px; }

.comparison-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.comparison-card,
.roi-card {
  border-radius: var(--radius-xl);
  padding: clamp(22px, 3vw, 34px);
}

.comparison-card ul,
.product-body ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 12px;
}

.comparison-card li,
.product-body li {
  position: relative;
  color: var(--muted);
  padding-left: 26px;
}

.comparison-card li::before,
.product-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(67,255,157,.5);
}

.slow li::before { background: var(--danger); box-shadow: none; }

.card-kicker,
.badge {
  display: inline-flex;
  color: var(--black);
  background: var(--green);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.slow .card-kicker { background: rgba(255,106,106,.18); color: #ffd3d3; border: 1px solid rgba(255,106,106,.34); }

.metric {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 4.25rem);
  letter-spacing: -.07em;
  line-height: .9;
  color: var(--green);
}

.slow .metric { color: #ffc0c0; }

.roi-card {
  background:
    radial-gradient(circle at 80% 10%, rgba(67,255,157,.22), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
}

.roi-card h3 { margin-bottom: 22px; }
.roi-card label {
  display: block;
  color: var(--muted);
  font-weight: 800;
  margin: 18px 0 8px;
}

.roi-card input[type="range"] {
  width: 100%;
  accent-color: var(--green);
}

.roi-card select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.34);
  color: var(--text);
  border-radius: 14px;
  padding: 0 12px;
}

.roi-result {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.065);
  border: 1px solid var(--line);
}

.roi-result span { color: var(--muted); }
.roi-result strong { font-size: 1.28rem; }
.roi-result.accent strong { color: var(--green); }
.roi-card p { margin-top: 16px; font-size: .88rem; }

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 28px;
  color: var(--green);
  font-weight: 950;
}

.feature-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-matrix article {
  border-radius: var(--radius-lg);
  padding: 26px;
}

.feature-matrix .icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  margin-bottom: 18px;
  background: rgba(67,255,157,.12);
  border: 1px solid rgba(67,255,157,.24);
  color: var(--green);
  font-size: 1.4rem;
}

.feature-matrix p { margin-top: 12px; }

.stats-panel {
  border-radius: 38px;
  padding: clamp(26px, 5vw, 54px);
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: center;
  background:
    radial-gradient(circle at 0 0, rgba(54,183,255,.16), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(67,255,157,.17), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stat-grid article {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.22);
}

.stat-grid strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.55rem);
  color: var(--green);
  letter-spacing: -.06em;
  line-height: .9;
}

.stat-grid span {
  display: block;
  color: var(--muted);
  margin-top: 12px;
}

.product-ideas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.product-ideas span,
.category-board span {
  padding: 11px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  color: var(--gray);
  border-radius: 999px;
}

.scenario-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.scenario {
  border-radius: var(--radius-lg);
  padding: 26px;
}

.scenario strong {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
}

.scenario h3 { margin-top: 12px; }
.scenario p { margin-top: 12px; }

.product-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.product-card {
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card.featured {
  border-color: rgba(67,255,157,.42);
  box-shadow: var(--shadow-green), var(--shadow-soft);
}

.product-media {
  aspect-ratio: 1.25 / .86;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 20%, rgba(67,255,157,.12), transparent 50%),
    rgba(0,0,0,.24);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-card:hover .product-media img { transform: scale(1.035); }

.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-body p {
  margin-top: 14px;
}

.product-body .btn {
  margin-top: auto;
}

.categories-grid {
  align-items: center;
}

.category-board {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.proof-grid {
  align-items: stretch;
}

.proof-card,
.video-card {
  border-radius: var(--radius-xl);
  padding: clamp(26px, 4vw, 42px);
}

blockquote {
  margin: 28px 0 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -.06em;
  line-height: 1;
}

cite {
  display: block;
  margin-top: 18px;
  font-family: var(--body);
  color: var(--muted);
  font-size: 1rem;
  font-style: normal;
  letter-spacing: 0;
}

.note {
  margin-top: 24px;
  font-size: .95rem;
}

.video-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(67,255,157,.12), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 28px;
  border: 1px dashed rgba(183,255,216,.24);
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(67,255,157,.4) 49% 50%, transparent 50%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.055) 0 1px, transparent 1px 34px);
  opacity: .58;
}

.video-card h3,
.video-card p,
.play {
  position: relative;
  z-index: 1;
}

.play {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  background: var(--green);
  box-shadow: 0 0 50px rgba(67,255,157,.35);
}

.play::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid var(--black);
  margin-left: 5px;
}

.guarantee-panel {
  border-radius: 38px;
  padding: clamp(28px, 5vw, 54px);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 38px;
}

.guarantee-items {
  display: grid;
  gap: 14px;
}

.guarantee-items article {
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.2);
  border-radius: 20px;
}

.guarantee-items strong {
  display: block;
  margin-bottom: 8px;
}

.guarantee-items span {
  color: var(--muted);
}

.accordion {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  border-radius: 22px;
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 950;
  list-style: none;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-size: 1.4rem;
  line-height: 1;
}

details[open] summary::after { content: "–"; }

details p {
  padding: 0 24px 24px;
}

.final-cta {
  padding: 70px 0 118px;
}

.final-panel {
  position: relative;
  overflow: hidden;
  border-radius: 44px;
  text-align: center;
  padding: clamp(42px, 8vw, 88px) clamp(22px, 6vw, 72px);
  background:
    radial-gradient(circle at 50% -20%, rgba(67,255,157,.28), transparent 42%),
    radial-gradient(circle at 80% 80%, rgba(54,183,255,.18), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.048));
}

.final-panel .eyebrow { justify-content: center; }
.final-panel h2 { max-width: 850px; margin-inline: auto; }
.final-panel p:not(.eyebrow) { margin: 22px auto 0; max-width: 650px; font-size: 1.12rem; }
.center-actions { justify-content: center; }

.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: start;
}

.footer-brand { margin-bottom: 16px; }

.footer-grid p {
  max-width: 520px;
  font-size: .94rem;
}

.footer-grid strong {
  display: block;
  margin-bottom: 12px;
}

.footer-grid a:not(.brand) {
  display: block;
  color: var(--muted);
  margin-top: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1040px) {
  .hero-grid,
  .split,
  .solution-grid,
  .categories-grid,
  .proof-grid,
  .faq-grid,
  .stats-panel,
  .guarantee-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 68px;
  }

  .laser-stage {
    min-height: 560px;
  }

  .comparison-grid,
  .product-grid,
  .scenario-grid {
    grid-template-columns: 1fr;
  }

  .category-board {
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-toggle { display: block; }

  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(3, 13, 11, .96);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.35rem);
  }

  h2 {
    font-size: clamp(2.1rem, 12vw, 3.3rem);
  }

  .hero-actions,
  .center-actions {
    display: grid;
  }

  .btn { width: 100%; }

  .trust-row,
  .feature-matrix,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .laser-stage {
    min-height: 610px;
  }

  .file-stack {
    left: 14px;
    right: 14px;
    width: auto;
  }

  .file-card:nth-child(2),
  .file-card:nth-child(3) {
    transform: none;
  }

  .machine {
    left: 14px;
    right: 14px;
  }

  .section {
    padding: 72px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
