/* shipkaro.dev — V1 Editorial / Calm Brand Hub */

:root {
  --ink: #0E0B14;
  --ink-2: #2A2533;
  --mute: #6B6677;
  --rule: #E8E5EE;
  --paper: #FFFFFF;
  --soft: #FAF8F4;
  --purple: #9B6DFF;
  --purple-deep: #6B4DB8;
  --purple-light: #EDE6FF;
  --purple-soft: #F5F0FF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ============ SCROLL REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 0.08s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* stagger children */
.stagger-children .reveal { transition-delay: calc(var(--i, 0) * 0.08s); }

/* fade-in from left/right */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* scale-in for cards */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 0.1s);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.serif { font-family: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif; font-weight: 400; font-style: normal; font-synthesis: none; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.v1-wrap { max-width: 1180px; margin: 0 auto; padding: 0 56px; }

/* ============ ANNOUNCEMENT BAR ============ */
.v1-announce {
  background: linear-gradient(90deg, var(--purple-deep) 0%, var(--purple) 55%, var(--purple-deep) 100%);
  color: #fff;
  font-size: 13.5px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 1px 0 rgba(14,11,20,0.04);
}
.v1-announce[hidden] { display: none; }
.v1-announce-inner {
  display: flex; align-items: center; gap: 12px;
  min-height: 40px; padding-top: 8px; padding-bottom: 8px;
}
.v1-announce-ico { font-size: 14px; line-height: 1; flex: 0 0 auto; }
.v1-announce-track {
  flex: 1; min-width: 0; position: relative;
  display: grid; grid-template-areas: 'slide'; align-items: center;
}
.v1-announce-slide {
  grid-area: slide; margin: 0;
  line-height: 1.4; color: rgba(255,255,255,0.95);
  opacity: 0; transform: translateY(3px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.v1-announce-slide.is-active {
  opacity: 1; transform: none;
  pointer-events: auto;
}
.v1-announce-slide strong { color: #fff; font-weight: 600; }
.v1-announce-dots {
  display: inline-flex; gap: 6px; flex: 0 0 auto;
  padding: 4px 2px;
}
.v1-announce-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 0; padding: 0; cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.v1-announce-dot:hover { background: rgba(255,255,255,0.75); }
.v1-announce-dot.is-active { background: #fff; transform: scale(1.25); }
.v1-announce-cta {
  color: #fff; font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.7);
  padding: 2px 8px 1px; margin-left: 4px;
  border-radius: 4px;
  white-space: nowrap;
  display: inline-block;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.v1-announce-cta:hover { color: var(--ink); border-bottom-color: transparent; background: #fff; }
.v1-announce-cta .arrow { display: inline-block; transition: transform .15s ease; }
.v1-announce-cta:hover .arrow { transform: translateX(2px); }
/* ============ NAV ============ */
.v1-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.v1-nav.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 20px rgba(14,11,20,0.06);
}
.v1-nav-inner {
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.v1-logo { display: flex; align-items: center; gap: 8px; }
.v1-logo img { height: 32px; width: auto; display: block; }
.v1-nav-links { display: flex; gap: 32px; align-items: center; }
.v1-nav-links a {
  font-size: 14px; color: var(--ink-2); font-weight: 450;
  transition: color .15s;
  position: relative;
}
.v1-nav-links a:hover { color: var(--purple-deep); }
.v1-nav-links a:not(.v1-nav-cta):not(.v1-nav-popover-event)::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--purple);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 1px;
}
.v1-nav-links a:not(.v1-nav-cta):not(.v1-nav-popover-event):hover::after { transform: scaleX(1); }
.v1-nav-links a.v1-nav-cta {
  font-size: 14px; padding: 9px 18px;
  background: var(--ink); color: #fff;
  border: none; border-radius: 999px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background .15s;
}
.v1-nav-links a.v1-nav-cta:hover { background: var(--purple-deep); color: #fff; }

/* Active-registration indicator on nav links */
.v1-nav-dot {
  display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--purple);
  margin-left: 4px;
  box-shadow: 0 0 0 3px rgba(155,109,255,0.22);
  animation: v1-pulse 2s ease-in-out infinite;
  vertical-align: middle;
  position: relative; top: -1px;
}
.v1-nav-links a.has-active { position: relative; }

/* Nav popover (active-event preview on hover) */
.v1-nav-popover-host { position: relative; display: inline-flex; align-items: center; }
.v1-nav-popover {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-4px);
  width: 300px; max-width: calc(100vw - 32px);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
  box-shadow: 0 20px 50px -20px rgba(14,11,20,0.25);
  padding: 14px;
  opacity: 0; visibility: hidden;
  pointer-events: none; /* until shown, so it can't swallow clicks */
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  z-index: 60;
  text-align: left;
}
/* invisible bridge across the 14px gap so the pointer can travel
   from the Events link into the popover without losing :hover */
.v1-nav-popover-host::after {
  content: ''; position: absolute;
  top: 100%; left: 50%; transform: translateX(-50%);
  width: 300px; max-width: calc(100vw - 32px); height: 18px;
  display: none;
}
.v1-nav-popover-host:hover::after,
.v1-nav-popover-host:focus-within::after { display: block; }
.v1-nav-popover::before {
  content: ''; position: absolute;
  top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--paper);
  border-left: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
}
.v1-nav-popover-host:hover .v1-nav-popover,
.v1-nav-popover-host:focus-within .v1-nav-popover {
  opacity: 1; visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.v1-nav-popover-label {
  display: flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--purple-deep); margin-bottom: 10px;
}
.v1-nav-popover-blip {
  width: 6px; height: 6px; border-radius: 50%; background: var(--purple);
  box-shadow: 0 0 0 3px rgba(155,109,255,0.2);
  animation: v1-pulse 2s ease-in-out infinite;
  flex: 0 0 auto;
}
.v1-nav-popover-event { display: block; color: inherit; text-decoration: none; }
.v1-nav-popover-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px; font-weight: 600; line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink); margin-bottom: 4px;
}
.v1-nav-popover-meta {
  font-size: 12px; color: var(--mute); margin-bottom: 12px; line-height: 1.4;
}
.v1-nav-popover-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--purple-deep);
}
.v1-nav-popover-cta .arrow { transition: transform .15s ease; }
.v1-nav-popover-event:hover .v1-nav-popover-cta { color: var(--purple); }
.v1-nav-popover-event:hover .v1-nav-popover-cta .arrow { transform: translateX(2px); }

@media (max-width: 768px) {
  .v1-nav-popover { display: none; }
}

/* ============ HERO ============ */
.v1-hero {
  padding: 96px 0 88px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.v1-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.v1-hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.v1-hero-right iframe {
  width: 100%;
  max-width: 520px;
  height: 400px;
  border-radius: 12px;
}
.v1-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--purple-deep); font-weight: 500;
  background: var(--purple-soft);
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 32px;
}
.v1-eyebrow a { color: inherit; text-decoration: none; }
.v1-eyebrow a:hover { text-decoration: underline; }
.v1-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--purple);
  box-shadow: 0 0 0 3px rgba(155,109,255,0.2);
  animation: v1-pulse 2s ease-in-out infinite;
}
@keyframes v1-pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(155,109,255,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(155,109,255,0.05); }
}
.v1-h1 {
  font-size: 92px; line-height: 0.98; letter-spacing: -0.025em;
  font-weight: 400; max-width: 940px;
  margin-bottom: 28px;
}
.v1-h1 .strike {
  position: relative; display: inline-block;
  color: var(--mute);
  font-style: normal;
}
.v1-h1 .strike::after {
  content: ''; position: absolute; left: -2%; right: -2%;
  top: 56%; height: 4px; background: var(--purple);
  border-radius: 2px;
  transform: rotate(-2deg);
}
.v1-h1 .ink-em {
  background: linear-gradient(180deg, transparent 64%, var(--purple-light) 64%);
  padding: 0 4px;
}
.v1-sub {
  font-size: 19px; color: var(--mute); line-height: 1.55;
  max-width: 580px; margin-bottom: 40px;
}
.v1-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.v1-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--purple); color: #fff;
  padding: 14px 24px; border-radius: 999px; border: none;
  font-size: 15px; font-weight: 500;
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 8px 24px -8px rgba(155,109,255,0.55);
  transition: transform .15s, box-shadow .15s;
}
.v1-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 12px 32px -8px rgba(155,109,255,0.65);
}
.v1-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  padding: 14px 22px; border-radius: 999px;
  border: 1px solid var(--rule);
  font-size: 15px; font-weight: 500;
  transition: all .25s cubic-bezier(0.16, 1, 0.3, 1);
}
.v1-btn-ghost:hover {
  border-color: var(--purple);
  background: var(--purple-soft);
  color: var(--purple-deep);
  transform: translateY(-1px);
}
.v1-hero-meta {
  display: flex; align-items: center; gap: 12px;
  margin-top: 56px;
  font-size: 13px; color: var(--mute);
}
.v1-avatars { display: flex; align-items: center; }
.v1-avatars img,
.v1-avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  object-fit: cover;
}
.v1-avatars img:first-child,
.v1-avatars span:first-child { margin-left: 0; }
.v1-avatars span {
  background: var(--purple-light);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--purple-deep);
}

/* ============ STATS STRIP ============ */
.v1-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--rule);
}
.v1-stat {
  padding: 40px 32px;
  border-right: 1px solid var(--rule);
  transition: background 0.3s ease;
}
.v1-stat:hover { background: var(--purple-soft); }
.v1-stat:last-child { border-right: none; }
.v1-stat-n {
  font-size: 48px; line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--ink);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.v1-stat:hover .v1-stat-n { transform: scale(1.08); }
.v1-stat-n em { color: var(--purple); font-style: normal; }
.v1-stat-l {
  font-size: 13px; color: var(--mute); letter-spacing: 0.01em;
}

/* ============ SECTION HEADER ============ */
.v1-sec-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 48px; gap: 32px;
}
.v1-sec-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.05em;
  color: var(--purple-deep); text-transform: uppercase;
  margin-bottom: 14px;
}
.v1-sec-title {
  font-size: 56px; line-height: 1.02; letter-spacing: -0.02em;
  max-width: 640px;
}
.v1-sec-aside {
  font-size: 14px; color: var(--mute); max-width: 280px; line-height: 1.6;
  padding-bottom: 8px;
}

/* Interactive intro — sentences sync with door hover */
.v1-doors-head { display: block; }
.v1-doors-para {
  font-size: 42px; line-height: 1.22; letter-spacing: -0.015em;
  max-width: 960px; margin-top: 16px; color: var(--ink);
}
.v1-dp-line { transition: opacity .4s ease; }
.v1-doors-para.has-focus .v1-dp-line { opacity: 0.22; }
.v1-doors-para.has-focus .v1-dp-line.is-focus { opacity: 1; }

/* ============ DOOR CARDS (V3-style equal columns) ============ */
.v1-pillars { padding: 100px 0; border-bottom: 1px solid var(--rule); }
.v1-doors {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.v1-door {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 24px;
  padding: 32px;
  min-height: 540px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.v1-door:hover,
.v1-door.is-hl {
  transform: translateY(-4px);
  border-color: var(--purple);
  box-shadow: 0 20px 50px -20px rgba(107,77,184,0.35);
}

/* Card variants */
.v1-door.learn {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper) 60%, var(--purple-soft) 100%);
}
.v1-door.build {
  background: linear-gradient(180deg, var(--ink), #1a1424 100%);
  color: #fff;
  border-color: #1a1424;
}
.v1-door.connect {
  background: linear-gradient(180deg, var(--purple-light) 0%, var(--paper) 60%);
}

/* Door tag */
.v1-door-tag {
  display: flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--purple-deep);
  margin-bottom: 20px;
}
.v1-door.build .v1-door-tag { color: var(--purple); }
.v1-door-num {
  background: var(--ink); color: #fff;
  width: 20px; height: 20px; border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}
.v1-door.build .v1-door-num { background: var(--purple); }
.v1-door-status {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; padding: 3px 8px; border-radius: 999px;
  letter-spacing: 0.04em;
}
.v1-door-status.live { background: #DDF4E5; color: #17612F; }
.v1-door-status.soon { background: rgba(155,109,255,0.18); color: var(--purple-deep); border: 1px solid rgba(155,109,255,0.3); }
.v1-door-status.open { background: #FFF6DC; color: #6B4E00; }
.v1-door.build .v1-door-status.soon { color: #C9B5FF; border-color: rgba(155,109,255,0.3); }

/* Door content */
.v1-door-h {
  font-size: 38px; line-height: 1; letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.v1-door-mono {
  font-size: 11px; color: var(--mute);
  margin-bottom: 18px; letter-spacing: 0.03em;
}
.v1-door.build .v1-door-mono { color: rgba(255,255,255,0.5); }
.v1-door-desc {
  font-size: 15px; color: var(--mute); line-height: 1.55;
  margin-bottom: 24px;
}
.v1-door.build .v1-door-desc { color: rgba(255,255,255,0.65); }

/* Feature rows */
.v1-door-feats {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 1px;
  background: var(--rule); border-radius: 12px; overflow: hidden;
}
.v1-door.build .v1-door-feats { background: rgba(255,255,255,0.06); }
.v1-door.connect .v1-door-feats { background: var(--rule); }
.v1-door-feat {
  background: var(--paper); padding: 11px 14px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--ink); letter-spacing: 0.02em;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.v1-door-feat span:first-child { opacity: 0.5; }
.v1-door.build .v1-door-feat { background: rgba(255,255,255,0.03); color: rgba(255,255,255,0.85); }
.v1-door.connect .v1-door-feat { background: rgba(255,255,255,0.7); }

/* Door CTA */
.v1-door-cta {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--ink); color: #fff;
  padding: 14px 18px; border-radius: 12px;
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  transition: transform .12s, background .15s;
}
.v1-door.build .v1-door-cta { background: var(--purple); }
.v1-door-cta:hover { transform: translateY(-1px); }
.v1-door.build .v1-door-cta:hover { background: var(--purple-deep); }
.v1-door-cta .arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--purple); border-radius: 5px;
  font-size: 12px;
  transition: transform .15s;
}
.v1-door.build .v1-door-cta .arrow { background: rgba(255,255,255,0.18); }
.v1-door:hover .v1-door-cta .arrow,
.v1-door.is-hl .v1-door-cta .arrow { transform: translateX(3px); }

/* ============ WALL OF SHIPPED (proof) ============ */
.v1-proof {
  padding: 100px 0; border-bottom: 1px solid var(--rule);
  background: var(--soft);
}
.v1-proof-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 56px; gap: 32px; flex-wrap: wrap;
}
.v1-proof-h {
  font-family: 'Instrument Serif', serif;
  font-size: 56px; line-height: 1.02; letter-spacing: -0.02em;
  font-weight: 400;
  max-width: 640px;
}
.v1-proof-h em { font-style: italic; color: var(--purple-deep); }
.v1-proof-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--mute); letter-spacing: 0.04em;
  padding-bottom: 10px;
}

/* Masonry layout for LinkedIn post screenshots (loaded from posts.json) */
.posts-grid {
  column-count: 3;
  column-gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.post-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--paper);
  break-inside: avoid;
  margin-bottom: 1.5rem;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.post-card:hover {
  transform: translateY(-3px);
  border-color: var(--purple-light);
  box-shadow: 0 12px 32px -16px rgba(107,77,184,0.18);
}
.post-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Scrolling strip of real shipped products (from /shipped/products.json) */
.v1-ship-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 6px 0 2px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.v1-ship-track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  padding: 10px 8px;
  animation: v1-ship-scroll 90s linear infinite;
  will-change: transform;
}
.v1-ship-marquee:hover .v1-ship-track { animation-play-state: paused; }
@keyframes v1-ship-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* Each marquee item wraps one shipped-page card at a fixed width */
.v1-ship-item { width: 340px; flex-shrink: 0; display: flex; white-space: normal; }
.v1-ship-item .card { width: 100%; }
.v1-ship-item .card:hover { transform: translateY(-3px); }

/* Shipped-page product card — ported so the homepage strip and /shipped match exactly */
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(14,11,20,.06), 0 6px 18px rgba(14,11,20,.04);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: fadeSlideUp .4s ease both;
  min-height: 220px;
  position: relative;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(155,109,255,.12), 0 14px 34px rgba(14,11,20,.08); }
.card-top { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 16px; min-width: 0; }
.card-icon { width: 56px; height: 56px; border-radius: 24px; flex-shrink: 0; object-fit: cover; background: var(--soft); border: 1px solid var(--rule); }
.card-header { flex: 1; min-width: 0; }
.card-title { font: 600 18px 'Inter', sans-serif; color: var(--ink-2); margin: 0 0 8px; line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-builder { font: 400 13px 'Inter', sans-serif; color: var(--mute); margin: 0; }
.card-status { position: absolute; top: 24px; right: 24px; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; padding: 6px 12px; border-radius: 999px; white-space: nowrap; background: #fff; }
.card-status.live { border: 1px solid #16a34a; color: #166534; }
.card-status.testing { border: 1px solid #f59e0b; color: #92400e; }
.card-status.coming-soon { border: 1px solid #d1d5db; color: #6b7280; opacity: .75; }
.card-type { display: inline-flex; align-items: center; font: 500 11px 'Inter', sans-serif; color: var(--purple-deep); border: 1px solid var(--purple-light); background: var(--purple-soft); border-radius: 999px; padding: 8px 12px; margin-bottom: 18px; width: fit-content; }
.card-desc { font: 400 14px/1.75 'Inter', sans-serif; color: var(--ink); margin: 0 0 18px; flex: 1; }
.card-actions { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }
.card-btn { display: inline-flex; align-items: center; gap: 16px; width: 100%; padding: 16px 20px; border-radius: 18px; border: 1px solid var(--rule); background: var(--paper); color: var(--ink); text-decoration: none; transition: all .2s ease; font: 500 13px 'Inter', sans-serif; box-shadow: 0 2px 8px rgba(14,11,20,.08); }
.card-btn:hover:not(.card-btn-disabled) { background: var(--purple); border-color: var(--purple); color: #fff; box-shadow: 0 6px 16px rgba(155,109,255,.25); transform: translateY(-1px); }
.card-btn .btn-text { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; line-height: 1.2; flex: 1; }
.card-btn .btn-sub { font: 500 9px 'Inter', sans-serif; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); }
.card-btn .btn-main { font: 600 15px 'Inter', sans-serif; color: var(--ink-2); }
.card-btn:hover:not(.card-btn-disabled) .btn-sub { color: rgba(255,255,255,.7); }
.card-btn:hover:not(.card-btn-disabled) .btn-main { color: #fff; }
.card-btn .btn-icon { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--ink-2); }
.card-btn-disabled { opacity: .5; pointer-events: none; background: var(--soft); border-color: var(--rule); }
.v1-ship-cta { display: flex; justify-content: center; margin-top: 40px; }
.v1-ship-viewall {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  background: var(--ink); color: #fff;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  transition: background .15s ease, transform .15s ease;
}
.v1-ship-viewall:hover { background: var(--purple-deep); transform: translateY(-2px); }
.v1-ship-viewall .arrow { transition: transform .15s ease; }
.v1-ship-viewall:hover .arrow { transform: translateX(3px); }
@media (prefers-reduced-motion: reduce) {
  .v1-ship-track { animation: none; }
}

/* ============ FOUNDER ============ */
.v1-founder {
  padding: 100px 0; border-bottom: 1px solid var(--rule);
}
.v1-founder-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: start;
}
.v1-founder-quote {
  font-family: 'Instrument Serif', serif;
  font-size: 36px; line-height: 1.2; letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.v1-founder-quote .accent { color: var(--purple-deep); font-style: italic; }
.v1-founder-by {
  display: flex; align-items: center; gap: 14px;
}
.v1-founder-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, #9B6DFF, #6B4DB8);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 600; font-size: 16px;
  letter-spacing: 0.02em;
}
.v1-founder-photo {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; border: 1px solid var(--rule);
  flex-shrink: 0;
}
.v1-founder-info-name { font-size: 14px; font-weight: 500; }
.v1-founder-info-role { font-size: 13px; color: var(--mute); }
.v1-founder-socials { display: flex; gap: 10px; margin-top: 20px; }
.v1-founder-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--rule); background: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  transition: color .15s ease, border-color .15s ease, transform .15s ease;
}
.v1-founder-socials a:hover { color: var(--purple); border-color: var(--purple); transform: translateY(-2px); }
.v1-founder-socials svg { width: 16px; height: 16px; fill: currentColor; }
.v1-cred-card {
  background: var(--soft);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 28px;
}
.v1-cred-title {
  font-size: 12px; color: var(--mute); font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.v1-cred-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px;
}
.v1-cred-n {
  font-size: 32px; line-height: 1; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 4px;
}
.v1-cred-n em { color: var(--purple); font-style: normal; }
.v1-cred-l { font-size: 12.5px; color: var(--mute); }
.v1-gde {
  margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--rule);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--purple-deep); font-weight: 500;
}
.v1-gde-badge {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--purple); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}
.v1-gde a { color: inherit; text-decoration: none; }
.v1-gde a:hover { text-decoration: underline; }

/* ============ COMMUNITY ============ */
.v1-comm { padding: 100px 0; border-bottom: 1px solid var(--rule); }
.v1-comm-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.v1-comm-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 24px;
  display: flex; flex-direction: column;
  min-height: 200px;
  transition: transform .2s, border-color .2s;
}
.v1-comm-card:hover { transform: translateY(-3px); border-color: var(--purple); }
.v1-comm-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--purple-soft); color: var(--purple-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 18px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.v1-comm-card:hover .v1-comm-icon { transform: scale(1.15) rotate(-5deg); }
.v1-comm-t { font-size: 15px; font-weight: 500; margin-bottom: 6px; }
.v1-comm-d { font-size: 13px; color: var(--mute); line-height: 1.55; }
.v1-comm-meta {
  margin-top: auto; padding-top: 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--purple-deep); letter-spacing: 0.04em;
}

/* ============ NEWSLETTER ============ */
.v1-news {
  padding: 80px 0; border-bottom: 1px solid var(--rule);
  background: var(--soft);
}
.v1-news-inner {
  max-width: 720px; margin: 0 auto;
  text-align: center; padding: 0 56px;
}
.v1-news-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--purple-deep); margin-bottom: 18px;
}
.v1-news h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 48px; line-height: 1.05; letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.v1-news p { font-size: 16px; color: var(--mute); margin-bottom: 28px; }
.v1-news-form {
  display: flex; gap: 8px; max-width: 460px; margin: 0 auto;
  background: #fff; border: 1px solid var(--rule); border-radius: 999px;
  padding: 6px 6px 6px 20px;
}
.v1-news-form input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: inherit; font-size: 15px; color: var(--ink);
  min-width: 0;
}
.v1-news-form input::placeholder { color: var(--mute); }
.v1-news-form button {
  background: var(--ink); color: #fff;
  border: none; padding: 11px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  white-space: nowrap;
  transition: background .15s;
}
.v1-news-form button:hover { background: var(--purple-deep); }
.v1-news-tags {
  display: flex; gap: 16px; justify-content: center; margin-top: 18px;
  font-size: 12px; color: var(--mute);
}
.v1-news-tags span { display: inline-flex; align-items: center; gap: 6px; }

/* ============ FINAL CTA — DARK ============ */
.v1-final {
  background: #0E0B14;
  color: #fff;
  padding: 120px 0;
  position: relative; overflow: hidden;
}
.v1-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(155,109,255,0.25), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(107,77,184,0.15), transparent 50%);
}
.v1-final-inner { position: relative; text-align: center; }
.v1-final-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 24px;
}
.v1-final h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 80px; line-height: 1; letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.v1-final h2 em { color: var(--purple); font-style: italic; }
.v1-final p {
  font-size: 17px; color: rgba(255,255,255,0.65); margin-bottom: 36px;
  max-width: 520px; margin-left: auto; margin-right: auto;
}
.v1-final-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--purple); color: #fff;
  padding: 16px 32px; border-radius: 999px; border: none;
  font-size: 16px; font-weight: 500;
  box-shadow: 0 10px 32px -8px rgba(155,109,255,0.6);
  transition: transform .15s, box-shadow .15s;
}
.v1-final-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -8px rgba(155,109,255,0.7);
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 10px 32px -8px rgba(155,109,255,0.6); }
  50% { box-shadow: 0 10px 48px -4px rgba(155,109,255,0.8); }
}
.v1-final-btn { animation: glow-pulse 3s ease-in-out infinite; }
.v1-final-btn:hover { animation: none; }

/* ============ COHORT 2 BANNER ============ */
.v1-cohort { background: var(--paper); padding: 48px 0; }
.v1-cohort-inner { display: flex; justify-content: center; }
.v1-cohort-card {
  display: block; max-width: 760px; width: 100%;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: 0 20px 50px -24px rgba(14,11,20,0.4);
  animation: cohort-bounce 3.2s ease-in-out infinite;
  will-change: transform;
}
.v1-cohort-card:hover { animation-play-state: paused; }
.v1-cohort-card img { display: block; width: 100%; height: auto; }
@keyframes cohort-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes btn-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.v1-btn-bounce {
  animation: btn-bounce 2.8s ease-in-out infinite;
  will-change: transform;
}
.v1-btn-bounce:hover { animation-play-state: paused; }

/* Cohort 2 CTA tooltip (hover preview) */
.v1-cta-tip-host { position: relative; display: inline-flex; }
.v1-cta-tip {
  position: absolute; bottom: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 280px; max-width: calc(100vw - 32px);
  display: flex; flex-direction: column; gap: 7px;
  background: var(--ink); color: #fff;
  border-radius: 14px; padding: 16px 18px;
  box-shadow: 0 20px 50px -16px rgba(14,11,20,0.5);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  z-index: 60; text-align: left;
}
.v1-cta-tip::after {
  content: ''; position: absolute;
  bottom: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: var(--ink);
}
.v1-cta-tip-host:hover .v1-cta-tip,
.v1-cta-tip-host:focus-within .v1-cta-tip {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.v1-cta-tip-label {
  display: flex; align-items: center; gap: 7px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 3px;
}
.v1-cta-tip-blip {
  width: 6px; height: 6px; border-radius: 50%; background: var(--purple);
  box-shadow: 0 0 0 3px rgba(155,109,255,0.25);
  animation: v1-pulse 2s ease-in-out infinite; flex: 0 0 auto;
}
.v1-cta-tip-row { font-size: 13.5px; color: rgba(255,255,255,0.82); line-height: 1.35; }

/* ============ FOOTER ============ */
.v1-foot {
  background: #0E0B14; color: rgba(255,255,255,0.5);
  padding: 56px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.v1-foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 56px;
}
.v1-foot-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.v1-foot-brand img { height: 22px; width: auto; filter: brightness(0) invert(1); }
.v1-foot-tagline { font-size: 13px; color: rgba(255,255,255,0.5); max-width: 280px; line-height: 1.55; }
.v1-foot-col-h { font-size: 12px; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; font-weight: 500; }
.v1-foot-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 8px; transition: color .15s; }
.v1-foot-col a:hover { color: var(--purple); }
.v1-foot-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
}
.v1-foot-socials { display: flex; gap: 10px; }
.v1-foot-socials a {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; color: rgba(255,255,255,0.5);
  transition: all .15s;
}
.v1-foot-socials a:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.v1-foot-socials a svg { width: 14px; height: 14px; fill: currentColor; }

/* ============ RESPONSIVE — 768px ============ */
@media (max-width: 768px) {
  .v1-wrap { padding: 0 24px; }

  .v1-announce-inner { gap: 8px; }
  .v1-announce-slide { font-size: 12px; }
  .v1-announce-ico { display: none; }

  .v1-nav-inner { flex-direction: column; align-items: center; gap: 12px; height: auto; min-height: 0; padding-top: 12px; padding-bottom: 12px; }
  .v1-nav-links { gap: 10px 16px; flex-wrap: wrap; justify-content: center; align-items: center; max-width: 100%; }
  .v1-nav-links a { font-size: 13px; }
  .v1-nav-links a.v1-nav-cta { font-size: 13px; padding: 9px 16px; }

  .v1-hero { padding: 60px 0 56px; }
  .v1-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .v1-hero-right { justify-content: center; }
  .v1-hero-right iframe { width: 100%; max-width: 480px; height: 360px; }
  .v1-hero-meta { margin-top: 32px; }
  .v1-h1 { font-size: 48px; }
  .v1-sub { font-size: 16px; }

  .v1-stats { grid-template-columns: repeat(2, 1fr); }
  .v1-stat { padding: 28px 20px; }
  .v1-stat:nth-child(2), .v1-stat:nth-child(4) { border-right: none; }
  .v1-stat:nth-child(1), .v1-stat:nth-child(2) { border-bottom: 1px solid var(--rule); }
  .v1-stat-n { font-size: 36px; }

  .v1-sec-head { flex-direction: column; align-items: flex-start; }
  .v1-sec-title { font-size: 36px; }
  .v1-sec-aside { max-width: 100%; }
  .v1-doors-para { font-size: 28px; }

  .v1-doors { grid-template-columns: 1fr; }
  .v1-door { min-height: auto; }
  .v1-door-h { font-size: 32px; }

  .v1-proof-h { font-size: 36px; }
  .posts-grid { column-count: 2; }

  .v1-founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .v1-founder-quote { font-size: 28px; }

  .v1-comm-grid { grid-template-columns: repeat(2, 1fr); }

  .v1-news-inner { padding: 0 24px; }
  .v1-news h2 { font-size: 36px; }

  .v1-final h2 { font-size: 52px; }

  .v1-foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ============ RESPONSIVE — 480px ============ */
@media (max-width: 480px) {
  .v1-wrap { padding: 0 16px; }

  .v1-announce-slide { font-size: 11.5px; line-height: 1.35; }
  .v1-announce-cta { margin-left: 2px; padding: 1px 6px; }
  .v1-announce-dots { display: none; }

  .v1-nav-inner { flex-direction: column; gap: 14px; padding-top: 14px; padding-bottom: 14px; align-items: center; }
  .v1-nav-links { gap: 10px 14px; justify-content: center; width: 100%; }
  .v1-nav-links a { font-size: 13px; }
  .v1-nav-links a.v1-nav-cta { font-size: 13px; padding: 9px 16px; width: 100%; justify-content: center; margin-top: 2px; }

  .v1-hero { padding: 40px 0 36px; }
  .v1-eyebrow { font-size: 10px; }
  .v1-h1 { font-size: 36px; }
  .v1-sub { font-size: 15px; }
  .v1-ctas { flex-direction: column; align-items: stretch; }
  .v1-btn-primary, .v1-btn-ghost { justify-content: center; }
  .v1-cta-tip-host { width: 100%; }
  .v1-cta-tip { display: none; }
  .v1-hero-meta { flex-direction: column; align-items: flex-start; gap: 8px; }

  .v1-stats { grid-template-columns: 1fr 1fr; }
  .v1-stat-n { font-size: 28px; }

  .v1-sec-title { font-size: 28px; }
  .v1-doors-para { font-size: 23px; }

  .v1-door-h { font-size: 28px; }

  .v1-proof-h { font-size: 28px; }
  .posts-grid { column-count: 1; }

  .v1-comm-grid { grid-template-columns: 1fr; }

  .v1-news h2 { font-size: 28px; }
  .v1-news-form { flex-direction: column; border-radius: 16px; padding: 12px; }
  .v1-news-form input { padding: 8px; }
  .v1-news-form button { border-radius: 12px; }

  .v1-final { padding: 80px 0; }
  .v1-final h2 { font-size: 40px; }
  .v1-final p { font-size: 15px; }

  .v1-cohort { padding: 36px 0; }
  .v1-cohort-card { border-radius: 14px; max-width: 520px; }

  .v1-foot-grid { grid-template-columns: 1fr; gap: 24px; }
  .v1-foot-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1; transform: none; transition: none;
  }
  .v1-final-btn { animation: none; }
  .v1-dot { animation: none; }
  .v1-cohort-card { animation: none; }
  .v1-btn-bounce { animation: none; }
}
