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

:root {
  --ink: #090b0a;
  --ink-2: #121512;
  --paper: #f3f1ea;
  --paper-2: #e7e4dc;
  --lime: #d8ff3e;
  --coral: #ff684f;
  --blue: #6e7cff;
  --muted: #a7aaa4;
  --line: rgba(9, 11, 10, .16);
  --radius: 18px;
  --max: 1440px;
  --sans: 'Manrope', Arial, sans-serif;
  --mono: 'DM Mono', monospace;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.locked { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.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; }
.skip-link { position: fixed; z-index: 999; top: 8px; left: 8px; transform: translateY(-150%); padding: 12px 18px; background: var(--lime); color: var(--ink); font-weight: 800; }
.skip-link:focus { transform: none; }

.ticker {
  overflow: hidden;
  height: 29px;
  color: var(--paper);
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.15);
  font: 500 10px/29px var(--mono);
  letter-spacing: .12em;
}
.ticker-track { display: flex; width: max-content; animation: ticker 25s linear infinite; }
.ticker span { white-space: nowrap; }
.ticker i { width: 4px; height: 4px; margin: 12px 34px; border-radius: 50%; background: var(--lime); }
@keyframes ticker { to { transform: translateX(-50%); } }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 3.5vw, 56px);
  background: rgba(243,241,234,.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; font-size: 18px; font-weight: 800; letter-spacing: -.035em; }
.brand-mark { width: 32px; height: 32px; color: var(--lime); }
.site-header .brand-mark { color: var(--lime); }
.desktop-nav { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 700; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; content: ''; background: var(--ink); transition: right .25s ease; }
.desktop-nav a:hover::after { right: 0; }
.nav-new { position: absolute; top: -12px; right: -28px; color: #5f28e8; font: 500 7px/1 var(--mono); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 8px; }
.icon-btn, .menu-btn, .drawer-close, .modal-close { display: grid; place-items: center; border: 0; background: transparent; cursor: pointer; }
.icon-btn { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; }
.icon-btn svg, .search-box svg { width: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.8; }
.cart-btn { height: 42px; display: flex; align-items: center; gap: 14px; padding: 0 8px 0 18px; border: 0; border-radius: 50px; color: var(--paper); background: var(--ink); font-size: 12px; font-weight: 700; cursor: pointer; }
.cart-icon { display: none; width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.cart-count { display: grid; min-width: 28px; height: 28px; place-items: center; padding: 0 5px; border-radius: 50px; color: var(--ink); background: var(--lime); font: 500 11px/1 var(--mono); }
.menu-btn { display: none; width: 40px; height: 40px; gap: 6px; }
.menu-btn span { width: 22px; height: 2px; background: var(--ink); transition: transform .25s ease; }
.menu-btn.active span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-btn.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 45; inset: 107px 0 auto; display: grid; gap: 0; padding: 12px 20px 28px; background: var(--paper); border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.mobile-menu.open { transform: none; }
.mobile-menu a { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 24px; font-weight: 800; }

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  gap: clamp(40px, 5vw, 90px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px clamp(20px, 4vw, 64px) 76px;
}
.eyebrow, .section-kicker { margin: 0 0 24px; font: 500 11px/1.3 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 9px; }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(255,104,79,.15); }
.hero h1, .section-heading h2, .bundle-heading h2, .how-copy h2, .trust-statement h2, .faq-heading h2 {
  margin: 0;
  font-size: clamp(50px, 6.3vw, 96px);
  line-height: .91;
  letter-spacing: -.075em;
  font-weight: 800;
}
h1 em, h2 em { color: transparent; -webkit-text-stroke: 1.5px currentColor; font-style: normal; }
.hero h1 em { color: var(--paper); -webkit-text-stroke: 2px var(--ink); }
.section-heading h2 em, .how-copy h2 em, .faq-heading h2 em { color: var(--paper); -webkit-text-stroke: 1.5px var(--ink); }
.bundle-heading h2 em { color: var(--ink); -webkit-text-stroke: 1.5px var(--paper); }
.hero-lede { max-width: 610px; margin: 30px 0; color: #545751; font-size: clamp(16px, 1.5vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 22px; padding: 0 24px; border: 0; border-radius: 999px; font-size: 13px; font-weight: 800; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--ink); background: var(--lime); box-shadow: inset 0 0 0 1px rgba(0,0,0,.1); }
.btn-primary:hover { background: #c8ef2f; }
.btn-light { color: var(--ink); background: var(--paper); }
.btn-outline { color: inherit; border: 1px solid currentColor; background: transparent; }
.text-link { padding: 10px 0; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 800; }
.text-link span { margin-left: 18px; }
.hero-proof { display: flex; gap: clamp(25px, 4vw, 64px); margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-proof div { display: flex; align-items: flex-start; gap: 10px; }
.hero-proof strong { font-size: 22px; letter-spacing: -.05em; }
.hero-proof span { color: #676963; font: 400 10px/1.35 var(--mono); }

.hero-drop { position: relative; min-height: 525px; padding: 22px; border-radius: 26px; color: var(--paper); background: var(--ink); overflow: hidden; box-shadow: 0 28px 80px rgba(9,11,10,.16); }
.hero-drop::before { position: absolute; inset: 0; content: ''; opacity: .34; background: radial-gradient(circle at 15% 15%, rgba(216,255,62,.5), transparent 30%), radial-gradient(circle at 95% 50%, rgba(110,124,255,.55), transparent 32%); }
.drop-topline { position: relative; z-index: 2; display: flex; justify-content: space-between; font: 500 10px/1 var(--mono); letter-spacing: .08em; }
.cover-stack { position: relative; height: 310px; margin: 28px 0 15px; perspective: 1000px; }
.cover-stack img { position: absolute; top: 12px; left: 50%; width: 175px; height: 264px; object-fit: cover; border: 5px solid #20231f; border-radius: 9px; box-shadow: 0 24px 50px rgba(0,0,0,.45); transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.cover-stack img:nth-child(1) { transform: translateX(-112%) rotate(-12deg); }
.cover-stack img:nth-child(2) { z-index: 2; transform: translateX(-50%) translateY(-12px); }
.cover-stack img:nth-child(3) { transform: translateX(12%) rotate(12deg); }
.hero-drop:hover .cover-stack img:nth-child(1) { transform: translateX(-120%) rotate(-16deg) translateY(-8px); }
.hero-drop:hover .cover-stack img:nth-child(2) { transform: translateX(-50%) translateY(-23px); }
.hero-drop:hover .cover-stack img:nth-child(3) { transform: translateX(20%) rotate(16deg) translateY(-8px); }
.drop-info { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 20px; align-items: flex-end; margin-bottom: 17px; }
.drop-info p { margin: 0 0 5px; font-size: 18px; font-weight: 800; letter-spacing: -.03em; }
.drop-info small { color: #b6bab2; }
.drop-price { display: flex; flex-direction: column; align-items: flex-end; }
.drop-price s { color: #7f837c; font: 400 11px/1 var(--mono); }
.drop-price strong { font-size: 28px; }
.hero-drop .btn { position: relative; z-index: 2; width: 100%; }
.floating-chip { position: absolute; z-index: 4; padding: 8px 12px; border-radius: 99px; color: var(--ink); background: var(--lime); box-shadow: 0 8px 20px rgba(0,0,0,.2); font: 500 9px/1 var(--mono); }
.chip-one { top: 105px; right: 18px; transform: rotate(8deg); }
.chip-two { bottom: 156px; left: 15px; color: white; background: var(--coral); transform: rotate(-7deg); }

.value-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--ink); color: var(--paper); }
.value-strip > div { min-height: 100px; display: flex; align-items: center; justify-content: center; gap: 14px; padding: 20px; border-right: 1px solid rgba(255,255,255,.12); }
.value-icon { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--lime); }
.value-strip p { display: grid; gap: 4px; margin: 0; }
.value-strip strong { font-size: 12px; }
.value-strip small { color: #90958c; font: 400 9px/1.4 var(--mono); }

.catalog-section { max-width: var(--max); margin: 0 auto; padding: 120px clamp(20px, 4vw, 64px); }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 54px; }
.section-heading h2, .bundle-heading h2, .how-copy h2, .faq-heading h2 { font-size: clamp(46px, 5vw, 76px); }
.section-note { max-width: 360px; margin: 0 0 8px; color: #6c6f68; font-size: 12px; line-height: 1.6; }
.catalog-tools { position: sticky; z-index: 20; top: 77px; display: grid; grid-template-columns: minmax(260px, 1fr) auto auto; gap: 20px; align-items: center; margin: 0 -14px 35px; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: rgba(243,241,234,.9); backdrop-filter: blur(18px); }
.search-box { height: 48px; display: flex; align-items: center; gap: 12px; padding: 0 16px; border-radius: 12px; background: #fff; }
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; font-size: 13px; }
kbd { padding: 3px 7px; border: 1px solid var(--line); border-radius: 5px; color: #777a74; background: var(--paper); font: 400 10px var(--mono); }
.filter-row { display: flex; gap: 6px; }
.filter-chip { height: 36px; padding: 0 14px; border: 1px solid var(--line); border-radius: 99px; background: transparent; font-size: 11px; font-weight: 700; cursor: pointer; white-space: nowrap; }
.filter-chip.active { color: var(--paper); background: var(--ink); }
.filter-chip b { margin-left: 6px; color: #8b8e87; font: 500 9px/1 var(--mono); }
.filter-chip.active b { color: var(--lime); }
.sort-control { display: flex; gap: 8px; align-items: center; color: #7b7d78; font: 400 10px var(--mono); }
.sort-control select { max-width: 120px; border: 0; outline: 0; background: transparent; color: var(--ink); font: 500 10px var(--mono); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 42px 16px; }
.product-card { position: relative; min-width: 0; }
.product-image { position: relative; aspect-ratio: 2 / 2.72; overflow: hidden; border-radius: 14px; background: #c9c8c1; cursor: pointer; }
.product-image::after { position: absolute; inset: 0; content: ''; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.4)); opacity: 0; transition: opacity .25s ease; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.product-card:hover .product-image img { transform: scale(1.045); }
.product-card:hover .product-image::after { opacity: 1; }
.product-badge { position: absolute; z-index: 2; top: 10px; left: 10px; padding: 7px 9px; border-radius: 99px; color: var(--ink); background: var(--lime); font: 500 8px/1 var(--mono); }
.product-discount { position: absolute; z-index: 2; right: 10px; top: 10px; padding: 7px 9px; border-radius: 99px; color: white; background: var(--coral); font: 500 8px/1 var(--mono); }
.quick-view { position: absolute; z-index: 3; left: 12px; right: 12px; bottom: 12px; height: 42px; border: 0; border-radius: 99px; background: rgba(243,241,234,.92); backdrop-filter: blur(10px); font-size: 11px; font-weight: 800; opacity: 0; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease; cursor: pointer; }
.product-card:hover .quick-view, .quick-view:focus-visible { opacity: 1; transform: none; }
.product-meta { padding: 15px 3px 0; }
.product-platform { display: flex; justify-content: space-between; margin-bottom: 8px; color: #777a74; font: 400 9px/1 var(--mono); text-transform: uppercase; }
.product-platform span:last-child { color: #3d403b; }
.product-meta h3 { min-height: 43px; margin: 0 0 13px; font-size: 15px; line-height: 1.35; letter-spacing: -.025em; }
.product-bottom { display: flex; justify-content: space-between; align-items: center; }
.product-price { display: flex; align-items: baseline; gap: 7px; }
.product-price strong { font-size: 20px; letter-spacing: -.04em; }
.product-price s { color: #999b96; font: 400 9px var(--mono); }
.add-btn, .round-add { display: grid; place-items: center; border: 0; border-radius: 50%; color: var(--paper); background: var(--ink); cursor: pointer; transition: transform .2s ease, background .2s ease; }
.add-btn { width: 38px; height: 38px; font-size: 20px; }
.add-btn:hover, .round-add:hover { transform: rotate(8deg) scale(1.06); background: #282c27; }
.empty-state { padding: 70px 20px; text-align: center; border: 1px dashed var(--line); border-radius: var(--radius); }
.empty-state strong { font-size: 28px; }
.empty-state p { color: #767972; }
.load-more { display: flex; margin: 54px auto 0; }

.bundles-section { padding: 120px clamp(20px, 4vw, 64px); color: var(--paper); background: var(--ink); }
.bundle-heading { max-width: var(--max); display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin: 0 auto 62px; }
.bundle-heading > p:last-child { max-width: 360px; margin: 0 0 8px; color: #a6aaa2; line-height: 1.6; }
.bundle-grid { max-width: var(--max); display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin: 0 auto; }
.bundle-card { position: relative; min-height: 690px; display: flex; flex-direction: column; overflow: hidden; border-radius: 22px; color: var(--ink); }
.bundle-lime { background: var(--lime); }
.bundle-coral { background: var(--coral); }
.bundle-blue { background: var(--blue); }
.bundle-no { position: absolute; z-index: 3; top: 18px; left: 20px; font: 500 10px var(--mono); }
.bundle-collage { position: relative; height: 330px; overflow: hidden; }
.bundle-collage::after { position: absolute; inset: 0; content: ''; background: linear-gradient(180deg, transparent 65%, rgba(0,0,0,.12)); }
.bundle-collage img { position: absolute; top: 50px; left: 50%; width: 155px; height: 232px; object-fit: cover; border: 4px solid var(--ink); border-radius: 7px; box-shadow: 0 20px 30px rgba(0,0,0,.25); transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.bundle-collage img:nth-child(1) { transform: translateX(-120%) rotate(-14deg); }
.bundle-collage img:nth-child(2) { z-index: 2; transform: translateX(-50%) translateY(-18px); }
.bundle-collage img:nth-child(3) { transform: translateX(20%) rotate(14deg); }
.bundle-card:hover .bundle-collage img:nth-child(1) { transform: translateX(-130%) rotate(-18deg); }
.bundle-card:hover .bundle-collage img:nth-child(2) { transform: translateX(-50%) translateY(-28px); }
.bundle-card:hover .bundle-collage img:nth-child(3) { transform: translateX(30%) rotate(18deg); }
.bundle-body { flex: 1; display: flex; flex-direction: column; padding: 0 28px 28px; }
.bundle-label { font: 500 9px/1 var(--mono); letter-spacing: .07em; }
.bundle-body h3 { margin: 9px 0 17px; font-size: clamp(40px, 4vw, 58px); line-height: .9; letter-spacing: -.065em; }
.bundle-body ul { margin: 0; padding: 0; list-style: none; font-size: 11px; line-height: 1.75; }
.bundle-body li:last-child { margin-top: 3px; font-weight: 800; }
.bundle-buy { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(9,11,10,.25); }
.bundle-buy p { display: grid; gap: 2px; margin: 0; }
.bundle-buy s { font: 400 10px var(--mono); }
.bundle-buy strong { font-size: 34px; letter-spacing: -.05em; }
.round-add { width: 54px; height: 54px; font-size: 22px; }

.how-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; max-width: var(--max); margin: 0 auto; padding: 130px clamp(20px, 4vw, 64px); }
.how-copy { position: sticky; top: 130px; align-self: start; }
.how-copy p:last-child { max-width: 430px; margin-top: 28px; color: #6e716a; line-height: 1.6; }
.steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.steps li { display: grid; grid-template-columns: 72px 1fr; gap: 20px; padding: 36px 0; border-bottom: 1px solid var(--line); }
.steps > li > span { font: 500 11px var(--mono); }
.steps h3 { margin: 0 0 10px; font-size: 25px; letter-spacing: -.04em; }
.steps p { max-width: 480px; margin: 0; color: #686b65; font-size: 14px; line-height: 1.55; }

.trust-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; padding: 100px max(clamp(20px, 4vw, 64px), calc((100vw - var(--max))/2 + 64px)); color: var(--paper); background: #151814; }
.trust-statement > span { color: var(--lime); font: 500 10px var(--mono); letter-spacing: .1em; }
.trust-statement h2 { margin-top: 25px; font-size: clamp(44px, 5vw, 70px); }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.12); }
.trust-grid article { padding: 30px 24px; background: #151814; }
.trust-grid span { color: var(--lime); font: 500 10px var(--mono); }
.trust-grid h3 { margin: 70px 0 15px; font-size: 18px; }
.trust-grid p { margin: 0; color: #9da198; font-size: 12px; line-height: 1.6; }

.faq-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; max-width: var(--max); margin: 0 auto; padding: 130px clamp(20px, 4vw, 64px); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 27px 0; font-size: 16px; font-weight: 700; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { font-size: 25px; font-weight: 400; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 670px; margin: -5px 0 28px; color: #666963; font-size: 13px; line-height: 1.65; }

footer { padding: 70px clamp(20px, 4vw, 64px) 24px; color: var(--paper); background: var(--ink); }
.footer-main { max-width: var(--max); display: grid; grid-template-columns: 1.5fr repeat(3,.6fr) 1.3fr; gap: 50px; margin: 0 auto 70px; }
.footer-brand p { margin: 24px 0 0; color: #9a9e96; font-size: 13px; line-height: 1.6; }
.footer-links { display: grid; align-content: start; gap: 13px; }
.footer-links strong, .newsletter > strong { margin-bottom: 8px; color: #6f736b; font: 500 9px var(--mono); letter-spacing: .09em; }
.footer-links a { width: max-content; color: #d4d5d0; font-size: 12px; }
.footer-links a:hover { color: var(--lime); }
.newsletter form { display: flex; margin: 14px 0 12px; border-bottom: 1px solid #555951; }
.newsletter input { width: 100%; padding: 13px 0; border: 0; outline: 0; color: white; background: transparent; }
.newsletter button { width: 42px; border: 0; color: var(--lime); background: transparent; font-size: 20px; cursor: pointer; }
.newsletter small { color: #6e726a; font-size: 9px; line-height: 1.5; }
.footer-bottom { max-width: var(--max); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; margin: 0 auto; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { margin: 0; color: #767a72; font: 400 8px/1.4 var(--mono); }
.footer-bottom p:last-child { text-align: right; }
.payment-marks { display: flex; gap: 7px; }
.payment-card { min-width: 48px; height: 29px; display: flex; align-items: center; justify-content: center; padding: 5px 7px; border-radius: 4px; color: #161916; background: white; font: 700 8px var(--sans); }
.payment-card img { max-width: 36px; max-height: 17px; }
.mastercard { gap: -4px; }
.mastercard i { width: 15px; height: 15px; border-radius: 50%; background: #eb001b; }
.mastercard i:last-child { margin-left: -5px; background: rgba(247,158,27,.9); }

.drawer-backdrop { position: fixed; z-index: 100; inset: 0; background: rgba(9,11,10,.55); backdrop-filter: blur(4px); opacity: 0; transition: opacity .3s ease; }
.drawer-backdrop.visible { opacity: 1; }
.cart-drawer { position: fixed; z-index: 110; top: 0; right: 0; bottom: 0; width: min(480px, 100%); display: flex; flex-direction: column; padding: 28px; background: var(--paper); transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.8,.2,1); }
.cart-drawer.open { transform: none; }
.cart-header { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.cart-header span { font: 500 9px var(--mono); letter-spacing: .1em; }
.cart-header h2 { margin: 12px 0 0; font-size: 38px; line-height: .95; letter-spacing: -.06em; }
.drawer-close, .modal-close { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; font-size: 25px; }
.cart-items { flex: 1; overflow-y: auto; }
.cart-line { display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-line img { width: 72px; height: 96px; border-radius: 6px; object-fit: cover; }
.cart-line-info { display: flex; flex-direction: column; }
.cart-line-info small { color: #747770; font: 400 8px var(--mono); text-transform: uppercase; }
.cart-line-info strong { margin: 6px 0; font-size: 13px; }
.cart-line-info button { width: max-content; margin-top: auto; padding: 0; border: 0; border-bottom: 1px solid #898c85; color: #6c6f68; background: transparent; font-size: 9px; cursor: pointer; }
.cart-line-price { font: 500 12px var(--mono); }
.cart-empty { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.empty-orbit { width: 80px; height: 80px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; box-shadow: 0 0 0 12px var(--paper), 0 0 0 13px var(--line); color: #999c96; font: 500 13px var(--mono); }
.cart-empty h3 { margin: 34px 0 6px; font-size: 25px; }
.cart-empty p { margin: 0 0 23px; color: #787b75; font-size: 12px; }
.cart-summary { padding-top: 22px; border-top: 1px solid var(--line); }
.cart-summary > div { display: flex; justify-content: space-between; margin: 8px 0; font-size: 11px; }
.cart-summary .cart-total { margin: 18px 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: 20px; }
.cart-summary .btn { width: 100%; }
.cart-summary > p { margin: 11px 0 0; color: #898c85; text-align: center; font: 400 8px var(--mono); }

dialog { padding: 0; border: 0; border-radius: 20px; color: var(--ink); background: var(--paper); box-shadow: 0 35px 100px rgba(0,0,0,.32); }
dialog::backdrop { background: rgba(9,11,10,.68); backdrop-filter: blur(5px); }
.product-modal { width: min(950px, calc(100% - 30px)); }
.product-modal .modal-close, .checkout-modal .modal-close { position: absolute; z-index: 5; top: 18px; right: 18px; background: var(--paper); }
.modal-product { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 590px; }
.modal-cover { min-height: 590px; background: #222; }
.modal-cover img { width: 100%; height: 100%; object-fit: cover; }
.modal-copy { display: flex; flex-direction: column; padding: 58px 48px 40px; }
.modal-copy .section-kicker { margin-bottom: 16px; }
.modal-copy h2 { margin: 0; font-size: clamp(36px, 5vw, 61px); line-height: .95; letter-spacing: -.06em; }
.modal-copy > p { color: #656862; font-size: 13px; line-height: 1.65; }
.modal-specs { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 18px 0; }
.modal-specs div { padding: 14px; border: 1px solid var(--line); border-radius: 10px; }
.modal-specs span { display: block; margin-bottom: 7px; color: #898c85; font: 400 8px var(--mono); }
.modal-specs strong { font-size: 11px; }
.modal-buy { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); }
.modal-buy p { display: grid; margin: 0; }
.modal-buy s { color: #888b84; font: 400 10px var(--mono); }
.modal-buy strong { font-size: 32px; }
.checkout-modal { width: min(1040px, calc(100% - 30px)); }
.checkout-layout { display: grid; grid-template-columns: 1.2fr .8fr; }
.checkout-layout > div { padding: 55px 50px 45px; }
.checkout-layout h2 { margin: 0 0 30px; font-size: 50px; letter-spacing: -.06em; }
#checkout-form { display: grid; gap: 17px; }
#checkout-form label { display: grid; gap: 7px; font-size: 10px; font-weight: 800; }
#checkout-form input, #checkout-form select { height: 48px; padding: 0 14px; border: 1px solid var(--line); border-radius: 9px; background: white; outline: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkout-payment { height: 56px; display: flex; align-items: center; justify-content: space-between; padding: 0 16px; border: 2px solid var(--ink); border-radius: 9px; font-size: 12px; font-weight: 800; }
.checkout-payment img { width: 52px; }
#checkout-form small { color: #858881; text-align: center; font-size: 9px; }
.checkout-layout > aside { padding: 55px 35px; background: #e4e1d9; }
.checkout-layout > aside > span { font: 500 9px var(--mono); }
.checkout-line { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 11px; }
.checkout-sum { display: flex; justify-content: space-between; margin-top: 25px; font-size: 18px; }

.toast { position: fixed; z-index: 150; left: 50%; bottom: 30px; display: flex; align-items: center; gap: 13px; min-width: 280px; padding: 13px 18px; border-radius: 12px; color: var(--paper); background: var(--ink); box-shadow: 0 16px 40px rgba(0,0,0,.25); opacity: 0; pointer-events: none; transform: translate(-50%, 20px); transition: opacity .25s ease, transform .25s ease; }
.toast.show { opacity: 1; transform: translate(-50%,0); }
.toast > span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; color: var(--ink); background: var(--lime); }
.toast p { display: grid; gap: 2px; margin: 0; font-size: 11px; }
.toast small { color: #9a9e96; }
.mobile-cart-bar { position: fixed; z-index: 40; left: 10px; right: 10px; bottom: 10px; height: 54px; align-items: center; justify-content: space-between; padding: 0 18px; border: 0; border-radius: 12px; color: var(--paper); background: var(--ink); box-shadow: 0 12px 40px rgba(0,0,0,.25); font-size: 11px; cursor: pointer; }
.mobile-cart-bar span { color: #a7aaa4; }
.mobile-cart-bar i { display: inline-grid; width: 23px; height: 23px; place-items: center; margin-right: 5px; border-radius: 50%; color: var(--ink); background: var(--lime); font-style: normal; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .catalog-tools { grid-template-columns: 1fr auto; }
  .filter-row { grid-column: 1 / -1; overflow-x: auto; order: 3; padding-bottom: 2px; }
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .bundle-grid { grid-template-columns: repeat(2,1fr); }
  .bundle-card:last-child { grid-column: 1 / -1; min-height: 600px; }
  .footer-main { grid-template-columns: 1.5fr repeat(3,.7fr); }
  .newsletter { grid-column: 1 / -1; max-width: 460px; }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-btn { display: grid; }
  .hero { grid-template-columns: 1fr; padding-top: 48px; }
  .hero-copy { max-width: 720px; }
  .hero-drop { width: min(600px,100%); justify-self: center; }
  .value-strip { grid-template-columns: repeat(2,1fr); }
  .value-strip > div:nth-child(2) { border-right: 0; }
  .value-strip > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .bundle-heading { display: block; }
  .bundle-heading > p:last-child { margin-top: 24px; }
  .bundle-grid { grid-template-columns: 1fr; }
  .bundle-card:last-child { grid-column: auto; }
  .how-section, .faq-section, .trust-section { grid-template-columns: 1fr; gap: 55px; }
  .how-copy { position: static; }
  .trust-grid { grid-template-columns: repeat(3,1fr); }
  .footer-main { grid-template-columns: repeat(3,1fr); }
  .footer-brand, .newsletter { grid-column: 1 / -1; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-bottom p:last-child { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 640px) {
  .ticker { height: 25px; line-height: 25px; }
  .ticker i { margin-top: 10px; }
  .site-header { height: 66px; padding: 0 16px; }
  .site-header .brand span { display: block; font-size: 14px; }
  .mobile-menu { inset-block-start: 91px; }
  .icon-btn { display: none; }
  .cart-btn { position: relative; width: 44px; height: 44px; justify-content: center; padding: 0; color: var(--ink); background: transparent; }
  .cart-icon { display: block; }
  .cart-btn > span { display: none; }
  .cart-btn .cart-count { position: absolute; top: -2px; right: -3px; min-width: 19px; height: 19px; padding: 0 4px; border: 2px solid var(--paper); font-size: 8px; }
  .hero { min-height: auto; gap: 46px; padding: 44px 18px 60px; }
  .hero h1 { font-size: clamp(47px, 15vw, 68px); }
  .hero-lede { margin: 23px 0; font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .text-link { width: max-content; }
  .hero-proof { justify-content: space-between; gap: 12px; margin-top: 34px; }
  .hero-proof div { display: grid; gap: 4px; }
  .hero-proof strong { font-size: 18px; }
  .hero-proof span { font-size: 8px; }
  .hero-drop { min-height: 445px; padding: 17px; border-radius: 18px; }
  .cover-stack { height: 260px; margin-top: 20px; }
  .cover-stack img { width: 132px; height: 202px; }
  .drop-info p { font-size: 14px; }
  .drop-info small { font-size: 9px; }
  .drop-price strong { font-size: 23px; }
  .chip-two { bottom: 135px; }
  .value-strip > div { min-height: 84px; justify-content: flex-start; padding: 16px; }
  .value-strip strong { font-size: 10px; }
  .value-strip small { font-size: 7px; }
  .value-icon { width: 30px; height: 30px; }
  .catalog-section, .bundles-section, .how-section, .faq-section { padding: 80px 16px; }
  .section-heading { display: block; margin-bottom: 34px; }
  .section-note { margin-top: 22px; }
  .section-heading h2, .bundle-heading h2, .how-copy h2, .faq-heading h2 { font-size: 48px; }
  .catalog-tools { top: 65px; grid-template-columns: 1fr; gap: 10px; margin: 0 -6px 28px; padding: 8px; }
  .filter-row { grid-column: auto; margin-right: -8px; }
  .sort-control { display: none; }
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 30px 10px; }
  .product-image { border-radius: 9px; }
  .product-badge, .product-discount { top: 7px; padding: 5px 6px; font-size: 6px; }
  .product-badge { left: 7px; }
  .product-discount { right: 7px; }
  .quick-view { display: none; }
  .product-meta { padding-top: 10px; }
  .product-platform { font-size: 7px; }
  .product-meta h3 { min-height: 39px; margin-bottom: 8px; font-size: 12px; }
  .product-price { display: grid; gap: 0; }
  .product-price strong { font-size: 17px; }
  .product-price s { font-size: 7px; }
  .add-btn { width: 34px; height: 34px; }
  .bundle-heading { margin-bottom: 40px; }
  .bundle-card { min-height: 620px; }
  .bundle-collage { height: 290px; }
  .bundle-collage img { width: 125px; height: 190px; }
  .bundle-body h3 { font-size: 50px; }
  .how-section { gap: 40px; }
  .steps li { grid-template-columns: 45px 1fr; }
  .trust-section { padding: 80px 16px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid h3 { margin-top: 40px; }
  .faq-section { gap: 36px; }
  footer { padding: 60px 18px 90px; }
  .footer-main { grid-template-columns: repeat(2,1fr); gap: 38px 24px; }
  .footer-brand, .newsletter { grid-column: 1 / -1; }
  .footer-main .footer-links:nth-of-type(4) { grid-column: 1 / -1; }
  .footer-bottom { grid-template-columns: 1fr; }
  .payment-marks { order: -1; }
  .modal-product { grid-template-columns: 1fr; }
  .modal-cover { min-height: 340px; max-height: 380px; }
  .modal-copy { padding: 34px 22px 28px; }
  .modal-copy h2 { font-size: 40px; }
  .modal-specs { grid-template-columns: 1fr 1fr; }
  .modal-buy { align-items: stretch; flex-direction: column; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-layout > div { padding: 48px 20px 28px; }
  .checkout-layout > aside { padding: 28px 20px; }
  .checkout-layout h2 { font-size: 42px; }
  .field-row { grid-template-columns: 1fr; }
  .cart-drawer { padding: 20px 16px; }
  .mobile-cart-bar[style*="flex"] { display: flex !important; }
  .toast { bottom: 76px; }
}

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