:root {
  --bg: #0b0b0c;
  --surface: #131315;
  --surface-2: #1a1a1d;
  --line: #29292d;
  --text: #f5f3ef;
  --muted: #8c8c92;
  --blue: #2868e8;
  --blue-light: #4f84ef;
  --green: #69e071;
  --white: #ffffff;
  --display: "Anton", Impact, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --body: "Inter", Arial, sans-serif;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  min-width: 320px;
  overflow-x: hidden;
}
body.menu-open, body.modal-open { overflow: hidden; }
button, input, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: .035;
  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='.8'/%3E%3C/svg%3E");
}

.site-header {
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(22px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,11,12,.88);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 25px);
  letter-spacing: -.45px;
  line-height: 1;
  white-space: nowrap;
  width: fit-content;
  max-width: 100%;
}
.brand strong { color: var(--blue-light); font-weight: 400; }
.desktop-nav { display: flex; gap: 34px; }
.desktop-nav a {
  font-family: var(--mono); font-size: 12px; text-transform: uppercase; color: #aaaab0;
  transition: color .2s ease;
}
.desktop-nav a:hover { color: var(--white); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 25px; }
.icon-text-btn, .menu-toggle {
  border: 0; background: transparent; cursor: pointer;
}
.icon-text-btn {
  display: inline-flex; align-items: center; gap: 8px; color: #aaaab0;
  font-family: var(--mono); text-transform: uppercase; font-size: 12px;
}
.icon-text-btn svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.menu-toggle { width: 28px; height: 28px; position: relative; padding: 4px; }
.menu-toggle span { position: absolute; left: 4px; right: 4px; height: 1.5px; background: #ddd; transition: .25s ease; }
.menu-toggle span:first-child { top: 9px; }
.menu-toggle span:last-child { top: 17px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 13px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 13px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; z-index: 45; inset: 82px 0 auto 0;
  background: #101012; border-bottom: 1px solid var(--line);
  padding: 28px clamp(22px, 5vw, 76px) 36px;
  display: grid; gap: 6px;
  transform: translateY(-120%); opacity: 0; visibility: hidden;
  transition: .35s cubic-bezier(.2,.8,.2,1);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu a, .mobile-menu button {
  padding: 16px 0; border: 0; border-bottom: 1px solid var(--line); background: none;
  font-family: var(--display); text-align: left; font-size: 30px; cursor: pointer;
}

.section-shell { width: min(1320px, calc(100% - 48px)); margin-inline: auto; }
.hero {
  min-height: 720px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(44px, 7vw, 110px);
  align-items: center; padding-top: 78px; padding-bottom: 86px;
}
.eyebrow, .section-kicker {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted);
}
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 25px; }
.eyebrow span { width: 28px; height: 2px; background: var(--blue); }
h1, h2 { margin: 0; font-family: var(--display); font-weight: 400; line-height: .94; letter-spacing: -.018em; }
h1 { font-size: clamp(64px, 7.15vw, 112px); }
h1 em { color: var(--blue-light); font-style: normal; }
.hero-copy > p { color: #a3a3a8; max-width: 610px; font-family: var(--mono); line-height: 1.7; font-size: 14px; margin: 27px 0; }
.hero-search {
  max-width: 650px; height: 62px; border: 1px solid #303034; border-radius: 13px; background: #171719;
  display: flex; align-items: center; padding: 0 18px; gap: 14px; transition: border .2s, box-shadow .2s;
}
.hero-search:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(40,104,232,.14); }
.hero-search svg { width: 20px; fill: none; stroke: #77777d; stroke-width: 1.7; flex: none; }
.hero-search input { border: 0; outline: 0; background: transparent; color: white; width: 100%; font-family: var(--mono); font-size: 13px; }
.hero-search input::placeholder { color: #6e6e74; }
.hero-search kbd { border: 1px solid #35353a; color: #77777d; border-radius: 5px; padding: 2px 7px; font-family: var(--mono); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.btn {
  min-height: 50px; padding: 0 23px; display: inline-flex; align-items: center; justify-content: center; gap: 30px;
  border-radius: 8px; border: 1px solid transparent; text-transform: uppercase; font-family: var(--mono); font-size: 11px; font-weight: 600;
  cursor: pointer; transition: transform .2s, background .2s, border .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: white; }
.btn-primary:hover { background: var(--blue-light); }
.btn-outline { border-color: #39393e; color: #c9c9ce; }
.btn-outline:hover { border-color: #777; background: #161618; }
.trust-row { display: flex; gap: 42px; margin-top: 42px; }
.trust-row div { display: flex; flex-direction: column; gap: 5px; }
.trust-row strong { font-family: var(--display); font-size: 24px; font-weight: 400; }
.trust-row span { color: var(--muted); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }

.hero-visual { position: relative; min-height: 580px; display: grid; place-items: center; }
.visual-orbit { position: absolute; border: 1px solid #25252a; border-radius: 50%; }
.orbit-one { width: 540px; height: 540px; }
.orbit-two { width: 380px; height: 380px; border-style: dashed; animation: spin 30s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-product-card {
  width: min(410px, 76vw); aspect-ratio: .82; background: #c9d0d8; border-radius: 32px; overflow: hidden;
  position: relative; transform: rotate(3deg); box-shadow: 0 35px 90px rgba(0,0,0,.42);
}
.hero-product-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) contrast(1.05); }
.card-stamp { position: absolute; top: 20px; left: 20px; z-index: 2; padding: 8px 10px; color: #111; background: rgba(255,255,255,.82); backdrop-filter: blur(8px); border-radius: 20px; font: 600 9px var(--mono); }
.floating-tag { position: absolute; z-index: 2; display: flex; flex-direction: column; gap: 4px; padding: 13px 16px; min-width: 110px; background: rgba(11,11,12,.88); backdrop-filter: blur(12px); border: 1px solid #39393c; border-radius: 10px; transform: rotate(-3deg); }
.floating-tag span { color: #898990; font: 9px var(--mono); text-transform: uppercase; }
.floating-tag strong { font: 400 18px var(--display); }
.tag-top { right: -38px; top: 105px; }
.tag-bottom { left: -42px; bottom: 75px; }
.verified-pill { position: absolute; bottom: 24px; right: 10px; display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 30px; background: var(--green); color: #0e1a0e; font: 600 10px var(--mono); text-transform: uppercase; transform: rotate(-4deg); }
.verified-pill svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 2; }

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: #101012; }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 34px; padding: 19px 0; animation: marquee 26s linear infinite; }
.ticker-track span { font: 400 18px var(--display); letter-spacing: .04em; }
.ticker-track i { color: var(--blue-light); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.categories { padding-top: 120px; padding-bottom: 125px; }
.section-heading, .product-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-heading h2, .product-heading h2, .how-intro h2, .community-copy h2 { font-size: clamp(48px, 6vw, 82px); margin-top: 15px; }
.section-heading sup { font: 600 11px var(--mono); color: var(--blue-light); margin-left: 8px; vertical-align: top; }
.text-link { border: 0; background: transparent; color: #bdbdc3; font: 600 10px var(--mono); text-transform: uppercase; cursor: pointer; padding: 15px 0; }
.text-link span { color: var(--blue-light); margin-left: 10px; }
.category-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-template-rows: 320px 320px; gap: 14px; }
.category-card {
  position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #171719;
  cursor: pointer; text-align: left; padding: 0; isolation: isolate; color: white; text-decoration: none;
}
.category-wide { grid-row: span 2; }
.category-dark { grid-column: span 2; }
.category-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,.45), transparent 40%, rgba(0,0,0,.38)); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.8,.2,1), filter .4s; filter: grayscale(.22) brightness(.82); }
.category-card:hover img { transform: scale(1.04); filter: grayscale(0) brightness(.95); }
.category-meta { position: absolute; z-index: 2; top: 0; left: 0; right: 0; display: flex; justify-content: space-between; padding: 19px 20px; font: 600 10px var(--mono); text-transform: uppercase; }
.category-meta strong { color: #bdbdc2; font-weight: 400; }
.card-arrow { position: absolute; z-index: 2; bottom: 18px; right: 18px; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(10,10,11,.78); border: 1px solid #444; transition: .25s; }
.category-card:hover .card-arrow { background: var(--blue); border-color: var(--blue); transform: rotate(45deg); }

.product-section { padding-bottom: 130px; }
.product-heading { align-items: center; }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-tabs button { border: 1px solid #333338; color: #85858a; background: transparent; padding: 10px 14px; border-radius: 6px; font: 600 9px var(--mono); text-transform: uppercase; cursor: pointer; }
.filter-tabs button.active, .filter-tabs button:hover { color: white; background: var(--blue); border-color: var(--blue); }
.results-line { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding: 18px 0 22px; color: #77777d; font: 10px var(--mono); text-transform: uppercase; }
.results-line select { background: transparent; color: #aaaab0; border: 0; outline: 0; font: 10px var(--mono); text-transform: uppercase; }
.results-line select option { background: #151517; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 14px; }
.product-card { min-width: 0; }
.product-image {
  aspect-ratio: .86; background: #171719; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; position: relative; cursor: pointer;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); transition: transform .5s, filter .4s; }
.product-card:hover img { transform: scale(1.035); filter: saturate(1); }
.product-badge { position: absolute; top: 12px; left: 12px; z-index: 2; color: #101012; background: #f0eee9; border-radius: 4px; padding: 6px 8px; font: 600 8px var(--mono); text-transform: uppercase; }
.save-btn { position: absolute; z-index: 2; top: 10px; right: 10px; width: 35px; height: 35px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(10,10,11,.5); backdrop-filter: blur(8px); display: grid; place-items: center; cursor: pointer; }
.save-btn svg { width: 16px; fill: none; stroke: white; stroke-width: 1.7; }
.save-btn.saved { background: var(--blue); border-color: var(--blue); }
.save-btn.saved svg { fill: white; }
.quick-view { position: absolute; left: 12px; right: 12px; bottom: 12px; height: 43px; background: rgba(10,10,11,.9); color: white; border: 1px solid #404045; border-radius: 7px; font: 600 9px var(--mono); text-transform: uppercase; cursor: pointer; transform: translateY(70px); opacity: 0; transition: .3s ease; }
.product-card:hover .quick-view { transform: translateY(0); opacity: 1; }
.product-info { padding: 13px 3px 0; }
.product-info .product-cat { font: 9px var(--mono); color: #6f6f76; text-transform: uppercase; }
.product-info h3 { font-size: 14px; line-height: 1.35; font-weight: 600; margin: 7px 0 8px; }
.product-price { display: flex; align-items: center; justify-content: space-between; }
.product-price strong { font: 400 21px var(--display); color: #e9e7e1; }
.product-price span { font: 9px var(--mono); color: #6f6f76; }
.empty-state { padding: 90px 20px; text-align: center; border: 1px dashed #333; border-radius: 14px; }
.empty-state > span { font: 10px var(--mono); color: var(--blue-light); }
.empty-state h3 { font: 400 44px var(--display); margin: 12px 0; }
.empty-state p { color: var(--muted); margin-bottom: 24px; }

.how-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; padding: 120px 0; border-top: 1px solid var(--line); }
.how-intro p { max-width: 430px; color: var(--muted); line-height: 1.7; font-size: 14px; }
.steps { display: flex; flex-direction: column; }
.steps article { display: grid; grid-template-columns: 70px 1fr; gap: 15px; padding: 34px 0; border-top: 1px solid #303034; }
.steps article:last-child { border-bottom: 1px solid #303034; }
.steps article > span { color: var(--blue-light); font: 600 11px var(--mono); }
.steps h3 { font: 400 32px var(--display); text-transform: uppercase; margin: 0 0 8px; }
.steps p { margin: 0; color: var(--muted); line-height: 1.6; max-width: 470px; font-size: 13px; }

.community { padding-bottom: 130px; }
.community-card { min-height: 470px; background: var(--blue); border-radius: 24px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; position: relative; }
.community-copy { padding: clamp(45px, 6vw, 85px); position: relative; z-index: 2; }
.section-kicker.light { color: rgba(255,255,255,.65); }
.community-copy p { max-width: 500px; line-height: 1.65; color: rgba(255,255,255,.75); }
.btn-light { margin-top: 15px; background: white; color: #111; }
.community-art { position: relative; overflow: hidden; }
.community-ring { position: absolute; width: 570px; height: 570px; border: 90px solid rgba(255,255,255,.08); border-radius: 50%; right: -100px; top: -55px; }
.chat { position: absolute; z-index: 2; background: #0f0f11; border: 1px solid #39393f; border-radius: 12px; padding: 15px 18px; min-width: 170px; box-shadow: 0 18px 50px rgba(0,0,0,.25); transform: rotate(-4deg); }
.chat span { display: block; font: 600 12px var(--mono); }
.chat small { color: #6f6f77; font: 8px var(--mono); }
.chat-a { top: 85px; left: 5%; }
.chat-b { top: 195px; right: 10%; transform: rotate(5deg); }
.chat-c { bottom: 75px; left: 18%; transform: rotate(2deg); }

.site-footer { border-top: 1px solid var(--line); padding-top: 70px; padding-bottom: 30px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding-bottom: 70px; }
.footer-brand p { color: var(--muted); max-width: 380px; font-family: var(--mono); font-size: 11px; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.footer-links div { display: flex; flex-direction: column; gap: 12px; }
.footer-links h4 { margin: 0 0 7px; font: 400 20px var(--display); text-transform: uppercase; }
.footer-links a { color: #85858b; font-size: 12px; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: grid; grid-template-columns: auto 1fr auto; gap: 50px; align-items: start; font: 8px var(--mono); color: #6f6f75; text-transform: uppercase; line-height: 1.6; }
.footer-bottom p { margin: 0; text-align: center; }

.product-modal { border: 1px solid #36363b; background: #111113; color: white; border-radius: 18px; padding: 0; box-shadow: 0 30px 110px rgba(0,0,0,.7); }
.product-modal { width: min(900px, calc(100% - 30px)); }
dialog::backdrop { background: rgba(0,0,0,.78); backdrop-filter: blur(10px); }
.modal-close { position: absolute; right: 16px; top: 14px; z-index: 4; width: 38px; height: 38px; border-radius: 50%; border: 1px solid #444; background: rgba(13,13,14,.75); color: white; cursor: pointer; font-size: 23px; }
.modal-product { display: grid; grid-template-columns: 1fr 1fr; }
.modal-product img { width: 100%; height: 100%; min-height: 550px; object-fit: cover; border-radius: 17px 0 0 17px; }
.modal-copy { padding: 60px 45px; display: flex; flex-direction: column; align-items: flex-start; }
.modal-copy .product-cat { color: var(--blue-light); font: 600 9px var(--mono); text-transform: uppercase; }
.modal-copy h2 { font-size: 56px; margin: 18px 0; }
.modal-copy .modal-price { font: 400 33px var(--display); }
.modal-copy p { color: var(--muted); line-height: 1.7; font-size: 13px; }
.modal-details { width: 100%; border-block: 1px solid var(--line); margin: 20px 0; }
.modal-details div { display: flex; justify-content: space-between; padding: 13px 0; font: 9px var(--mono); text-transform: uppercase; }
.modal-details div + div { border-top: 1px solid var(--line); }
.modal-details span { color: var(--muted); }
.modal-copy .btn { width: 100%; }
.toast { position: fixed; z-index: 110; bottom: 25px; left: 50%; transform: translate(-50%, 100px); opacity: 0; padding: 13px 19px; border-radius: 8px; background: white; color: #111; font: 600 10px var(--mono); text-transform: uppercase; transition: .3s ease; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { max-width: 780px; }
  .hero-visual { min-height: 650px; }
  .category-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 430px 290px 290px; }
  .category-wide { grid-column: span 2; grid-row: auto; }
  .category-dark { grid-column: span 2; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .how-section { gap: 5vw; }
  .community-card { grid-template-columns: 1.1fr .9fr; }
}

@media (max-width: 760px) {
  .section-shell { width: min(100% - 32px, 680px); }
  .site-header { height: 68px; padding-inline: 16px; }
  .brand { font-size: 18px; gap: 4px; letter-spacing: -.3px; }
  .sign-in-btn { display: none; }
  .mobile-menu { inset: 68px 0 auto; }
  .hero { padding-top: 60px; padding-bottom: 50px; gap: 25px; min-height: auto; }
  h1 { font-size: clamp(58px, 18vw, 84px); }
  .hero-copy > p { font-size: 12px; margin: 20px 0; }
  .hero-search { height: 57px; }
  .hero-actions .btn { flex: 1; padding-inline: 15px; gap: 15px; }
  .trust-row { gap: 22px; justify-content: space-between; }
  .trust-row strong { font-size: 20px; }
  .trust-row span { font-size: 7px; }
  .hero-visual { min-height: 490px; }
  .orbit-one { width: 410px; height: 410px; }
  .orbit-two { width: 300px; height: 300px; }
  .hero-product-card { width: min(310px, 78vw); border-radius: 22px; }
  .tag-top { right: -25px; top: 70px; }
  .tag-bottom { left: -18px; bottom: 54px; }
  .verified-pill { bottom: 5px; right: 0; }
  .categories { padding-block: 80px; }
  .section-heading, .product-heading { align-items: flex-start; flex-direction: column; margin-bottom: 30px; }
  .section-heading h2, .product-heading h2, .how-intro h2, .community-copy h2 { font-size: 54px; }
  .category-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; padding-bottom: 6px; }
  .category-card, .category-wide, .category-dark { flex: 0 0 78vw; height: 390px; scroll-snap-align: start; }
  .product-section { padding-bottom: 85px; }
  .filter-tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 5px; }
  .filter-tabs button { white-space: nowrap; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 10px; }
  .product-info h3 { font-size: 12px; }
  .product-price strong { font-size: 18px; }
  .quick-view { display: none; }
  .how-section { grid-template-columns: 1fr; padding: 85px 0; }
  .how-intro p { font-size: 13px; }
  .community { padding-bottom: 85px; }
  .community-card { grid-template-columns: 1fr; min-height: 650px; }
  .community-copy { padding: 45px 28px; }
  .community-art { min-height: 280px; }
  .community-ring { width: 430px; height: 430px; right: -120px; top: -60px; }
  .footer-top { grid-template-columns: 1fr; padding-bottom: 45px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { grid-template-columns: 1fr; gap: 12px; }
  .footer-bottom p { text-align: left; }
  .modal-product { grid-template-columns: 1fr; }
  .modal-product img { min-height: 310px; height: 310px; border-radius: 17px 17px 0 0; }
  .modal-copy { padding: 32px 24px; }
  .modal-copy h2 { font-size: 43px; }
}

@media (max-width: 430px) {
  .site-header { padding-inline: 16px; }
  .brand { font-size: 16px; gap: 3px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .category-card, .category-wide, .category-dark { flex-basis: 84vw; }
  .results-line { align-items: flex-start; gap: 15px; flex-direction: column; }
}

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