@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-primary: #F6F4EF;
  --bg-secondary: #F3F0EB;
  --text-primary: #000;
  --text-secondary: #6B6560;
  --text-tertiary: #9B9590;
  --accent-gold: #A08000;
  --accent-gold-light: #E8D5B0;
  --accent-gold-dark: #A8884D;
  --white: #FFFFFF;
  --border-light: rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-base: 0.4s var(--ease-out);
  --transition-slow: 0.8s var(--ease-out);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
body { font-family: 'Inter', sans-serif; color: var(--text-primary); background: var(--bg-primary); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* Remove any debug borders */
html, body { outline: none !important; border: none !important; }
html::before, html::after, body::before, body::after { display: none !important; }

/* === NAVBAR === */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.25rem 2rem; transition: all 0.5s var(--ease-out); }
.navbar.scrolled { background: rgba(250,248,245,0.85); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-bottom: 1px solid var(--border-light); padding: 0.875rem 2rem; }
.navbar-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.navbar-inner > *:last-child { justify-self: end; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); transition: color var(--transition-fast); letter-spacing: -0.01em; }
.nav-links a:hover { color: var(--text-primary); }
.nav-logo { display: flex; align-items: center; justify-self: center; }
.nav-logo svg { height: 28px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; justify-self: end; }
.nav-right .nav-text { font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); }

/* === BUTTONS === */
.btn-primary { display: inline-flex; align-items: center; gap: 13px; padding: 16px 24px 16px 22px; background: var(--text-primary); color: var(--white); font-size: 0.9rem; font-weight: 500; border-radius: var(--radius-full); transition: all var(--transition-base); position: relative; overflow: hidden; letter-spacing: -0.01em; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: #333; opacity: 0; transition: opacity var(--transition-base); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-nav { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.625rem 1.25rem; background: var(--text-primary); color: var(--white); font-size: 0.85rem; font-weight: 500; border-radius: var(--radius-full); transition: all var(--transition-base); }
.btn-nav:hover { background: #333; transform: translateY(-1px); }
.btn-nav .apple-icon { margin-right: 2px; }

.btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.75rem; background: transparent; color: var(--text-primary); font-size: 0.9rem; font-weight: 500; border: 1.5px solid rgba(0,0,0,0.15); border-radius: var(--radius-full); transition: all var(--transition-base); }
.btn-secondary:hover { border-color: var(--text-primary); transform: translateY(-2px); }

.btn-qr { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: var(--text-primary); border-radius: var(--radius-full); transition: all var(--transition-base); flex-shrink: 0; }
.btn-qr:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: #333; }
.btn-qr svg { width: 32px; height: 32px; }

/* === HERO === */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 10rem 2rem 6rem; position: relative; overflow: hidden; }
.hero-bg-layer { position: absolute; inset: -8%; background: url('../assets/svg/hero-bg.svg') no-repeat center top / cover; pointer-events: none; will-change: transform; z-index: 0; }

.hero-badge { margin-bottom: 2rem; }
.hero-badge img { width: 80px; height: 80px; border-radius: 21px; }

.hero-title { font-family: 'Inter', sans-serif; font-size: 73px; font-weight: 600; line-height: 102%; letter-spacing: -1.46px; color: #000; text-align: center; margin-bottom: 1.5rem; max-width: 800px; }

.hero-star { display: inline-block; color: var(--accent-gold); font-size: 0.5em; vertical-align: super; margin-left: 2px; }
.hero-star svg { width: 28px; height: 28px; }

.hero-desc { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 400; line-height: 140%; letter-spacing: -0.16px; color: #000; text-align: center; max-width: 520px; margin: 0 auto 2.5rem; }

.hero-cta { display: flex; align-items: center; justify-content: center; gap: 12px; }
.hero-featured { display: flex; gap: 3rem; margin-top: 4rem; }
.featured-item { display: flex; align-items: center; gap: 1rem; }
.featured-text { display: flex; flex-direction: column; text-align: left; }
.featured-label { font-size: 0.75rem; font-weight: 500; color: var(--text-tertiary); }
.featured-value { font-size: 0.9rem; font-weight: 600; letter-spacing: -0.01em; }

/* === EDITORIAL IMAGE === */
.editorial-image { width: 100%; max-width: 1200px; margin: 6rem auto 0; padding: 0 2rem; }
.editorial-image img { width: 100%; border-radius: 20px; object-fit: cover; }

/* === SECTIONS === */
.section { padding: 8rem 2rem; position: relative; }
.section-cream { background: var(--bg-secondary); }
.container { max-width: 1200px; margin: 0 auto; width: 100%; }

/* === SECTION HEADERS === */
.section-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent-gold); margin-bottom: 1rem; }
.section-title { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 600; line-height: 1.05; letter-spacing: -0.03em; color: #000; margin-bottom: 1.5rem; }
.section-desc { font-size: 1.125rem; line-height: 1.7; color: var(--text-secondary); max-width: 560px; }
.section-desc.centered { margin: 0 auto; text-align: center; }

/* === MAGIC STEPS === */
.magic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.magic-steps { display: flex; flex-direction: column; gap: 3rem; }
.magic-step { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num { font-size: 4rem; font-weight: 700; line-height: 1; color: var(--accent-gold-light); opacity: 0.5; flex-shrink: 0; }
.step-title { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 0.5rem; }
.step-text { font-size: 1rem; line-height: 1.6; color: var(--text-secondary); }
.magic-visual { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); }
.magic-visual img { width: 100%; }

/* === HOW IT WORKS === */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 4rem; }
.how-item { text-align: center; }
.how-icon { width: 64px; height: 64px; margin: 0 auto 1.5rem; border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(160,128,0,0.08), rgba(160,128,0,0.03)); display: flex; align-items: center; justify-content: center; }
.how-icon svg { width: 28px; height: 28px; color: var(--accent-gold); }
.how-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.how-text { font-size: 0.95rem; line-height: 1.6; color: var(--text-secondary); max-width: 300px; margin: 0 auto; }

/* === WARDROBE === */
.wardrobe-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.wardrobe-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.wardrobe-feature { display: flex; align-items: center; gap: 0.75rem; font-size: 1rem; color: var(--text-secondary); }
.wardrobe-feature .check { color: var(--accent-gold); font-size: 1.1rem; }
.wardrobe-visual { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); }
.wardrobe-visual img { width: 100%; }

/* === STYLE GALLERY === */
/* === STYLE SNAP === */
.style-snap { padding: 8rem 0; background: var(--bg-secondary); }
.style-snap-header { max-width: 1200px; margin: 0 auto; padding: 0 max(2rem, calc((100vw - 1200px) / 2)); margin-bottom: 3rem; }
.style-snap-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.style-snap-header-row .section-title { margin-bottom: 0; }

.style-snap-tabs { display: flex; gap: 0.375rem; flex-shrink: 0; padding-bottom: 0.25rem; }
.style-snap-tab { padding: 0.5rem 1.375rem; border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 600; letter-spacing: -0.01em; background: transparent; border: 1.5px solid rgba(0,0,0,0.12); color: var(--text-secondary); cursor: pointer; transition: all var(--transition-fast); font-family: inherit; }
.style-snap-tab.is-active { background: var(--text-primary); color: var(--white); border-color: var(--text-primary); }
.style-snap-tab:hover:not(.is-active) { border-color: var(--text-primary); color: var(--text-primary); }

.style-snap-region { position: relative; overflow: hidden; max-width: 1200px; margin: 0 auto; }
.style-snap-region::before, .style-snap-region::after { content: ''; position: absolute; top: 0; bottom: 0; width: 180px; z-index: 2; pointer-events: none; }
.style-snap-region::before { left: 0; background: linear-gradient(to right, var(--bg-secondary) 0%, transparent 100%); }
.style-snap-region::after { right: 0; background: linear-gradient(to left, var(--bg-secondary) 0%, transparent 100%); }

.style-snap-track-wrap { cursor: grab; user-select: none; }
.style-snap-track-wrap.is-dragging { cursor: grabbing; }

.style-snap-track { display: flex; gap: 16px; width: max-content; will-change: transform; }

.style-snap-slide { flex-shrink: 0; width: clamp(180px, 20vw, 260px); display: flex; flex-direction: column; align-items: center; }
.style-snap-slide img { width: 100%; height: 500px; object-fit: cover; object-position: top center; display: block; border-radius: var(--radius-md); pointer-events: none; -webkit-user-drag: none; user-select: none; }
.style-snap-label { margin-top: 0.75rem; font-size: 0.9375rem; font-weight: 600; letter-spacing: -0.02em; color: var(--text-primary); text-align: center; display: block; }

/* === COMING SOON CARDS === */
/* === COMING SOON === */
.coming-section { background: var(--white); padding-bottom: 8rem; }
.coming-hd { margin-bottom: 3rem; }

.coming-scroll-region { position: relative; max-width: 1200px; margin: 0 auto; overflow: hidden; }
.coming-scroll-region::before, .coming-scroll-region::after { content: ''; position: absolute; top: 0; bottom: 0; width: 180px; z-index: 2; pointer-events: none; }
.coming-scroll-region::before { left: 0; background: linear-gradient(to right, var(--white) 0%, transparent 100%); }
.coming-scroll-region::after { right: 0; background: linear-gradient(to left, var(--white) 0%, transparent 100%); }

.coming-scroll-wrap { cursor: grab; user-select: none; }
.coming-scroll-wrap.is-dragging { cursor: grabbing; }

.coming-scroll-track { display: flex; gap: 16px; width: max-content; padding: 0.25rem 0; will-change: transform; }

.csc { flex-shrink: 0; width: clamp(240px, 26vw, 310px); height: 440px; border-radius: var(--radius-xl); background: var(--white); border: 1px solid var(--border-light); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; padding: 1.5rem; overflow: hidden; transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out); }
.csc:hover { border-color: var(--accent-gold); background: var(--accent-gold); }
.csc-title { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; letter-spacing: -0.03em; color: var(--text-primary); line-height: 1.1; flex-shrink: 0; transition: color 0.3s var(--ease-out); }
.csc:hover .csc-title { color: var(--white); }
.csc-img { flex: 1; width: 100%; border-radius: var(--radius-lg); overflow: hidden; min-height: 0; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; }
.csc-img img { width: 100%; height: 100%; object-fit: contain; display: block; pointer-events: none; -webkit-user-drag: none; }
.csc-foot { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.csc-badge { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(0,0,0,0.4); background: rgba(0,0,0,0.06); padding: 0.35rem 0.75rem; border-radius: var(--radius-full); transition: color 0.3s var(--ease-out), background 0.3s var(--ease-out); }
.csc:hover .csc-badge { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.2); }

/* === TESTIMONIALS === */
.testimonial-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 4rem; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border-light); transition: all var(--transition-base); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-quote { font-size: 1.1rem; font-weight: 600; margin-bottom: 1.5rem; line-height: 1.4; letter-spacing: -0.01em; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-gold-light), rgba(160,128,0,0.15)); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; color: var(--accent-gold-dark); }
.testimonial-name { font-size: 0.875rem; font-weight: 600; }
.testimonial-role { font-size: 0.8rem; color: var(--text-tertiary); }

/* === FINAL CTA === */
.final-cta { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 8rem 2rem; }

/* === FOOTER === */
/* === FOOTER === */
.footer { background: #161412; color: rgba(255,255,255,0.5); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 3.5rem 2rem 2.5rem; }

.footer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4rem; }
.footer-logo-img { height: 30px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-dl-btn { display: inline-flex; align-items: center; gap: 0.625rem; padding: 0.625rem 1.25rem; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-full); color: rgba(255,255,255,0.75); font-size: 0.8125rem; font-weight: 500; letter-spacing: -0.01em; cursor: pointer; font-family: inherit; transition: all var(--transition-fast); }
.footer-dl-btn:hover { background: rgba(255,255,255,0.13); color: #fff; border-color: rgba(255,255,255,0.18); }

.footer-headline { padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 3rem; }
.footer-tagline { font-size: clamp(2rem, 8vw, 8rem); font-weight: 600; line-height: 0.95; letter-spacing: -0.04em; color: #fff; }

.footer-lower { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer-nav { display: flex; gap: 4rem; }
.footer-nav-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 0.125rem; }
.footer-nav-col a { font-size: 0.9rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color var(--transition-fast); }
.footer-nav-col a:hover { color: var(--accent-gold); }
.footer-socials { display: flex; gap: 0.5rem; }
.footer-social { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.08); text-decoration: none; transition: all var(--transition-fast); }
.footer-social:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.15); }
.footer-copy { text-align: right; }
.footer-copy p { font-size: 0.75rem; color: rgba(255,255,255,0.22); line-height: 1.7; }

/* === HAMBURGER === */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 24px; cursor: pointer; z-index: 1001; }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--text-primary); transition: all var(--transition-base); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* === MOBILE MENU === */
.mobile-menu { display: flex; position: fixed; inset: 0; background: rgba(250,248,245,0.98); backdrop-filter: blur(20px); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; opacity: 0; pointer-events: none; visibility: hidden; transition: opacity var(--transition-slow), visibility var(--transition-slow); }
.mobile-menu.active { opacity: 1; pointer-events: all; visibility: visible; }
.mobile-menu a { font-size: 2rem; font-weight: 600; color: var(--text-primary); transition: color var(--transition-fast); }
.mobile-menu a:hover { color: var(--accent-gold); }

/* === ANIMATIONS === */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.animate-float { animation: float 6s ease-in-out infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* === PHONE MOCKUP === */
.phone-mockup { width: 280px; height: 580px; border-radius: 40px; background: var(--white); box-shadow: 0 30px 80px rgba(0,0,0,0.12); border: 8px solid #2A2A2A; overflow: hidden; position: relative; }
.phone-mockup::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 28px; background: #2A2A2A; border-radius: 0 0 18px 18px; z-index: 10; }
.phone-mockup img { width: 100%; height: 100%; object-fit: cover; }

/* === PAGE TRANSITION OVERLAY === */

/* === DOWNLOAD MODAL === */
.dl-modal { position: fixed; inset: 0; z-index: 8500; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease-out), visibility 0.35s; }
.dl-modal.is-open { opacity: 1; visibility: visible; }
.dl-modal-backdrop { position: absolute; inset: 0; background: rgba(12, 10, 8, 0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); cursor: pointer; }
.dl-modal-panel { position: relative; z-index: 1; background: #1C1916; border-radius: var(--radius-xl); overflow: hidden; max-width: 860px; width: calc(100% - 3rem); max-height: calc(100svh - 3rem); box-shadow: 0 40px 120px rgba(0,0,0,0.6); transform: translateY(20px); transition: transform 0.4s var(--ease-out); }
.dl-modal.is-open .dl-modal-panel { transform: translateY(0); }
.dl-modal-body { display: flex; align-items: stretch; }
.dl-modal-close { position: absolute; top: 1.25rem; right: 1.25rem; z-index: 2; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: background var(--transition-fast), color var(--transition-fast); }
.dl-modal-close:hover { background: rgba(255,255,255,0.18); color: #fff; }

.dl-modal-visual { flex-shrink: 0; width: 280px; min-height: 460px; background: linear-gradient(160deg, #2C2420 0%, #1A1410 100%); display: flex; align-items: flex-end; justify-content: center; padding: 2.5rem 1.5rem 0; overflow: hidden; }
.dl-modal-visual img { width: 100%; display: block; border-radius: 20px 20px 0 0; box-shadow: 0 -20px 60px rgba(0,0,0,0.5); }

.dl-modal-content { flex: 1; padding: 3rem 2.5rem; display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; overflow-y: auto; min-height: 460px; }

.dl-modal-app-row { display: flex; align-items: center; gap: 1rem; }
.dl-modal-icon { width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0; }
.dl-modal-app-name { font-size: 1.375rem; font-weight: 700; letter-spacing: -0.03em; color: #fff; line-height: 1.1; }
.dl-modal-app-sub { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; letter-spacing: -0.01em; }

.dl-modal-rating { display: flex; align-items: center; gap: 0.625rem; }
.dl-modal-stars { color: var(--accent-gold); font-size: 1rem; letter-spacing: 2px; }
.dl-modal-rating-meta { font-size: 0.8125rem; color: rgba(255,255,255,0.45); letter-spacing: -0.01em; }

.dl-modal-store-btn { display: inline-flex; align-items: center; gap: 0.875rem; padding: 0.875rem 1.5rem; background: #fff; border-radius: var(--radius-full); text-decoration: none; transition: background var(--transition-fast), transform var(--transition-fast); width: fit-content; }
.dl-modal-store-btn:hover { background: var(--accent-gold-light); transform: translateY(-2px); }
.dl-modal-store-btn svg { color: #000; flex-shrink: 0; }
.dl-modal-store-btn small { display: block; font-size: 0.65rem; color: #000; letter-spacing: 0.02em; line-height: 1; }
.dl-modal-store-btn strong { display: block; font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; color: #000; line-height: 1.2; }

.dl-modal-divider { display: flex; align-items: center; gap: 0.875rem; }
.dl-modal-divider::before, .dl-modal-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
.dl-modal-divider span { font-size: 0.75rem; color: rgba(255,255,255,0.35); white-space: nowrap; letter-spacing: 0.02em; }

.dl-modal-qr-wrap { display: flex; align-items: center; gap: 1.25rem; }
.dl-modal-qr-box { background: #fff; border-radius: 12px; padding: 10px; flex-shrink: 0; }
.dl-modal-qr-box img { display: block; border-radius: 4px; }
.dl-modal-qr-hint { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.5; letter-spacing: -0.01em; }

@media (max-width: 640px) {
  .dl-modal-visual { display: none; }
  .dl-modal-content { padding: 2.5rem 1.75rem; }
}

/* === QR POPOVER === */
.qr-popover-wrap { position: relative; display: inline-flex; }
.qr-popover {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 256px;
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.5rem 1.25rem;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
  z-index: 100;
}
.qr-popover::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--bg-primary);
  border-right: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.qr-popover-wrap:hover .qr-popover {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.qr-popover-icon { border-radius: 12px; margin: 0 auto 0.75rem; display: block; }
.qr-popover-title { font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.2rem; }
.qr-popover-subtitle { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 1rem; }
.qr-popover-code { background: white; border-radius: 10px; padding: 0.625rem; display: inline-block; margin-bottom: 0.875rem; box-shadow: var(--shadow-sm); }
.qr-popover-code img { display: block; border-radius: 4px; }
.qr-popover-hint { font-size: 0.7rem; color: var(--text-tertiary); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  /* bento grid rules moved to end-of-file block (base styles defined after this point) */
}

@media (max-width: 1024px) {
  .section { padding: 5rem 1.5rem; }
  .hero-title { font-size: 56px; }
  .magic-grid, .wardrobe-grid { grid-template-columns: 1fr; gap: 3rem; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .csc { width: clamp(220px, 50vw, 280px); height: 400px; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-nav { gap: 2.5rem; }
  /* features/faq/showcase rules moved to end-of-file block */
}

@media (max-width: 768px) {
  .section { padding: 4rem 1.25rem; }
  .hero { padding: 8rem 1.25rem 4rem; min-height: auto; }
  .hero-title { font-size: 40px; letter-spacing: -0.8px; }
  .hero-desc { font-size: 15px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-featured { gap: 1.5rem; margin-top: 2.5rem; flex-wrap: wrap; justify-content: center; }
  .qr-popover-wrap { display: none; }
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-right .nav-text, .nav-right .btn-nav { display: none; }
  .nav-logo { grid-column: 2; grid-row: 1; }
  .nav-right { grid-column: 3; grid-row: 1; }
  .navbar { padding: 1rem 1.25rem; }
  .navbar.scrolled { padding: 0.75rem 1.25rem; }
  .section-title { font-size: 2rem; }
  .how-grid { grid-template-columns: 1fr; }
  .csc { width: clamp(200px, 70vw, 260px); height: 380px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .style-snap { padding: 4rem 0; }
  .style-snap-header-row { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .style-snap-slide { width: clamp(160px, 60vw, 220px); }
  .style-snap-slide img { height: 380px; }
  .style-snap-region::before, .style-snap-region::after { width: 80px; }
  .coming-section { padding-bottom: 4rem; }
  .coming-scroll-region::before, .coming-scroll-region::after { width: 80px; }
  .footer-lower { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .footer-copy { text-align: left; }
  .footer-top { flex-wrap: wrap; gap: 1rem; }
  .footer-headline { padding-bottom: 2.5rem; margin-bottom: 2rem; }
  .footer-tagline { font-size: clamp(1.75rem, 7vw, 2.75rem); }
  .editorial-image { margin-top: 3rem; padding: 0 1.25rem; }
  .phone-mockup { width: 220px; height: 460px; border-radius: 32px; border-width: 6px; }
  /* showcase/bento/features/faq/final-cta moved to end-of-file block */
}

/* === APP SHOWCASE === */
.showcase-wrap { border: 1px solid var(--border-light); border-radius: var(--radius-xl); overflow: hidden; }
.showcase-stats { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--white); }
.showcase-stat { display: flex; align-items: center; gap: 1rem; padding: 1.375rem 2rem; }
.showcase-stat + .showcase-stat { border-left: 1px solid var(--border-light); }
.showcase-stat-icon { width: 36px; height: 36px; flex-shrink: 0; color: var(--accent-gold); }
.showcase-stat-text { font-size: 0.9rem; font-weight: 600; letter-spacing: -0.01em; }
.showcase-image { border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); overflow: hidden; line-height: 0; }
.showcase-big-image { width: 100%; height: auto; display: block; object-fit: cover; }
.showcase-testimonials { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); }
.showcase-testimonial { padding: 2rem 2.5rem; }
.showcase-testimonial + .showcase-testimonial { border-left: 1px solid var(--border-light); }
.showcase-quote { font-size: 1.05rem; font-weight: 600; line-height: 1.5; letter-spacing: -0.01em; margin-bottom: 1.25rem; }
.showcase-author { display: flex; align-items: center; gap: 0.75rem; }
.showcase-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-gold-light), rgba(160,128,0,0.15)); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; color: var(--accent-gold-dark); flex-shrink: 0; }
.showcase-author-name { font-size: 0.875rem; font-weight: 600; }
.showcase-author-role { font-size: 0.8rem; color: var(--text-tertiary); }

/* === BENTO GRID === */
.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.bento-card { background: var(--white); border: 1px solid var(--border-light); border-radius: 24px; overflow: hidden; }

.bento-hero { grid-column: 1 / 8; padding: 3rem; min-height: 380px; display: flex; flex-direction: column; justify-content: space-between; background: var(--bg-secondary); }
.bento-hero-title { font-size: clamp(1.6rem, 2.4vw, 2.4rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; color: #000; margin: 0.75rem 0 1rem; }
.bento-hero-desc { font-size: 1rem; line-height: 1.7; color: var(--text-secondary); max-width: 400px; margin-bottom: 2rem; }
.bento-visual { grid-column: 8 / 13; background: var(--white); display: flex; align-items: center; justify-content: center; padding: 1.5rem; min-height: 380px; overflow: hidden; }
.bento-visual img { width: 100%; max-height: 100%; object-fit: contain; display: block; }
.bento-sm { grid-column: span 4; padding: 2rem; display: flex; flex-direction: column; gap: 0.625rem; }
.bento-sm-icon { font-size: 1.5rem; display: block; margin-bottom: 0.25rem; }
.bento-sm-title { font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; color: #000; }
.bento-sm-desc { font-size: 0.875rem; line-height: 1.65; color: var(--text-secondary); }
.bento-full { grid-column: 1 / -1; padding: 3rem; background: var(--bg-secondary); }
.bento-full-title { font-size: clamp(1.4rem, 2vw, 2rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; color: #000; margin-bottom: 0; }
.bento-pills { position: relative; height: 160px; margin: 2rem 0 1.5rem; }
.bento-pill { position: absolute; padding: 0.55rem 1.25rem; border-radius: 100px; font-size: 0.95rem; font-weight: 600; letter-spacing: -0.01em; white-space: nowrap; cursor: default; transition: transform 0.25s var(--ease-out); }
.bento-pill:hover { transform: scale(1.06) rotate(0deg) !important; }
.pill-streetwear { background: #1A1A1A; color: #fff; top: 5px; left: 22%; transform: rotate(-2deg); }
.pill-oldmoney   { background: #F0EBE3; color: #1A1A1A; border: 1px solid rgba(0,0,0,0.08); top: 60px; left: 35%; transform: rotate(1.5deg); }
.pill-minimal    { background: #E3E3E3; color: #1A1A1A; top: 10px; left: 50%; transform: rotate(-1deg); }
.pill-casual     { background: var(--accent-gold); color: #fff; top: 25px; left: 5%; transform: rotate(2deg); }
.pill-athletic   { background: #fff; color: #1A1A1A; border: 1.5px solid rgba(0,0,0,0.1); top: 85px; left: 42%; transform: rotate(-1.5deg); }
.pill-vintage    { background: var(--accent-gold-light); color: #6B4C2A; top: 75px; left: 65%; transform: rotate(2deg); }
.bento-full-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 0.5rem; }
.bento-full-cols p { font-size: 0.9rem; line-height: 1.75; color: var(--text-secondary); }

/* === BENTO FEATURE VARIANTS === */
.bento-warm { background: var(--bg-secondary) !important; }
.bento-dark { background: #1A1A1A !important; }
.bento-dark .bento-sm-title { color: #fff; }
.bento-dark .bento-sm-desc { color: rgba(255,255,255,0.45); }

.bento-hero-platforms { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.bento-platform-tag { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.35rem 0.8rem; border-radius: 100px; font-size: 0.78rem; font-weight: 500; letter-spacing: -0.01em; background: var(--white); border: 1px solid var(--border-light); color: var(--text-primary); white-space: nowrap; }

.bento-wide { grid-column: span 8; padding: 2.5rem; display: flex; align-items: center; gap: 3rem; background: var(--bg-secondary); }
.bento-wide-content { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; min-width: 0; }
.bento-share-flow { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.bento-share-app { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bento-share-tiktok { background: #000; }
.bento-share-ig { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.bento-share-kloset { background: var(--white); border: 1px solid var(--border-light); }
.bento-share-arrow { color: var(--text-tertiary); flex-shrink: 0; }

.bento-tag-row { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.5rem; }
.bento-chip { padding: 0.275rem 0.7rem; border-radius: 100px; font-size: 0.72rem; font-weight: 600; letter-spacing: -0.01em; background: var(--bg-secondary); border: 1px solid var(--border-light); color: var(--text-secondary); }
.bento-chip--dark { background: #1A1A1A; color: #fff; border-color: #1A1A1A; }
.bento-chip--gold { background: var(--accent-gold-light); color: var(--accent-gold-dark); border-color: transparent; }

/* === FEATURE CARDS (old — kept for potential reuse) === */
.feature-cards-header { text-align: center; margin-bottom: 4rem; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border-light); border-radius: var(--radius-xl); overflow: hidden; }
.feature-card { background: var(--white); padding: 2.5rem; border-right: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); transition: background var(--transition-base); }
.feature-card:nth-child(3n) { border-right: none; }
.feature-card:nth-child(4), .feature-card:nth-child(5), .feature-card:nth-child(6) { border-bottom: none; }
.feature-card:hover { background: var(--bg-secondary); }
.feature-card-num { font-size: 0.7rem; font-weight: 700; color: var(--text-tertiary); letter-spacing: 0.08em; margin-bottom: 1.5rem; display: block; }
.feature-card-icon { font-size: 1.75rem; margin-bottom: 0.875rem; display: block; }
.feature-card-title { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.feature-card-desc { font-size: 0.9rem; line-height: 1.7; color: var(--text-secondary); }

/* === FAQ === */
.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.faq-sticky { position: sticky; top: 7rem; }
.faq-title { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 600; line-height: 1.1; letter-spacing: -0.03em; color: #000; margin-bottom: 1rem; }
.faq-desc { font-size: 1rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 2rem; }
.faq-category { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-tertiary); padding: 1.5rem 1rem 0.5rem; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-btn { width: 100%; display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1rem; background: none; border: none; cursor: pointer; text-align: left; font-family: inherit; border-radius: var(--radius-sm); transition: background var(--transition-fast); }
.faq-btn:hover { background: var(--bg-primary); }
.faq-num { font-size: 0.78rem; font-weight: 600; color: var(--text-tertiary); min-width: 26px; flex-shrink: 0; }
.faq-question { flex: 1; font-size: 0.9375rem; font-weight: 500; letter-spacing: -0.02em; color: var(--text-primary); }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--border-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--text-secondary); transition: all var(--transition-base); }
.faq-item.open .faq-icon { background: var(--text-primary); border-color: var(--text-primary); color: white; transform: rotate(45deg); }
.faq-body { overflow: hidden; max-height: 0; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-item.open .faq-body { max-height: 500px; }
.faq-body-inner { padding: 0 1rem 1.5rem 3.5rem; }
.faq-body-inner p { font-size: 0.9rem; line-height: 1.8; color: var(--text-secondary); }

/* === EDITORIAL WRAP (kept for safety) === */
.editorial-img-wrap { width: 100%; overflow: hidden; border-radius: 20px; }

/* === NAV LOGO IMG === */
.nav-logo img { height: 42px; width: auto; display: block; }

/* === LAYOUT UTILITIES === */
.text-center { text-align: center; }

/* === TYPOGRAPHY UTILITIES (inner pages) === */
.text-overline { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent-gold); }
.text-display { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 600; line-height: 1.05; letter-spacing: -0.03em; color: #000; margin-bottom: 1.5rem; }
.text-h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; color: #000; }
.text-h3 { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.01em; color: #000; }
.text-body-lg { font-size: 1.125rem; line-height: 1.7; color: var(--text-secondary); }
.text-body { font-size: 1rem; line-height: 1.6; color: var(--text-secondary); }
.text-caption { font-size: 0.875rem; color: var(--text-tertiary); }
.text-gold { color: var(--accent-gold); }
.text-light-gray { color: var(--text-tertiary); }

/* === PROSE (legal pages) === */
.prose { display: flex; flex-direction: column; gap: 2rem; }
.prose h2 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; color: var(--text-primary); margin-bottom: 0.6rem; }
.prose h3 { font-size: 0.9375rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.4rem; margin-top: 0.75rem; }
.prose p { font-size: 0.9375rem; line-height: 1.75; color: var(--text-secondary); margin-bottom: 0.75rem; }
.prose p:last-child { margin-bottom: 0; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 0.75rem; }
.prose ul li { font-size: 0.9375rem; line-height: 1.75; color: var(--text-secondary); margin-bottom: 0.3rem; }
.prose a { color: var(--accent-gold); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--text-primary); font-weight: 600; }

/* === COMPONENT UTILITIES (inner pages) === */
.card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border-light); transition: all var(--transition-base); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.icon-box { width: 48px; height: 48px; border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(160,128,0,0.08), rgba(160,128,0,0.03)); display: flex; align-items: center; justify-content: center; }

@media (max-width: 480px) {
  .hero-title { font-size: 32px; letter-spacing: -0.64px; }
  .hero-star svg { width: 18px; height: 18px; }
  .hero-featured { flex-direction: column; gap: 1rem; align-items: center; }
  .step-num { font-size: 3rem; }
  .footer-nav { flex-direction: column; gap: 1.5rem; }
}

/* =====================================================
   RESPONSIVE OVERRIDES — must live AFTER base styles
   ===================================================== */

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid .feature-card:nth-child(3n) { border-right: 1px solid var(--border-light); }
  .features-grid .feature-card:nth-child(2n) { border-right: none; }
  .features-grid .feature-card:nth-child(4), .features-grid .feature-card:nth-child(5) { border-bottom: 1px solid var(--border-light); }
  .features-grid .feature-card:nth-child(5), .features-grid .feature-card:nth-child(6) { border-bottom: none; }
  .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
  .faq-sticky { position: static; }
  /* showcase-image height driven by big_image aspect ratio */
}

@media (max-width: 900px) {
  .bento-hero { grid-column: 1 / -1; }
  .bento-visual { grid-column: 1 / -1; min-height: 340px; }
  .bento-wide { grid-column: 1 / -1; }
  .bento-sm:last-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  /* Showcase — stats */
  .showcase-wrap { border-radius: var(--radius-lg); }
  .showcase-stats { grid-template-columns: 1fr; }
  .showcase-stat { padding: 1.25rem 1.5rem; align-items: flex-start; }
  .showcase-stat-icon { width: 24px; height: 24px; margin-top: 2px; flex-shrink: 0; }
  .showcase-stat + .showcase-stat { border-left: none; border-top: 1px solid var(--border-light); }
  /* Showcase — phone image */
  /* showcase-image height driven by big_image aspect ratio */
  /* Showcase — testimonials */
  .showcase-testimonials { grid-template-columns: 1fr; }
  .showcase-testimonial { padding: 1.5rem; }
  .showcase-testimonial + .showcase-testimonial { border-left: none; border-top: 1px solid var(--border-light); }
  /* Bento */
  .bento-grid { gap: 10px; }
  .bento-hero { grid-column: 1 / -1; min-height: 260px; padding: 1.75rem; }
  .bento-visual { grid-column: 1 / -1; min-height: 240px; }
  .bento-sm { grid-column: 1 / -1; padding: 1.5rem; }
  .bento-wide { grid-column: 1 / -1; flex-direction: column; gap: 1.25rem; align-items: flex-start; padding: 1.5rem; }
  /* Features */
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none !important; border-bottom: 1px solid var(--border-light) !important; }
  .feature-card:last-child { border-bottom: none !important; }
  .feature-cards-header { margin-bottom: 2rem; }
  /* FAQ */
  .faq-grid { gap: 2rem; }
  .faq-body-inner { padding-left: 2.5rem; }
  /* Final CTA */
  .final-cta { padding: 5rem 1.25rem; min-height: auto; }
  /* Download modal */
  .dl-modal-content { padding: 2rem 1.5rem; }

}

@media (max-width: 480px) {
  /* Showcase */
  /* showcase-image height driven by big_image aspect ratio */
  /* Bento */
  .bento-grid { gap: 8px; }
  .bento-hero { padding: 1.5rem; }
  .bento-sm { padding: 1.25rem; }
  .bento-wide { padding: 1.25rem; }
  /* FAQ */
  .faq-body-inner { padding-left: 1.75rem; }
  .faq-btn { padding: 1rem 0.75rem; gap: 0.75rem; }
  /* Coming soon */
  .coming-section { padding-bottom: 3rem; }
}
