/* ============================================
   Shoppers Junction — Landing Page Styles
   Light warm premium e-commerce theme
   ============================================ */

:root {
  --bg-deep: #faf8f5;
  --bg-card: #ffffff;
  --bg-elevated: #f3f1ec;
  --bg-tint: #fff8f3;
  --orange: #ff6b00;
  --orange-light: #ff8c33;
  --orange-glow: #ff6b0025;
  --gold: #ffb347;
  --silver: #1a1a1e;
  --white: #1a1a1e;
  --muted: #7a808c;
  --text-soft: #5c6070;
  --text-bright: #1a1a1e;
  --text-on-accent: #ffffff;
  --border: rgba(255, 107, 0, 0.12);
  --border-subtle: rgba(0, 0, 0, 0.08);
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-display: 'Syne', 'Outfit', sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Content visible by default — JS adds fade-in when loaded */
.reveal {
  opacity: 1;
  transform: none;
}

.js-loaded .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.js-loaded .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.accent { color: var(--orange); }
.accent-text {
  background: linear-gradient(135deg, var(--orange-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Noise & Particles */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--white);
}

.logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 10px;
  color: var(--text-on-accent);
}

.logo-icon svg {
  width: 18px;
  height: 18px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  padding: 0.55rem 1.25rem !important;
  background: var(--orange) !important;
  color: var(--text-on-accent) !important;
  border-radius: 50px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--orange-light) !important;
  color: var(--text-on-accent) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 102;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: var(--text-on-accent);
  box-shadow: 0 0 30px var(--orange-glow), 0 4px 20px rgba(255, 107, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px var(--orange-glow), 0 8px 30px rgba(255, 107, 0, 0.25);
}

.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--text-bright);
  border: 1px solid var(--border-subtle);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange-light);
}

/* Hero */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(5rem, 8vh, 6.25rem) 0 clamp(2rem, 3.5vh, 2.75rem);
  overflow: hidden;
  background: radial-gradient(ellipse 70% 45% at 50% 38%, var(--bg-tint) 0%, var(--bg-deep) 72%);
}

.hero-centered {
  text-align: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.hero-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(400px, 68vw);
  height: min(400px, 68vw);
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 0, 0.2);
  box-shadow: 0 0 60px rgba(255, 107, 0, 0.08);
  pointer-events: none;
  z-index: 1;
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto clamp(1.15rem, 2.5vh, 1.5rem);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: var(--text-soft);
  font-weight: 400;
  line-height: 1.65;
}

.hero-highlights {
  list-style: none;
  margin: 0 auto clamp(1.15rem, 2.5vh, 1.5rem);
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: clamp(1rem, 2vh, 1.35rem);
}

.hero-streaks span {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.3;
  animation: streakMove 8s linear infinite;
}

.hero-streaks span:nth-child(1) { top: 20%; left: -10%; width: 40%; animation-delay: 0s; }
.hero-streaks span:nth-child(2) { top: 45%; right: -10%; width: 35%; animation-delay: 2s; }
.hero-streaks span:nth-child(3) { top: 70%; left: 5%; width: 30%; animation-delay: 4s; }
.hero-streaks span:nth-child(4) { top: 85%; right: 5%; width: 45%; animation-delay: 6s; }

@keyframes streakMove {
  0% { transform: translateX(-100%) rotate(-5deg); opacity: 0; }
  50% { opacity: 0.4; }
  100% { transform: translateX(200%) rotate(-5deg); opacity: 0; }
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text-soft);
  font-weight: 500;
}

.hero-highlights svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--orange);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: clamp(0.78rem, 1.6vw, 0.85rem);
  color: var(--orange-light);
  margin-bottom: clamp(1rem, 2.5vh, 1.35rem);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(255, 107, 0, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: clamp(0.85rem, 2vh, 1.15rem);
  overflow: visible;
}

.title-line {
  display: block;
  color: var(--silver);
}

.title-gradient {
  display: inline-block;
  padding-right: 0.15em;
  background: linear-gradient(135deg, var(--silver) 10%, var(--orange-light) 50%, var(--gold) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-url {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--text-soft);
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

/* Image frames (video stills) */
.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.image-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.image-frame:hover img {
  transform: none;
}

.wide-frame img {
  width: 100%;
  height: auto;
}

.frame-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 60px rgba(255, 107, 0, 0.08);
  pointer-events: none;
  z-index: 1;
}

.frame-glow::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 107, 0, 0.25);
  opacity: 0;
  transition: opacity 0.4s;
}

.image-frame:hover .frame-glow::after {
  opacity: 1;
}

.hero-frame {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 40px var(--orange-glow);
}

.frame-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: var(--text-on-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
}

  width: 16px;
  height: 16px;
  color: var(--orange);
}

/* Stats */
.stats-strip {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--orange-light);
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--orange);
}

.stat-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 500;
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--text-bright);
}

.section-header p {
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* About — clean centered */
.showcase {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}

.showcase-clean {
  padding: 4rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.showcase-centered {
  max-width: 720px;
  text-align: center;
}

.showcase-centered h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--text-bright);
}

.showcase-lead {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-weight: 400;
}

.showcase-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.showcase-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-bright);
}

.highlight-icon {
  color: var(--orange);
  font-size: 0.65rem;
}

/* Categories */
.categories {
  position: relative;
  z-index: 2;
  padding: 4rem 0 6rem;
}

.category-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.category-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.category-row.reverse .category-row-visual {
  order: 2;
}

.category-row.reverse .category-row-content {
  order: 1;
}

.category-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.category-row-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: var(--text-bright);
}

.category-lead {
  font-size: 1rem;
  color: var(--text-bright);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.category-details {
  list-style: none;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.category-details li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  font-weight: 400;
}

.category-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.brand-chips span {
  padding: 0.35rem 0.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: var(--transition);
}

.brand-chips span:hover {
  border-color: var(--border);
  color: var(--orange-light);
}

/* Why Us */
.why-us {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
  background: linear-gradient(180deg, transparent, var(--bg-tint), transparent);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.why-visual .image-frame img {
  width: 100%;
  height: auto;
}

.trust-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.trust-panel-glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none;
}

.trust-stat {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.trust-stat:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}

.trust-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--orange-light);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.trust-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-soft);
  font-weight: 500;
}

.trust-panel-note {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 500;
}

.why-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--text-bright);
}

.why-desc {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 400;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.feature-item:hover {
  border-color: var(--border);
  transform: translateX(4px);
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 12px;
  color: var(--orange);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-bright);
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.55;
}

/* Brand Marquee */
.brand-marquee {
  position: relative;
  z-index: 2;
  padding: 1.75rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-card) 50%, var(--bg-elevated) 100%);
}

.marquee-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
  will-change: transform;
}

.marquee-inner:hover {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 3rem;
}

.marquee-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.35rem;
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  font-weight: 700;
  color: #8b919c;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s ease, transform 0.3s ease;
}

.marquee-track span::after {
  content: '';
  position: absolute;
  right: -0.35rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.35;
}

.marquee-track span:hover {
  color: var(--orange);
  transform: scale(1.04);
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-viewport {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .marquee-inner {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
  }

  .marquee-track:last-child {
    display: none;
  }

  .marquee-track {
    padding-right: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
  }

  .marquee-track span::after {
    display: none;
  }
}

/* Notify */
.notify {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 107, 0, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-tint) 50%, var(--bg-deep) 100%);
}

.notify-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
  pointer-events: none;
}

.notify-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.notify-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-bright);
}

.notify-inner > p {
  color: var(--text-soft);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 400;
}

.notify-form .form-group {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.notify-form input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  color: var(--text-bright);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.notify-form input:focus {
  border-color: var(--orange);
}

.notify-form input::placeholder {
  color: var(--muted);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-soft);
  font-weight: 400;
}

.notify-success {
  padding: 2rem;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.notify-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-bright);
}

.notify-success p {
  color: var(--text-soft);
}

/* Footer */
.footer {
  position: relative;
  z-index: 2;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-tagline {
  margin-top: 0.75rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 400;
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--text-bright);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s, transform 0.3s;
}

.footer-links a:hover {
  color: var(--orange-light);
  transform: translateX(4px);
}

.footer-powered {
  text-align: right;
}

.footer-powered span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-bottom: 0.35rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-powered strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

.footer-powered small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-top: 0.25rem;
  font-weight: 400;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-soft);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Reveal animations — see body rules above for progressive enhancement */

/* Mobile nav */
@media (max-width: 768px) {
  .container {
    width: min(1200px, 90vw);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(82vw, 320px);
    height: 100dvh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.35rem;
    background: var(--bg-card);
    padding: 5.25rem 1.5rem 2rem;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid var(--border-subtle);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.08);
    z-index: 101;
    overflow-y: auto;
  }

  .nav-links::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 30, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: -1;
    pointer-events: none;
  }

  .nav-links::after {
    content: 'Menu';
    position: absolute;
    top: 1.35rem;
    left: 1.5rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-bright);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links.open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-bright);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  }

  .nav-links a:hover {
    color: var(--orange);
    background: var(--bg-elevated);
    border-color: var(--border-subtle);
  }

  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    padding: 0.9rem 1.25rem !important;
    border: none !important;
  }

  .nav-cta:hover {
    background: var(--orange-light) !important;
    color: var(--text-on-accent) !important;
  }

  .menu-toggle { display: flex; }

  body.menu-open {
    overflow: hidden;
  }

  .stats-strip {
    padding: 2rem 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 0.85rem;
  }

  .stats-grid .stat:last-child {
    grid-column: 1 / -1;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: clamp(1.65rem, 6vw, 2.1rem);
  }

  .showcase,
  .showcase-clean {
    padding: 2.5rem 0;
  }

  .showcase-lead {
    margin-bottom: 1.25rem;
  }

  .categories {
    padding: 2.5rem 0 3rem;
  }

  .category-row,
  .category-row.reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .category-row.reverse .category-row-visual,
  .category-row.reverse .category-row-content {
    order: unset;
  }

  .why-us {
    padding: 3rem 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-panel {
    padding: 1.25rem;
    gap: 0.75rem;
  }

  .trust-stat {
    padding: 1rem 0.75rem;
  }

  .trust-stat-num {
    font-size: 1.45rem;
  }

  .feature-item {
    padding: 1rem;
  }

  .brand-marquee {
    padding: 1.25rem 0;
  }

  .marquee-track {
    padding-right: 1.5rem;
  }

  .marquee-track span {
    padding: 0.4rem 0.9rem;
    font-size: 0.82rem;
  }

  .notify {
    padding: 3rem 0;
  }

  .notify-inner > p {
    margin-bottom: 1.5rem;
  }

  .hero-highlights {
    max-width: 360px;
    margin-inline: auto;
  }

  .showcase-highlights {
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
  }

  .footer {
    padding: 2rem 0 1.25rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    margin-bottom: 1.25rem;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-brand .logo {
    justify-content: center;
  }

  .footer-tagline {
    max-width: 100%;
    margin-inline: auto;
    font-size: 0.9rem;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1rem;
    max-width: 280px;
    margin-inline: auto;
    align-items: center;
    justify-items: center;
  }

  .footer-links a:hover {
    transform: none;
  }

  .footer-powered {
    text-align: center;
    padding-top: 0.25rem;
  }

  .footer-bottom {
    padding-top: 1.25rem;
  }

  .notify-form .form-group {
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    padding: clamp(4.5rem, 7vh, 5rem) 0 clamp(1.5rem, 3vh, 2rem);
  }

  .btn { width: 100%; max-width: 280px; justify-content: center; }
}

@media (max-width: 480px) {
  .container {
    width: min(1200px, 92vw);
  }

  .hero-title { font-size: clamp(2rem, 9vw, 2.35rem); }
  .stat-num { font-size: 1.7rem; }

  .showcase,
  .showcase-clean,
  .categories {
    padding: 2rem 0;
  }

  .categories {
    padding-bottom: 2.5rem;
  }

  .category-row,
  .category-row.reverse {
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .why-us,
  .notify {
    padding: 2.5rem 0;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  .footer-inner {
    gap: 1.25rem;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    max-width: 240px;
    gap: 0.6rem 0.75rem;
  }

  .footer-powered strong {
    font-size: 1.05rem;
  }
}

@media (max-height: 720px) and (min-width: 769px) {
  .hero {
    padding: 4.5rem 0 1.75rem;
  }

  .hero-title {
    font-size: clamp(2rem, 4.5vh, 3rem);
    margin-bottom: 0.75rem;
  }

  .hero-badge {
    margin-bottom: 0.75rem;
  }

  .hero-sub,
  .hero-highlights,
  .hero-actions {
    margin-bottom: 1rem;
  }
}
