/* ===================================================
   THE PICK WALLET — Stylesheet
   =================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0d0d0f;
  --bg-2:       #111114;
  --bg-card:    #18181d;
  --bg-card-2:  #1e1e24;
  --border:     rgba(255,255,255,.08);
  --border-2:   rgba(255,255,255,.14);
  --amber:      #f59e0b;
  --amber-light:#fcd34d;
  --amber-dark: #d97706;
  --gold:       #c9a84c;
  --warm:       #e8875a;
  --text:       #f1f0ee;
  --text-2:     #a8a6a0;
  --text-3:     #6b6965;
  --radius:     14px;
  --radius-sm:  8px;
  --radius-lg:  24px;
  --shadow:     0 8px 32px rgba(0,0,0,.5);
  --shadow-lg:  0 24px 64px rgba(0,0,0,.6);
  --glow:       0 0 40px rgba(245,158,11,.18);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* ===================================================
   NAV
   =================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(13,13,15,.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.3px;
  color: var(--text);
}

.logo-icon {
  color: var(--amber);
  font-size: 20px;
}

.logo-img {
  height: 68px;
  width: auto;
  display: block;
  filter: brightness(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--text); }

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 12px;
  background: rgba(13,13,15,.95);
  backdrop-filter: blur(20px);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
}

.nav-mobile .btn {
  background: none;
  color: var(--amber);
  padding: 0;
  justify-content: flex-start;
  font-size: 15px;
  font-weight: 600;
  align-self: flex-start;
}

.nav-mobile .btn:hover {
  background: none;
  transform: none;
  box-shadow: none;
  filter: brightness(1.15);
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-sm { padding: 8px 16px; font-size: 13px; }

.btn-primary {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  color: #0d0d0f;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245,158,11,.4);
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.25);
}

/* ===================================================
   SECTIONS
   =================================================== */
.section { padding: 100px 0; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
  text-align: center;
}

.section-label.left { text-align: left; }

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.5px;
  text-align: center;
  margin-bottom: 56px;
  color: var(--text);
}

.section-title.left { text-align: left; }

/* ===================================================
   HERO
   =================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Guitar strings background */
.strings {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.string {
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(245,158,11,.06) 20%, rgba(245,158,11,.10) 50%, rgba(245,158,11,.06) 80%, transparent 100%);
  position: absolute;
}

.strings .s1 { height: 1px; top: 28%; }
.strings .s2 { height: 1px; top: 36%; }
.strings .s3 { height: 1px; top: 44%; }
.strings .s4 { height: 1px; top: 52%; }
.strings .s5 { height: 1px; top: 60%; }
.strings .s6 { height: 2px; top: 68%; }

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(245,158,11,.07) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}

.hero-product-name {
  font-family: 'Righteous', sans-serif;
  font-size: clamp(44px, 7.5vw, 88px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0px;
  background: linear-gradient(135deg, var(--amber-light) 0%, var(--amber) 50%, var(--warm) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.hero-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.5px;
  color: var(--text-2);
  margin-bottom: 24px;
}

.hero-title .gradient-text {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--amber);
  background-clip: unset;
  color: var(--amber);
}

.hero-title-track {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.12em;
  vertical-align: bottom;
}

.hero-title-rotating {
  display: inline-block;
  font-family: 'Righteous', sans-serif;
  font-weight: 400;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-title-rotating.title-exit {
  transform: translateY(-115%);
}

.hero-title-rotating.title-enter {
  transform: translateY(115%);
  transition: none;
}

.gradient-text {
  background: linear-gradient(135deg, var(--amber-light) 0%, var(--amber) 50%, var(--warm) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-sub strong { color: var(--amber-light); }

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

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

.proof-item {
  text-align: center;
}

.proof-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}

.proof-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 4px;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border-2);
}

/* ===================================================
   PICK CARD HERO VISUAL
   =================================================== */
.hero-card-wrap {
  position: relative;
  z-index: 2;
  margin-top: 56px;
  perspective: 800px;
}

.pick-card {
  position: relative;
  width: 420px;
  height: 264px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.34,1.56,.64,1);
  border-radius: 16px;
  box-shadow:
    var(--shadow-lg),
    0 0 60px rgba(245,158,11,.12),
    0 0 120px rgba(245,158,11,.06);
}

.pick-card:hover {
  transform: rotateY(-8deg) rotateX(4deg);
}

.product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(245,158,11,.12);
  pointer-events: none;
}

/* ===================================================
   SCROLL HINT
   =================================================== */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--text-3);
  border-bottom: 2px solid var(--text-3);
  transform: rotate(45deg);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .6; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ===================================================
   FEATURES
   =================================================== */
.features {
  background: var(--bg-2);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: rgba(245,158,11,.25);
  background: var(--bg-card-2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--amber);
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ===================================================
   HOW IT WORKS
   =================================================== */
.how-it-works { background: var(--bg); }

.how-timeline {
  position: relative;
  margin-top: 72px;
  padding-left: 8px;
}

.how-timeline::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 56px;
  bottom: 56px;
  width: 2px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(245,158,11,0.3) 12%,
    rgba(245,158,11,0.3) 88%,
    transparent 100%);
  pointer-events: none;
}

.timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 80px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 0 6px var(--bg),
    0 8px 24px rgba(245,158,11,0.15);
  flex-shrink: 0;
}

.timeline-marker span {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -0.02em;
}

.timeline-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 640px;
  padding-top: 4px;
}

.timeline-photo {
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.timeline-item:hover .timeline-photo {
  transform: translateY(-3px);
  box-shadow:
    0 26px 60px rgba(0,0,0,0.55),
    0 0 0 1px rgba(245,158,11,0.12),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.timeline-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.timeline-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin: 8px 0 0;
  letter-spacing: -0.01em;
}

.timeline-body p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.75;
  margin: 0;
  max-width: 560px;
}

@media (max-width: 768px) {
  .how-timeline {
    margin-top: 48px;
    padding-left: 0;
  }
  .how-timeline::before {
    left: 23px;
    top: 44px;
    bottom: 44px;
  }
  .timeline-item {
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding-bottom: 56px;
  }
  .timeline-marker {
    width: 48px;
    height: 48px;
    box-shadow:
      0 0 0 4px var(--bg),
      0 6px 18px rgba(245,158,11,0.15);
  }
  .timeline-marker span { font-size: 16px; }
  .timeline-body { gap: 16px; }
  .timeline-body h3 { font-size: 24px; }
  .timeline-body p { font-size: 15px; }
  .timeline-photo { border-radius: 12px; }
}

/* ===================================================
   SPECS
   =================================================== */
.specs {
  background: var(--bg-2);
}

.specs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.specs-description {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.specs-list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
}

.specs-list strong { color: var(--text); }

.spec-dot {
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

.specs-card-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.showcase-product-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.showcase-img-with-dims {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.showcase-product-img {
  width: 360px;
  border-radius: 18px;
  box-shadow: var(--shadow-lg), var(--glow);
  border: 1px solid rgba(245,158,11,.2);
  display: block;
}

.showcase-flip {
  position: relative;
  width: 360px;
  perspective: 1200px;
  cursor: pointer;
}

.showcase-flip-sizer {
  display: block;
  width: 100%;
  visibility: hidden;
  pointer-events: none;
}

.showcase-flip-inner {
  position: absolute;
  inset: 0;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
  transform-style: preserve-3d;
}

.showcase-flip .showcase-product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
}

.showcase-flip-back { transform: rotateY(180deg); }

.showcase-flip:hover .showcase-flip-inner,
.showcase-flip.flipped .showcase-flip-inner {
  transform: rotateY(180deg);
}

.dim-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
}

.dim-line .dim-cap {
  flex: 1;
  height: 1px;
  background: var(--border-2);
}

.dim-line.dim-h {
  width: 360px;
}

.dim-line.dim-v {
  flex-direction: column;
  width: 32px;
}

.dim-line.dim-v .dim-cap {
  width: 1px;
  height: auto;
}

.dim-line.dim-v .dim-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

/* ===================================================
   STORY
   =================================================== */
.story { background: var(--bg); }

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-quote {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--bg-card);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px;
  font-style: italic;
  color: var(--text-2);
  line-height: 1.7;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--amber);
  line-height: 0;
  vertical-align: -.3em;
  margin-right: 4px;
}

.story-text p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 18px;
}

.founders-row {
  display: flex;
  gap: 24px;
  margin-top: 36px;
}

.founder {
  display: flex;
  align-items: center;
  gap: 12px;
}

.founder-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-dark), var(--amber));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #0d0d0f;
  flex-shrink: 0;
}

.founder-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.founder-role {
  font-size: 12px;
  color: var(--text-3);
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials {
  background: var(--bg-2);
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(245,158,11,.2);
  transform: translateY(-3px);
}

.stars {
  color: var(--amber);
  font-size: 15px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

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

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card));
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--amber);
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.author-role {
  font-size: 12px;
  color: var(--text-3);
}

/* ===================================================
   ORDER CTA
   =================================================== */
.order {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.order-bg-strings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.order-bg-strings .string {
  background: linear-gradient(90deg, transparent, rgba(245,158,11,.05), transparent);
}

.order-bg-strings .s1 { height: 1px; top: 30%; }
.order-bg-strings .s2 { height: 1px; top: 50%; }
.order-bg-strings .s3 { height: 2px; top: 70%; }

.order::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(245,158,11,.05) 0%, transparent 70%);
}

.order-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.order-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.25);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}

.order-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.order-sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 36px;
}

.order-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 24px;
}

.email-input {
  flex: 1;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}

.email-input::placeholder { color: var(--text-3); }

.email-input:focus { border-color: rgba(245,158,11,.5); }

.order-form-success {
  display: none;
  font-size: 15px;
  color: var(--amber-light);
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp .4s ease;
}

.order-form-success.visible { display: block; }

.order-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-3);
  flex-wrap: wrap;
}

.dot-sep { color: var(--amber); opacity: .5; }

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 8px;
}

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

.footer-links a {
  font-size: 14px;
  color: var(--text-3);
  transition: color var(--transition);
}

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

.footer-social {
  display: flex;
  gap: 14px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: all var(--transition);
}

.social-link:hover {
  border-color: rgba(245,158,11,.3);
  color: var(--amber);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

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

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

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-3);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--text-2); }

/* ===================================================
   ANIMATIONS
   =================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.delay-100 { transition-delay: .1s; }
.fade-up.delay-200 { transition-delay: .2s; }
.fade-up.delay-300 { transition-delay: .3s; }

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* String animation */
@keyframes strumString {
  0%, 100% { transform: scaleY(1) translateX(0); }
  10%       { transform: scaleY(1.5) translateX(2px); }
  20%       { transform: scaleY(0.8) translateX(-1px); }
  30%       { transform: scaleY(1.3) translateX(1px); }
  50%       { transform: scaleY(1.1) translateX(-0.5px); }
  70%       { transform: scaleY(1.05); }
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .specs-inner { gap: 48px; }
  .story-inner { gap: 48px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding-top: 100px; }

  .pick-card {
    width: min(360px, 85vw);
    height: auto;
    aspect-ratio: 420 / 264;
  }
  .pick-card:hover { transform: none; }

  .section { padding: 72px 0; }

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

  .step {
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
  }

  .step-visual {
    grid-column: 2;
    align-items: flex-start;
    margin-top: 16px;
  }

  .step-number { font-size: 36px; }

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

  .showcase-product-img { width: 100%; max-width: 340px; }
  .showcase-img-with-dims { width: 100%; max-width: 340px; }
  .showcase-flip { width: 100%; max-width: 340px; }
  .dim-line.dim-h { width: 100%; max-width: 340px; }

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

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

  .order-form {
    flex-direction: column;
  }

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

@media (max-width: 480px) {
  .hero-proof { gap: 16px; }
  .proof-num { font-size: 28px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .founders-row { flex-direction: column; }
}
