/* ============ TOKENS ============ */
:root {
  --bg: #0b0b10;
  --bg-soft: #12121b;
  --surface: #16161f;
  --surface-2: #1d1d29;
  --line: rgba(255, 255, 255, 0.09);
  --text: #f4f4f7;
  --muted: #a2a2b4;
  --brand: #ff5a3c;
  --brand-2: #ff8a5b;
  --accent: #7c5cff;
  --accent-2: #4de0c8;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.5);
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand-name { font-family: "Sora", "Manrope", sans-serif; letter-spacing: -0.02em; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 0.95rem;
  padding: 11px 20px; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 30px rgba(255, 90, 60, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255, 90, 60, 0.5); }
.btn-outline { border-color: var(--line); color: var(--text); background: rgba(255, 255, 255, 0.03); }
.btn-outline:hover { border-color: rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.07); }
.btn-ghost { color: var(--muted); }
.btn-ghost:hover { color: var(--text); }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(11, 11, 16, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(11, 11, 16, 0.9); }
.header-inner { display: flex; align-items: center; gap: 20px; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  font-family: "Sora"; font-weight: 800; color: #fff; font-size: 1.1rem;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 6px 18px rgba(124, 92, 255, 0.4);
}
.brand-name { font-size: 1.25rem; }
.brand-dot { color: var(--brand); }
.nav { display: flex; gap: 28px; margin-left: 22px; }
.nav a { color: var(--muted); font-weight: 600; font-size: 0.95rem; position: relative; transition: color 0.2s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--brand); transition: width 0.25s var(--ease); }
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.menu-toggle { display: none; margin-left: auto; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; gap: 6px; padding: 0 24px; overflow: hidden; max-height: 0; transition: max-height 0.35s var(--ease), padding 0.35s; border-bottom: 1px solid transparent; }
.mobile-nav.open { max-height: 340px; padding: 12px 24px 24px; border-bottom-color: var(--line); }
.mobile-nav a { padding: 12px 4px; color: var(--muted); font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav a.btn { border: none; color: #fff; margin-top: 10px; justify-content: center; }

/* ============ HERO ============ */
.hero { position: relative; padding: 70px 0 40px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 620px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(255, 90, 60, 0.22), transparent 70%),
              radial-gradient(closest-side, rgba(124, 92, 255, 0.2), transparent 70%);
  background-position: 30% 40%, 70% 55%; background-repeat: no-repeat; filter: blur(10px);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 700; color: var(--text);
  padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04); margin-bottom: 22px;
}
.hero-title { font-size: clamp(2.4rem, 5.2vw, 3.9rem); line-height: 1.05; font-weight: 800; }
.grad { background: linear-gradient(120deg, var(--brand), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { margin-top: 20px; font-size: 1.14rem; color: var(--muted); max-width: 520px; }
.hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { margin-top: 44px; display: flex; gap: 40px; flex-wrap: wrap; }
.stat b { display: block; font-family: "Sora"; font-size: 1.7rem; font-weight: 800; }
.stat span { color: var(--muted); font-size: 0.9rem; }

/* Hero visual */
.hero-visual { position: relative; height: 460px; }
.card-stack { position: absolute; inset: 0; }
.pcard {
  position: absolute; width: 250px; border-radius: var(--radius); overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-card);
}
.pcard-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.pcard-meta { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; font-size: 0.9rem; }
.pcard-meta span { color: var(--muted); }
.pcard-meta b { font-family: "Sora"; }
.img-a { background-image: url("assets/products/coat.jpg"); }
.img-b { background-image: url("assets/products/denim.jpg"); }
.img-c { background-image: url("assets/products/sweater.jpg"); }
.pcard-1 { top: 10px; right: 0; z-index: 3; transform: rotate(3deg); animation: floaty 6s ease-in-out infinite; }
.pcard-2 { top: 110px; left: 0; z-index: 2; transform: rotate(-4deg); animation: floaty 6s ease-in-out infinite 0.8s; }
.pcard-3 { bottom: 0; right: 40px; z-index: 1; transform: rotate(2deg); animation: floaty 6s ease-in-out infinite 1.6s; }
@keyframes floaty { 0%, 100% { translate: 0 0; } 50% { translate: 0 -14px; } }

.float-badge {
  position: absolute; z-index: 4; font-size: 0.85rem; font-weight: 700;
  padding: 10px 15px; border-radius: 14px; background: var(--surface-2);
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
}
.badge-ship { top: 0; left: -6px; animation: floaty 5s ease-in-out infinite 0.4s; }
.badge-return { bottom: 30px; left: -12px; animation: floaty 5s ease-in-out infinite 1.2s; }

/* Marquee */
.marquee { margin-top: 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 34px; width: max-content; animation: scroll 26s linear infinite; }
.marquee-track span { font-family: "Sora"; font-weight: 700; color: var(--muted); font-size: 1.05rem; letter-spacing: 0.06em; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============ SECTIONS ============ */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.kicker { color: var(--brand); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-top: 12px; }
.section-lead { color: var(--muted); margin-top: 14px; font-size: 1.08rem; }

/* Value grid */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform 0.3s var(--ease), border-color 0.3s;
}
.value-card:hover { transform: translateY(-6px); border-color: rgba(255, 90, 60, 0.5); }
.value-icon { width: 52px; height: 52px; display: grid; place-items: center; font-size: 1.5rem; border-radius: 14px; background: var(--surface-2); margin-bottom: 18px; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: 0.96rem; }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; grid-auto-rows: 1fr; }
.feature-card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px; overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(124, 92, 255, 0.5); }
.feature-lg { grid-row: span 2; background: linear-gradient(160deg, var(--surface), rgba(124, 92, 255, 0.1)); }
.feature-wide { grid-column: span 2; }
.feature-icon { font-size: 1.7rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 0.96rem; }
.feature-badge { position: absolute; top: 20px; right: 20px; font-size: 0.72rem; font-weight: 700; padding: 5px 11px; border-radius: 999px; background: rgba(124, 92, 255, 0.2); color: #cbbcff; border: 1px solid rgba(124, 92, 255, 0.4); }
.feature-art { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 9px 16px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line); font-weight: 600; font-size: 0.9rem; }

/* Steps */
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 8px; flex-wrap: wrap; }
.step { flex: 1; min-width: 220px; text-align: center; padding: 0 12px; }
.step-num {
  width: 58px; height: 58px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center;
  font-family: "Sora"; font-weight: 800; font-size: 1.5rem; color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 12px 30px rgba(124, 92, 255, 0.35);
}
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: var(--muted); max-width: 260px; margin: 0 auto; }
.step-line { flex: 0 0 60px; height: 2px; margin-top: 28px; background: linear-gradient(90deg, var(--brand), var(--accent)); opacity: 0.5; border-radius: 2px; }

/* Quote */
.quote { max-width: 760px; margin: 0 auto; text-align: center; }
.quote p { font-family: "Sora"; font-size: clamp(1.3rem, 3vw, 1.9rem); line-height: 1.4; font-weight: 600; }
.quote footer { margin-top: 22px; color: var(--muted); }
.quote footer b { color: var(--text); }

/* ============ CTA ============ */
.cta { padding: 40px 0 110px; }
.cta-inner {
  position: relative; text-align: center; max-width: 760px; margin: 0 auto;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: 28px; padding: 64px 40px; overflow: hidden;
  box-shadow: var(--shadow-card);
}
.cta-glow { position: absolute; inset: -40% 20% auto; height: 320px; background: radial-gradient(closest-side, rgba(255, 90, 60, 0.3), transparent 70%); pointer-events: none; }
.cta-inner h2 { position: relative; font-size: clamp(1.9rem, 4vw, 2.7rem); }
.cta-inner > p { position: relative; color: var(--muted); margin-top: 14px; font-size: 1.08rem; }
.cta-inner b { color: var(--text); }
.cta-form { position: relative; margin: 30px auto 0; display: flex; gap: 12px; max-width: 480px; flex-wrap: wrap; }
.cta-form input {
  flex: 1; min-width: 200px; padding: 15px 20px; border-radius: 999px; font-size: 1rem;
  background: var(--bg); border: 1px solid var(--line); color: var(--text); font-family: inherit;
  transition: border-color 0.2s;
}
.cta-form input:focus { outline: none; border-color: var(--brand); }
.cta-form input.invalid { border-color: #ff4d4d; }
.cta-note { position: relative; margin-top: 16px; font-size: 0.85rem; color: var(--muted); }
.cta-note.success { color: var(--accent-2); font-weight: 600; }

/* ============ FOOTER ============ */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-soft); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: var(--muted); margin-top: 16px; max-width: 300px; font-size: 0.95rem; }
.footer-col h4 { font-size: 1rem; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--muted); padding: 6px 0; font-size: 0.95rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.socials { display: flex; gap: 10px; margin-top: 12px; }
.socials a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: var(--surface); border: 1px solid var(--line); font-size: 0.8rem; font-weight: 700; padding: 0; }
.socials a:hover { border-color: var(--brand); color: var(--brand); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.88rem; }
.footer-links a:hover { color: var(--text); }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 940px) {
  .nav, .header-actions { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { height: 400px; max-width: 420px; margin: 0 auto; width: 100%; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-lg { grid-row: span 1; grid-column: span 2; }
  .feature-wide { grid-column: span 2; }
}
@media (max-width: 620px) {
  .section { padding: 68px 0; }
  .value-grid, .feature-grid { grid-template-columns: 1fr; }
  .feature-lg, .feature-wide { grid-column: span 1; }
  .hero-stats { gap: 26px; }
  .step-line { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .cta-inner { padding: 48px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
