/** Shopify CDN: Minification failed

Line 32:17 Expected identifier but found whitespace
Line 32:19 Unexpected "{"
Line 32:29 Expected ":"

**/
/* ═══════════════════════════════════════════
   ORYN SHOPIFY THEME — oryn.css
   Bebas Neue (headings) + Mona Sans (body)
═══════════════════════════════════════════ */

:root {
  --f-head: 'Bebas Neue', 'Arial Black', sans-serif;
  --f-body: 'Mona Sans Variable','Mona Sans','Inter', system-ui, sans-serif;
  --f-mono: 'Space Mono', monospace;

  --a:   #FF8B18;
  --a2:  #FF5F00;
  --ag:  rgba(255,139,24,.11);
  --ab:  rgba(255,139,24,.26);
  --bg:  #070707;
  --bg2: #0D0D0D;
  --bg3: #151515;
  --fg:  #F0EBE3;
  --fg2: #8A847C;
  --fg3: #3D3935;
  --bdr: rgba(255,255,255,.07);
  --radius: 0px;

  /* From theme settings (overridden by settings_schema.json) */
  --accent-color: {{ settings.accent_color | default: '#FF8B18' }};
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg); color: var(--fg);
  font-family: var(--f-body); font-weight: 350;
  line-height: 1.65; overflow-x: hidden; cursor: none;
}
::selection { background: var(--a); color: #070707; }
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--a2); }

/* ── ACCESSIBILITY ── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
.skip-link {
  position: fixed; top: 1rem; left: 1rem; z-index: 9999;
  background: var(--a); color: #070707;
  padding: .5rem 1rem; font-family: var(--f-mono);
  font-size: .7rem; letter-spacing: .15em;
}
.skip-link:not(:focus) { clip: rect(0 0 0 0); clip-path: inset(50%); }

/* ═══════════════════════════════════════
   LOADER
═══════════════════════════════════════ */
#loader {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 9999;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
#loader.out { animation: loaderOut .9s .1s cubic-bezier(.76,0,.24,1) forwards; }
@keyframes loaderOut {
  0%  { transform: translateY(0); opacity: 1; }
  100%{ transform: translateY(-100%); opacity: 1; }
}
.ld-logo { width: 200px; margin-bottom: 3rem; }
.ld-logo path {
  stroke: #fff; stroke-width: 2; fill: transparent;
  stroke-dasharray: 2000; stroke-dashoffset: 2000;
  animation: drawPath 1.4s cubic-bezier(.23,1,.32,1) forwards;
}
.ld-logo path:nth-child(1) { animation-delay: .2s; }
.ld-logo path:nth-child(2) { animation-delay: .45s; }
.ld-logo path:nth-child(3) { animation-delay: .7s; }
.ld-logo path:nth-child(4) { animation-delay: .9s; }
@keyframes drawPath {
  0%  { stroke-dashoffset: 2000; fill: transparent; }
  70% { fill: transparent; }
  100%{ stroke-dashoffset: 0; fill: white; }
}
.ld-track { width: 180px; height: 1px; background: var(--fg3); overflow: hidden; margin-bottom: .9rem; }
.ld-bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--a2), var(--a)); transition: width .05s linear; }
.ld-num { font-family: var(--f-mono); font-size: .62rem; letter-spacing: .4em; color: var(--fg3); }

/* ═══════════════════════════════════════
   CURSOR
═══════════════════════════════════════ */
#cur { position: fixed; top: 0; right: 0; bottom: 0; left: 0; pointer-events: none; z-index: 9998; }
.c-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--a); position: absolute;
  transform: translate(-50%,-50%);
}
.c-ring {
  width: 32px; height: 32px;
  border: 1px solid var(--ab); border-radius: 50%;
  position: absolute; transform: translate(-50%,-50%);
  transition: width .4s, height .4s, border-color .4s, opacity .3s;
}
.cur-big .c-ring { width: 54px; height: 54px; border-color: var(--a); }
.cur-hide .c-dot, .cur-hide .c-ring { opacity: 0; }

/* ═══════════════════════════════════════
   NAV / HEADER
═══════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 400;
  display: flex; align-items: center; justify-content: space-between;
  padding: 2rem 5rem;
  transition: padding .45s, background .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.site-header.stuck {
  padding: 1rem 5rem;
  background: rgba(7,7,7,.88);
  backdrop-filter: blur(28px);
  border-bottom-color: var(--bdr);
}
.site-header__logo svg { height: 26px; width: auto; display: block; }
.site-header__logo { text-decoration: none; display: flex; align-items: center; }
.site-header__nav { display: flex; gap: 3rem; list-style: none; }
.site-header__nav a {
  font-family: var(--f-mono); font-size: .6rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--fg2); text-decoration: none;
  transition: color .2s; position: relative;
}
.site-header__nav a::after {
  content: ''; position: absolute; bottom: -.3rem; left: 0; right: 0;
  height: 1px; background: var(--a);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.site-header__nav a:hover { color: var(--a); }
.site-header__nav a:hover::after { transform: scaleX(1); }
.site-header__cta {
  font-family: var(--f-mono); font-size: .6rem; letter-spacing: .22em;
  text-transform: uppercase; background: var(--a); color: #070707;
  border: none; padding: .75rem 2rem; cursor: none; font-weight: 700;
  clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,0 100%);
  transition: background .2s, transform .2s; text-decoration: none;
  display: inline-block;
}
.site-header__cta:hover { background: #ffaa44; transform: scale(1.04); }
.site-header__cart {
  font-family: var(--f-mono); font-size: .6rem; letter-spacing: .15em;
  color: var(--fg2); background: transparent; border: none;
  cursor: none; display: flex; align-items: center; gap: .5rem;
  transition: color .2s;
}
.site-header__cart:hover { color: var(--a); }
.cart-count {
  background: var(--a); color: #070707; border-radius: 50%;
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .55rem; font-weight: 700;
}

/* mobile nav toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: none;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1px; background: var(--fg);
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 300;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transform: translateY(-100%); transition: transform .6s cubic-bezier(.76,0,.24,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.mobile-menu nav a {
  font-family: var(--f-head); font-size: 3rem; letter-spacing: .05em;
  color: var(--fg); text-decoration: none; transition: color .2s;
}
.mobile-menu nav a:hover { color: var(--a); }

/* ═══════════════════════════════════════
   SECTIONS BASE
═══════════════════════════════════════ */
.sec { padding: 10rem 5rem; }
.eyebrow {
  font-family: var(--f-mono); font-size: .6rem; letter-spacing: .38em;
  text-transform: uppercase; color: var(--a); margin-bottom: 1.3rem;
  display: flex; align-items: center; gap: .9rem;
}
.eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--a); }
.sh {
  font-family: var(--f-head);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: .9; letter-spacing: .015em;
}
.sh .ac { color: var(--a); }
.sh .sk { -webkit-text-fill-color: transparent; -webkit-text-stroke: 1px var(--fg2); }
.sp {
  font-family: var(--f-body); font-size: 1rem; color: var(--fg2);
  max-width: 50ch; margin-top: 1.2rem; line-height: 1.75; font-weight: 350;
}

/* ── REVEAL ENGINE ── */
.rv  { opacity: 0; transform: translateY(40px); transition: opacity 1s ease, transform 1s ease; }
.rl  { opacity: 0; transform: translateX(-48px); transition: opacity 1s ease, transform 1s ease; }
.rr  { opacity: 0; transform: translateX(48px); transition: opacity 1s ease, transform 1s ease; }
.rs  { opacity: 0; transform: scale(.95); transition: opacity 1.1s ease, transform 1.1s ease; }
.rv.vi, .rl.vi, .rr.vi, .rs.vi { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .18s; }
.d3 { transition-delay: .28s; } .d4 { transition-delay: .38s; }
.d5 { transition-delay: .48s; } .d6 { transition-delay: .6s;  }

/* ── BUTTONS ── */
.btn-solid {
  font-family: var(--f-mono); font-size: .62rem; letter-spacing: .22em;
  text-transform: uppercase; background: var(--a); color: #070707;
  border: none; padding: 1.1rem 3rem; cursor: none; font-weight: 700;
  clip-path: polygon(0 0,calc(100% - 9px) 0,100% 9px,100% 100%,0 100%);
  transition: background .25s, transform .25s; display: inline-block;
  text-decoration: none;
}
.btn-solid:hover { background: #ffaa44; transform: translateY(-3px); }
.btn-ghost {
  font-family: var(--f-mono); font-size: .62rem; letter-spacing: .22em;
  text-transform: uppercase; background: transparent; color: var(--fg);
  border: 1px solid rgba(255,255,255,.15); padding: 1.1rem 2.8rem; cursor: none;
  transition: border-color .25s, color .25s, transform .25s; display: inline-block;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--a); color: var(--a); transform: translateY(-3px); }
.btn-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ── CHIP ── */
.chip {
  font-family: var(--f-mono); font-size: .56rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--a);
  border: 1px solid var(--ab); padding: .28rem .75rem; display: inline-block;
}
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.mq {
  overflow: hidden; padding: 1.1rem 0;
  border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr);
  background: var(--bg2);
}
.mq-track {
  display: flex; gap: 4rem; width: max-content;
  animation: mq 32s linear infinite;
}
.mq-track:hover { animation-play-state: paused; }
.mq-item {
  font-family: var(--f-head); font-size: 1.1rem; letter-spacing: .2em;
  color: var(--fg3); display: flex; align-items: center;
  gap: 1.6rem; white-space: nowrap;
}
.mq-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--a); flex-shrink: 0; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  overflow: hidden;
}
.hero__video-wrap { position: absolute; top: 0; right: 0; bottom: 0; left: 0; overflow: hidden; }
.hero__video-wrap video {
  width: 100%; height: 100%; object-fit: cover;
  will-change: transform; transform: scale(1.12);
  filter: brightness(.42) saturate(.85);
}
.hero__grad {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background:
    linear-gradient(100deg, rgba(7,7,7,.92) 0%, rgba(7,7,7,.48) 46%, transparent 100%),
    linear-gradient(to top, rgba(7,7,7,.8) 0%, transparent 38%);
}
.hero__noise {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; opacity: .025; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__body {
  position: absolute;
  bottom: 7rem; left: 5rem;
  z-index: 2;
  max-width: 760px;
  will-change: transform;
}
.hero__tag {
  font-family: var(--f-mono); font-size: .6rem; letter-spacing: .4em;
  text-transform: uppercase; color: var(--a); margin-bottom: 1.8rem;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; transform: translateY(14px);
  transition: opacity .9s 2.1s, transform .9s 2.1s;
}
.hero__tag::before { content: ''; width: 28px; height: 1px; background: var(--a); flex-shrink: 0; }
.hero__title {
  font-family: var(--f-head);
  font-size: clamp(6rem, 14vw, 12.5rem);
  line-height: .86; letter-spacing: .01em;
  opacity: 0; transform: translateY(28px);
  transition: opacity 1.1s 2.3s cubic-bezier(.23,1,.32,1), transform 1.1s 2.3s;
}
.hero__title .stroke {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px var(--a);
}
.hero__sub {
  font-family: var(--f-body); font-size: 1.05rem; font-weight: 350;
  color: var(--fg2); max-width: 46ch;
  margin-top: 1.8rem; line-height: 1.75;
  opacity: 0; transform: translateY(14px);
  transition: opacity .9s 2.6s, transform .9s 2.6s;
}
.hero__actions {
  display: flex; gap: 1.2rem; margin-top: 2.8rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(14px);
  transition: opacity .9s 2.85s, transform .9s 2.85s;
}
.hero__stats {
  position: absolute; right: 0; bottom: 0;
  display: flex; border-left: 1px solid var(--bdr); border-top: 1px solid var(--bdr);
  opacity: 0; transform: translateY(10px);
  transition: opacity .9s 3.1s, transform .9s 3.1s;
}
.hst {
  padding: 1.5rem 2.2rem; text-align: center;
  border-right: 1px solid var(--bdr);
  background: rgba(7,7,7,.5); backdrop-filter: blur(12px);
}
.hst-n { font-family: var(--f-head); font-size: 2.2rem; color: var(--a); line-height: 1; }
.hst-l {
  font-family: var(--f-mono); font-size: .52rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--fg3); margin-top: .25rem;
}
.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem; z-index: 2;
  animation: fadeUpScroll .8s 3.4s ease both;
}
@keyframes fadeUpScroll {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.hero-scroll-line { width: 1px; height: 50px; background: linear-gradient(transparent, var(--a)); animation: pulseL 2.2s ease-in-out infinite; }
@keyframes pulseL { 0%,100%{ opacity: .25; } 50%{ opacity: 1; } }
.hero-scroll-txt { font-family: var(--f-mono); font-size: .52rem; letter-spacing: .3em; color: var(--fg3); }

/* Hero loaded state */
.hero-loaded .hero__tag,
.hero-loaded .hero__title,
.hero-loaded .hero__sub,
.hero-loaded .hero__actions,
.hero-loaded .hero__stats { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   BRAND CINEMATIC
═══════════════════════════════════════ */
.brand {
  position: relative; height: 88vh; min-height: 560px;
  display: flex; align-items: center; overflow: hidden;
}
.brand__bg {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; background-size: cover; background-position: center;
  will-change: transform; filter: brightness(.38) saturate(.7);
}
.brand__grad {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(95deg, rgba(7,7,7,.95) 0%, rgba(7,7,7,.5) 52%, rgba(7,7,7,.08) 100%);
}
.brand__cnt { position: relative; z-index: 2; padding: 0 5rem; max-width: 700px; }
.brand__q {
  font-family: var(--f-head);
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: .95; letter-spacing: .01em; margin-top: 1.5rem;
}
.brand__q .hi { color: var(--a); }

/* ═══════════════════════════════════════
   TECHNOLOGY PANELS
═══════════════════════════════════════ */
.tech-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: end; margin-bottom: 6rem;
}
.tp {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 72vh; overflow: hidden;
  border-top: 1px solid var(--bdr);
}
.tp:last-child { border-bottom: 1px solid var(--bdr); }
.tp.flip { direction: rtl; }
.tp.flip > * { direction: ltr; }
.tp-img-wrap { position: relative; overflow: hidden; }
.tp-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.65) saturate(.75);
  will-change: transform; transform: scale(1.1);
  transition: filter .6s, transform .6s;
}
.tp:hover .tp-img { filter: brightness(.55) saturate(.9); transform: scale(1.06); }
.tp-img-ov {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(90deg, transparent 55%, var(--bg2) 100%);
}
.tp.flip .tp-img-ov { background: linear-gradient(270deg, transparent 55%, var(--bg2) 100%); }
.tp-body {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4.5rem; background: var(--bg2);
}
.tp-num {
  font-family: var(--f-mono); font-size: .58rem; letter-spacing: .32em;
  color: var(--a); text-transform: uppercase; margin-bottom: 1.5rem;
}
.tp-icon {
  width: 52px; height: 52px; border: 1px solid var(--ab);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.8rem; color: var(--a); flex-shrink: 0;
}
.tp-title {
  font-family: var(--f-head); font-size: clamp(2.8rem, 4vw, 4.2rem);
  letter-spacing: .02em; line-height: .95; margin-bottom: 1.5rem;
}
.tp-title span { color: var(--a); }
.tp-body p { font-family: var(--f-body); font-size: .95rem; color: var(--fg2); line-height: 1.8; max-width: 42ch; font-weight: 350; }
.tp-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.tp-chip {
  font-family: var(--f-mono); font-size: .56rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--a); border: 1px solid var(--ab); padding: .28rem .75rem;
}

/* ═══════════════════════════════════════
   STAT BAND
═══════════════════════════════════════ */
.stat-band {
  background: var(--a); padding: 4rem 5rem;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
}
.sb { text-align: center; padding: 0 1rem; }
.sb-n { font-family: var(--f-head); font-size: 5rem; color: #070707; line-height: 1; }
.sb-l { font-family: var(--f-mono); font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(7,7,7,.5); margin-top: .3rem; }

/* ═══════════════════════════════════════
   PRODUCT SHOWCASE / COLLECTION
═══════════════════════════════════════ */
.prod-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: end; margin-bottom: 5rem;
}
.prod-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--bdr);
}
.pc {
  background: var(--bg2); cursor: none;
  overflow: hidden; position: relative; transition: background .3s;
}
.pc:hover { background: var(--bg3); }
.pc.wide { grid-column: span 2; }
.pc-img-box { overflow: hidden; position: relative; }
.pc-img {
  width: 100%; object-fit: contain; display: block;
  transition: transform .95s cubic-bezier(.23,1,.32,1), filter .5s;
  padding: 2.5rem 2.5rem 0;
}
.pc.wide .pc-img { height: 360px; padding: 3rem 4rem 0; }
.pc:not(.wide) .pc-img { height: 220px; }
.pc:hover .pc-img { transform: scale(1.06) translateY(-6px); filter: drop-shadow(0 24px 48px rgba(255,139,24,.22)); }
.pc-body { padding: 1.8rem 2.5rem 2.5rem; }
.pc-tag { font-family: var(--f-mono); font-size: .56rem; letter-spacing: .3em; text-transform: uppercase; color: var(--a); margin-bottom: .7rem; }
.pc-name { font-family: var(--f-head); font-size: 2.1rem; letter-spacing: .03em; margin-bottom: .6rem; }
.pc-price { font-family: var(--f-mono); font-size: .88rem; color: var(--a); margin-bottom: .8rem; }
.pc-desc { font-family: var(--f-body); font-size: .85rem; color: var(--fg2); line-height: 1.75; font-weight: 350; }
.pc-chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.3rem; }
.pc-chip { font-family: var(--f-mono); font-size: .55rem; letter-spacing: .12em; text-transform: uppercase; color: var(--a); border: 1px solid var(--ab); padding: .26rem .65rem; }
.pc-atc {
  margin-top: 1.5rem;
  font-family: var(--f-mono); font-size: .6rem; letter-spacing: .2em;
  text-transform: uppercase; background: var(--a); color: #070707;
  border: none; padding: .85rem 2rem; cursor: none; font-weight: 700;
  clip-path: polygon(0 0,calc(100% - 7px) 0,100% 7px,100% 100%,0 100%);
  transition: background .2s, transform .2s; width: 100%;
}
.pc-atc:hover { background: #ffaa44; transform: translateY(-2px); }
.pc-atc:disabled { background: var(--fg3); cursor: not-allowed; }

/* ═══════════════════════════════════════
   PRODUCT PAGE
═══════════════════════════════════════ */
.product-page { display: grid; grid-template-columns: 1fr 1fr; min-height: 90vh; padding-top: 80px; }
.product-page__gallery {
  background: var(--bg2); position: sticky; top: 80px;
  height: calc(100vh - 80px); overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.product-page__main-img { width: 90%; max-height: 80vh; object-fit: contain; filter: drop-shadow(0 30px 60px rgba(255,139,24,.15)); }
.product-page__thumbs { display: flex; gap: .5rem; position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); }
.product-page__thumb {
  width: 56px; height: 56px; border: 1px solid var(--bdr); overflow: hidden;
  cursor: none; transition: border-color .2s;
}
.product-page__thumb.active, .product-page__thumb:hover { border-color: var(--a); }
.product-page__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-page__info { padding: 6rem 5rem 5rem; display: flex; flex-direction: column; justify-content: center; }
.product-page__vendor { font-family: var(--f-mono); font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--a); margin-bottom: 1rem; }
.product-page__title { font-family: var(--f-head); font-size: clamp(3rem, 5vw, 5rem); line-height: .9; letter-spacing: .015em; }
.product-page__price { font-family: var(--f-mono); font-size: 1.4rem; color: var(--a); margin: 1.5rem 0; }
.product-page__price s { color: var(--fg3); font-size: 1rem; margin-right: .5rem; }
.product-page__desc { font-family: var(--f-body); font-size: .95rem; color: var(--fg2); line-height: 1.75; font-weight: 350; margin-bottom: 2rem; }
.variant-label { font-family: var(--f-mono); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--fg2); margin-bottom: .8rem; display: block; }
.variant-buttons { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2rem; }
.variant-btn {
  font-family: var(--f-mono); font-size: .6rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--fg); background: transparent;
  border: 1px solid var(--bdr); padding: .6rem 1.2rem; cursor: none;
  transition: border-color .2s, color .2s, background .2s;
}
.variant-btn.active, .variant-btn:hover { border-color: var(--a); color: var(--a); }
.variant-btn.unavailable { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.product-page__atc {
  width: 100%; font-family: var(--f-mono); font-size: .68rem; letter-spacing: .22em;
  text-transform: uppercase; background: var(--a); color: #070707;
  border: none; padding: 1.2rem; cursor: none; font-weight: 700;
  clip-path: polygon(0 0,calc(100% - 9px) 0,100% 9px,100% 100%,0 100%);
  transition: background .2s, transform .2s;
}
.product-page__atc:hover { background: #ffaa44; transform: translateY(-2px); }
.product-page__meta { margin-top: 2.5rem; border-top: 1px solid var(--bdr); padding-top: 2rem; }
.product-page__meta table { width: 100%; border-collapse: collapse; }
.product-page__meta td { padding: .8rem 0; font-size: .85rem; border-bottom: 1px solid var(--bdr); }
.product-page__meta td:first-child { font-family: var(--f-mono); font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: var(--fg3); width: 40%; }
.product-page__meta td:last-child { font-family: var(--f-body); color: var(--fg); font-weight: 400; }

/* ═══════════════════════════════════════
   LIFESTYLE SPLIT
═══════════════════════════════════════ */
.life { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--bdr); }
.lh { position: relative; overflow: hidden; min-height: 580px; }
.lh-img {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.52); transition: filter .7s, transform .8s cubic-bezier(.23,1,.32,1);
}
.lh:hover .lh-img { filter: brightness(.42); transform: scale(1.05); }
.lh-over { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: linear-gradient(to top, rgba(7,7,7,.9) 0%, transparent 52%); }
.lh-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 3rem; }
.lh-tag { font-family: var(--f-mono); font-size: .56rem; letter-spacing: .3em; text-transform: uppercase; color: var(--a); margin-bottom: .7rem; }
.lh-title { font-family: var(--f-head); font-size: 2.8rem; letter-spacing: .02em; margin-bottom: .6rem; }
.lh-sub { font-family: var(--f-body); font-size: .85rem; color: var(--fg2); line-height: 1.7; font-weight: 350; }

/* ═══════════════════════════════════════
   AI / CYAN
═══════════════════════════════════════ */
.ai-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center; margin-top: 5rem; }
.ai-vis { position: relative; overflow: hidden; }
.ai-img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10; display: block; transition: transform 7s ease; }
.ai-vis:hover .ai-img { transform: scale(1.04); }
.ai-hud { position: absolute; top: 1.2rem; right: 1.2rem; font-family: var(--f-mono); font-size: .6rem; color: rgba(255,255,255,.7); text-align: right; line-height: 2; pointer-events: none; text-shadow: 0 0 10px rgba(255,139,24,.4); }
.ai-list { display: flex; flex-direction: column; }
.ai-item { padding: 1.8rem 0; border-bottom: 1px solid var(--bdr); display: flex; gap: 1.4rem; align-items: flex-start; transition: padding-left .35s; }
.ai-item:last-child { border-bottom: none; }
.ai-item:hover { padding-left: .7rem; }
.ai-ico { width: 42px; height: 42px; flex-shrink: 0; border: 1px solid var(--ab); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--a); }
.ai-ttl { font-family: var(--f-head); font-size: 1.3rem; letter-spacing: .06em; margin-bottom: .4rem; }
.ai-body { font-family: var(--f-body); font-size: .86rem; color: var(--fg2); line-height: 1.75; font-weight: 350; }

/* ═══════════════════════════════════════
   SPORTS
═══════════════════════════════════════ */
.sports-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--bdr); margin-top: 4rem; }
.sc { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: none; }
.sc-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.55) saturate(.7); transition: transform .95s cubic-bezier(.23,1,.32,1), filter .5s; }
.sc:hover .sc-img { transform: scale(1.08); filter: brightness(.45) saturate(1); }
.sc-over { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: linear-gradient(to top, rgba(7,7,7,.92) 0%, transparent 52%); }
.sc-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem; }
.sc-num { font-family: var(--f-mono); font-size: .56rem; letter-spacing: .3em; color: var(--a); margin-bottom: .6rem; }
.sc-name { font-family: var(--f-head); font-size: 2.4rem; letter-spacing: .02em; margin-bottom: .5rem; }
.sc-desc { font-family: var(--f-body); font-size: .82rem; color: var(--fg2); line-height: 1.65; font-weight: 350; }
.sc-pills { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .9rem; }
.sc-pill { font-family: var(--f-mono); font-size: .54rem; letter-spacing: .1em; color: var(--a); border: 1px solid var(--ab); padding: .22rem .55rem; }

/* ═══════════════════════════════════════
   TESTIMONIAL
═══════════════════════════════════════ */
.testi { position: relative; padding: 13rem 5rem; overflow: hidden; background: var(--bg2); text-align: center; }
.testi-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--f-head); font-size: 26vw; line-height: 1; color: rgba(255,139,24,.022); pointer-events: none; white-space: nowrap; user-select: none; }
.testi-q { font-family: var(--f-body); font-weight: 300; font-style: italic; font-size: clamp(1.5rem,2.8vw,2.3rem); max-width: 860px; margin: 0 auto; line-height: 1.55; color: var(--fg); position: relative; z-index: 1; }
.testi-mark { display: block; font-family: var(--f-head); font-size: 7rem; color: var(--a); opacity: .3; line-height: .45; margin-bottom: 1.2rem; }
.testi-attr { margin-top: 2.8rem; font-family: var(--f-mono); font-size: .58rem; letter-spacing: .3em; color: var(--fg3); }
.testi-attr span { color: var(--a); }

/* ═══════════════════════════════════════
   SPECS
═══════════════════════════════════════ */
.specs-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 9rem; align-items: center; margin-top: 5rem; }
.specs-vis { position: relative; }
.specs-img { width: 100%; object-fit: contain; filter: drop-shadow(0 40px 80px rgba(255,139,24,.16)); transition: transform .7s; }
.specs-vis:hover .specs-img { transform: scale(1.025) translateY(-7px); }
.ann { position: absolute; background: rgba(7,7,7,.92); border: 1px solid var(--ab); padding: .7rem .9rem; backdrop-filter: blur(8px); }
.ann.a1 { top:14%; left:-10%; } .ann.a2 { top:36%; right:-8%; } .ann.a3 { bottom:22%; left:-5%; }
@keyframes bob { 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-5px) } }
.ann.a1 { animation: bob 3.2s ease-in-out infinite; }
.ann.a2 { animation: bob 3.2s 1.1s ease-in-out infinite; }
.ann.a3 { animation: bob 3.2s 2.1s ease-in-out infinite; }
.ann-lbl { font-family: var(--f-mono); font-size: .52rem; letter-spacing: .22em; text-transform: uppercase; color: var(--a); margin-bottom: .2rem; }
.ann-val { font-family: var(--f-head); font-size: 1.1rem; letter-spacing: .04em; }
.spec-tbl { width: 100%; border-collapse: collapse; }
.spec-tbl tr { border-bottom: 1px solid var(--bdr); }
.spec-tbl tr:last-child { border-bottom: none; }
.spec-tbl td { padding: 1.05rem 0; font-size: .87rem; vertical-align: top; }
.spec-tbl td:first-child { font-family: var(--f-mono); font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--fg3); width: 40%; }
.spec-tbl td:last-child { font-family: var(--f-body); color: var(--fg); font-weight: 400; }
.hi { color: var(--a) !important; }

/* ═══════════════════════════════════════
   EDITIONS
═══════════════════════════════════════ */
.ed-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--bdr); margin-top: 4rem; }
.ec { background: var(--bg2); padding: 2.8rem 2rem; display: flex; flex-direction: column; align-items: center; text-align: center; cursor: none; transition: background .3s; }
.ec:hover { background: var(--bg3); }
.ec-img { width: 100%; max-height: 195px; object-fit: contain; margin-bottom: 1.5rem; filter: drop-shadow(0 14px 30px rgba(0,0,0,.65)); transition: transform .65s, filter .4s; }
.ec:hover .ec-img { transform: scale(1.07) translateY(-7px); filter: drop-shadow(0 26px 50px rgba(255,139,24,.22)); }
.ec-swatch { width: 10px; height: 10px; border-radius: 50%; margin-bottom: .65rem; }
.ec-name { font-family: var(--f-head); font-size: 1.5rem; letter-spacing: .06em; }
.ec-sub { font-family: var(--f-body); font-size: .78rem; color: var(--fg2); margin-top: .3rem; font-weight: 350; }
.ec-price { font-family: var(--f-mono); font-size: .88rem; color: var(--a); margin-top: 1rem; }
.ec-link { text-decoration: none; display: block; }

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
.cta-sec { position: relative; padding: 12rem 5rem; overflow: hidden; background: linear-gradient(145deg,#080808 0%,#0D0800 100%); }
.cta-glow  { position: absolute; top:-15%; right:-12%; width:700px; height:700px; border-radius:50%; background:radial-gradient(circle,rgba(255,139,24,.055) 0%,transparent 65%); pointer-events:none; }
.cta-glow2 { position: absolute; bottom:-20%; left:-10%; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle,rgba(255,95,0,.04) 0%,transparent 65%); pointer-events:none; }
.cta-row { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.cta-title { font-family: var(--f-head); font-size: clamp(4.5rem,9vw,8rem); line-height: .88; letter-spacing: .01em; }
.cta-title .ac { color: var(--a); }
.cta-title .sk { -webkit-text-fill-color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.18); }
.cta-right { flex-shrink: 0; max-width: 360px; text-align: right; }
.cta-sub { font-family: var(--f-body); font-size: .95rem; color: var(--fg2); line-height: 1.75; margin-bottom: 2rem; font-weight: 350; }
.cta-btns { display: flex; gap: 1rem; justify-content: flex-end; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer { background: var(--bg); border-top: 1px solid var(--bdr); padding: 5.5rem 5rem 2.5rem; }
.ft-g { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4.5rem; }
.ft-logo svg { height: 24px; width: auto; margin-bottom: 1.3rem; }
.ft-tag { font-family: var(--f-body); font-size: .88rem; color: var(--fg2); max-width: 30ch; line-height: 1.75; font-weight: 350; }
.ft-made { font-family: var(--f-mono); font-size: .52rem; letter-spacing: .22em; color: var(--fg3); margin-top: 1.8rem; line-height: 2.2; }
.ft-head { font-family: var(--f-mono); font-size: .56rem; letter-spacing: .26em; text-transform: uppercase; color: var(--fg3); margin-bottom: 1.5rem; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.ft-links a { font-family: var(--f-body); font-size: .88rem; color: var(--fg2); text-decoration: none; font-weight: 350; transition: color .2s; }
.ft-links a:hover { color: var(--a); }
.ft-bot { border-top: 1px solid var(--bdr); padding-top: 1.8rem; display: flex; justify-content: space-between; align-items: center; }
.ft-copy { font-family: var(--f-mono); font-size: .58rem; letter-spacing: .15em; color: var(--fg3); }
.ft-copy span { color: var(--a); }
.ft-legal { display: flex; gap: 2rem; }
.ft-legal a { font-family: var(--f-mono); font-size: .58rem; letter-spacing: .15em; color: var(--fg3); text-decoration: none; transition: color .2s; }
.ft-legal a:hover { color: var(--a); }

/* ═══════════════════════════════════════
   CART NOTIFICATION
═══════════════════════════════════════ */
.cart-notification {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  background: var(--bg3); border: 1px solid var(--ab);
  padding: 1.2rem 1.5rem;
  backdrop-filter: blur(12px);
  transform: translateY(100px); opacity: 0;
  transition: transform .4s cubic-bezier(.23,1,.32,1), opacity .4s;
}
.cart-notification:not([hidden]) { transform: translateY(0); opacity: 1; }
.cart-notification__content { display: flex; align-items: center; gap: 1.5rem; }
.cart-notification__msg { font-family: var(--f-mono); font-size: .65rem; letter-spacing: .15em; color: var(--fg); }
.cart-notification__btn { padding: .6rem 1.2rem; font-size: .6rem; }

/* ═══════════════════════════════════════
   COLLECTION PAGE
═══════════════════════════════════════ */
.collection-header { padding: 10rem 5rem 4rem; }
.collection-header h1 { font-family: var(--f-head); font-size: clamp(4rem,8vw,7rem); line-height: .9; }
.collection-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--bdr); padding: 0 5rem 8rem; }
.col-card { background: var(--bg2); overflow: hidden; cursor: none; transition: background .3s; }
.col-card:hover { background: var(--bg3); }
.col-card__img-wrap { overflow: hidden; padding: 2rem; }
.col-card__img { width: 100%; height: 260px; object-fit: contain; transition: transform .9s cubic-bezier(.23,1,.32,1); }
.col-card:hover .col-card__img { transform: scale(1.06) translateY(-5px); filter: drop-shadow(0 20px 40px rgba(255,139,24,.2)); }
.col-card__body { padding: 0 2rem 2.5rem; }
.col-card__name { font-family: var(--f-head); font-size: 1.8rem; letter-spacing: .03em; margin-bottom: .5rem; }
.col-card__price { font-family: var(--f-mono); font-size: .88rem; color: var(--a); margin-bottom: 1rem; }
.col-card__link { font-family: var(--f-mono); font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--fg2); text-decoration: none; transition: color .2s; display: flex; align-items: center; gap: .5rem; }
.col-card__link:hover { color: var(--a); }
.col-card__link::after { content: '→'; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media(max-width:1200px) {
  .sec { padding: 7rem 3rem; }
  .site-header, .site-header.stuck { padding-left: 3rem; padding-right: 3rem; }
  .hero__body { padding: 0 3rem 6.5rem; }
  .brand__cnt { padding: 0 3rem; }
  .tech-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .tp { grid-template-columns: 1fr; min-height: auto; }
  .tp-img-wrap { height: 320px; }
  .tp-img-ov,.tp.flip .tp-img-ov { background: linear-gradient(to top, var(--bg2) 0%, transparent 50%); }
  .tp-body { padding: 3rem; }
  .prod-intro, .ai-layout, .specs-layout { grid-template-columns: 1fr; gap: 3rem; }
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .pc.wide { grid-column: span 2; }
  .life { grid-template-columns: 1fr; }
  .lh { min-height: 420px; }
  .sports-grid { grid-template-columns: 1fr 1fr; }
  .sc { aspect-ratio: 4/3; }
  .ed-grid { grid-template-columns: 1fr 1fr; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .cta-row { flex-direction: column; gap: 3.5rem; align-items: flex-start; }
  .cta-right { text-align: left; max-width: 100%; }
  .cta-btns { justify-content: flex-start; }
  .ft-g { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .site-footer, .cta-sec { padding-left: 3rem; padding-right: 3rem; }
  .collection-header, .collection-grid { padding-left: 3rem; padding-right: 3rem; }
  .product-page { grid-template-columns: 1fr; }
  .product-page__gallery { position: relative; top: 0; height: 65vw; min-height: 350px; }
  .product-page__info { padding: 3rem; }
}
@media(max-width:900px) {
  .site-header__nav { display: none; }
  .nav-toggle { display: flex; }
  .h-stats { display: none; }
  .ann { display: none; }
}
@media(max-width:700px) {
  .sec { padding: 5rem 1.5rem; }
  .hero__body { padding: 0 1.5rem 5.5rem; }
  .hero__title { font-size: 4.5rem; }
  .brand__cnt { padding: 0 1.5rem; }
  .prod-grid, .sports-grid, .ed-grid { grid-template-columns: 1fr; }
  .pc.wide { grid-column: span 1; }
  .pc.wide .pc-img { height: 260px; }
  .stat-band { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .ft-g { grid-template-columns: 1fr; }
  .ft-bot { flex-direction: column; gap: 1.2rem; text-align: center; }
  .cta-sec { padding: 6rem 1.5rem; }
  .testi { padding: 8rem 1.5rem; }
  .specs-layout { grid-template-columns: 1fr; }
  .site-footer { padding: 3.5rem 1.5rem 2rem; }
  .collection-header, .collection-grid { padding-left: 1.5rem; padding-right: 1.5rem; }
  .collection-grid { grid-template-columns: 1fr; }
}
