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

:root {
  --bg: #070a0f;
  --bg-soft: #0b1017;
  --panel: rgba(16, 23, 32, .78);
  --panel-solid: #101720;
  --text: #f5f8fb;
  --muted: #91a0ad;
  --line: rgba(255,255,255,.09);
  --accent: #65e4c2;
  --accent-2: #2aa68d;
  --max: 1220px;
  --radius: 22px;
  --shadow: 0 32px 90px rgba(0,0,0,.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -15%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 36rem),
    linear-gradient(180deg, #080b10 0%, #070a0f 45%, #06080c 100%);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.017) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.017) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
  z-index: -3;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.cursor-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 12%, transparent), transparent 68%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  transition: opacity .25s ease;
}
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}
.page-transition.leave { animation: pageLeave .38s cubic-bezier(.7,0,.2,1) forwards; }
@keyframes pageLeave { to { transform: scaleY(1); } }

.shell { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.announcement {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 7px 20px;
  border-bottom: 1px solid rgba(255,255,255,.055);
  color: #b9c8c3;
  background: rgba(101,228,194,.035);
  font-size: .68rem;
  letter-spacing: .09em;
  text-align: center;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(20px) saturate(130%);
  background: rgba(7,10,15,.72);
  border-bottom: 1px solid rgba(255,255,255,.055);
}
.header-inner {
  width: min(var(--max), calc(100% - 40px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(145deg, #9ff2d9, #27ad8e);
  color: #091410;
  box-shadow: inset 0 1px rgba(255,255,255,.45), 0 0 26px rgba(101,228,194,.11);
  font: 800 1.05rem/1 Manrope, sans-serif;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font: 800 .83rem/1 Manrope, sans-serif; letter-spacing: .18em; }
.brand-copy small { margin-top: 6px; color: var(--muted); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: #abb6bf; font-size: .79rem; font-weight: 650; transition: color .2s, transform .2s; }
.nav a:hover, .nav a.active { color: white; transform: translateY(-1px); }
.nav-cta { padding: 10px 15px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.035); }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; }
.menu-button span { display: block; width: 23px; height: 2px; margin: 5px; border-radius: 2px; background: white; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #bdc8c8; font-size: .66rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: linear-gradient(90deg, var(--accent), transparent); }
h1, h2, h3 { font-family: Manrope, sans-serif; }
h1, h2 { letter-spacing: -.055em; line-height: 1.02; }
.muted { color: var(--muted); }

.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 22px;
  border: 0;
  border-radius: 11px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 800;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.2) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}
.button:hover::after { transform: translateX(120%); }
.button:hover { transform: translateY(-3px); }
.button-primary { color: #07110e; background: linear-gradient(135deg, #9cf0d7, var(--accent)); box-shadow: 0 14px 38px rgba(101,228,194,.17), inset 0 1px rgba(255,255,255,.65); }
.button-primary:hover { box-shadow: 0 20px 50px rgba(101,228,194,.24); }
.button-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.035); color: white; }
.button-ghost { min-height: 42px; border: 1px solid var(--line); background: transparent; color: #b7c2ca; }
.button[disabled] { cursor: not-allowed; opacity: .55; transform: none; }

.hero { min-height: calc(100vh - 112px); display: grid; align-items: center; padding: 86px 0 70px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 74px; }
.hero-copy h1 { margin: 23px 0 22px; font-size: clamp(3.55rem, 7.2vw, 7.3rem); }
.hero-copy h1 span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.48); }
.hero-copy > p { max-width: 660px; color: var(--muted); font-size: 1.02rem; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.hero-stats { display: flex; gap: 0; margin-top: 62px; }
.hero-stats div { min-width: 160px; padding-right: 28px; margin-right: 28px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.hero-stats div:last-child { border: 0; }
.hero-stats strong { font: 800 1.1rem/1 Manrope; }
.hero-stats span { margin-top: 7px; color: var(--muted); font-size: .66rem; }

.hero-stage { min-height: 610px; display: grid; place-items: center; perspective: 1200px; position: relative; }
.hero-stage::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: var(--accent); filter: blur(145px); opacity: .13; }
.stage-card {
  width: min(100%, 520px);
  min-height: 545px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 27px;
  background: linear-gradient(145deg, rgba(22,31,42,.88), rgba(10,14,20,.84));
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.06);
  transform: rotateY(-7deg) rotateX(3deg);
  transform-style: preserve-3d;
  transition: transform .18s ease-out;
  position: relative;
  overflow: hidden;
}
.stage-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.035), transparent 65%); pointer-events: none; }
.stage-top { display: flex; justify-content: space-between; align-items: center; padding: 2px 2px 20px; color: #9ba9b3; font-size: .62rem; letter-spacing: .12em; }
.stage-live { display: flex; align-items: center; gap: 8px; }
.stage-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 14px var(--accent); }
.stage-main { border: 1px solid var(--line); border-radius: 20px; min-height: 330px; overflow: hidden; position: relative; background: #0c1219; }
.stage-main img { width: 100%; height: 330px; object-fit: cover; opacity: .92; }
.stage-placeholder { min-height: 330px; display: grid; place-items: center; background: radial-gradient(circle at 50% 35%, rgba(101,228,194,.13), transparent 40%), linear-gradient(145deg, #101924, #0a0f16); }
.stage-placeholder span { width: 108px; height: 108px; display: grid; place-items: center; border-radius: 28px; background: linear-gradient(145deg, #9cf0d7, #2caf91); color: #07110e; font: 800 3.4rem Manrope; box-shadow: 0 28px 60px rgba(0,0,0,.38); }
.stage-info { padding: 23px 4px 2px; display: flex; justify-content: space-between; align-items: end; gap: 18px; }
.stage-info small { display: block; color: var(--accent); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; }
.stage-info h3 { margin: 6px 0 0; font-size: 1.35rem; }
.stage-price { font: 800 1.25rem Manrope; }
.stage-pills { display: flex; gap: 8px; margin-top: 19px; }
.stage-pills span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 99px; color: #9eabb4; font-size: .59rem; }
.float-chip { position: absolute; padding: 12px 14px; border: 1px solid var(--line); border-radius: 13px; background: rgba(11,16,23,.86); backdrop-filter: blur(14px); box-shadow: 0 18px 50px rgba(0,0,0,.28); font-size: .66rem; color: #b5c0c7; animation: drift 5s ease-in-out infinite; }
.float-chip.one { top: 11%; left: -3%; }
.float-chip.two { bottom: 12%; right: -3%; animation-delay: -2.3s; }
@keyframes drift { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.section { padding: 120px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 46px; }
.section-head h2 { margin: 20px 0 0; font-size: clamp(2.65rem, 5.2vw, 5rem); }
.section-head p { max-width: 430px; margin: 0 0 7px; color: var(--muted); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  overflow: hidden;
  position: relative;
  transition: transform .32s cubic-bezier(.2,.8,.2,1), border-color .25s, box-shadow .32s;
}
.product-card:hover { transform: translateY(-8px); border-color: color-mix(in srgb, var(--accent) 35%, transparent); box-shadow: 0 26px 70px rgba(0,0,0,.3); }
.product-image-wrap { aspect-ratio: 16 / 10; overflow: hidden; background: #0c1118; position: relative; }
.product-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,10,15,.52), transparent 48%); }
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.product-card:hover img { transform: scale(1.055); }
.image-fallback { width: 100%; height: 100%; display: grid; place-items: center; background: radial-gradient(circle at 50% 35%, rgba(101,228,194,.14), transparent 35%), linear-gradient(145deg, #121c27, #090e14); }
.image-fallback span { font: 800 3rem Manrope; color: var(--accent); opacity: .82; }
.card-badge { position: absolute; top: 15px; left: 15px; z-index: 2; padding: 7px 10px; border-radius: 99px; background: rgba(7,10,15,.78); border: 1px solid rgba(255,255,255,.11); backdrop-filter: blur(10px); font-size: .56rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-card-body { padding: 24px; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 15px; color: var(--accent); font-size: .58rem; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.product-card h3 { margin: 13px 0 8px; font-size: 1.28rem; letter-spacing: -.02em; }
.product-card p { min-height: 68px; margin: 0; color: var(--muted); font-size: .8rem; }
.card-footer { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.price { display: flex; align-items: baseline; gap: 8px; }
.price strong { font: 800 1.2rem Manrope; }
.price del { color: #6d7983; font-size: .7rem; }
.card-arrow { width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.03); transition: background .2s, transform .2s; }
.product-card:hover .card-arrow { background: var(--accent); color: #07110e; transform: rotate(5deg); }
.empty-state { grid-column: 1 / -1; min-height: 300px; display: grid; place-items: center; border: 1px dashed var(--line); border-radius: var(--radius); color: var(--muted); text-align: center; padding: 40px; }

.value-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.012); }
.value-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.value-item { min-height: 240px; padding: 34px; border-right: 1px solid var(--line); }
.value-item:last-child { border: 0; }
.value-item span { color: var(--accent); font: 700 .61rem Manrope; }
.value-item h3 { margin: 64px 0 12px; font-size: 1rem; }
.value-item p { margin: 0; color: var(--muted); font-size: .77rem; }

.cta-card { min-height: 390px; padding: 68px; display: flex; justify-content: space-between; align-items: center; gap: 50px; border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent); border-radius: 28px; background: radial-gradient(circle at 12% 90%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 35%), linear-gradient(120deg, rgba(101,228,194,.05), rgba(255,255,255,.018)); position: relative; overflow: hidden; }
.cta-card::after { content: ""; position: absolute; width: 360px; height: 360px; border: 1px solid rgba(101,228,194,.12); border-radius: 50%; right: -140px; top: -155px; box-shadow: 0 0 0 48px rgba(101,228,194,.025), 0 0 0 96px rgba(101,228,194,.015); }
.cta-card h2 { margin: 20px 0 0; font-size: clamp(3rem, 5vw, 5.2rem); max-width: 760px; }
.cta-card .button { flex-shrink: 0; z-index: 1; }

.page-hero { padding: 105px 0 58px; }
.page-hero h1 { margin: 21px 0 15px; font-size: clamp(3.2rem, 7vw, 6.5rem); }
.page-hero p { max-width: 700px; margin: 0; color: var(--muted); }
.filter-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.filter-row button { padding: 9px 13px; border: 1px solid var(--line); border-radius: 99px; background: transparent; color: #9eabb4; cursor: pointer; font-size: .68rem; font-weight: 700; }
.filter-row button.active { background: var(--accent); border-color: var(--accent); color: #07110e; }

.product-detail { padding: 82px 0 115px; }
.product-layout { display: grid; grid-template-columns: 1.12fr .88fr; gap: 72px; align-items: start; }
.gallery-main { aspect-ratio: 16/10; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: #0b1118; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 11px; margin-top: 12px; }
.gallery-thumb { aspect-ratio: 16/10; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #0b1118; cursor: pointer; padding: 0; opacity: .62; transition: opacity .2s, border-color .2s, transform .2s; }
.gallery-thumb.active, .gallery-thumb:hover { opacity: 1; border-color: var(--accent); transform: translateY(-2px); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info { position: sticky; top: 112px; }
.product-info .category { color: var(--accent); font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.product-info h1 { margin: 16px 0 15px; font-size: clamp(3rem, 5vw, 5.25rem); }
.product-info .lead { color: var(--muted); font-size: .93rem; }
.detail-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.detail-tags span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 99px; color: #aeb9c1; font-size: .62rem; }
.detail-price { display: flex; align-items: baseline; gap: 11px; margin: 28px 0 24px; }
.detail-price strong { font: 800 2rem Manrope; }
.detail-price del { color: #6c7882; }
.buy-button { width: 100%; }
.purchase-note { margin: 11px 0 0; color: #687680; text-align: center; font-size: .63rem; }
.product-description { margin-top: 35px; padding-top: 29px; border-top: 1px solid var(--line); color: #b4bec5; font-size: .84rem; white-space: pre-line; }
.feature-list { list-style: none; padding: 0; margin: 27px 0 0; display: grid; gap: 11px; }
.feature-list li { display: flex; gap: 10px; color: #b9c3ca; font-size: .79rem; }
.feature-list li::before { content: "✓"; color: var(--accent); font-weight: 800; }

.success-wrap, .support-wrap { min-height: calc(100vh - 112px); display: grid; place-items: center; padding: 80px 0; }
.success-card { width: min(720px, 100%); padding: 52px; border: 1px solid var(--line); border-radius: 26px; background: var(--panel); box-shadow: var(--shadow); text-align: center; }
.success-icon { width: 68px; height: 68px; margin: 0 auto 25px; display: grid; place-items: center; border-radius: 50%; background: rgba(101,228,194,.1); border: 1px solid rgba(101,228,194,.24); color: var(--accent); font-size: 1.5rem; }
.success-card h1 { margin: 0; font-size: clamp(2.5rem, 6vw, 4rem); }
.success-card p { color: var(--muted); }
.download-box { margin-top: 28px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.025); }
.download-box .button { width: 100%; margin-top: 15px; }

.support-grid { width: min(1050px, 100%); display: grid; grid-template-columns: .82fr 1.18fr; gap: 22px; }
.support-panel { padding: 38px; border: 1px solid var(--line); border-radius: 23px; background: var(--panel); }
.support-panel h1 { margin: 18px 0 14px; font-size: clamp(2.7rem, 5vw, 4.5rem); }
.bot-options { display: grid; gap: 9px; margin-top: 28px; }
.bot-option { padding: 14px 15px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.025); color: #b9c3ca; cursor: pointer; text-align: left; transition: border-color .2s, transform .2s; }
.bot-option:hover { border-color: var(--accent); transform: translateX(4px); }
.bot-answer { min-height: 120px; margin-top: 18px; padding: 19px; border-radius: 14px; background: rgba(101,228,194,.055); color: #c7d0d4; font-size: .8rem; }
.form-grid { display: grid; gap: 15px; }
label { display: grid; gap: 7px; color: #aeb9c1; font-size: .68rem; font-weight: 700; }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 11px; background: rgba(5,8,12,.7); color: white; padding: 13px 14px; outline: none; transition: border-color .2s, box-shadow .2s; }
input:focus, textarea:focus, select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(101,228,194,.08); }
textarea { min-height: 150px; resize: vertical; }
.form-status { min-height: 22px; color: var(--accent); font-size: .72rem; }

footer { border-top: 1px solid var(--line); }
.footer-inner { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; min-height: 220px; padding: 48px 0 30px; display: grid; grid-template-columns: 1fr auto; align-content: center; gap: 25px; }
.footer-copy { color: var(--muted); font-size: .72rem; }
.footer-links { display: flex; gap: 22px; align-items: center; color: #aab5bd; font-size: .7rem; }
.footer-bottom { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 21px; display: flex; justify-content: space-between; color: #5f6b74; font-size: .61rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.skeleton { overflow: hidden; position: relative; background: rgba(255,255,255,.035); }
.skeleton::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.055), transparent); transform: translateX(-100%); animation: shimmer 1.3s infinite; }
@keyframes shimmer { to { transform: translateX(100%); } }
.toast { position: fixed; right: 22px; bottom: 22px; z-index: 120; max-width: 340px; padding: 15px 17px; border: 1px solid var(--line); border-radius: 13px; background: rgba(12,18,25,.94); backdrop-filter: blur(14px); box-shadow: 0 20px 55px rgba(0,0,0,.38); color: #c9d2d7; font-size: .75rem; transform: translateY(20px); opacity: 0; transition: .3s; }
.toast.show { transform: translateY(0); opacity: 1; }

@media (max-width: 1020px) {
  .hero-grid, .product-layout, .support-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }
  .hero-stage { min-height: 520px; }
  .stage-card { transform: none; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .value-grid { grid-template-columns: repeat(2,1fr); }
  .value-item:nth-child(2) { border-right: 0; }
  .value-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .product-info { position: static; }
}
@media (max-width: 760px) {
  .header-inner { height: 70px; }
  .menu-button { display: block; }
  .nav { position: absolute; top: 70px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 4px; padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: rgba(8,12,17,.97); box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: 10px; }
  .hero-copy h1 { font-size: clamp(3.1rem, 15vw, 5rem); }
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stats div { min-width: calc(50% - 10px); padding: 0; margin: 0; border: 0; }
  .hero-stage { min-height: auto; margin-top: 35px; }
  .float-chip { display: none; }
  .section { padding: 88px 0; }
  .section-head { flex-direction: column; align-items: start; }
  .product-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .value-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .value-item:last-child { border-bottom: 0; }
  .cta-card { min-height: 420px; padding: 38px 26px; flex-direction: column; align-items: flex-start; justify-content: center; }
  .gallery-thumbs { grid-template-columns: repeat(3,1fr); }
  .success-card, .support-panel { padding: 30px 22px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 430px) {
  .shell, .header-inner, .footer-inner { width: min(var(--max), calc(100% - 28px)); }
  .brand-copy small { display: none; }
  .hero-copy h1 { font-size: 2.85rem; }
  .stage-card { min-height: 450px; padding: 15px; }
  .stage-main, .stage-main img, .stage-placeholder { min-height: 270px; height: 270px; }
}

/* Drusive headless Tebex additions */
.cart-link { display: inline-flex !important; align-items: center; gap: 7px; }
.cart-count { min-width: 21px; height: 21px; padding: 0 6px; display: inline-grid; place-items: center; border-radius: 99px; background: rgba(101,228,194,.12); border: 1px solid rgba(101,228,194,.2); color: var(--accent); font-size: .58rem; }
.purchase-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.purchase-actions .button { width: 100%; }
.rich-description { white-space: normal; line-height: 1.75; }
.rich-description h1, .rich-description h2, .rich-description h3 { margin: 1.35em 0 .55em; letter-spacing: -.025em; }
.rich-description h2 { font-size: 1.4rem; }
.rich-description h3 { font-size: 1.05rem; }
.rich-description p { margin: 0 0 1em; }
.rich-description ul, .rich-description ol { padding-left: 1.25rem; }
.rich-description li { margin: .45em 0; }
.rich-description a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.cart-shell { padding-top: 30px; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(310px,.75fr); gap: 24px; align-items: start; }
.cart-items { display: grid; gap: 12px; }
.cart-item { min-height: 160px; display: grid; grid-template-columns: 190px 1fr auto; gap: 22px; align-items: center; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.012)); }
.cart-item-image { height: 132px; border: 1px solid var(--line); border-radius: 13px; overflow: hidden; background: #0b1118; }
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-copy > span { color: var(--accent); font-size: .57rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.cart-item-copy h3 { margin: 7px 0 6px; font-size: 1.12rem; }
.cart-item-copy p { margin: 0; color: var(--muted); font-size: .72rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cart-item-end { min-width: 105px; text-align: right; display: grid; justify-items: end; gap: 17px; }
.cart-item-end strong { font: 800 1.05rem Manrope; }
.cart-item-end button { border: 0; background: transparent; color: #75838d; cursor: pointer; font-size: .63rem; }
.cart-item-end button:hover { color: var(--accent); }
.cart-summary { position: sticky; top: 112px; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: var(--panel); box-shadow: 0 25px 65px rgba(0,0,0,.2); }
.cart-summary .eyebrow { margin-bottom: 22px; }
.summary-line { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); color: #aab5bd; font-size: .78rem; }
.summary-line.total { margin-top: 4px; padding: 20px 0; color: white; }
.summary-line.total strong { font: 800 1.3rem Manrope; }
.cart-summary p { color: var(--muted); font-size: .67rem; margin: 20px 0; }
.cart-summary .button { width: 100%; margin-top: 9px; }
.cart-empty .button { margin-top: 25px; }

.checkout-body { min-height: 100vh; display: flex; flex-direction: column; }
.checkout-header { width: min(1120px, calc(100% - 40px)); height: 88px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.text-link { color: #aeb9c1; font-size: .72rem; }
.text-link:hover { color: var(--accent); }
.checkout-shell { width: min(820px, calc(100% - 40px)); flex: 1; margin: 0 auto; display: grid; place-items: center; padding: 70px 0; }
.checkout-card { width: 100%; padding: 42px; border: 1px solid var(--line); border-radius: 24px; background: var(--panel); box-shadow: var(--shadow); text-align: center; }
.checkout-card h1 { margin: 18px 0 14px; font-size: clamp(2.65rem, 6vw, 4.8rem); }
.checkout-card > p { max-width: 590px; margin: 0 auto; color: var(--muted); }
.checkout-status { margin: 28px 0 18px; padding: 13px 15px; border: 1px solid rgba(101,228,194,.15); border-radius: 12px; background: rgba(101,228,194,.045); color: #bfd3cc; font-size: .74rem; }
.checkout-fallback { margin-top: 15px; width: 100%; }

.success-shell { min-height: 100vh; display: grid; place-items: center; padding: 70px 0; }
.success-card { width: min(760px, 100%); }
.success-card h1 { margin: 20px 0 15px; }
.success-actions { display: flex; justify-content: center; gap: 11px; margin-top: 30px; }

@media (max-width: 900px) {
  .cart-shell { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}
@media (max-width: 680px) {
  .purchase-actions { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 100px 1fr; gap: 14px; }
  .cart-item-image { height: 92px; }
  .cart-item-end { grid-column: 1 / -1; width: 100%; display: flex; justify-content: space-between; align-items: center; }
  .checkout-card { padding: 32px 20px; }
  .success-actions { flex-direction: column; }
  .success-actions .button { width: 100%; }
}
