/* ─── GOOGLE FONTS ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700;900&family=Onest:wght@300;400;500;600&display=swap');

/* ─── DESIGN SYSTEM VARIABLES ──────────────────────────────────────────────── */
:root {
  --bg: #080808;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --lime: #C6FF00;
  --lime-dim: #9fcc00;
  --white: #f5f5f5;
  --gray: #888;
  --gray2: #555;
  --border: rgba(255,255,255,0.08);
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Onest', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
}

/* ─── RESET ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
}

/* ─── ANNOUNCEMENT BAR ──────────────────────────────────────────────────────── */
.announcement {
  background: var(--lime);
  color: #000;
  text-align: center;
  padding: 10px 48px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ─── HEADER ────────────────────────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  height: 68px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  text-decoration: none;
}

.logo span, .logo .lime {
  color: var(--lime);
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

nav a {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  transition: color 0.2s;
  white-space: nowrap;
}

nav a:hover {
  color: var(--white);
}

nav a.active {
  color: var(--lime);
}

.header-cta {
  background: var(--lime);
  color: #000;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
  text-decoration: none;
}

.header-cta:hover {
  background: var(--lime-dim);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  display: block;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO ───────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(198,255,0,0.07) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 30% 70%, rgba(100,0,200,0.08) 0%, transparent 60%),
              var(--bg);
}

.hero-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.hero-placeholder {
  width: 500px;
  height: 500px;
  margin-right: 80px;
  opacity: 0.85;
}

.hero-string-art {
  width: 500px;
  height: 500px;
  animation: float 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 24px 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(198,255,0,0.4);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--lime);
  margin-bottom: 32px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  max-width: 720px;
  margin-bottom: 28px;
}

.hero-title em {
  color: var(--lime);
  font-style: normal;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(245,245,245,0.65);
  max-width: 480px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── KEYFRAMES ──────────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(2deg); }
  66% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes wave {
  0% { d: path("M0,40 Q20,0 40,40 Q60,80 80,40 Q100,0 120,40 Q140,80 160,40 Q180,0 200,40"); }
  50% { d: path("M0,40 Q20,80 40,40 Q60,0 80,40 Q100,80 120,40 Q140,0 160,40 Q180,80 200,40"); }
  100% { d: path("M0,40 Q20,0 40,40 Q60,80 80,40 Q100,0 120,40 Q140,80 160,40 Q180,0 200,40"); }
}

@keyframes dash {
  to { stroke-dashoffset: 0; }
}

@keyframes morphLoop {
  0%, 100% { transform: scaleX(1) scaleY(1); }
  25% { transform: scaleX(1.3) scaleY(0.7); }
  50% { transform: scaleX(0.8) scaleY(1.2); }
  75% { transform: scaleX(1.1) scaleY(0.9); }
}

@keyframes glow {
  0%, 100% { filter: drop-shadow(0 0 4px var(--lime)); }
  50% { filter: drop-shadow(0 0 16px var(--lime)) drop-shadow(0 0 32px rgba(198,255,0,0.4)); }
}

@keyframes drawPath {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}

@keyframes orbit {
  from { transform: rotate(0deg) translateX(60px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(60px) rotate(-360deg); }
}

@keyframes lasso {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.3); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes butterfly {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(-1); }
}

@keyframes cascade {
  0% { transform: translateY(-100px); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(100px); opacity: 0; }
}

@keyframes propeller {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes figureEight {
  0% { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}

@keyframes snakeWave {
  0% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(10px) translateY(-15px); }
  50% { transform: translateX(0) translateY(0); }
  75% { transform: translateX(-10px) translateY(15px); }
  100% { transform: translateX(0) translateY(0); }
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: #000;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--lime-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(198,255,0,0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 32px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

.btn-wb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #CB11AB;
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-wb:hover {
  background: #a80d8d;
  transform: translateY(-1px);
}

.btn-ozon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #005BFF;
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-ozon:hover {
  background: #0047cc;
  transform: translateY(-1px);
}

/* ─── STATS ──────────────────────────────────────────────────────────────────── */
.stats {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--lime);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  color: var(--gray);
  font-weight: 400;
}

/* ─── PRESS MARQUEE ──────────────────────────────────────────────────────────── */
.press {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.press-track {
  display: flex;
  gap: 64px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.press-item {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gray2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.press-item::after {
  content: '•';
  color: var(--lime);
  font-size: 10px;
}

/* ─── SECTIONS ───────────────────────────────────────────────────────────────── */
.section {
  padding: 100px 24px;
}

.section-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: rgba(245,245,245,0.55);
  max-width: 560px;
  line-height: 1.6;
}

/* ─── PRODUCTS SECTION ───────────────────────────────────────────────────────── */
.products-section {
  background: var(--bg2);
  padding: 100px 24px;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 24px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  border-color: rgba(198,255,0,0.25);
  transform: translateY(-4px);
}

.product-media {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: #0d0d0d;
}

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

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

.product-badge-new {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--lime);
  color: #000;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 100px;
  z-index: 2;
}

.product-badge-glow {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #7c3aed;
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 100px;
  z-index: 2;
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.product-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.product-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
  flex: 1;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.product-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--lime);
  letter-spacing: -0.02em;
}

.product-price-old {
  font-size: 15px;
  color: var(--gray2);
  text-decoration: line-through;
}

.product-colors {
  display: flex;
  gap: 8px;
  align-items: center;
}

.color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.product-buy-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ─── SPOTLIGHT ──────────────────────────────────────────────────────────────── */
.spotlight {
  padding: 100px 24px;
}

.spotlight-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.spotlight-inner.reverse {
  direction: rtl;
}

.spotlight-inner.reverse > * {
  direction: ltr;
}

.spotlight-media {
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--bg3);
}

.spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.spotlight-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.spotlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(198,255,0,0.35);
  border-radius: 100px;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: fit-content;
}

.spotlight-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.spotlight-desc {
  font-size: 17px;
  color: rgba(245,245,245,0.6);
  line-height: 1.6;
  font-weight: 300;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: border-color 0.2s;
}

.feature-item:hover {
  border-color: rgba(198,255,0,0.15);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(198,255,0,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-text h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 13px;
  color: var(--gray);
}

.spotlight-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── WHY SECTION ────────────────────────────────────────────────────────────── */
.why-section {
  background: var(--bg2);
  padding: 100px 24px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}

.why-card {
  background: var(--bg2);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
}

.why-card:hover {
  background: #1e1e1e;
}

.why-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.1em;
}

.why-icon {
  font-size: 32px;
  line-height: 1;
}

.why-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.why-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

/* ─── TRICKS SECTION ─────────────────────────────────────────────────────────── */
.tricks-section {
  padding: 100px 24px;
}

.tricks-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}

.tricks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trick-card {
  aspect-ratio: 9/16;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s;
}

.trick-card:hover {
  transform: scale(1.02);
  border-color: rgba(198,255,0,0.2);
}

.trick-card-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.trick-play {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.2s, transform 0.2s;
}

.trick-card:hover .play-btn {
  background: var(--lime);
  border-color: var(--lime);
}

.trick-card:hover .play-btn svg {
  color: #000;
}

.trick-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  z-index: 2;
}

.trick-level {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}

.trick-level.beginner {
  background: rgba(198,255,0,0.15);
  color: var(--lime);
  border: 1px solid rgba(198,255,0,0.3);
}

.trick-level.intermediate {
  background: rgba(251,191,36,0.15);
  color: #fbbf24;
  border: 1px solid rgba(251,191,36,0.3);
}

.trick-level.advanced {
  background: rgba(239,68,68,0.15);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,0.3);
}

/* ─── REVIEWS ────────────────────────────────────────────────────────────────── */
.reviews-section {
  background: var(--bg2);
  padding: 100px 24px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.review-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s;
}

.review-card:hover {
  border-color: rgba(198,255,0,0.15);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--lime);
  font-size: 16px;
}

.review-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.review-text {
  font-size: 14px;
  color: rgba(245,245,245,0.65);
  line-height: 1.6;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-dim) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  color: #000;
  flex-shrink: 0;
}

.review-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
}

.review-source {
  font-size: 12px;
  color: var(--gray2);
}

/* ─── ABOUT SECTION ──────────────────────────────────────────────────────────── */
.about-section {
  padding: 100px 24px;
}

.about-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-timeline {
  padding-top: 8px;
}

.timeline-item {
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-dot-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.timeline-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.timeline-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.about-right {
  position: sticky;
  top: 120px;
}

.about-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  margin-bottom: 24px;
}

.about-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-quote {
  background: var(--bg3);
  border-left: 3px solid var(--lime);
  padding: 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about-quote p {
  font-style: italic;
  font-size: 15px;
  color: rgba(245,245,245,0.75);
  line-height: 1.6;
  margin-bottom: 8px;
}

.about-quote cite {
  font-size: 12px;
  color: var(--gray2);
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── FAQ ────────────────────────────────────────────────────────────────────── */
.faq-section {
  background: var(--bg2);
  padding: 100px 24px;
}

.faq-inner {
  margin: 56px 0 0;
}

.faq-group {
  margin-bottom: 48px;
}

.faq-group-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  display: block;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  transition: border-color 0.25s;
}

.faq-item.open {
  border-color: rgba(198,255,0,0.18);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1.35;
}

.faq-item.open .faq-question {
  color: var(--lime);
}

.faq-question:hover {
  color: var(--lime);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.25s, background 0.25s, color 0.25s;
  color: var(--gray);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--lime);
  background: rgba(198,255,0,0.1);
  color: var(--lime);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 15px;
  color: rgba(245,245,245,0.6);
  line-height: 1.7;
}

/* ─── CTA BANNER ─────────────────────────────────────────────────────────────── */
.cta-banner {
  padding: 100px 24px;
}

.cta-inner {
  max-width: 1320px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0f0f0f 0%, #141414 100%);
  border: 1px solid rgba(198,255,0,0.15);
  border-radius: 24px;
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(198,255,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  display: block;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 18px;
  color: rgba(245,245,245,0.55);
  margin-bottom: 48px;
  font-weight: 300;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 24px 40px;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 280px;
}

.footer-brand .logo {
  display: inline-block;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  text-decoration: none;
}

.social-link:hover {
  color: var(--lime);
  border-color: rgba(198,255,0,0.3);
  background: rgba(198,255,0,0.05);
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--gray2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--gray);
  transition: color 0.2s;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  gap: 24px;
}

.footer-copy {
  font-size: 13px;
  color: var(--gray2);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--gray2);
  transition: color 0.2s;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gray);
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── PAGE HERO ──────────────────────────────────────────────────────────────── */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, var(--bg3) 0%, var(--bg) 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 60% 30%, rgba(198,255,0,0.06) 0%, transparent 70%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 24px;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(198,255,0,0.35);
  border-radius: 100px;
  padding: 7px 14px;
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.page-hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(245,245,245,0.6);
  max-width: 560px;
  line-height: 1.5;
  font-weight: 300;
}

/* ─── GALLERY ────────────────────────────────────────────────────────────────── */
.gallery-section {
  padding: 80px 24px;
}

.gallery-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.gallery-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg3);
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-img:hover img {
  transform: scale(1.04);
}

/* ─── FILTER BAR ─────────────────────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gray);
  padding: 8px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.filter-btn:hover {
  color: var(--lime);
  border-color: rgba(198,255,0,0.3);
}

.filter-btn.active {
  background: var(--lime);
  color: #000;
  border-color: var(--lime);
}

/* ─── TRICKS FULL GRID ───────────────────────────────────────────────────────── */
.tricks-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trick-full-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}

.trick-full-card:hover {
  border-color: rgba(198,255,0,0.2);
  transform: translateY(-3px);
}

.trick-full-media {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}

.trick-full-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trick-full-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.trick-full-level {
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
}

.trick-full-btn {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.trick-full-btn:hover {
  color: var(--lime);
}

/* ─── STEPS SECTION ──────────────────────────────────────────────────────────── */
.steps-section {
  padding: 100px 24px;
}

.steps-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 56px auto 0;
}

.step-item {
  display: flex;
  gap: 32px;
  padding-bottom: 48px;
  position: relative;
}

.step-item::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--lime) 0%, var(--border) 100%);
}

.step-item:last-child::after {
  display: none;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lime);
  color: #000;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content {
  padding-top: 12px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

.step-emoji {
  font-size: 22px;
  margin-bottom: 6px;
  display: block;
}

/* ─── CONTACT ────────────────────────────────────────────────────────────────── */
.contact-section {
  padding: 100px 24px;
}

.contact-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.contact-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: border-color 0.3s;
}

.contact-card:hover {
  border-color: rgba(198,255,0,0.2);
}

.contact-card-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.contact-card p {
  font-size: 15px;
  color: var(--gray);
}

.contact-card a {
  color: var(--lime);
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-input,
.form-select,
.form-textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--lime);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray2);
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.6;
}

/* ─── PRODUCT DETAIL ─────────────────────────────────────────────────────────── */
.product-detail {
  padding: 80px 24px;
}

.product-detail-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-detail-info {
  position: sticky;
  top: 120px;
}

.product-detail-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.product-detail-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  color: var(--lime);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.product-detail-desc {
  font-size: 16px;
  color: rgba(245,245,245,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}

.product-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
}

.product-feature-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.product-feature-text {
  font-size: 13px;
  line-height: 1.4;
}

.product-feature-text strong {
  display: block;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 2px;
}

.product-feature-text span {
  color: var(--gray);
  font-size: 12px;
}

.product-buy-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.product-buy-section h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-buy-row {
  display: flex;
  gap: 12px;
}

.contents-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.contents-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(245,245,245,0.7);
}

.contents-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

/* ─── ABOUT PAGE ─────────────────────────────────────────────────────────────── */
.about-stats {
  background: var(--bg2);
  padding: 60px 24px;
}

.about-stats-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-stat-item {
  background: var(--bg2);
  padding: 48px 32px;
  text-align: center;
}

/* ─── DIVIDER ────────────────────────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ─── BREADCRUMB ─────────────────────────────────────────────────────────────── */
.breadcrumb {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--gray2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.breadcrumb a {
  color: var(--gray2);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--gray);
}

.breadcrumb span {
  color: var(--lime);
}

/* ─── UTILITY ────────────────────────────────────────────────────────────────── */
.text-lime { color: var(--lime); }
.text-gray { color: var(--gray); }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.mt-56 { margin-top: 56px; }
.mb-56 { margin-bottom: 56px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .spotlight-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .spotlight-inner.reverse {
    direction: ltr;
  }

  .spotlight-media {
    aspect-ratio: 16/9;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-right {
    position: static;
  }

  .tricks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tricks-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-info {
    position: static;
  }

  .about-stats-inner {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 200;
  }

  nav.open {
    display: flex;
  }

  nav a {
    font-size: 20px;
    letter-spacing: 0.08em;
  }

  .menu-toggle {
    display: flex;
    z-index: 300;
    position: relative;
  }

  .header-cta {
    display: none;
  }

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

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

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

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .stat:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .tricks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-inner {
    padding: 48px 32px;
  }

  .section {
    padding: 64px 24px;
  }

  .products-section,
  .why-section,
  .tricks-section,
  .reviews-section,
  .about-section,
  .faq-section,
  .cta-banner,
  .spotlight,
  .steps-section,
  .contact-section,
  .gallery-section {
    padding: 64px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .products-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .tricks-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .tricks-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: clamp(40px, 12vw, 72px);
  }

  .hero-visual {
    opacity: 0.3;
  }

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

  .product-features-grid {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    margin: 40px 0 0;
  }

  .reviews-slider .review-card {
    flex: 0 0 100%;
    padding: 0 8px;
  }

  .reviews-slider-outer {
    margin-top: 40px;
  }
}

/* ─── KIT BOX (КОМПЛЕКТАЦИЯ) ────────────────────────────────────────────────── */
.kit-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 20px;
}

.kit-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(198,255,0,0.03);
}

.kit-box-header-icon {
  width: 28px;
  height: 28px;
  background: rgba(198,255,0,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.kit-box-title {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
}

.kit-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.kit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg3);
  transition: background 0.2s;
}

.kit-item:hover {
  background: rgba(198,255,0,0.03);
}

.kit-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.kit-item-icon {
  width: 34px;
  height: 34px;
  background: var(--bg2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.kit-item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.kit-item-text strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.kit-item-text span {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.3;
}

/* ─── MICRO-INTERACTIONS ────────────────────────────────────────────────────── */

/* Buttons — lift + glow on hover */
.btn-primary {
  transition: opacity 0.2s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
}
.btn-primary:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(198,255,0,0.25);
}

.btn-secondary {
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-secondary:hover {
  transform: translateY(-1px);
}

.btn-wb {
  transition: opacity 0.2s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
}
.btn-wb:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(203,17,171,0.35);
}

.btn-ozon {
  transition: opacity 0.2s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
}
.btn-ozon:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,91,255,0.35);
}

.header-cta {
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.25s;
}
.header-cta:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(198,255,0,0.2);
}

/* Nav — animated underline */
nav a {
  position: relative;
  padding-bottom: 2px;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--lime);
  transition: width 0.3s ease;
}
nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* Product cards — enhanced hover with spring */
.product-card {
  transition: border-color 0.35s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(198,255,0,0.12);
}

/* Review cards */
.review-card {
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.review-card:hover {
  transform: translateY(-4px);
}

/* Feature items — slide right */
.feature-item {
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.feature-item:hover {
  transform: translateX(4px);
  background: rgba(198,255,0,0.02);
}

/* Why cards */
.why-card {
  transition: background 0.3s, box-shadow 0.3s;
}
.why-card:hover {
  background: #1c1c1c;
  box-shadow: inset 0 1px 0 rgba(198,255,0,0.08);
}

/* Color dots */
.color-dot {
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
}
.color-dot:hover {
  transform: scale(1.3);
}
.color-dot.active {
  box-shadow: 0 0 0 2px var(--bg3), 0 0 0 4px var(--lime);
  border-color: transparent !important;
}

/* Social links */
.social-link {
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.social-link:hover {
  transform: translateY(-2px);
}

/* Trick cards — spring scale */
.trick-card {
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.trick-card:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

/* Play button */
.play-btn {
  transition: background 0.2s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.trick-card:hover .play-btn {
  transform: scale(1.15);
}

/* Timeline dot */
.timeline-dot {
  transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.timeline-item:hover .timeline-dot {
  transform: scale(1.1);
}

/* Gallery images */
.gallery-img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-img:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.gallery-img img {
  transition: transform 0.5s ease;
}
.gallery-img:hover img {
  transform: scale(1.04);
}

/* Kit items */
.kit-item {
  transition: background 0.2s;
}

/* FAQ question hover color */
.faq-question {
  transition: color 0.2s;
}

/* ─── TYPOGRAPHY IMPROVEMENTS ───────────────────────────────────────────────── */
html {
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}

p {
  line-height: 1.72;
}

.section-sub {
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.section-label {
  letter-spacing: 0.14em;
}

.spotlight-desc {
  font-size: 16px;
  line-height: 1.78;
}

.product-detail-desc {
  line-height: 1.78;
  color: rgba(245,245,245,0.68);
}

.faq-answer-inner {
  line-height: 1.82;
  letter-spacing: 0.01em;
}

.hero-sub {
  line-height: 1.72;
  letter-spacing: 0.01em;
}

.why-desc {
  line-height: 1.65;
}

.feature-text p {
  line-height: 1.5;
}

/* Smooth reveal easing */
.reveal {
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Staggered reveal delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── PAGE TRANSITIONS (View Transitions API) ───────────────────────────────── */
@view-transition { navigation: auto; }

@keyframes vt-slide-in  { from { opacity: 0; transform: translateY(14px); } }
@keyframes vt-slide-out { to   { opacity: 0; transform: translateY(-8px); } }

::view-transition-old(root) {
  animation: 240ms ease both vt-slide-out;
}
::view-transition-new(root) {
  animation: 420ms cubic-bezier(0.16, 1, 0.3, 1) both vt-slide-in;
}

/* Fallback entrance for browsers without View Transitions */
@supports not (view-transition-name: root) {
  @media (prefers-reduced-motion: no-preference) {
    body { animation: vtFallbackIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both; }
  }
}
@keyframes vtFallbackIn {
  from { opacity: 0; transform: translateY(16px); }
}

/* ─── HERO MICRO-ANIMATIONS ─────────────────────────────────────────────────── */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroInScale {
  from { opacity: 0; transform: scale(0.82) rotate(-4deg); }
  to   { opacity: 1; transform: scale(1)    rotate(0deg); }
}

.hero-badge   { animation: heroIn 0.65s cubic-bezier(0.16,1,0.3,1) 0.1s  both; }
.hero-title   { animation: heroIn 0.8s  cubic-bezier(0.16,1,0.3,1) 0.25s both; }
.hero-sub     { animation: heroIn 0.8s  cubic-bezier(0.16,1,0.3,1) 0.4s  both; }
.hero-actions { animation: heroIn 0.8s  cubic-bezier(0.16,1,0.3,1) 0.55s both; }
.hero-string-art {
  animation:
    heroInScale 1s cubic-bezier(0.16,1,0.3,1) 0.2s both,
    float 6s ease-in-out 1.2s infinite;
}

/* ─── WHY ICON WRAP ─────────────────────────────────────────────────────────── */
.why-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(198,255,0,0.08);
  border: 1px solid rgba(198,255,0,0.14);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.why-card:hover .why-icon-wrap {
  background: rgba(198,255,0,0.14);
  border-color: rgba(198,255,0,0.3);
  transform: scale(1.08) rotate(-2deg);
}

/* ─── REVIEWS SLIDER ────────────────────────────────────────────────────────── */
.reviews-slider-outer {
  overflow: hidden;
  margin-top: 56px;
}
.reviews-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.reviews-slider .review-card {
  flex: 0 0 33.333%;
  padding: 0 12px;
  box-sizing: border-box;
}
.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.slider-arrow {
  width: 48px;
  height: 48px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray);
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.slider-arrow:hover {
  border-color: rgba(198,255,0,0.3);
  color: var(--lime);
  background: rgba(198,255,0,0.05);
  transform: scale(1.08);
}
.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--gray2);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.3s, width 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.slider-dot.active {
  background: var(--lime);
  width: 22px;
}

/* ─── ANNOUNCEMENT CLOSE ────────────────────────────────────────────────────── */
.announcement {
  position: relative;
  overflow: hidden;
  transition: height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}
.announcement-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.5);
  font-size: 18px;
  line-height: 1;
  border-radius: 50%;
  transition: color 0.15s, background 0.15s;
}
.announcement-close:hover {
  color: #000;
  background: rgba(0,0,0,0.1);
}
.announcement.dismissed {
  height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 480px) {
  .tricks-full-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .kit-items {
    grid-template-columns: 1fr;
  }

  .kit-item:last-child:nth-child(odd) {
    grid-column: auto;
  }

}
