/* ============================================
   Reset & Base
   ============================================ */

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

:root {
  --bg:       #111111;
  --black:    #111111;
  --white:    #ffffff;
  --gray-400: #666666;
  --gray-200: #2a2a2a;
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h:    72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  cursor: none;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }



/* ============================================
   Background video
   ============================================ */

.bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100vw;
  min-height: 100vh;
  min-height: 100dvh;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

/* ============================================
   Cursor
   ============================================ */

.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease),
              background .3s, opacity .2s;
  will-change: left, top;
}

body.cursor-expand .cursor {
  width: 52px;
  height: 52px;
  background: rgba(12,12,12,0.1);
}

body.cursor-dark .cursor { background: #fff; }


/* ============================================
   Nav
   ============================================ */

.nav {
  position: fixed;
  inset: 16px auto auto 50%;
  transform: translateX(-50%);
  height: 52px;
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--black);
  color: #fff;
  border-radius: 99px;
  padding: 6px 6px 6px 6px;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  white-space: nowrap;
  opacity: 0;
  animation: fadeDown .6s var(--ease) .2s forwards;
}

.nav-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  flex-shrink: 0;
  overflow: hidden;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  padding: 0 20px 0 14px;
}

.nav-status-icon { font-size: 14px; }

.nav-contact {
  background: #fff;
  color: var(--black);
  font-size: 13px;
  font-weight: 500;
  padding: 0 20px;
  height: 40px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}

.nav-contact:hover {
  background: #e8e6e1;
}


/* ============================================
   Hero
   ============================================ */

/* Hero background motion */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Gradient orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: orbFadeIn 2s var(--ease) forwards;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,180,120,0.22) 0%, transparent 70%);
  top: -200px; left: -100px;
  animation-delay: 0.3s;
  animation: orbFadeIn 2s var(--ease) 0.3s forwards, drift1 18s ease-in-out 2s infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(120,160,255,0.18) 0%, transparent 70%);
  top: 10%; right: -80px;
  animation: orbFadeIn 2s var(--ease) 0.6s forwards, drift2 22s ease-in-out 2s infinite;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(180,140,255,0.14) 0%, transparent 70%);
  bottom: 0; left: 30%;
  animation: orbFadeIn 2s var(--ease) 0.9s forwards, drift3 26s ease-in-out 2s infinite;
}
.orb-4 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(100,220,160,0.12) 0%, transparent 70%);
  bottom: 20%; right: 20%;
  animation: orbFadeIn 2s var(--ease) 1.1s forwards, drift4 20s ease-in-out 2s infinite;
}

/* Floating geometric shapes */
.float-shape {
  position: absolute;
  opacity: 0;
  animation: shapeIn 1.2s var(--ease) 1.4s forwards;
}

.fs-circle-lg {
  width: 120px; height: 120px;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 50%;
  top: 18%; right: 14%;
  animation: shapeIn 1.2s var(--ease) 1.4s forwards, floatA 14s ease-in-out 2.6s infinite;
}

.fs-circle-sm {
  width: 48px; height: 48px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50%;
  top: 62%; left: 8%;
  animation: shapeIn 1.2s var(--ease) 1.7s forwards, floatB 11s ease-in-out 2.9s infinite;
}

.fs-rect-1 {
  width: 80px; height: 52px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  top: 30%; right: 28%;
  animation: shapeIn 1.2s var(--ease) 1.9s forwards, floatC 16s ease-in-out 3.1s infinite;
}

.fs-rect-2 {
  width: 140px; height: 90px;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  bottom: 22%; left: 18%;
  animation: shapeIn 1.2s var(--ease) 2.1s forwards, floatA 19s ease-in-out 3.3s infinite;
}

.fs-cross {
  width: 20px; height: 20px;
  top: 50%; right: 10%;
  animation: shapeIn 1.2s var(--ease) 2.3s forwards, floatB 13s ease-in-out 3.5s infinite;
}
.fs-cross::before,
.fs-cross::after {
  content: '';
  position: absolute;
  background: rgba(0,0,0,0.12);
  border-radius: 1px;
}
.fs-cross::before { width: 100%; height: 1px; top: 50%; left: 0; }
.fs-cross::after  { width: 1px; height: 100%; left: 50%; top: 0; }

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

/* Keyframes */
@keyframes orbFadeIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1);    }
}

@keyframes shapeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes drift1 {
  0%,100% { transform: translate(0, 0)      scale(1);    }
  33%      { transform: translate(60px,-40px) scale(1.05); }
  66%      { transform: translate(-30px,50px) scale(0.97); }
}
@keyframes drift2 {
  0%,100% { transform: translate(0, 0)       scale(1);    }
  40%      { transform: translate(-70px,30px) scale(1.06); }
  70%      { transform: translate(40px,-50px) scale(0.95); }
}
@keyframes drift3 {
  0%,100% { transform: translate(0, 0)       scale(1);    }
  30%      { transform: translate(50px,-60px) scale(1.04); }
  65%      { transform: translate(-40px,30px) scale(0.98); }
}
@keyframes drift4 {
  0%,100% { transform: translate(0, 0)       scale(1);    }
  45%      { transform: translate(-50px,-30px) scale(1.05); }
  75%      { transform: translate(30px, 40px)  scale(0.96); }
}

@keyframes floatA {
  0%,100% { transform: translateY(0)     rotate(0deg);   }
  50%      { transform: translateY(-18px) rotate(8deg);   }
}
@keyframes floatB {
  0%,100% { transform: translateY(0)    rotate(0deg);    }
  50%      { transform: translateY(14px) rotate(-10deg);  }
}
@keyframes floatC {
  0%,100% { transform: translateY(0)    rotate(0deg);    }
  40%      { transform: translateY(-12px) rotate(5deg);  }
  80%      { transform: translateY(8px)   rotate(-4deg); }
}

.hero {
  position: relative;
  z-index: 1;
  padding: 48px 48px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-scroll-hint {
  position: absolute;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .2s forwards;
}

.hero-title {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -.04em;
  margin-bottom: 6px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .35s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gray-400);
}

.hero-sub {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -.04em;
  color: #888888;
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .5s forwards;
}

.hero-desc {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -.01em;
  color: #888888;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .65s forwards;
}

.hero-links {
  display: flex;
  gap: 10px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .8s forwards;
}

.hero-links a {
  font-family: 'Figtree', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 4px 16px rgba(0,0,0,0.2);
  transition: background .2s, color .2s, box-shadow .2s;
}

.hero-links a:hover {
  background: rgba(255,255,255,0.16);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 6px 20px rgba(0,0,0,0.3);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--black);
  padding-bottom: 4px;
  transition: gap .3s var(--ease);
  opacity: 0;
  animation: fadeUp .8s var(--ease) .65s forwards;
}
.hero-cta:hover { gap: 14px; }

.hero-scroll-hint {
  position: absolute;
  bottom: 48px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.2s forwards;
}
.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-400);
  writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gray-400);
  animation: scrollLine 2s var(--ease) 1.5s infinite;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollLine {
  0%   { top: -100%; }
  50%  { top: 0%;    }
  100% { top: 100%;  }
}

/* ============================================
   Grid
   ============================================ */

.grid {
  position: relative;
  z-index: 1;
  padding: 20px 20px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 12px;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 0;
  border-radius: 12px;
}

/* Liquid glass overlay */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.13) 0%,
      rgba(255,255,255,0.04) 25%,
      transparent 55%,
      rgba(255,255,255,0.02) 100%
    );
  pointer-events: none;
  z-index: 10;
  transition: opacity .5s var(--ease);
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 rgba(255,255,255,0.04),
    inset 1px 0 0 rgba(255,255,255,0.08),
    inset -1px 0 0 rgba(255,255,255,0.08),
    0 8px 32px rgba(0,0,0,0.25);
  pointer-events: none;
  z-index: 11;
}

.card:hover::before {
  opacity: 1.3;
}

/* Card base */
.card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  opacity: 0.85;
  padding: 10px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), opacity .5s var(--ease);
}

.card:hover {
  opacity: 1;
  transform: scale(1.012);
  box-shadow:
    0 24px 60px rgba(0,0,0,.35),
    0 0 0 1px rgba(255,255,255,0.15);
}

/* Hero tile */
.card--hero {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 48px 150px;
  min-height: 340px;
  pointer-events: none;
}

.card--hero:hover {
  transform: none;
  box-shadow: none;
}

.hero-tile-text {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(42px, 6.5vw, 96px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.03em;
  text-align: center;
  color: var(--black);
}

/* Color variants */
.card--dark   { background: rgba(22,22,22,0.55);  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.card--warm   { background: rgba(24,22,20,0.55);  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.card--cream  { background: rgba(22,22,18,0.55);  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.card--light  { background: rgba(24,24,24,0.55);  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.card--slate  { background: rgba(18,20,22,0.55);  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }

/* Height variants */
.card--tall   { min-height: 560px; }
.card--xtall  { min-height: 680px; }
.card--med    { min-height: 480px; }
.card--short  { min-height: 280px; }

/* Full-width card */
.card--wide {
  grid-column: 1 / -1;
}


/* ============================================
   Phone frame (shared)
   ============================================ */

.phone-frame {
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  width: min(220px, 55%);
  background: #1a1a1a;
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 40px 80px rgba(0,0,0,.5);
  transition: transform .6s var(--ease);
}

.phone-frame--light {
  background: #2a2a2a;
}

.card:hover .phone-frame {
  transform: translateX(-50%) translateY(-12px);
}

.phone-notch {
  width: 80px;
  height: 24px;
  background: #111;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 2;
}

.phone-frame--light .phone-notch { background: #1a1a1a; }

.phone-screen {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  padding: 12px;
  min-height: 340px;
}

.phone-screen--light {
  background: #fafafa;
}


/* ============================================
   Card 1 — Checkout
   ============================================ */

.mock-checkout {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
}

.co-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.co-back, .co-x {
  width: 22px; height: 22px;
  background: #f0f0f0;
  border-radius: 50%;
}
.co-title {
  width: 55%; height: 10px;
  background: #e8e8e8; border-radius: 5px;
}

.co-section-label {
  width: 40%; height: 8px;
  background: #e8e8e8; border-radius: 4px;
  margin-bottom: 14px;
}

.co-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}
.co-avatar {
  width: 32px; height: 32px;
  background: #ddd; border-radius: 50%;
  flex-shrink: 0;
}
.co-avatar--2 { background: #c8c8c8; }

.co-row-info { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.co-row-name { height: 8px; background: #e0e0e0; border-radius: 4px; width: 80%; }
.co-row-sub  { height: 7px; background: #ebebeb; border-radius: 4px; width: 55%; }

.co-row-price { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.co-price-top { width: 28px; height: 8px; background: #222; border-radius: 3px; }
.co-price-bot { width: 20px; height: 7px; background: #e0e0e0; border-radius: 3px; }

.co-tip-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 12px;
  padding-left: 41px;
}
.co-tip-label { width: 25%; height: 7px; background: #ebebeb; border-radius: 3px; }
.co-tip-chips { display: flex; gap: 5px; }
.co-chip {
  flex: 1; height: 22px;
  background: #f4f4f4;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
}
.co-chip--sel {
  background: #222;
  border-color: #222;
}

.co-divider { height: 1px; background: #f0f0f0; margin: 4px 0 14px; }

.co-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.co-total-label { width: 30%; height: 9px; background: #e0e0e0; border-radius: 4px; }
.co-total-val   { width: 20%; height: 11px; background: #222; border-radius: 4px; }

.co-book-btn {
  height: 40px;
  background: #3478f6;
  border-radius: 12px;
  margin-bottom: 10px;
}

.co-home-bar {
  width: 40%; height: 4px;
  background: #222; border-radius: 99px;
  margin: 0 auto;
}


/* ============================================
   Card 2 — Social
   ============================================ */

.mock-social {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.social-bg-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #f0905a, #e8703a);
  border-radius: 50%;
  top: -40px;
  right: -40px;
  opacity: .7;
}

.soc-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.soc-icon  { width: 20px; height: 14px; background: #e0e0e0; border-radius: 3px; }
.soc-logo  { width: 40%; height: 10px; background: #ddd; border-radius: 5px; }
.soc-badge { width: 20px; height: 20px; background: #3478f6; border-radius: 50%; }

.soc-stories {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.soc-story { display: flex; flex-direction: column; align-items: center; gap: 5px; }

.soc-story-ring {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #e8e8e8;
  border: 2px solid transparent;
}
.soc-story-ring--active {
  border-color: #f0905a;
  background: #ddd;
}
.soc-story-ring--add {
  border: 2px dashed #ccc;
  background: #f4f4f4;
}

.soc-story-label { width: 32px; height: 6px; background: #e8e8e8; border-radius: 3px; }

.soc-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 12px;
}
.soc-tab { flex: 1; height: 28px; }
.soc-tab--active { border-bottom: 2px solid #222; }

.soc-people {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.soc-person {
  aspect-ratio: 1;
  background: #e8e8e8;
  border-radius: 50%;
  width: 48px;
  height: 48px;
}


/* ============================================
   Card 3 — Media
   ============================================ */

.mock-media {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.med-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding: 0 2px;
}
.med-time  { width: 24px; height: 7px; background: rgba(255,255,255,.15); border-radius: 3px; }
.med-icons { width: 44px; height: 7px; background: rgba(255,255,255,.1);  border-radius: 3px; }

.med-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.med-x { width: 20px; height: 20px; background: rgba(255,255,255,.12); border-radius: 50%; }
.med-actions { display: flex; gap: 8px; }
.med-action-icon {
  width: 20px; height: 20px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
}

.med-image {
  width: 100%;
  flex: 1;
  min-height: 200px;
  background: linear-gradient(160deg, #3a3a3a 0%, #222 50%, #1a1a1a 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.phone-screen .med-image {
  background: linear-gradient(160deg, #555 0%, #333 40%, #222 100%);
  border-radius: 8px;
}


/* ============================================
   Card 4 — Insight / Text
   ============================================ */

.mock-insight {
  position: absolute;
  inset: 0;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
}

.insight-eyebrow {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 400;
}

.insight-title {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #e8e0cc;
}

.insight-tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.insight-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  background: rgba(0,0,0,.07);
  color: #444;
  padding: 5px 12px;
  border-radius: 99px;
}

.insight-bar {
  width: 48px;
  height: 2px;
  background: #b8a882;
  border-radius: 1px;
  margin-top: 4px;
}


/* ============================================
   Card 5 — Design System (wide)
   ============================================ */

.mock-ds {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 48px;
  gap: 24px;
}

.ds-shelf {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ds-component {
  background: #fff;
  border-radius: 12px;
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,.08), 0 0 0 1px rgba(0,0,0,.04);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s;
}

.card:hover .ds-component:nth-child(odd)  { transform: translateY(-3px); }
.card:hover .ds-component:nth-child(even) { transform: translateY(2px);  }

.ds-component--btn-solid {
  background: #0c0c0c;
  color: #fff;
}

.ds-component--btn-outline {
  border: 1.5px solid #0c0c0c;
  background: transparent;
}

.ds-component--input {
  width: 200px;
  justify-content: space-between;
  color: #aaa;
  font-weight: 400;
  border: 1.5px solid #e0e0e0;
}
.ds-input-icon {
  width: 16px; height: 16px;
  background: #e8e8e8; border-radius: 50%;
}

.ds-component--toggle { gap: 10px; }
.ds-toggle-track {
  width: 40px; height: 24px;
  background: #3ecf6e;
  border-radius: 99px;
  position: relative;
}
.ds-toggle-thumb {
  position: absolute;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  top: 3px; right: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.ds-component--chip {
  background: #0c0c0c;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  gap: 6px;
}
.ds-chip--ghost {
  background: transparent;
  color: #0c0c0c;
  border: 1.5px solid #d0d0d0;
}
.ds-chip-dot { width: 6px; height: 6px; background: #3ecf6e; border-radius: 50%; }

.ds-component--avatar-row {
  gap: 4px;
  padding: 0 12px;
}
.ds-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #ddd;
  border: 2px solid #fff;
  margin-left: -6px;
}
.ds-avatar:first-child { margin-left: 0; }
.ds-avatar--2 { background: #c8d0e8; }
.ds-avatar--3 { background: #e8c8c8; }
.ds-avatar-more {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #f0f0f0;
  border: 2px solid #fff;
  margin-left: -6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 600; color: #666;
}

.ds-component--badge {
  background: #fff7e6;
  color: #b07800;
  border: 1px solid #f0d080;
  font-size: 11px;
}

.ds-component--rating {
  background: #fff;
  gap: 4px;
}
.ds-star { color: #f5a623; font-size: 14px; }
.ds-rating-val { font-size: 13px; font-weight: 600; }

.ds-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ds-label-text { font-size: 12px; color: var(--gray-400); letter-spacing: .02em; }
.ds-label-year { font-size: 12px; color: var(--gray-400); }


/* ============================================
   Card 6 — Dashboard
   ============================================ */

.mock-dashboard {
  position: absolute;
  inset: 0;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.dash-title-block { display: flex; flex-direction: column; gap: 8px; }
.dash-title-line { width: 120px; height: 11px; background: rgba(255,255,255,.18); border-radius: 5px; }
.dash-sub-line   { width:  80px; height:  8px; background: rgba(255,255,255,.08); border-radius: 4px; }

.dash-action {
  width: 72px; height: 30px;
  background: rgba(255,255,255,.12);
  border-radius: 8px;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}
.dash-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dash-stat-val {
  height: 20px;
  background: rgba(255,255,255,.25);
  border-radius: 4px;
  width: 65%;
}
.dash-stat-val--accent {
  background: #4e9eff;
}
.dash-stat-lbl { height: 7px; background: rgba(255,255,255,.08); border-radius: 3px; width: 80%; }

.dash-chart {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 120px;
}

.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100%;
  padding-top: 8px;
}

.dash-bar {
  flex: 1;
  height: var(--h);
  background: rgba(255,255,255,.1);
  border-radius: 4px 4px 0 0;
  transition: height .6s var(--ease);
}
.dash-bar--hi { background: #4e9eff; }

.dash-line-chart {
  position: absolute;
  inset: 0;
  pointer-events: none;
}


/* ============================================
   About
   ============================================ */

.about {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 12px 20px;
  border-radius: 20px;
  overflow: hidden;
  background: #1a1a1a;
  min-height: 60vh;
}

.about-photo {
  background: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.about-content {
  padding: 64px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.about-title {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -.02em;
  max-width: 420px;
}

.journey {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 40px 0;
}

.journey-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.journey-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.journey-icon-wrap:hover {
  background: rgba(255,255,255,0.12);
}

.journey-icon-wrap img {
  width: 22px;
  height: 22px;
  opacity: 0.7;
  filter: brightness(0) invert(1);
}

.journey-label {
  font-family: 'Figtree', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.02em;
}

.journey-arrow {
  width: 24px;
  height: 28px;
  opacity: 0.2;
  flex-shrink: 0;
}

.about-bio {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-400);
  line-height: 1.8;
  max-width: 380px;
}

.about-links {
  display: flex;
  gap: 24px;
  padding-top: 4px;
}
.about-links a {
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid #333;
  padding-bottom: 2px;
  transition: border-color .2s;
}
.about-links a:hover { border-color: var(--white); }


/* ============================================
   Contact
   ============================================ */

.contact {
  position: relative;
  z-index: 1;
  margin: 12px 20px;
  border-radius: 20px;
  overflow: hidden;
  background: #1a1a1a;
  color: #fff;
}

.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 72px 52px;
  gap: 16px;
  transition: background .3s;
}
.contact-cta:hover { background: #161616; }

.contact-label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  min-width: 100px;
}

.contact-email {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(24px, 4vw, 60px);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1;
  flex: 1;
  text-align: center;
}

.contact-arrow {
  font-size: clamp(22px, 3vw, 44px);
  color: rgba(255,255,255,.25);
  min-width: 48px;
  text-align: right;
  transition: color .3s, transform .3s var(--ease);
}
.contact-cta:hover .contact-arrow {
  color: #fff;
  transform: translate(6px, -6px);
}


/* ============================================
   Footer
   ============================================ */

.footer {
  display: flex;
  justify-content: space-between;
  padding: 20px 24px 28px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}


/* ============================================
   Animations
   ============================================ */

@keyframes fadeDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0);     }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* Load-in animation for grid cards */
.card {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
}
.card.loaded {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity .65s var(--ease), transform .65s var(--ease),
              box-shadow .5s var(--ease);
}


/* ============================================
   Responsive
   ============================================ */

/* ---- Tablet (≤ 768px) ---- */
@media (max-width: 768px) {
  .hero {
    padding: 40px 24px 20px;
  }

  .grid {
    padding: 12px 12px 12px;
    gap: 10px;
  }

  .card--tall  { min-height: 420px; }
  .card--xtall { min-height: 420px; }
  .card--med   { min-height: 320px; }
  .card--short { min-height: 200px; }

  .phone-frame { width: min(160px, 55%); }

  .about {
    grid-template-columns: 1fr;
    margin: 10px 12px;
  }
  .about-photo { min-height: 220px; }
  .about-content { padding: 36px 28px; }

  .contact { margin: 10px 12px; }
  .contact-cta {
    padding: 48px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .contact-email {
    font-size: clamp(22px, 6vw, 40px);
    text-align: left;
  }
  .contact-arrow { text-align: left; min-width: auto; }

  .mock-ds { padding: 20px 24px; }
  .ds-shelf { gap: 8px; }
  .ds-component--input { width: 140px; }

  .footer { padding: 20px 24px; }

  .nav-status { display: none; }

  body { cursor: auto; }
  .cursor { display: none; }
}

/* ---- Mobile (≤ 560px) — single column ---- */
@media (max-width: 560px) {
  .hero { padding: 32px 16px 16px; }

  .grid {
    grid-template-columns: 1fr;
    padding: 8px;
    gap: 8px;
  }

  .card--tall  { min-height: 280px; }
  .card--xtall { min-height: 260px; height: auto; }
  .card--med   { min-height: 260px; }
  .card--short { min-height: 180px; }
  .card--wide  { min-height: 200px; }

  .card--xtall .card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about {
    margin: 8px;
    border-radius: 16px;
  }
  .about-content { padding: 28px 20px; }
  .about-title { font-size: clamp(18px, 5vw, 26px); }
  .about-bio { font-size: 14px; }

  .contact {
    margin: 8px;
    border-radius: 16px;
  }
  .contact-cta { padding: 36px 20px; }
  .contact-label { font-size: 10px; }
  .contact-email { font-size: clamp(20px, 7vw, 32px); }

  .mock-ds { padding: 16px; }
  .ds-shelf {
    gap: 6px;
    justify-content: flex-start;
  }
  .ds-component { height: 38px; font-size: 12px; padding: 0 12px; }
  .ds-component--input { width: 120px; }
  .ds-component--avatar-row { display: none; }

  .insight-title { font-size: clamp(24px, 7vw, 36px); }
  .mock-insight { padding: 28px 24px; }

  .footer {
    padding: 16px;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    font-size: 11px;
  }
}
