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

:root {
  --bg:          #080705;
  --bg-2:        #0f0d09;
  --bg-card:     #131109;
  --text:        #f0ede8;
  --text-dim:    #8a7d6b;
  --text-muted:  #4a4035;
  --accent:      #c8922a;
  --accent-lt:   #e8b050;
  --accent-glow: rgba(200,146,42,.28);
  --border:      rgba(200,146,42,.12);
  --border-soft: rgba(255,255,255,.06);
  --radius:      12px;
  --font:        'Outfit', sans-serif;
  --ease-out:    cubic-bezier(.22,1,.36,1);
}

html { scroll-behavior: smooth; }

/* Hide default cursor everywhere */
*, *::before, *::after { cursor: none !important; }

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

/* ===================== CUSTOM CURSOR ===================== */
#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition:
    width .18s var(--ease-out),
    height .18s var(--ease-out),
    background .2s,
    box-shadow .2s,
    opacity .18s var(--ease-out),
    transform .2s var(--ease-out);
  box-shadow:
    0 0 8px  var(--accent),
    0 0 22px rgba(200,146,42,.55);
  will-change: left, top;
}

#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(200,146,42,.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  transition:
    width .3s var(--ease-out),
    height .3s var(--ease-out),
    border-color .3s,
    background-color .3s,
    transform .22s var(--ease-out),
    opacity .4s;
  will-change: left, top;
}

/* --- Triangle: hidden by default, shown on hover --- */
#cursor-tri {
  position: fixed;
  top: 0; left: 0;
  width: 22px;
  height: 20px;
  pointer-events: none;
  z-index: 999999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  background: linear-gradient(160deg, var(--accent-lt) 0%, var(--accent) 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  filter:
    drop-shadow(0 0 5px var(--accent))
    drop-shadow(0 0 16px rgba(200,146,42,.6));
  transition:
    opacity .18s var(--ease-out),
    transform .22s var(--ease-out),
    filter .2s;
  will-change: left, top;
}

/* --- HOVER: dot disappears → triangle appears --- */
body.cur-hover #cursor-dot {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

body.cur-hover #cursor-tri {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(-22deg);
  filter:
    drop-shadow(0 0 8px var(--accent-lt))
    drop-shadow(0 0 24px rgba(232,176,80,.65));
}

body.cur-hover #cursor-ring {
  width: 54px; height: 54px;
  border-color: transparent;
  background-color: rgba(232,176,80,.55);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%, 50% 0%, 50% 4%, 5% 96%, 95% 96%, 50% 4%);
  transform: translate(-50%, -50%) rotate(-22deg);
}

/* --- CLICK state --- */
body.cur-click #cursor-dot {
  width: 7px; height: 7px;
  background: #fff;
  box-shadow: 0 0 12px #fff, 0 0 30px rgba(255,255,255,.4);
}

body.cur-click #cursor-tri {
  transform: translate(-50%, -50%) scale(0.72) rotate(-22deg);
  filter:
    drop-shadow(0 0 10px #fff)
    drop-shadow(0 0 28px rgba(255,255,255,.5));
}

body.cur-click #cursor-ring {
  width: 30px; height: 30px;
  border-color: transparent;
  background-color: rgba(255,255,255,.5);
}

/* --- HIDE when pointer leaves window --- */
body.cur-hidden #cursor-dot,
body.cur-hidden #cursor-tri,
body.cur-hidden #cursor-ring { opacity: 0; }

/* ===================== NAV ===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  transition: background .4s, backdrop-filter .4s, border-color .4s;
}

nav.scrolled {
  background: rgba(8,7,5,.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: opacity .3s, transform .3s var(--ease-out);
  /* Logo has dark bg — mix-blend-mode lets it sit cleanly on the nav */
  mix-blend-mode: lighten;
  filter: brightness(1.05);
}
.nav-logo:hover .nav-logo-img {
  opacity: 0.85;
  transform: scale(1.03);
}

/* Footer logo */
.footer-brand-name {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
}
.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: brightness(1.05);
  transition: opacity .3s;
}
.footer-brand-name:hover .footer-logo-img { opacity: 0.8; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--text-dim);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color .3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--text);
  text-decoration: none;
  padding: 10px 26px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50px;
  transition: border-color .3s, color .3s, box-shadow .3s;
}
.nav-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

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

/* Left gradient — keeps hero text readable over 3D scene */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(8,7,5,0.88) 0%,
      rgba(8,7,5,0.60) 36%,
      rgba(8,7,5,0.10) 60%,
      transparent 100%
    );
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 60px;
  max-width: 500px;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.hero h1 span { color: var(--accent); }

.hero-sub {
  font-size: 15.5px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 310px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--accent);
  color: #060504;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s var(--ease-out), box-shadow .3s;
}
.btn-primary:hover {
  background: var(--accent-lt);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(200,146,42,.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s;
}
.btn-secondary:hover { color: var(--accent); }

.btn-play {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  padding-left: 2px;
  transition: border-color .3s;
}
.btn-secondary:hover .btn-play { border-color: var(--accent); }

/* 3D canvas container — full viewport background */
.hero-3d {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

#hero-canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 60px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-hint span {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  height: 60px;
  letter-spacing: 3px;
}

.scroll-arrow {
  font-size: 18px;
  color: var(--text-muted);
  animation: bounce-down 2s ease-in-out infinite;
}

@keyframes bounce-down {
  0%,100% { transform: translateY(0); opacity: 0.5; }
  50%      { transform: translateY(7px); opacity: 1; }
}

/* ===================== ABOUT ===================== */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 80px;
  padding: 120px 60px;
}

.about-3d-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 440px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.about-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: contrast(1.5) brightness(0.8) grayscale(0.2);
  animation: float-logo 6s ease-in-out infinite;
}

@keyframes float-logo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.about-content h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 24px;
  max-width: 400px;
}

.about-content p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.82;
  margin-bottom: 18px;
}

/* ===================== FEATURES ===================== */
.features {
  padding: 70px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.feature {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.feature.visible {
  opacity: 1;
  transform: translateY(0);
}
.feature:nth-child(1) { transition-delay: .0s; }
.feature:nth-child(2) { transition-delay: .1s; }
.feature:nth-child(3) { transition-delay: .2s; }
.feature:nth-child(4) { transition-delay: .3s; }

.feature-icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--accent);
  margin-bottom: 16px;
  transition: background .3s, box-shadow .3s;
}
.feature:hover .feature-icon {
  background: rgba(200,146,42,.08);
  box-shadow: 0 0 20px rgba(200,146,42,.2);
}

.feature h3 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.feature p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ===================== FOOTER ===================== */
footer {
  padding: 70px 60px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 12.5px;
  color: var(--text-dim);
}

.footer-col h4 {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 13.5px;
  color: var(--text-dim);
  text-decoration: none;
  margin-bottom: 11px;
  transition: color .25s;
}
.footer-col a:hover { color: var(--text); }

.footer-col p {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 14px;
  line-height: 1.6;
}


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

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color .3s, color .3s, box-shadow .3s;
  color: var(--text-dim);
}
.social-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

/* ======================================================
   IDEAS PAGE
   ====================================================== */
.ideas-page { padding-top: 90px; min-height: 100vh; }

.ideas-hero {
  padding: 50px 60px 32px;
}

.ideas-hero h1 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.ideas-hero p { color: var(--text-dim); font-size: 15px; }

/* filter bar */
.filter-bar {
  padding: 0 60px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-dim);
  font-family: var(--font);
  transition: all .3s;
}
.filter-tab.active {
  background: rgba(200,146,42,.1);
  border-color: var(--accent);
  color: var(--text);
}
.filter-tab:hover:not(.active) {
  color: var(--text);
  border-color: var(--border-soft);
}

.sort-select {
  padding: 8px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text-dim);
  font-size: 13px;
  font-family: var(--font);
  cursor: pointer;
  outline: none;
  transition: border-color .3s;
}
.sort-select:hover { border-color: var(--accent); }

/* product grid */
.ideas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
  margin: 0 60px;
  border-radius: 16px;
  overflow: hidden;
}

.idea-card {
  background: var(--bg);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: background .3s;
}
.idea-card:hover { background: var(--bg-2); }

/* card image / placeholder */
.card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}

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

/* different ambient colors per card */
.card-placeholder.mood-a { background: linear-gradient(140deg,#0f0c07 0%,#1a1408 60%,#0d0a05 100%); }
.card-placeholder.mood-b { background: linear-gradient(140deg,#0a0c10 0%,#10131a 60%,#080a0d 100%); }
.card-placeholder.mood-c { background: linear-gradient(140deg,#0f0a07 0%,#1a1108 60%,#0c0905 100%); }

.card-placeholder-glow {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .35;
  pointer-events: none;
  transition: opacity .4s;
}
.idea-card:hover .card-placeholder-glow { opacity: .55; }

.card-placeholder svg {
  width: 44px; height: 44px;
  opacity: .18;
  color: var(--accent);
  position: relative;
  z-index: 1;
  transition: opacity .4s, transform .4s;
}
.idea-card:hover .card-placeholder svg { opacity: .32; transform: scale(1.1); }



/* card body */
.card-body { padding: 16px 18px 20px; }

.card-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.card-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 4px;
}

.card-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 0;
}

.buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color .3s, gap .3s;
}
.buy-btn:hover { color: var(--accent-lt); gap: 10px; }

/* load more */
.ideas-more {
  padding: 48px 60px;
  display: flex;
  justify-content: center;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 34px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dim);
  background: transparent;
  cursor: pointer;
  font-family: var(--font);
  transition: border-color .3s, color .3s, box-shadow .3s;
}
.load-more-btn:hover {
  border-color: var(--accent);
  color: var(--text);
  box-shadow: 0 0 24px var(--accent-glow);
}

.spin { animation: spin 1.5s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===================== UTILS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================== SKIP LINK ===================== */
.skip-link {
  position: fixed;
  top: -100%;
  left: 20px;
  z-index: 99999;
  padding: 10px 20px;
  background: var(--accent);
  color: #060504;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 20px; }

/* ===================== FOCUS STATES ===================== */
a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===================== HAMBURGER BUTTON ===================== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 9px;
  padding: 9px;
  cursor: pointer;
  transition: border-color .3s;
}
.nav-hamburger:hover { border-color: var(--accent); }

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===================== MOBILE NAV OVERLAY ===================== */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(8,7,5,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-dim);
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 12px;
  transition: color 0.2s, background 0.2s;
}
.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--accent);
  background: rgba(200,146,42,.06);
}

.nav-mobile .nav-mobile-cta {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .5px;
  padding: 14px 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  color: var(--text);
}
.nav-mobile .nav-mobile-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

/* ===================== AFFILIATE NOTICE ===================== */
.affiliate-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 60px 28px;
  padding: 14px 20px;
  background: rgba(200,146,42,.05);
  border: 1px solid rgba(200,146,42,.18);
  border-radius: 10px;
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.65;
}
.affiliate-notice svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 1px;
}
.affiliate-notice strong { color: var(--accent); font-weight: 600; }
.affiliate-notice a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.affiliate-notice a:hover { color: var(--accent-lt); }

/* ===================== LEGAL PAGES ===================== */
.legal-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 120px 60px 80px;
}

.legal-page h1 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
  line-height: 1.1;
}

.legal-page .legal-date {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
  display: block;
}

.legal-page h2 {
  font-size: 17px;
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--text);
  letter-spacing: -.2px;
}

.legal-page p {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-page ul {
  margin: 0 0 16px 22px;
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 2;
}

.legal-page a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-page a:hover { color: var(--accent-lt); }

.legal-highlight {
  padding: 20px 24px;
  background: rgba(200,146,42,.07);
  border: 1px solid rgba(200,146,42,.18);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  margin-bottom: 28px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.78;
}

/* ===================== CONTACT PAGE ===================== */
.contact-page {
  max-width: 620px;
  margin: 0 auto;
  padding: 120px 60px 80px;
}

.contact-page h1 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
  line-height: 1.1;
}

.contact-page .contact-sub {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 48px;
  line-height: 1.75;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--text-dim);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 18px;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font);
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,146,42,.12);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form textarea { min-height: 140px; }

.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: var(--accent);
  color: #060504;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s var(--ease-out), box-shadow .3s;
  align-self: flex-start;
}
.contact-submit:hover {
  background: var(--accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200,146,42,.4);
}
.contact-submit:disabled {
  opacity: 0.6;
  transform: none;
  cursor: not-allowed;
}

.contact-success {
  display: none;
  padding: 18px 22px;
  background: rgba(200,146,42,.08);
  border: 1px solid rgba(200,146,42,.25);
  border-radius: 12px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
.contact-success.show { display: block; }

/* ===================== 404 PAGE ===================== */
.not-found-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
}

.not-found-code {
  font-size: clamp(90px, 20vw, 160px);
  font-weight: 800;
  letter-spacing: -6px;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-lt), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.not-found-page h2 {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 700;
  margin-bottom: 14px;
}

.not-found-page p {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 380px;
  line-height: 1.75;
  margin-bottom: 40px;
}

/* ===================== RESPONSIVE — 768px ===================== */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero {
    flex-direction: column;
    min-height: auto;
    padding-top: 80px;
    align-items: flex-start;
  }
  .hero-content { padding: 48px 24px 0; max-width: 100%; }

  .hero h1 { font-size: clamp(36px, 8vw, 52px); letter-spacing: -1.5px; }
  .hero-buttons { flex-wrap: wrap; gap: 16px; }
  .scroll-hint { display: none; }

  /* About */
  .about {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }
  .about-3d-wrap { max-width: 100%; aspect-ratio: 4/3; }

  /* Features */
  .features {
    grid-template-columns: repeat(2, 1fr);
    padding: 48px 24px;
    gap: 32px;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  footer { padding: 48px 24px 32px; }
  .footer-grid { margin-bottom: 36px; }

  /* Ideas page */
  .ideas-page { padding-top: 80px; }
  .ideas-hero { padding: 40px 24px 24px; }
  .filter-bar { padding: 0 24px 24px; }
  .filter-tabs { gap: 5px; }
  .filter-tab { padding: 7px 14px; font-size: 12px; }
  .ideas-grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 24px;
  }
  .ideas-more { padding: 36px 24px; }
  .affiliate-notice { margin: 0 24px 24px; }

  /* Top picks page */
  .picks-hero { padding: 110px 24px 40px; }
  .featured-section { padding: 0 24px 40px; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-media { aspect-ratio: 16/9; }
  .featured-body { padding: 28px 28px; }
  .picks-grid-section { padding: 20px 24px 48px; }
  .picks-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .picks-divider { margin: 0 24px 36px; }

  /* Legal pages */
  .legal-page { padding: 100px 24px 60px; }
  .contact-page { padding: 100px 24px 60px; }
}

/* ===================== RESPONSIVE — 480px ===================== */
@media (max-width: 480px) {
  nav { padding: 14px 18px; }

  .hero-content { padding: 40px 18px 0; }

  .hero h1 { font-size: clamp(30px, 9vw, 44px); letter-spacing: -1px; }
  .hero-sub { font-size: 14px; max-width: 100%; }
  .hero-buttons { flex-direction: column; align-items: flex-start; gap: 14px; }

  .features { grid-template-columns: 1fr; padding: 40px 18px; gap: 28px; }

  .footer-grid { grid-template-columns: 1fr; }
  footer { padding: 40px 18px 28px; }

  .about { padding: 40px 18px; gap: 24px; }
  .about-3d-wrap { max-width: 180px; margin: 0 auto; aspect-ratio: 1; }
  .about-content h2 { font-size: clamp(24px, 7vw, 32px); }

  .ideas-grid { grid-template-columns: 1fr; margin: 0 18px; }
  .filter-bar { padding: 0 18px 18px; }
  .ideas-hero { padding: 32px 18px 18px; }
  .affiliate-notice { margin: 0 18px 18px; }

  .picks-grid { grid-template-columns: 1fr; }
  .picks-hero { padding: 100px 18px 32px; }
  .picks-hero h1 { font-size: clamp(30px, 8vw, 44px); letter-spacing: -1.5px; }
  .featured-section { padding: 0 18px 32px; }
  .featured-body { padding: 22px 20px; }
  .picks-grid-section { padding: 0 18px 36px; }
  .picks-divider { margin: 0 18px 28px; }

  .btn-primary { font-size: 13px; padding: 12px 22px; }
  .btn-secondary { font-size: 13px; }

  .legal-page { padding: 90px 18px 48px; }
  .contact-page { padding: 90px 18px 48px; }
  .not-found-page { padding: 90px 18px 48px; }
}


/* Exact Mockup Background Overlay */
.mockup-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 120vh; /* slightly taller for parallax scroll */
  background-image: url('mockup-products.png');
  background-size: cover;
  background-position: center 0;
  background-repeat: no-repeat;
  z-index: 1; /* above stars, below content */
  pointer-events: none;
  opacity: 1;
}

