/* ============================================================
   MT Trends — styles.css
   ============================================================ */

/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  --white:        #FFFFFF;
  --off-white:    #FAFAF8;
  --warm-gray:    #F5F3EF;
  --light-border: #E8E6E1;
  --mid-border:   #D4D0C8;
  --text-muted:   #8A8680;
  --text-body:    #3A3835;
  --text-dark:    #1A1916;
  --text-black:   #0A0908;
  --gold:         #C09A5C;
  --gold-light:   #DAC08A;
  --gold-dark:    #9A7A3C;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-edit:    'Cormorant Garamond', Georgia, serif;
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-full: 9999px;
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.12);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.3s;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input { font-family: inherit; }

/* ─── Container ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-serif); color: var(--text-black); line-height: 1.15; }
h1 { font-size: clamp(44px, 6vw, 76px); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 600; letter-spacing: -0.02em; }
h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 500; }
em { font-style: italic; color: var(--text-dark); }
p { line-height: 1.7; }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title { margin-bottom: 16px; }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header .section-title { margin-bottom: 0; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn--sm  { font-size: 13px; padding: 9px 20px; }
.btn--lg  { font-size: 15px; padding: 16px 36px; }

.btn--dark {
  background: var(--text-black);
  color: var(--white);
  border: 2px solid var(--text-black);
}
.btn--dark:hover {
  background: #2a2826;
  border-color: #2a2826;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--text-black);
  border: 2px solid var(--text-black);
}
.btn--outline:hover {
  background: var(--text-black);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

/* ─── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Gradient Palette ───────────────────────────────────── */
.gradient--obsidian  { background: linear-gradient(145deg, #1c1c1c 0%, #2d2d2d 50%, #1a1a1a 100%); }
.gradient--blush     { background: linear-gradient(145deg, #F2E0DC 0%, #E8C4C0 50%, #D9A8A2 100%); }
.gradient--camel     { background: linear-gradient(145deg, #C8A06A 0%, #B88A50 50%, #A07040 100%); }
.gradient--sage      { background: linear-gradient(145deg, #9DB5A8 0%, #7A9E90 50%, #5E8A7A 100%); }
.gradient--navy      { background: linear-gradient(145deg, #1e2d4a 0%, #243660 50%, #1a2840 100%); }
.gradient--tan       { background: linear-gradient(145deg, #D4B896 0%, #C0A07A 50%, #A88560 100%); }
.gradient--rose      { background: linear-gradient(145deg, #F0C8C8 0%, #E0A8AA 50%, #CC8A8E 100%); }
.gradient--gold-shimmer { background: linear-gradient(145deg, #D4A84B 0%, #C09A3C 50%, #A88030 100%); }
.gradient--terracotta { background: linear-gradient(145deg, #CC7050 0%, #B85C3A 50%, #A04828 100%); }
.gradient--mint      { background: linear-gradient(145deg, #A8C8C0 0%, #84B0A8 50%, #648C84 100%); }
.gradient--warm-red  { background: linear-gradient(145deg, #C04040 0%, #A02828 50%, #882020 100%); }
.gradient--stone     { background: linear-gradient(145deg, #B8B0A0 0%, #A09890 50%, #888078 100%); }

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--light-border);
  box-shadow: var(--shadow-xs);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 76px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo-mark {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-black);
  letter-spacing: -0.03em;
  line-height: 1;
}
.nav__logo-mark em {
  font-style: normal;
  color: var(--gold);
}
.nav__logo-pipe {
  width: 1px;
  height: 22px;
  background: var(--gold);
  opacity: 0.5;
  margin: 0 4px;
}
.nav__logo-name {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-body);
  line-height: 1;
}
.nav__logo-mt {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-black);
  letter-spacing: -0.02em;
}
.nav__logo-trends {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-body);
}
.nav__logo-byline {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-left: 6px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  transition: color var(--dur) var(--ease);
}
.nav__links a:hover { color: var(--text-black); }
.nav__cta { margin-left: 16px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-black);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__links { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--light-border); flex-direction: column; align-items: flex-start; padding: 24px 32px 32px; gap: 20px; }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 18px; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
  background: var(--white);
}
.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__content { max-width: 580px; }
.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero__headline {
  margin-bottom: 28px;
  font-size: clamp(18px, 2.4vw, 30px);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1.6;
  color: var(--text-body);
}
.hero__big-tagline {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 700;
  color: var(--text-black);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: clamp(8px, 1vw, 14px);
  flex-wrap: nowrap;
  white-space: nowrap;
}
.hero__big-tagline .tl-sep {
  color: var(--gold);
  font-weight: 300;
  font-size: 0.55em;
  line-height: 1;
}
.hero__sub {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 520px;
}
.hero__sub--small {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero__tags {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.hero__dot { color: var(--gold); }
.hero__trusted {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.hero__brands-inline {
  font-size: 13px;
  color: var(--text-body);
  font-weight: 500;
  line-height: 1.8;
}

/* Hero product cards grid */
.hero__visual { position: relative; }
.hero__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero__visual-note {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  border: 1px solid var(--light-border);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card__img {
  position: relative;
  height: 160px;
  overflow: hidden;
}
.product-card__gradient {
  width: 100%;
  height: 100%;
}
.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
}
.product-card__heart {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
  backdrop-filter: blur(4px);
}
.product-card__heart:hover { color: #E06060; }
.product-card__info {
  padding: 14px 16px;
}
.product-card__brand {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.product-card__name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card__price { display: flex; align-items: center; gap: 8px; }

.badge--sale  { background: #1a1a1a; color: #fff; }
.badge--new   { background: var(--gold); color: #fff; }
.badge--trend { background: #5a4a3a; color: #fff; }
.badge--price { background: rgba(0,0,0,0.6); color: #fff; }

.price--was {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
}
.price--now {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-black);
}

/* ─── Brand Logo Pills (hero cards) ─────────────────────── */
.brand-logo-pill {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  max-width: 150px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.brand-logo-pill--light { background: rgba(255,255,255,0.94); }
.brand-logo-pill--dark  { background: rgba(20,18,16,0.82); }
.brand-logo {
  max-width: 88px;
  max-height: 38px;
  object-fit: contain;
  display: block;
}
.brand-logo-text {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-dark);
}
.brand-logo-pill--dark .brand-logo-text { color: var(--white); }

/* ─── Product Images in Cards ────────────────────────────── */
.t-product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
.card-product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
.t-card__img .t-logo-pill,
.t-card__badge { z-index: 2; }
.brand-logo-pill,
.product-card__badge,
.product-card__heart { z-index: 2; }

/* ─── Brand Logo Pills (trending t-cards) ────────────────── */
.t-logo-pill {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  max-width: 116px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.16);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.t-logo-pill--light { background: rgba(255,255,255,0.93); }
.t-logo-pill--dark  { background: rgba(20,18,16,0.80); }
.t-logo {
  max-width: 68px;
  max-height: 28px;
  object-fit: contain;
  display: block;
}
.t-logo-text {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-dark);
}
.t-logo-pill--dark .t-logo-text { color: var(--white); }

/* Float animations for hero cards */
.float-1 { animation: float1 6s ease-in-out infinite; }
.float-2 { animation: float2 7s ease-in-out infinite; }
.float-3 { animation: float3 5.5s ease-in-out infinite; }
.float-4 { animation: float4 6.5s ease-in-out infinite; }

@keyframes float1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float2 { 0%,100% { transform: translateY(-4px); } 50% { transform: translateY(8px); } }
@keyframes float3 { 0%,100% { transform: translateY(-2px); } 50% { transform: translateY(-10px); } }
@keyframes float4 { 0%,100% { transform: translateY(4px); } 50% { transform: translateY(-6px); } }

@media (max-width: 960px) {
  .hero__container { grid-template-columns: 1fr; gap: 56px; }
  .hero__content { max-width: 100%; }
  .hero__cards { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .hero__cards { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 88px; padding-bottom: 60px; }
}

/* ─── BRAND TICKER ───────────────────────────────────────── */
.ticker-wrap {
  background: var(--text-black);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--text-black), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left, var(--text-black), transparent); }

.ticker { overflow: hidden; }
.ticker__inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  width: max-content;
}
.ticker__inner span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0 12px;
  transition: color var(--dur) var(--ease);
}
.ticker__inner span:hover { color: var(--white); }
.ticker__inner .sep { color: var(--gold) !important; padding: 0 4px; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-wrap:hover .ticker__inner { animation-play-state: paused; }

/* ─── WHY MT TRENDS ──────────────────────────────────────── */
.section { padding: 96px 0; }
.section--why { background: var(--warm-gray); }
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why__headline {
  font-size: clamp(30px, 3.5vw, 46px);
  margin-bottom: 36px;
}
.why__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why__list li {
  font-size: 17px;
  color: var(--text-body);
  font-weight: 500;
  padding-left: 20px;
  position: relative;
}
.why__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 400;
}
.why__solution-head {
  font-size: clamp(22px, 2.5vw, 30px);
  margin-bottom: 28px;
}
.why__features { display: flex; flex-direction: column; gap: 14px; }
.why__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text-body);
}
.check {
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 768px) { .why__grid { grid-template-columns: 1fr; gap: 48px; } }

/* ─── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  padding: 48px 0;
}
.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 48px;
  text-align: center;
}
.stat__number {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  color: var(--text-black);
  line-height: 1;
}
.stat__suffix { font-family: var(--font-serif); font-size: 28px; font-weight: 400; color: var(--gold); }
.stat__label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.stat__divider { width: 1px; height: 48px; background: var(--light-border); }
.stat__phrase {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 4px;
}
.stat__phrase em { font-style: italic; color: var(--gold); }

@media (max-width: 768px) {
  .stats-bar__inner { gap: 32px; }
  .stat { padding: 0 24px; }
  .stat__divider { display: none; }
}

/* ─── FEATURES ───────────────────────────────────────────── */
.section--features { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  padding: 36px 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--light-border);
  background: var(--white);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--mid-border);
}
.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--text-dark);
  transition: background var(--dur) var(--ease);
}
.feature-card:hover .feature-card__icon { background: var(--text-black); color: var(--white); }
.feature-card__title { margin-bottom: 14px; font-size: 20px; }
.feature-card__text { font-size: 15px; line-height: 1.7; color: var(--text-body); margin-bottom: 24px; }
.feature-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  padding: 4px 12px;
  border-radius: var(--r-full);
}

@media (max-width: 960px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* ─── TRENDING ───────────────────────────────────────────── */
.section--trending { background: var(--off-white); }
.trending-row { margin-bottom: 56px; }
.trending-row:last-of-type { margin-bottom: 0; }
.trending-row__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.trending-row__fire { font-size: 22px; }
.trending-row__title {
  font-size: clamp(18px, 2vw, 24px);
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--text-black);
}
.trending-row__link {
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--dur) var(--ease);
}
.trending-row__link:hover { color: var(--gold-dark); }
.trending-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  overflow: hidden;
}

.t-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--light-border);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  cursor: pointer;
}
.t-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.t-card__img {
  height: 130px;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 10px;
}
.t-card__badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
}
.t-card__info { padding: 12px 14px; }
.t-card__brand {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.t-card__name {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
  min-height: 30px;
}
.t-card__price { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.t-card__price .price--now { font-size: 13px; }
.t-card__price .price--was { font-size: 11px; }

.trending-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 56px;
}
.trending-tag {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--r-full);
  background: var(--white);
  border: 1px solid var(--light-border);
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.trending-tag:hover {
  background: var(--text-black);
  color: var(--white);
  border-color: var(--text-black);
}

@media (max-width: 1100px) { .trending-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .trending-cards { grid-template-columns: repeat(2, 1fr); } }

/* ─── HOW IT WORKS ───────────────────────────────────────── */
.section--how { background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 64px;
}
.step {
  background: var(--warm-gray);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid var(--light-border);
}
.step__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 16px;
}
.step__title { font-size: 18px; margin-bottom: 12px; }
.step__text { font-size: 14px; line-height: 1.7; color: var(--text-body); }
.step__arrow {
  font-size: 28px;
  color: var(--mid-border);
  align-self: center;
  margin-top: 20px;
}
.how__tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.how__tagline span {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 40px);
  font-style: italic;
  color: var(--text-black);
  font-weight: 400;
}

@media (max-width: 960px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .step__arrow { display: none; }
}
@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ─── CATEGORIES ─────────────────────────────────────────── */
.section--categories { background: var(--warm-gray); }
.cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--light-border);
  cursor: pointer;
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.category-card--featured { grid-column: span 2; }
.category-card__img { height: 120px; transition: transform 0.4s var(--ease); }
.category-card--featured .category-card__img { height: 160px; }
.category-card:hover .category-card__img { transform: scale(1.03); }
.category-card__label {
  display: block;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--white);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } .category-card--featured { grid-column: span 1; } }
@media (max-width: 600px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── AI ASSISTANT ───────────────────────────────────────── */
.section--ai { background: var(--white); }
.ai-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--text-black);
  border-radius: var(--r-xl);
  padding: 72px;
  position: relative;
  overflow: hidden;
}
.ai-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,154,92,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.ai-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(192,154,92,0.4);
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: 28px;
}
.ai-card .section-eyebrow { color: rgba(255,255,255,0.5); }
.ai-card__title {
  font-size: clamp(28px, 3vw, 44px);
  color: var(--white);
  margin-bottom: 20px;
}
.ai-card__title em { color: var(--gold-light); }
.ai-card__text {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
}
.ai-card__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.ai-feature { display: flex; align-items: center; gap: 12px; font-size: 15px; color: rgba(255,255,255,0.8); }
.ai-feature__icon { color: var(--gold); font-size: 12px; }
.ai-card .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.ai-card .btn--outline:hover { background: var(--white); color: var(--text-black); border-color: var(--white); }

.ai-card__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.ai-bubble {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  animation: bubble-in 0.6s var(--ease) both;
}
.ai-bubble--1 { animation-delay: 0.1s; }
.ai-bubble--2 { animation-delay: 0.3s; }
.ai-bubble--3 { animation-delay: 0.5s; }
.ai-bubble--response {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  font-weight: 600;
  animation-delay: 0.8s;
}
@keyframes bubble-in {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@media (max-width: 960px) { .ai-card { grid-template-columns: 1fr; gap: 48px; padding: 48px 36px; } }
@media (max-width: 560px) { .ai-card { padding: 36px 24px; } }

/* ─── APP SECTION ───────────────────────────────────────── */
.section--app { background: #f7f4f0; color: var(--text-black); overflow: hidden; position: relative; }
.app-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 620px;
}
.app-content .section-eyebrow { color: var(--gold); }
.app-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-black);
  margin: 12px 0 20px;
}
.app-title em { font-style: italic; color: var(--gold); }
.app-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 440px;
  margin-bottom: 36px;
}
/* Countdown */
.app-countdown { margin-bottom: 40px; }
.app-countdown__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.app-countdown__timer { display: flex; align-items: center; gap: 10px; }
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 14px;
  padding: 14px 18px;
  min-width: 72px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.countdown-num {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--text-black);
  line-height: 1;
  letter-spacing: -0.02em;
}
.countdown-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 6px;
}
.countdown-sep {
  font-size: 30px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 22px;
  line-height: 1;
}
/* Store Badges */
.app-badges { display: flex; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--text-black);
  border: 2px solid var(--text-black);
  border-radius: 14px;
  padding: 11px 22px;
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.store-badge:hover { background: #2a2928; border-color: #2a2928; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.store-badge__icon { width: 26px; height: 26px; flex-shrink: 0; }
.store-badge__text { display: flex; flex-direction: column; }
.store-badge__pre { font-size: 10px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.07em; }
.store-badge__store { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.app-notify { font-size: 13px; color: var(--text-muted); }
.app-notify a { color: var(--gold-dark); text-decoration: underline; font-weight: 600; }
/* Phone mockup */
.app-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-mockup__img {
  max-height: 620px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.18));
  animation: appFloat 4s ease-in-out infinite;
}
@keyframes appFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
.app-mockup__glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(192,154,92,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.15); opacity: 1; }
}
.app-coming-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,154,92,0.15);
  border: 1px solid rgba(192,154,92,0.3);
  border-radius: var(--r-full);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.app-coming-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
@media (max-width: 960px) {
  .app-showcase { grid-template-columns: 1fr; gap: 52px; text-align: center; }
  .app-sub { max-width: 100%; margin-inline: auto; }
  .app-badges { justify-content: center; }
  .app-mockup { order: -1; }
  .app-mockup__img { max-height: 420px; }
  .app-countdown__timer { justify-content: center; }
  .app-coming-tag { margin-inline: auto; }
}

/* ─── WAITLIST ───────────────────────────────────────────── */
.section--waitlist { background: var(--warm-gray); }
.waitlist-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.waitlist__title {
  font-size: clamp(30px, 4vw, 52px);
  margin-bottom: 20px;
}
.waitlist__sub {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 40px;
}
.waitlist__form { margin-bottom: 16px; }
.waitlist__input-group {
  display: flex;
  gap: 12px;
  max-width: 540px;
  margin: 0 auto 16px;
}
.waitlist__input {
  flex: 1;
  height: 54px;
  padding: 0 20px;
  border-radius: var(--r-full);
  border: 2px solid var(--light-border);
  background: var(--white);
  font-size: 15px;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.waitlist__input:focus {
  border-color: var(--text-black);
  box-shadow: 0 0 0 4px rgba(10,9,8,0.06);
}
.waitlist__input::placeholder { color: var(--text-muted); }
.waitlist__submit { flex-shrink: 0; height: 54px; }
.waitlist__privacy {
  font-size: 13px;
  color: var(--text-muted);
}
.waitlist__success {
  font-size: 14px;
  font-weight: 600;
  color: #2a7a3a;
  margin-top: 16px;
}
.waitlist__error {
  font-size: 13px;
  color: #c04040;
  margin-top: 12px;
}
.waitlist__pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 560px) {
  .waitlist__input-group { flex-direction: column; }
  .waitlist__submit { width: 100%; }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--text-black);
  padding-top: 72px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}
.footer__logo-img {
  height: 72px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: white;
  border-radius: 10px;
  padding: 6px 12px;
}
.footer .nav__logo-mt { font-size: 26px; color: var(--white); }
.footer .nav__logo-trends { color: rgba(255,255,255,0.6); }
.footer__tagline {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.footer__byline {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.footer__domain {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
}
.footer__company-info {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__company-info p {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}
.footer__company-info a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__company-info a:hover { color: var(--gold); }
.footer__links-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer__links-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links-group a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--dur) var(--ease);
}
.footer__links-group a:hover { color: var(--white); }
.footer__form {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.footer__input {
  flex: 1;
  height: 40px;
  padding: 0 16px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  font-size: 13px;
  color: var(--white);
  outline: none;
  transition: border-color var(--dur) var(--ease);
}
.footer__input::placeholder { color: rgba(255,255,255,0.3); }
.footer__input:focus { border-color: rgba(255,255,255,0.35); }
.footer__bottom { padding: 28px 0; }
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer__disclaimer {
  font-size: 11px !important;
  line-height: 1.6;
  max-width: 720px;
}

@media (max-width: 960px) { .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer__inner { grid-template-columns: 1fr; } }
