@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Instrument+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

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

:root {
  --bg:            #E0b165;
  --bg-2:          #111;
  --bg-3:          #1a1a1a;
  --bg-4:          #252525;
  --accent:        #ffffff;
  --accent-dim:    #a07850;
  --accent-light:  #f5f5f5;
  --cream:         #f5f0e8;
  --cream-dim:     rgba(245,240,232,0.55);
  --cream-faint:   rgba(245,240,232,0.22);
  --accent-glow:   rgba(255,255,255,0.12);
  --text-1:        #f0f8f5;
  --text-2:        rgba(255,255,255,1);
  --text-3:        rgba(255,255,255,1);
  --border:        rgba(255,255,255,0.07);
  --border-2:      rgba(255,255,255,0.13);
  --border-cream:  rgba(245,240,232,0.08);
  --font-display:  'Syne', sans-serif;
  --font-body:     'Instrument Sans', sans-serif;
  --ease-out:      cubic-bezier(.22,1,.36,1);
  --ease-spring:   cubic-bezier(.34,1.56,.64,1);
  --discord-btn-color: #000;
  --new-friends-color: #ffffff;
}

html { scroll-behavior: smooth; }
html, body { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar, body::-webkit-scrollbar { display: none; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text-1); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* noise overlay removed — was obscuring card images */

#loom-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .048; }

.blob { display: none; position: fixed; border-radius: 50%; filter: blur(130px); pointer-events: none; z-index: 0; animation: blobDrift 16s ease-in-out infinite alternate; will-change: transform; }
.blob-1 { display: none; width: 680px; height: 680px; background: var(--accent); top: -300px; right: -180px; opacity: .05; }
.blob-2 { display: none; width: 500px; height: 500px; background: var(--cream); bottom: -180px; left: -120px; opacity: .025; animation-delay: 5s; }
.blob-3 { display: none; width: 360px; height: 360px; background: var(--accent-light); top: 44%; left: 37%; opacity: .02; animation-delay: 9s; }
@keyframes blobDrift { from { transform: translate(0,0) scale(1); } to { transform: translate(22px,-16px) scale(1.04); } }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 60px; padding: 0 44px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(6,10,9,.9); backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--border);
  animation: navIn .5s var(--ease-out) both;
}
@keyframes navIn { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.nav-logo { font-family: var(--font-display); font-size: 1.28rem; font-weight: 800; letter-spacing: -.04em; color: var(--text-1); text-decoration: none; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.5); text-decoration: none; transition: color .18s; }
.nav-link:hover { color: var(--text-1); }
.btn-discord { display: inline-flex; align-items: center; gap: 7px; background: #000; color: #fff; border: none; padding: 8px 18px; border-radius: 8px; font-family: var(--font-body); font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: none; white-space: nowrap; transition: background .18s, transform .15s, box-shadow .2s; }
.btn-discord:hover { background: #1a1a1a; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(0,0,0,0.3); }

/* Nav user dropdown */
#nav-user { display: none; align-items: center; position: relative; }
.nav-user-inner { display: flex; align-items: center; gap: 9px; padding: 5px 10px 5px 5px; border-radius: 10px; border: 1px solid transparent; cursor: pointer; transition: background .18s, border-color .18s; }
.nav-user-inner:hover,
#nav-user.open .nav-user-inner { background: rgba(255,255,255,.06); border-color: var(--border-2); }
#nav-avatar { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--accent); object-fit: cover; }
#nav-username { font-size: 13px; font-weight: 500; color: var(--text-1); }
.nav-user-inner::after { content: ''; width: 6px; height: 6px; border-right: 1.5px solid rgba(255,255,255,.4); border-bottom: 1.5px solid rgba(255,255,255,.4); transform: rotate(45deg) translateY(-2px); transition: transform .2s; }
#nav-user.open .nav-user-inner::after { transform: rotate(225deg) translateY(-2px); }
.nav-user-dropdown { position: absolute; top: calc(100% + 8px); right: 0; background: var(--bg-3); border: 1px solid var(--border-2); border-radius: 10px; padding: 5px; min-width: 140px; box-shadow: 0 16px 40px rgba(0,0,0,.6); opacity: 0; pointer-events: none; transform: translateY(-6px) scale(.97); transition: opacity .18s var(--ease-out), transform .18s var(--ease-out); z-index: 10; }
#nav-user.open .nav-user-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.nav-signout-btn { all: unset; cursor: pointer; display: flex; align-items: center; gap: 8px; width: 100%; padding: 8px 12px; border-radius: 7px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.7); transition: background .15s, color .15s; }
.nav-signout-btn:hover { background: rgba(239,68,68,.1); color: #f87171; }

/* ── WELCOME BANNER ── */
.welcome-banner { display: none; position: fixed; top: 74px; left: 50%; transform: translateX(-50%); z-index: 300; background: var(--bg-3); border: 1px solid var(--border-2); border-radius: 16px; box-shadow: 0 24px 60px rgba(0,0,0,.7); padding: 26px 32px 28px; text-align: center; width: min(380px, 90vw); }
.welcome-banner.show { display: block; animation: bannerIn .4s var(--ease-spring) both; }
@keyframes bannerIn { from { opacity: 0; transform: translateX(-50%) translateY(-10px) scale(.97); } to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); } }
.welcome-banner img { width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--accent); margin-bottom: 12px; object-fit: cover; }
.welcome-banner h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-1); margin-bottom: 6px; }
.welcome-banner p { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.65; }
.welcome-banner .close-btn { margin-top: 16px; background: var(--accent); color: #060a09; border: none; border-radius: 8px; padding: 8px 22px; font-family: var(--font-body); font-size: 13px; font-weight: 600; cursor: pointer; transition: background .18s; }
.welcome-banner .close-btn:hover { background: var(--cream); color: #060a09; }

/* ── HERO ── */
.page-top {
  position: relative; z-index: 1;
  min-height: 100vh; padding: 80px 24px 80px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.page-top::before {
  content: ''; position: absolute; top: 48%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 480px;
  background: radial-gradient(ellipse, rgba(255,255,255,.07) 0%, rgba(245,240,232,.02) 50%, transparent 70%);
  pointer-events: none;
}
.hero-objects { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-obj { display: none; position: absolute; filter: drop-shadow(0 5px 16px rgba(255,255,255,.12)); animation: floatObj 7s ease-in-out infinite alternate; will-change: transform; }
.hero-obj-1 { display: none; top: 18%; left: 7%; animation-duration: 7s; }
.hero-obj-2 { display: none; top: 13%; right: 9%; animation-duration: 6.2s; animation-delay: 1.4s; }
.hero-obj-3 { display: none; bottom: 22%; left: 5%; animation-duration: 8.1s; animation-delay: 2.8s; }
.hero-obj-4 { display: none; bottom: 19%; right: 7%; animation-duration: 6.6s; animation-delay: .7s; }
.hero-obj-5 { display: none; top: 54%; left: 12%; animation-duration: 9s; animation-delay: 1.9s; }
.hero-obj-6 { display: none; top: 34%; right: 4%; animation-duration: 7.4s; animation-delay: 3.7s; }
@keyframes floatObj { 0% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-14px) rotate(3deg); } 100% { transform: translateY(-6px) rotate(-2deg); } }

.page-top h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
  color: var(--text-1);
  max-width: 100%;
  width: 100%;
  word-break: keep-all;
  animation: fadeUp .7s .32s var(--ease-out) both;
}
.page-top h1 em { font-style: italic; color: var(--new-friends-color); }
.page-top > p { margin-top: 22px; font-size: 16px; color: rgba(255,255,255,.72); font-weight: 400; max-width: 420px; line-height: 1.85; animation: fadeUp .7s .46s var(--ease-out) both; }
.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 38px; animation: fadeUp .7s .6s var(--ease-out) both; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #000; border: none; padding: 13px 26px; border-radius: 10px; font-family: var(--font-body); font-weight: 600; font-size: 14px; cursor: pointer; text-decoration: none; transition: background .18s, transform .15s, box-shadow .2s; box-shadow: 0 4px 22px rgba(255,255,255,.24); }
.btn-primary:hover { background: #f0f0f0; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,255,255,.3); }
.btn-ghost { display: inline-flex; align-items: center; background: transparent; color: rgba(255,255,255,.7); border: 1px solid var(--border-2); padding: 12px 22px; border-radius: 10px; font-family: var(--font-body); font-weight: 500; font-size: 14px; cursor: pointer; text-decoration: none; transition: color .18s, border-color .18s, transform .15s; }
.btn-ghost:hover { color: var(--text-1); border-color: rgba(255,255,255,.28); transform: translateY(-1px); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* ── HERO STATS PANEL ── */
.hero-stats {
  display: flex; align-items: stretch;
  margin-top: 52px;
  background: rgba(10,16,14,.72);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  overflow: hidden;
  animation: fadeUp .7s .78s var(--ease-out) both;
  box-shadow: 0 8px 40px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06);
}
.hero-stat { display: flex; flex-direction: column; align-items: center; padding: 22px 40px; gap: 5px; transition: background .22s; }
.hero-stat:hover { background: rgba(255,255,255,.04); }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,.08); flex-shrink: 0; }
.hero-stat-num { font-family: var(--font-display); font-size: 1.85rem; font-weight: 800; letter-spacing: -.045em; line-height: 1; color: var(--text-1); transition: color .22s; }
.hero-stat:hover .hero-stat-num { color: #ffffff; }
.hero-stat-label { font-size: 11px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.45); }

/* ── SCROLL HINT ── */
.scroll-hint {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: white;
  margin-top: 36px;
  animation: fadeUp .6s 1.05s var(--ease-out) both;
}
.scroll-hint::after { content: ''; width: 1px; height: 28px; background: linear-gradient(to bottom, white, transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: .28; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(.5); } }

/* ── SLIDER ── */
.slider-outer { position: relative; max-width: 1100px; margin: 72px auto 0; padding: 0 40px; z-index: 1; }
.slider-track { overflow: hidden; padding: 10px 4px 24px; cursor: grab; user-select: none; }
.slider-track.is-dragging { cursor: grabbing; }
.slider-inner { display: flex; gap: 14px; will-change: transform; transition: transform .4s cubic-bezier(.25,1,.5,1); }
.slider-inner.no-transition { transition: none !important; }


.card {
  min-width: 290px; flex: 0 0 290px;
  border-radius: 16px; overflow: hidden;
  position: relative; display: flex; flex-direction: column;
  border: 1px solid var(--border);
  background: var(--bg-3);
  text-decoration: none;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .3s;
  transform-style: preserve-3d; will-change: transform;
}
.card:hover { transform: translateY(-8px) perspective(700px) rotateY(2deg); box-shadow: 0 24px 56px rgba(0,0,0,.65), 0 0 36px rgba(255,255,255,.06); border-color: rgba(255,255,255,.22); }

.card-img-top {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-4);
}
.card-img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-out);
}
.card:hover .card-img-top img { transform: scale(1.07); }
/* subtle fade at bottom of image into card body */
.card-img-top::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg-3));
  pointer-events: none;
}

.card-arrow { position: absolute; top: 14px; right: 14px; z-index: 4; width: 26px; height: 26px; border-radius: 50%; background: rgba(0,0,0,.45); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.2); transition: background .2s, border-color .2s; }
.card-arrow svg { width: 12px; height: 12px; }
.card:hover .card-arrow { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); }

.card-content { padding: 14px 18px 22px; display: flex; flex-direction: column; flex: 1; }
.card-content h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 7px; }
.card-content p { font-size: 12.5px; color: rgba(255,255,255,.52); line-height: 1.7; margin-bottom: 13px; flex: 1; }
.card-link { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: var(--accent); text-decoration: none; transition: gap .2s, opacity .2s; margin-top: auto; }
.card-link:hover { gap: 8px; opacity: .7; }
.card code { background: rgba(255,255,255,.12); color: #fff; padding: 1px 6px; border-radius: 4px; font-size: .86em; border: 1px solid rgba(255,255,255,.18); }

.dots { display: flex; justify-content: center; gap: 5px; padding-bottom: 6px; position: relative; z-index: 1; }
.dots span { height: 3px; width: 3px; background: rgba(255,255,255,.18); border-radius: 10px; transition: all .28s ease; display: inline-block; }
.dots span.active { width: 18px; background: #ffffff; }

/* ── FEATURE ROWS ── */
.wil-section { position: relative; z-index: 1; max-width: 1100px; margin: 100px auto 0; padding: 0 40px; }
.wil-header { margin-bottom: 52px; }
.wil-heading { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 800; color: var(--text-1); letter-spacing: -.05em; line-height: 1; max-width: 580px; }
.grad-text { background: linear-gradient(120deg, white 0%, #f0f0f0 50%, var(--cream) 90%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.wil-rows { display: flex; flex-direction: column; gap: 2px; }
.wil-row { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; background: var(--bg-2); transition: border-color .3s, box-shadow .4s; }
.wil-row:hover { border-color: rgba(255,255,255,.12); box-shadow: 0 14px 44px rgba(0,0,0,.4); }
.wil-row.reverse { direction: rtl; }
.wil-row.reverse > * { direction: ltr; }
.wil-row-copy { padding: 50px 46px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--border); position: relative; overflow: hidden; }
.wil-row.reverse .wil-row-copy { border-right: none; border-left: 1px solid var(--border); }
.wil-row-copy::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 50% at 0% 50%, rgba(255,255,255,.03) 0%, transparent 70%); pointer-events: none; }
.wil-row-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: white; margin-bottom: 14px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 4px 12px; width: fit-content; }
.wil-row-copy h3 { font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.85rem); font-weight: 800; color: var(--text-1); letter-spacing: -.038em; line-height: 1.15; margin-bottom: 12px; position: relative; z-index: 1; }
.wil-row-copy p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.84; max-width: 340px; margin-bottom: 24px; position: relative; z-index: 1; }
.wil-row-copy p code, .wil-row-copy h3 code { background: rgba(255,255,255,.12); color: #fff; padding: 1px 6px; border-radius: 4px; font-size: .87em; border: 1px solid rgba(255,255,255,.2); }
.wil-row-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: white; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 2px; width: fit-content; transition: opacity .2s, gap .2s; position: relative; z-index: 1; }
.wil-row-cta span { display: inline-block; transition: transform .2s; }
.wil-row-cta:hover { opacity: .7; gap: 10px; }
.wil-row-cta:hover span { transform: translateX(3px); }
.wil-row-visual { position: relative; min-height: 320px; display: flex; align-items: center; justify-content: center; background: var(--bg-3); overflow: hidden; }
.wil-row-visual-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 65% 65% at 50% 50%, rgba(255,255,255,.04) 0%, transparent 68%); }
.wil-demo-img { position: relative; z-index: 2; width: 78%; max-width: 320px; border-radius: 12px; object-fit: cover; display: block; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 20px 60px rgba(0,0,0,.6); transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out); }
.wil-row:hover .wil-demo-img { transform: translateY(-6px) perspective(600px) rotateX(3deg) rotateY(-2deg); box-shadow: 0 28px 68px rgba(0,0,0,.7), 0 0 28px rgba(255,255,255,.05); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s var(--ease-out), transform .55s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── FLICK PARTNERSHIP ── */
.flick-section {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 88px auto 0; padding: 0 40px;
}
.flick-inner {
  position: relative;
  border-radius: 24px; overflow: hidden;
  background: linear-gradient(145deg, #07110e 0%, #060d0b 60%, #08111a 100%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 32px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.03);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.flick-inner::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 0% 50%, rgba(255,255,255,.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 100%, rgba(255,255,255,.03) 0%, transparent 55%);
}
/* Left content */
.flick-content {
  padding: 60px 52px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
  border-right: 1px solid rgba(255,255,255,.08);
}
.flick-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: #ffffff;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px; padding: 4px 14px;
  margin-bottom: 24px; width: fit-content;
}
.flick-logos {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.flick-logo-loom {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 800;
  letter-spacing: -.04em; color: #fff;
}
.flick-logo-loom span { color: #ffffff; }
.flick-x {
  display: flex; flex-direction: column; align-items: center;
  color: rgba(255,255,255,.25); width: 18px;
}
.flick-x svg { display: block; }
.flick-logo-flick {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 800;
  letter-spacing: -.04em; color: #fff;
}
.flick-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 800; letter-spacing: -.045em; line-height: 1.1;
  color: #fff; margin-bottom: 14px;
}
.flick-highlight {
  background: linear-gradient(110deg, #ffffff 0%, #f0f0f0 60%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.flick-body {
  font-size: 14px; color: rgba(255,255,255,.5);
  line-height: 1.82; max-width: 380px; margin-bottom: 32px;
}
.flick-features {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px;
}
.flick-feat {
  display: flex; align-items: center; gap: 12px;
}
.flick-feat-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
}
.flick-feat-icon svg { width: 13px; height: 13px; color: #ffffff; }
.flick-feat div { display: flex; flex-direction: column; gap: 1px; }
.flick-feat strong { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.88); }
.flick-feat span { font-size: 12px; color: rgba(255,255,255,.38); }
.flick-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #ffffff; color: #000;
  border: none; padding: 12px 26px; border-radius: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  cursor: pointer; text-decoration: none;
  transition: background .18s, transform .18s, box-shadow .2s;
  box-shadow: 0 4px 22px rgba(255,255,255,.24);
  width: fit-content;
}
.flick-cta:hover { background: #f0f0f0; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,255,255,.32); }
/* Right: stats / social proof */
.flick-right {
  padding: 60px 48px;
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
  position: relative; z-index: 2;
}
.flick-stat-row {
  display: flex; flex-direction: column; gap: 20px;
}
.flick-stat-item {
  padding: 20px 22px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  transition: border-color .22s, background .22s;
}
.flick-stat-item:hover {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.14);
}
.flick-stat-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  letter-spacing: -.04em; color: #fff; line-height: 1;
  margin-bottom: 4px;
  background: linear-gradient(120deg, #fff 0%, rgba(255,255,255,.7) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.flick-stat-label { font-size: 12px; color: rgba(255,255,255,.4); font-weight: 500; }
.flick-divider { height: 1px; background: rgba(255,255,255,.05); }

/* ── FEATURE TABS ── */
.ftab-section { position: relative; width: 100vw; left: 50%; transform: translateX(-50%); background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 90px 0 104px; margin-top: 88px; z-index: 1; overflow: hidden; }
.ftab-section::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 45% 65% at 80% 50%, rgba(255,255,255,.02) 0%, transparent 62%); }
.ftab-header { max-width: 580px; margin: 0 auto 52px; padding: 0 40px; text-align: center; position: relative; z-index: 2; }
.ftab-heading { font-family: var(--font-display); font-size: clamp(1.9rem, 3.8vw, 2.85rem); font-weight: 800; color: var(--text-1); letter-spacing: -.044em; line-height: 1.08; margin-bottom: 12px; }
.ftab-sub { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.8; max-width: 440px; margin: 0 auto; }
.ftab-wrap { max-width: 1100px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 290px 1fr; gap: 38px; align-items: start; position: relative; z-index: 2; }
.ftab-left { position: sticky; top: 80px; }
.ftab-nav { display: flex; flex-direction: column; gap: 2px; }
.ftab-btn { all: unset; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; border-radius: 10px; border: 1px solid transparent; position: relative; transition: background .18s, border-color .18s; overflow: hidden; }
.ftab-btn-bar { position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: #ffffff; border-radius: 0 2px 2px 0; opacity: 0; transform: scaleY(.3); transition: opacity .2s, transform .22s; }
.ftab-btn.active .ftab-btn-bar { opacity: 1; transform: scaleY(1); }
.ftab-btn:hover { background: rgba(255,255,255,.04); }
.ftab-btn.active { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.ftab-btn-inner { display: flex; align-items: center; gap: 11px; flex: 1; }
.ftab-btn-icon-wrap { width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); transition: background .18s, border-color .18s; }
.ftab-btn-icon-wrap svg { width: 14px; height: 14px; color: rgba(255,255,255,.35); transition: color .18s; }
.ftab-btn.active .ftab-btn-icon-wrap { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.28); }
.ftab-btn.active .ftab-btn-icon-wrap svg { color: #ffffff; }
.ftab-btn:hover .ftab-btn-icon-wrap svg { color: rgba(255,255,255,.7); }
.ftab-btn-text { display: flex; flex-direction: column; gap: 1px; }
.ftab-btn-text strong { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.6); transition: color .18s; line-height: 1.3; }
.ftab-btn-text em { font-style: normal; font-size: 11px; color: rgba(255,255,255,.3); }
.ftab-btn.active .ftab-btn-text strong, .ftab-btn:hover .ftab-btn-text strong { color: #fff; }
.ftab-chevron { width: 13px; height: 13px; color: rgba(255,255,255,.3); flex-shrink: 0; opacity: 0; transform: translateX(-3px); transition: opacity .2s, transform .2s; }
.ftab-btn.active .ftab-chevron { opacity: 1; transform: translateX(0); color: #ffffff; }
.ftab-btn:hover .ftab-chevron { opacity: .28; transform: translateX(0); }
.ftab-right { position: relative; min-height: 440px; }
.ftab-panel { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .26s ease; }
.ftab-panel.active { opacity: 1; pointer-events: auto; position: relative; }
.ftab-panel.entering { animation: panelIn .32s var(--ease-out) both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.ftab-card { background: var(--bg-3); border: 1px solid var(--border); border-radius: 15px; overflow: hidden; box-shadow: 0 18px 55px rgba(0,0,0,.55); transition: border-color .3s, transform .45s var(--ease-out), box-shadow .45s var(--ease-out); transform-style: preserve-3d; will-change: transform; }
.ftab-card:hover { border-color: rgba(255,255,255,.18); transform: perspective(1000px) rotateY(-1.5deg) rotateX(.8deg) translateY(-4px); box-shadow: 0 28px 65px rgba(0,0,0,.62); }
.ftab-media { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--bg); }
.ftab-img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.ftab-card:hover .ftab-img { transform: scale(1.04); }
.ftab-media-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 38%, rgba(15,23,20,.88) 100%); pointer-events: none; }
.ftab-media-tag { position: absolute; top: 13px; left: 13px; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; background: rgba(255,255,255,.15); color: #ffffff; border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.ftab-card-body { padding: 22px 26px 26px; }
.ftab-category { font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 7px; display: block; }
.ftab-title { font-family: var(--font-display); font-size: clamp(1.28rem, 2.2vw, 1.75rem); font-weight: 800; color: var(--text-1); letter-spacing: -.036em; line-height: 1.18; margin-bottom: 10px; }
.ftab-desc { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.82; margin-bottom: 18px; max-width: 500px; }
.ftab-desc code { background: rgba(255,255,255,.1); color: #fff; padding: 2px 6px; border-radius: 5px; font-size: .86em; border: 1px solid rgba(255,255,255,.16); }
.ftab-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #ffffff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 2px; transition: opacity .2s, gap .2s; }
.ftab-cta span { display: inline-block; transition: transform .2s; }
.ftab-cta:hover { opacity: .65; gap: 9px; }
.ftab-cta:hover span { transform: translateX(3px); }

/* ── SHOWCASE ── */
.showcase-section { position: relative; width: 100vw; left: 50%; transform: translateX(-50%); background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 90px 0; z-index: 1; overflow: hidden; }
.showcase-inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.showcase-heading { font-family: var(--font-display); font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 800; color: var(--text-1); line-height: 1.1; letter-spacing: -.036em; margin-bottom: 15px; }
.showcase-body { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.84; max-width: 380px; }
.showcase-meta { margin-top: 28px; }
.showcase-cta { font-size: 13px; font-weight: 600; color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; padding-bottom: 2px; border-bottom: 1px solid rgba(255,255,255,.28); transition: opacity .2s, gap .2s; }
.showcase-cta:hover { opacity: .65; gap: 10px; }
.showcase-img-wrap { position: relative; z-index: 1; border-radius: 13px; overflow: hidden; border: 1px solid var(--border); background: var(--bg-3); transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out); }
.showcase-img-wrap:hover { transform: perspective(800px) rotateY(-3deg) rotateX(1.5deg) translateY(-4px); box-shadow: 0 24px 56px rgba(0,0,0,.52); }
.showcase-img { display: block; width: 100%; object-fit: cover; max-height: 360px; transition: transform .6s var(--ease-out); transform: scale(1.02); -webkit-mask-image: linear-gradient(to bottom, black 48%, transparent 100%); mask-image: linear-gradient(to bottom, black 48%, transparent 100%); }
.reveal.visible .showcase-img { transform: scale(1); }

/* ── PREMIUM ── */
.premium-section { max-width: 1100px; margin: 84px auto 0; padding: 0 40px; position: relative; z-index: 1; }
.premium-card { display: grid; grid-template-columns: 1fr; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 22px 60px rgba(0,0,0,.72); background: var(--bg-3); position: relative; transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out); transform-style: preserve-3d; }
.premium-card:hover { transform: perspective(1200px) rotateX(1.2deg) rotateY(-1deg) translateY(-5px); box-shadow: 0 30px 76px rgba(0,0,0,.78); }
.premium-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 75% 75% at 16% 50%, rgba(255,255,255,.025) 0%, transparent 65%); pointer-events: none; z-index: 0; }
.premium-left { padding: 48px 44px; position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; border-right: none; }
.premium-left h2 { font-family: var(--font-display); font-size: clamp(1.55rem, 2.2vw, 2.15rem); font-weight: 800; color: var(--text-1); margin-bottom: 9px; line-height: 1.12; letter-spacing: -.036em; }
.premium-left > p { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.78; margin-bottom: 24px; }
.perks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.perks li { font-size: 13px; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 10px; }
.perks li svg { width: 15px; height: 15px; flex-shrink: 0; color: #ffffff; }
.perks li strong { color: var(--text-1); font-weight: 600; }
.premium-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-gold { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #000; border: none; padding: 11px 22px; border-radius: 10px; font-family: var(--font-body); font-weight: 700; font-size: 13px; cursor: pointer; text-decoration: none; transition: background .18s, transform .18s, box-shadow .2s; box-shadow: 0 4px 22px rgba(255,255,255,.22); white-space: nowrap; }
.btn-gold:hover { background: #f0f0f0; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,255,255,.3); }
.btn-gold-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: white; border: 1px solid rgba(255,255,255,.28); padding: 11px 22px; border-radius: 10px; font-family: var(--font-body); font-weight: 700; font-size: 13px; cursor: pointer; text-decoration: none; transition: background .18s, border-color .18s, transform .18s; white-space: nowrap; }
.btn-gold-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); transform: translateY(-2px); }
.premium-right { position: relative; overflow: hidden; min-height: 340px; display: none; align-items: center; justify-content: center; background: var(--bg-4); }
.premium-right-glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 58%, rgba(255,255,255,.06) 0%, transparent 62%); pointer-events: none; }
.premium-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .18; mix-blend-mode: luminosity; transition: transform .6s var(--ease-out), opacity .3s; }
.premium-card:hover .premium-img { transform: scale(1.04); opacity: .26; }

/* ── REVIEW ── */
.review-cta { max-width: 1100px; margin: 18px auto 0; padding: 0 40px; position: relative; z-index: 1; }
.review-card { background: var(--bg-3); border: 1px solid var(--border); border-radius: 15px; padding: 28px 36px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; position: relative; overflow: hidden; transition: border-color .3s, transform .45s var(--ease-out), box-shadow .45s var(--ease-out); }
.review-card:hover { border-color: rgba(255,255,255,.1); transform: perspective(1000px) rotateX(.8deg) translateY(-3px); box-shadow: 0 14px 44px rgba(0,0,0,.42); }
.review-left { display: flex; align-items: center; gap: 18px; flex: 1; min-width: 240px; }
.review-icon-wrap { width: 42px; height: 42px; flex-shrink: 0; border-radius: 11px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; animation: antigrav 6s ease-in-out infinite alternate; }
.review-icon-wrap svg { width: 17px; height: 17px; color: white; }
.review-text h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-1); margin-bottom: 4px; }
.review-text p { font-size: 12.5px; color: rgba(255,255,255,.5); line-height: 1.62; max-width: 330px; margin-bottom: 8px; }
@keyframes antigrav { from { transform: translateY(0); } to { transform: translateY(-10px); } }
.btn-review { display: inline-flex; align-items: center; gap: 7px; background: var(--bg-4); color: var(--text-1); border: 1px solid var(--border-2); padding: 11px 22px; border-radius: 10px; font-family: var(--font-body); font-weight: 600; font-size: 13px; cursor: pointer; text-decoration: none; transition: background .18s, color .18s, transform .18s; white-space: nowrap; }
.btn-review:hover { background: var(--accent); color: #000; transform: translateY(-2px); }

/* ── FOOTER ── */
footer { text-align: center; padding: 46px 24px; margin-top: 76px; color: rgba(255,255,255,.3); font-size: 13px; border-top: 1px solid var(--border); position: relative; z-index: 1; }
footer a { color: rgba(255,255,255,.3); text-decoration: none; transition: color .18s; }
footer a:hover { color: white; }
.footer-logo { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: rgba(255,255,255,.6); display: block; margin-bottom: 17px; letter-spacing: -.04em; }
.footer-logo span { color: #ffffff; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 20px; margin-bottom: 15px; }
.footer-social { display: flex; justify-content: center; gap: 10px; margin-bottom: 17px; }
.footer-social-link { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,.03); border: 1px solid var(--border); color: rgba(255,255,255,.3); transition: background .18s, border-color .18s, color .18s, transform .22s; }
.footer-social-link:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); color: #ffffff; transform: translateY(-3px); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .flick-inner { grid-template-columns: 1fr; }
  .flick-right { display: none; }
  .flick-content { padding: 44px 32px; }
  .ftab-wrap { grid-template-columns: 1fr; gap: 24px; }
  .ftab-left { position: static; }
  .ftab-nav { flex-direction: row; flex-wrap: wrap; gap: 5px; }
  .ftab-btn { border: 1px solid var(--border); border-radius: 9px; flex: 1; min-width: 110px; }
  .ftab-btn-bar { top: auto; bottom: 0; left: 0; right: 0; width: auto; height: 2px; border-radius: 0 0 2px 2px; transform: scaleX(.3); }
  .ftab-btn.active .ftab-btn-bar { transform: scaleX(1); }
  .ftab-btn-text em, .ftab-chevron { display: none; }
  .premium-card { grid-template-columns: 1fr; }
  .premium-right { min-height: 180px; border-left: none; border-top: 1px solid var(--border); }
  .wil-row { grid-template-columns: 1fr; }
  .wil-row.reverse { direction: ltr; }
  .wil-row-copy { border-right: none; border-bottom: 1px solid var(--border); }
  .wil-row.reverse .wil-row-copy { border-left: none; border-bottom: 1px solid var(--border); }
  .wil-row-visual { min-height: 240px; }
  .hero-stats { flex-direction: column; width: 100%; max-width: 340px; }
  .hero-stat-divider { width: 100%; height: 1px; }
  .hero-stat { padding: 16px 32px; flex-direction: row; justify-content: space-between; width: 100%; }
}
@media (max-width: 860px) {
  .showcase-inner { grid-template-columns: 1fr; padding: 0 24px; gap: 32px; }
  .nav-links { display: none; }
  .ftab-section, .showcase-section { padding: 56px 0; }
  .ftab-header, .ftab-wrap { padding: 0 20px; }
  .wil-section { padding: 0 20px; margin-top: 62px; }
  .wil-row-copy { padding: 34px 24px; }
  .flick-section { padding: 0 20px; }
}
@media (max-width: 700px) {
  .review-card { padding: 20px 16px; flex-direction: column; align-items: flex-start; }
  .premium-btns { flex-direction: column; }
}
@media (max-width: 600px) {
  nav { padding: 0 16px; }
  .card { min-width: 264px; flex: 0 0 264px; }
  .card-img-top { height: 180px; }
  .premium-section, .review-cta { padding-left: 16px; padding-right: 16px; }
  .page-top { padding: 90px 20px 52px; }
  .ftab-card-body { padding: 14px 16px 18px; }
  .slider-outer { padding: 0 16px; }
  .hero-obj-1, .hero-obj-3, .hero-obj-5 { display: none; }
}