/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.pnpm/next@14.2.35_@playwright+test@1.60.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!../../node_modules/.pnpm/next@14.2.35_@playwright+test@1.60.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/app/landing-v2.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* HTMLRadar landing v2 — the v2 design language.
 *
 * Sections kept: hero, pitch, swiper, controls, testimonials, cta.
 * Sections dropped: tour (pinned dashboard), nums (vanity stats), pricing
 * (premature on home — keep /pricing as separate route).
 *
 * All keyframes + transitions are intentionally identical to the
 * reference. The motion vocabulary IS the brand. If you change a
 * duration here, change it everywhere or call out why.
 */

:root {
  --bg: #f4ecde;
  --bg-alt: #ede2ce;
  --bg-deep: #e3d6b9;
  --card: #fbf6e9;
  --ink: #2a1812;
  --ink-2: #5a4438;
  --ink-3: #998976;
  --line: #ddcfb5;
  --line-2: #cdbc9c;
  --brand: #6b1e2c;
  --brand-2: #a23b3b;
  --pop: #ebd9b5;
  --pop-ink: #6b1e2c;
  --good: #1f7a3a;
  /* Match the rest of the site — Newsreader (serif), Geist (sans),
   * JetBrains Mono (mono) — wired in layout.tsx. The Source Serif 4
   * the reference used reads as "of-the-moment AI-startup"; Newsreader
   * is more newspaper, less SaaS template. */
  --serif: var(--font-serif), Georgia, 'Times New Roman', serif;
  --sans: var(--font-sans), 'Geist', system-ui, sans-serif;
  --mono: var(--font-mono), 'JetBrains Mono', ui-monospace, monospace;
}

.v2-root {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: clip;
}
.v2-root *,
.v2-root *::before,
.v2-root *::after {
  box-sizing: border-box;
}
.v2-root ::-moz-selection {
  background: var(--ink);
  color: var(--pop);
}
.v2-root ::selection {
  background: var(--ink);
  color: var(--pop);
}
.v2-root img {
  display: block;
  max-width: 100%;
}

.v2-display {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.v2-em-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
}

/* ============ NAV ============ */
.v2-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 8px 8px 8px 22px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(14, 14, 12, 0.06);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  max-width: calc(100vw - 32px);
  opacity: 0;
  animation: v2-nav-in 0.9s 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes v2-nav-in {
  from {
    opacity: 0;
    transform: translate(-50%, -20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
.v2-nav.hidden {
  transform: translate(-50%, -140%);
}
.v2-nav .logo {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-right: 18px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.v2-nav .logo .ital {
  color: var(--brand);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.v2-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.v2-nav ul a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.v2-nav ul a:hover {
  color: var(--ink);
  background: rgba(14, 14, 12, 0.04);
}
.v2-nav .nav-cta {
  margin-left: 6px;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.15s,
    transform 0.08s;
}
.v2-nav .nav-cta:hover {
  background: #2a2722;
}
.v2-nav .nav-cta:active {
  transform: translateY(0.5px);
}

/* ============ HERO ============ */
.v2-hero {
  position: relative;
  min-height: 100vh;
  padding: 110px 56px 50px;
  overflow: hidden;
  max-width: 1680px;
  margin: 0 auto;
}
.v2-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 200px);
}
.v2-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  z-index: 2;
}
.v2-hero-right {
  position: relative;
  height: min(820px, 84vh);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 980px) {
  .v2-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .v2-hero-right {
    height: 520px;
    margin-top: 24px;
  }
  .v2-hero-left {
    align-items: center;
    text-align: center;
  }
}
.v2-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
  margin-bottom: 36px;
  animation: v2-fade-up 0.9s 0.1s both;
}
.v2-hero .eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 4px rgba(31, 122, 58, 0.18);
  animation: v2-pulse 2s infinite;
}
@keyframes v2-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(31, 122, 58, 0.45);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(31, 122, 58, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(31, 122, 58, 0);
  }
}

.v2-headline {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}
.v2-headline .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  line-height: 1.02;
  white-space: nowrap;
}
.v2-headline .word {
  display: inline-block;
  vertical-align: bottom;
  margin-right: 0.18em;
}
.v2-headline .line > .word:last-child {
  margin-right: 0;
}
.v2-headline .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: v2-rise 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.v2-headline .line:nth-child(1) .word:nth-child(1) > span {
  animation-delay: 0.05s;
}
.v2-headline .line:nth-child(1) .word:nth-child(2) > span {
  animation-delay: 0.15s;
}
.v2-headline .line:nth-child(1) .word:nth-child(3) > span {
  animation-delay: 0.25s;
}
.v2-headline .line:nth-child(2) .word:nth-child(1) > span {
  animation-delay: 0.35s;
}
.v2-headline .line:nth-child(2) .word:nth-child(2) > span {
  animation-delay: 0.45s;
}
.v2-headline .line:nth-child(3) .word:nth-child(1) > span {
  animation-delay: 0.55s;
}
.v2-headline .line:nth-child(3) .word:nth-child(2) > span {
  animation-delay: 0.65s;
}
@keyframes v2-rise {
  to {
    transform: translateY(0);
  }
}
@keyframes v2-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.v2-headline .v2-em-italic {
  position: relative;
  display: inline-block;
  padding: 0 0.06em;
}
.v2-headline .v2-em-italic::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 55%;
  bottom: 0;
  background: var(--pop);
  border-radius: 0.16em;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: v2-hl 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.9s forwards;
}
@keyframes v2-hl {
  to {
    transform: scaleX(1);
  }
}

.v2-hero .lede {
  max-width: 540px;
  margin: 32px 0 0;
  color: var(--ink-2);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
  animation: v2-fade-up 0.9s 0.9s both;
}
.v2-hero .cta-row {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
  animation: v2-fade-up 0.9s 1.05s both;
}
.v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.08s,
    background 0.15s,
    border-color 0.15s;
}
.v2-btn:active {
  transform: translateY(1px);
}
.v2-btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}
.v2-btn-primary {
  background: var(--ink);
  color: #fff;
}
.v2-btn-primary:hover {
  background: #2a2722;
}
.v2-btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border-color: var(--line-2);
  backdrop-filter: blur(6px);
}
.v2-btn-ghost:hover {
  border-color: var(--ink);
  background: #fff;
}

.v2-trust {
  margin: 48px 0 0;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0.7;
  animation: v2-fade-up 1s 1.4s both;
}
.v2-trust .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.v2-trust .logos {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--ink-2);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  flex-wrap: wrap;
}
.v2-trust .logos span.dot-sep {
  opacity: 0.55;
}

/* ============ HERO STAGE — radar + chips + dashboard ============ */
.v2-hero-stage {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1400px;
  animation: v2-fade-up 1.2s 0.5s both;
}

.v2-hero-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 30, 44, 0.16) 0%, rgba(107, 30, 44, 0) 60%);
  z-index: 1;
  filter: blur(24px);
  animation: v2-glow-pulse 6s ease-in-out infinite;
}
@keyframes v2-glow-pulse {
  0%,
  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.v2-radar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(860px, 100%);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}
.v2-radar .ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-2);
  border-radius: 50%;
}
.v2-radar .r2 {
  inset: 14%;
}
.v2-radar .r3 {
  inset: 28%;
}
.v2-radar .r4 {
  inset: 42%;
}
.v2-radar .sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 300deg,
    rgba(107, 30, 44, 0.22) 350deg,
    rgba(107, 30, 44, 0) 360deg
  );
  animation: v2-sweep 6s linear infinite;
}
@keyframes v2-sweep {
  to {
    transform: rotate(360deg);
  }
}
.v2-radar .blip {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(107, 30, 44, 0.16);
}
.v2-radar .b1 {
  top: 32%;
  left: 64%;
  animation: v2-blink 3.4s infinite 0.4s;
}
.v2-radar .b2 {
  top: 58%;
  left: 38%;
  animation: v2-blink 3.4s infinite 1.2s;
}
.v2-radar .b3 {
  top: 46%;
  left: 74%;
  background: var(--pop-ink);
  box-shadow: 0 0 0 6px rgba(235, 217, 181, 0.55);
  animation: v2-blink 3.4s infinite 2s;
}
@keyframes v2-blink {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.7);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* tilted dashboard in browser frame */
.v2-hero-dash {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(740px, 100%);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow:
    0 50px 100px -20px rgba(42, 24, 18, 0.22),
    0 18px 40px rgba(42, 24, 18, 0.08);
  transform-origin: center;
  transform-style: preserve-3d;
  animation: v2-dash-float 8s ease-in-out infinite;
  z-index: 2;
  overflow: hidden;
}
@keyframes v2-dash-float {
  0%,
  100% {
    transform: translate(-50%, -52%) rotateY(-8deg) rotateX(6deg) rotateZ(-1.5deg);
  }
  50% {
    transform: translate(-50%, -48%) rotateY(-7deg) rotateX(5deg) rotateZ(-1deg);
  }
}
.v2-hero-dash .bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: #f8f1dd;
}
.v2-hero-dash .lights {
  display: flex;
  gap: 5px;
}
.v2-hero-dash .lights span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e6dfcf;
}
.v2-hero-dash .lights span:nth-child(1) {
  background: #e5a1a1;
}
.v2-hero-dash .lights span:nth-child(2) {
  background: #e5c68a;
}
.v2-hero-dash .lights span:nth-child(3) {
  background: #a3cfa1;
}
.v2-hero-dash .u {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  margin-left: 6px;
}

.v2-slide-doc {
  padding: 26px 28px 22px;
  background: var(--card);
  position: relative;
  background-image:
    linear-gradient(to right, rgba(107, 30, 44, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(107, 30, 44, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.v2-slide-doc .doc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 600;
}
.v2-slide-doc .doc-head .brand-tag {
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.v2-slide-doc .doc-head .brand-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}
.v2-slide-doc h3 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: 34px;
  line-height: 1.04;
  margin: 18px 0 10px;
  color: var(--ink);
}
.v2-slide-doc h3 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 600;
}
.v2-slide-doc .sub {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0 0 16px;
  max-width: 34ch;
  font-family: var(--sans);
}
.v2-doc-chart {
  background: #fbf9f3;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 14px 12px;
  margin: 0 0 14px;
}
.v2-doc-chart .bars {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  height: 64px;
}
.v2-doc-chart .bars .col {
  flex: 1;
  background: #efe6d2;
  border-radius: 6px 6px 2px 2px;
  position: relative;
  height: 0;
  animation: v2-bar-rise 1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.v2-doc-chart .bars .col:nth-child(1) {
  animation-delay: 1.6s;
  --h: 34%;
}
.v2-doc-chart .bars .col:nth-child(2) {
  animation-delay: 1.75s;
  --h: 52%;
}
.v2-doc-chart .bars .col:nth-child(3) {
  animation-delay: 1.9s;
  --h: 68%;
}
.v2-doc-chart .bars .col:nth-child(4) {
  animation-delay: 2.05s;
  --h: 96%;
  background: var(--brand);
}
@keyframes v2-bar-rise {
  from {
    height: 0;
  }
  to {
    height: var(--h);
  }
}
.v2-doc-chart .bars .col span {
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
}
.v2-doc-chart .chart-cap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.v2-doc-chart .chart-cap .up {
  color: var(--good);
  font-weight: 700;
  font-size: 11px;
}
.v2-doc-foot {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.v2-slide-doc::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand) 50%, transparent);
  opacity: 0.5;
  animation: v2-read-progress 6s linear infinite;
  transform-origin: left;
}
@keyframes v2-read-progress {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: scaleX(1);
    opacity: 0;
  }
}

/* floating chips */
.v2-chip-float {
  position: absolute;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 20px 40px rgba(14, 14, 12, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  white-space: nowrap;
  opacity: 0;
}
.v2-chip-float .ic {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.v2-chip-float .ic svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}
.v2-chip-float .ic.green {
  background: rgba(31, 122, 58, 0.12);
  color: var(--good);
}
.v2-chip-float .ic.ink {
  background: var(--ink);
  color: var(--pop);
}
.v2-chip-float .ic.brand {
  background: rgba(107, 30, 44, 0.08);
  color: var(--brand);
}
.v2-chip-float .ic.pop {
  background: var(--pop);
  color: var(--pop-ink);
}
.v2-chip-float .meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.v2-chip-float .meta .lab {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 600;
}
.v2-chip-float .meta .val {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.v2-chip-float.big-num {
  padding: 14px 18px;
}
.v2-chip-float.big-num .meta .val {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.v2-chip-float.c1 {
  top: 4%;
  left: -6%;
  animation:
    v2-chip-pop 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s forwards,
    v2-c1 9s ease-in-out 1.6s infinite;
}
.v2-chip-float.c2 {
  top: 14%;
  right: -8%;
  animation:
    v2-chip-pop 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 1s forwards,
    v2-c2 10s ease-in-out 1.8s infinite;
}
.v2-chip-float.c3 {
  bottom: 10%;
  left: -2%;
  animation:
    v2-chip-pop 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 1.2s forwards,
    v2-c3 11s ease-in-out 2s infinite;
}
.v2-chip-float.c4 {
  bottom: 0%;
  right: -2%;
  animation:
    v2-chip-pop 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 1.4s forwards,
    v2-c4 9.5s ease-in-out 2.2s infinite;
}
.v2-chip-float.c5 {
  top: 46%;
  right: -14%;
  animation:
    v2-chip-pop 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 1.6s forwards,
    v2-c5 11.5s ease-in-out 2.4s infinite;
}
@keyframes v2-chip-pop {
  from {
    opacity: 0;
    transform: scale(0.7) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes v2-c1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(-3deg);
  }
  50% {
    transform: translate(8px, -12px) rotate(-3deg);
  }
}
@keyframes v2-c2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(2deg);
  }
  50% {
    transform: translate(-10px, 10px) rotate(2deg);
  }
}
@keyframes v2-c3 {
  0%,
  100% {
    transform: translate(0, 0) rotate(1deg);
  }
  50% {
    transform: translate(12px, -8px) rotate(1deg);
  }
}
@keyframes v2-c4 {
  0%,
  100% {
    transform: translate(0, 0) rotate(-2deg);
  }
  50% {
    transform: translate(-6px, -14px) rotate(-2deg);
  }
}
@keyframes v2-c5 {
  0%,
  100% {
    transform: translate(0, 0) rotate(3deg);
  }
  50% {
    transform: translate(-8px, 8px) rotate(3deg);
  }
}

.v2-chip-float.section-time {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 14px 18px;
  min-width: 230px;
}
.v2-chip-float.section-time .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 700;
}
.v2-chip-float.section-time .head .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(107, 30, 44, 0.15);
}
.v2-chip-float.section-time .head .right {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.v2-chip-float.section-time .bars {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 2px;
}
.v2-chip-float.section-time .row {
  display: grid;
  grid-template-columns: 62px 1fr 42px;
  gap: 10px;
  align-items: center;
}
.v2-chip-float.section-time .row .n {
  font-size: 11px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.v2-chip-float.section-time .row .t {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-2);
  text-align: right;
  font-weight: 600;
}
.v2-chip-float.section-time .row .ln {
  height: 4px;
  background: #efe6d2;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.v2-chip-float.section-time .row .ln b {
  display: block;
  height: 100%;
  background: var(--ink);
  border-radius: 999px;
  width: 0;
  animation: v2-ln-grow 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) 2s forwards;
}
.v2-chip-float.section-time .row.peak .ln b {
  background: var(--brand);
}
@keyframes v2-ln-grow {
  to {
    width: var(--w);
  }
}

/* ============ Reveal system ============ */
.v2-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.v2-reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.v2-reveal.left {
  transform: translateX(-40px);
}
.v2-reveal.left.in {
  transform: translateX(0);
}
.v2-reveal.right {
  transform: translateX(40px);
}
.v2-reveal.right.in {
  transform: translateX(0);
}
.v2-reveal.scale {
  transform: scale(0.92);
}
.v2-reveal.scale.in {
  transform: scale(1);
}
.v2-reveal.blur {
  filter: blur(12px);
}
.v2-reveal.blur.in {
  filter: blur(0);
}
.v2-reveal.d1 {
  transition-delay: 0.08s;
}
.v2-reveal.d2 {
  transition-delay: 0.16s;
}
.v2-reveal.d3 {
  transition-delay: 0.24s;
}
.v2-reveal.d4 {
  transition-delay: 0.32s;
}
.v2-reveal.d5 {
  transition-delay: 0.4s;
}

.v2-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.v2-kicker::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--ink-3);
}

/* ============ PITCH STORY (Seed Deck card) ============ */
.v2-pitch {
  padding: 130px 56px;
  max-width: 1560px;
  margin: 0 auto;
}
.v2-pitch .head {
  margin-bottom: 60px;
}
.v2-pitch h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.02;
  margin: 0;
  max-width: 18ch;
}
.v2-pitch h2 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 600;
}
.v2-pitch-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 980px) {
  .v2-pitch-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.v2-pitch-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 38px;
  box-shadow: 0 24px 60px -16px rgba(42, 24, 18, 0.14);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.v2-pcd-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 600;
}
.v2-pcd-head .last {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.v2-pcd-head .last i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(107, 30, 44, 0.15);
  animation: v2-pulse 2s infinite;
}
.v2-pcd-title {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.025em;
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1;
  margin: 0;
  color: var(--ink);
}
.v2-pcd-divider {
  height: 1px;
  background: var(--line);
}

.v2-pcd-recipient {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.v2-pcd-recipient .who-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.v2-pcd-recipient .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-deep);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.v2-pcd-recipient .who {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.v2-pcd-recipient .who .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 600;
}
.v2-pcd-recipient .who .name {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.v2-pcd-recipient .metrics {
  display: flex;
  gap: 48px;
}
.v2-pcd-recipient .metrics > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}
.v2-pcd-recipient .metrics .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 600;
}
.v2-pcd-recipient .metrics .val {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.v2-pcd-week {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}
.v2-pcd-week .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.v2-pcd-week .days {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}
.v2-pcd-week .days span + span::before {
  content: ' · ';
  color: var(--ink-3);
}
.v2-pcd-week .weekbars {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  height: 40px;
}
.v2-pcd-week .weekbars i {
  width: 8px;
  border-radius: 3px;
  background: var(--brand);
  height: 0;
  transition: height 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.v2-pcd-week .weekbars i.off {
  align-self: flex-end;
  height: 0;
  border-bottom: 2px solid var(--bg-deep);
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
  width: 8px;
}
.v2-pitch-card.in .v2-pcd-week .weekbars i:not(.off) {
  height: var(--h);
}
.v2-pitch-card.in .v2-pcd-week .weekbars i:nth-child(1) {
  transition-delay: 0.1s;
}
.v2-pitch-card.in .v2-pcd-week .weekbars i:nth-child(2) {
  transition-delay: 0.16s;
}
.v2-pitch-card.in .v2-pcd-week .weekbars i:nth-child(3) {
  transition-delay: 0.22s;
}
.v2-pitch-card.in .v2-pcd-week .weekbars i:nth-child(4) {
  transition-delay: 0.28s;
}
.v2-pitch-card.in .v2-pcd-week .weekbars i:nth-child(5) {
  transition-delay: 0.34s;
}
.v2-pitch-card.in .v2-pcd-week .weekbars i:nth-child(6) {
  transition-delay: 0.4s;
}
.v2-pitch-card.in .v2-pcd-week .weekbars i:nth-child(7) {
  transition-delay: 0.46s;
}

.v2-pcd-sections {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.v2-pcd-sections > .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.v2-pcd-sections .rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.v2-pcd-sections .srow {
  display: grid;
  grid-template-columns: 130px 1fr 70px;
  gap: 18px;
  align-items: center;
  font-size: 15px;
}
.v2-pcd-sections .srow > span:first-child {
  color: var(--ink);
  font-weight: 500;
}
.v2-pcd-sections .srow .t {
  font-family: var(--mono);
  font-size: 13.5px;
  color: var(--ink);
  text-align: right;
  font-weight: 600;
}
.v2-pcd-sections .srow b {
  display: block;
  height: 8px;
  background: var(--bg-deep);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.v2-pcd-sections .srow b i {
  display: block;
  height: 100%;
  background: var(--brand);
  border-radius: 999px;
  width: 0;
  transition: width 1.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.v2-pitch-card.in .v2-pcd-sections .srow b i {
  width: var(--w);
}
.v2-pcd-sections .srow.soft b i {
  background: #cc9f9f;
}
.v2-pcd-sections .srow.none .t {
  color: var(--ink-3);
}
.v2-pcd-sections .rows .srow:nth-child(1) b i {
  transition-delay: 0.55s;
}
.v2-pcd-sections .rows .srow:nth-child(2) b i {
  transition-delay: 0.7s;
}
.v2-pcd-sections .rows .srow:nth-child(3) b i {
  transition-delay: 0.85s;
}
.v2-pcd-sections .rows .srow:nth-child(4) b i {
  transition-delay: 1s;
}
.v2-pcd-sections .rows .srow:nth-child(5) b i {
  transition-delay: 1.15s;
}

.v2-pitch-right {
  display: flex;
  flex-direction: column;
  gap: 38px;
  align-self: flex-start;
  position: sticky;
  top: 120px;
}
@media (max-width: 980px) {
  .v2-pitch-right {
    position: static;
    top: auto;
  }
}
.v2-notif {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 40px -10px rgba(42, 24, 18, 0.1);
}
.v2-notif .ic {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--ink);
  align-self: flex-start;
  margin-top: 2px;
}
.v2-notif .ic svg {
  width: 22px;
  height: 22px;
  animation: v2-radio-pulse 2.4s ease-in-out infinite;
}
@keyframes v2-radio-pulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}
.v2-notif .body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v2-notif .body .nrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 600;
}
.v2-notif .body .nrow .brand-tag {
  color: var(--ink);
}
.v2-notif .msg {
  font-size: 16.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-top: 2px;
  line-height: 1.35;
}
.v2-notif .sub {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.v2-notif .divider {
  height: 1px;
  background: var(--line);
  margin-top: 6px;
}
.v2-notif .link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink);
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 2px;
}
.v2-notif .link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.v2-notif .link:hover svg {
  transform: translateX(4px);
}

.v2-pull-quote {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.015em;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.28;
  color: var(--ink);
  margin: 0;
  padding: 0;
  border: 0;
}
.v2-pull-quote em {
  color: var(--brand);
  font-style: normal;
  font-weight: 600;
}

.v2-kicker-text {
  margin: 0;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 46ch;
}

/* ============ SWIPER ============ */
.v2-swiper {
  position: relative;
  height: 320vh;
}
.v2-swiper-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.v2-swiper-head {
  flex-shrink: 0;
  padding: 80px 56px 0;
  max-width: 1560px;
  margin: 0 auto;
  width: 100%;
}
.v2-swiper-head h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 1.02;
  margin: 0;
  max-width: 18ch;
}
.v2-swiper-head h2 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 600;
}
.v2-swiper-head .pager {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.v2-swiper-head .pager span {
  flex: 1;
  max-width: 120px;
  height: 3px;
  border-radius: 999px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.v2-swiper-head .pager span::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.v2-swiper-head .pager span.on::after {
  transform: scaleX(1);
}
.v2-swiper-head .pager span.done::after {
  transform: scaleX(1);
  background: var(--brand);
}

.v2-swiper-track {
  display: flex;
  height: 100%;
  flex: 1;
  will-change: transform;
}
.v2-swiper-panel {
  width: 100vw;
  flex-shrink: 0;
  padding: 40px 56px 60px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
  max-width: 1560px;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .v2-swiper-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 24px 40px;
  }
}
.v2-swiper-panel .text .n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--pop);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.v2-swiper-panel .text h3 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.05;
  margin: 0 0 14px;
}
.v2-swiper-panel .text h3 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 600;
}
.v2-swiper-panel .text p {
  margin: 0 0 18px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 34ch;
}
.v2-swiper-panel .text .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.v2-swiper-panel .text .meta span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink-2);
  font-weight: 600;
}

.v2-swiper-panel .vis {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(42, 24, 18, 0.18);
  aspect-ratio: 5 / 3;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.v2-vis-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #f8f1dd;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.v2-vis-bar .lights {
  display: flex;
  gap: 5px;
}
.v2-vis-bar .lights span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e6dfcf;
}
.v2-vis-bar .lights span:nth-child(1) {
  background: #e5a1a1;
}
.v2-vis-bar .lights span:nth-child(2) {
  background: #e5c68a;
}
.v2-vis-bar .lights span:nth-child(3) {
  background: #a3cfa1;
}
.v2-vis-bar .ttl {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-3);
  margin-left: 6px;
}
.v2-vis-body {
  flex: 1;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
}

/* Step 1 — Drop */
.v2-vis-drop {
  flex: 1;
  border: 1.5px dashed var(--line-2);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  background: #fbf9f3;
  position: relative;
  overflow: hidden;
  padding: 24px;
  animation: v2-drop-glow 4s ease-in-out infinite;
}
@keyframes v2-drop-glow {
  0%,
  40%,
  100% {
    border-color: var(--line-2);
    background: #fbf9f3;
  }
  50%,
  70% {
    border-color: var(--ink);
    background: #f3efe0;
  }
}
.v2-vis-drop .file {
  width: 120px;
  height: 150px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  position: absolute;
  top: 18%;
  left: 50%;
  box-shadow: 0 16px 40px rgba(14, 14, 12, 0.1);
  padding: 14px;
  transform: translate(calc(-50% + 180px), -80px) rotate(-22deg) scale(0.85);
  opacity: 0;
  animation: v2-file-drop 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes v2-file-drop {
  0% {
    transform: translate(calc(-50% + 180px), -80px) rotate(-22deg) scale(0.85);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  45% {
    transform: translate(-50%, 0) rotate(-6deg) scale(1);
    opacity: 1;
  }
  80% {
    transform: translate(-50%, 0) rotate(-6deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 18px) rotate(-6deg) scale(0.95);
    opacity: 0;
  }
}
.v2-vis-drop .file::before {
  content: 'HTML · v2';
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--brand);
  font-weight: 600;
}
.v2-vis-drop .file .ln {
  height: 5px;
  background: var(--line);
  border-radius: 3px;
  margin-top: 10px;
}
.v2-vis-drop .file .ln.s {
  width: 60%;
}
.v2-vis-drop .file .ln.m {
  width: 85%;
}
.v2-vis-drop .progress {
  width: 80%;
  height: 5px;
  background: rgba(14, 14, 12, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.v2-vis-drop .progress .bar {
  height: 100%;
  background: var(--ink);
  border-radius: 999px;
  width: 0%;
  animation: v2-fill 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes v2-fill {
  0%,
  40% {
    width: 0%;
  }
  45% {
    width: 0%;
  }
  78% {
    width: 100%;
    background: var(--ink);
  }
  82%,
  98% {
    width: 100%;
    background: var(--good);
  }
  100% {
    width: 0%;
  }
}
.v2-vis-drop .hint {
  font-size: 12px;
  color: var(--ink-3);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.v2-vis-drop .hint .ic {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
}
.v2-vis-drop .hint .ic svg {
  width: 11px;
  height: 11px;
}

/* Step 2 — Share */
.v2-vis-share {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 8px;
  position: relative;
}
.v2-vis-share .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fbf9f3;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  position: relative;
  animation: v2-link-pulse 5s ease-in-out infinite;
}
@keyframes v2-link-pulse {
  0%,
  55%,
  100% {
    border-color: var(--line);
    background: #fbf9f3;
  }
  60%,
  68% {
    border-color: var(--good);
    background: rgba(31, 122, 58, 0.06);
  }
}
.v2-vis-share .row .u {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v2-vis-share .row .copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line-2);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--ink);
  animation: v2-copy-press 5s ease-in-out infinite;
}
@keyframes v2-copy-press {
  0%,
  52%,
  68%,
  100% {
    transform: scale(1);
    background: #fff;
    color: var(--ink);
  }
  55%,
  62% {
    transform: scale(0.94);
    background: var(--ink);
    color: #fff;
  }
}
.v2-vis-share .row .toast {
  position: absolute;
  top: -32px;
  right: 0;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(6px);
  animation: v2-toast 5s ease-in-out infinite;
  pointer-events: none;
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.v2-vis-share .row .toast::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 14px;
  width: 8px;
  height: 8px;
  background: var(--ink);
  transform: rotate(45deg);
}
@keyframes v2-toast {
  0%,
  55%,
  80%,
  100% {
    opacity: 0;
    transform: translateY(6px);
  }
  60%,
  75% {
    opacity: 1;
    transform: translateY(0);
  }
}
.v2-vis-share .tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.v2-vis-share .tags span {
  font-size: 12.5px;
  color: var(--ink-2);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
}

/* Step 3 — Live */
.v2-vis-live {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px;
  justify-content: center;
}
.v2-vis-live .row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.v2-vis-live .row.now {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  animation: v2-now-pulse 2.4s ease-in-out infinite;
}
@keyframes v2-now-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(235, 217, 181, 0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(235, 217, 181, 0.3);
  }
}
.v2-vis-live .row .who {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.v2-vis-live .row .who .e {
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.v2-vis-live .row.now .who .e::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pop);
  box-shadow: 0 0 0 4px rgba(235, 217, 181, 0.3);
  animation: v2-dot-pulse 1.6s infinite;
}
@keyframes v2-dot-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(235, 217, 181, 0.5);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(235, 217, 181, 0);
  }
}
.v2-vis-live .row .who .d {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.v2-vis-live .row.now .who .d {
  color: rgba(255, 255, 255, 0.55);
}
.v2-vis-live .row .stat {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: right;
}
.v2-vis-live .row.now .stat {
  color: var(--pop);
}
.v2-vis-live .scrollbar {
  position: relative;
  width: 54px;
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 6px;
}
.v2-vis-live .scrollbar .fl {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--pop);
  border-radius: 999px;
  animation: v2-scroll-fill 3s ease-out forwards;
  width: 0%;
}
@keyframes v2-scroll-fill {
  to {
    width: 100%;
  }
}

/* ============ CONTROLS ============ */
.v2-controls {
  padding: 130px 56px;
  max-width: 1560px;
  margin: 0 auto;
}
.v2-controls .head {
  text-align: center;
  margin-bottom: 60px;
}
.v2-controls h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.02;
  margin: 0 auto;
  max-width: 18ch;
}
.v2-controls h2 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 600;
}
.v2-controls .lede {
  margin: 22px auto 0;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
  max-width: 54ch;
  text-align: center;
}
.v2-ctrl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 980px) {
  .v2-ctrl-grid {
    grid-template-columns: 1fr;
  }
}
.v2-ctrl-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: start;
}
.v2-ctrl-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.4s,
    border-color 0.35s,
    background 0.35s;
}
.v2-ctrl-item.active {
  border-color: var(--ink);
  background: var(--card);
  box-shadow: 0 14px 30px rgba(14, 14, 12, 0.06);
  transform: translateX(4px);
}
.v2-ctrl-item .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bg-alt);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition:
    background 0.35s,
    color 0.35s;
}
.v2-ctrl-item.active .ic {
  background: var(--ink);
  color: var(--pop);
}
.v2-ctrl-item .ic svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.6;
}
.v2-ctrl-item h4 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.015em;
}
.v2-ctrl-item p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.5;
}

/* ============ TESTIMONIALS (slimmed) ============ */
.v2-loves {
  padding: 130px 56px;
  max-width: 1100px;
  margin: 0 auto;
}
.v2-loves .head {
  margin-bottom: 36px;
  text-align: center;
}
.v2-loves h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.18;
  margin: 0 auto;
  max-width: 28ch;
  color: var(--ink);
}
.v2-loves h2 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 600;
}
.v2-loves .attr {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 600;
}

/* ============ CTA ============ */
.v2-cta {
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.v2-cta h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.4vw, 76px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1;
  max-width: 14ch;
  margin-inline: auto;
}
.v2-cta h2 em {
  position: relative;
  display: inline-block;
  padding: 0 0.08em;
  font-style: italic;
  color: var(--brand);
  font-weight: 600;
}
.v2-cta h2 em::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 55%;
  bottom: 0;
  background: var(--pop);
  border-radius: 0.16em;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s;
}
.v2-cta.in h2 em::before {
  transform: scaleX(1);
}
.v2-cta p {
  max-width: 560px;
  margin: 32px auto 40px;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.55;
}
.v2-cta .row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ FOOTER (slim) ============ */
.v2-foot {
  padding: 60px 40px 40px;
  border-top: 1px solid var(--line);
  max-width: 1560px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
}
.v2-foot a {
  color: var(--ink-3);
  text-decoration: none;
}
.v2-foot a:hover {
  color: var(--ink);
}

@media (max-width: 900px) {
  .v2-pitch,
  .v2-loves,
  .v2-controls {
    padding: 64px 24px;
  }
  .v2-hero {
    padding: 90px 24px 36px;
  }
  .v2-cta {
    padding: 80px 24px;
  }
  .v2-swiper-head {
    padding: 60px 24px 0;
  }
}

/* ============ OPEN SOURCE STRIP ============ */
.v2-os {
  padding: 100px 56px;
  max-width: 1180px;
  margin: 0 auto;
}
.v2-os-card {
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .v2-os-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 28px;
  }
}
.v2-os .kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--pop);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.v2-os .kicker::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--pop);
}
.v2-os h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.15;
  margin: 0 0 14px;
}
.v2-os h2 em {
  font-style: italic;
  color: var(--pop);
  font-weight: 600;
}
.v2-os p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 36ch;
}
.v2-os ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.v2-os ul li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}
.v2-os ul li svg {
  width: 16px;
  height: 16px;
  color: var(--pop);
  stroke-width: 2;
  margin-top: 2px;
}
.v2-os ul li b {
  color: #fff;
  font-weight: 600;
}
.v2-os .repo {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--pop);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  text-decoration: none;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.v2-os .repo:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}
.v2-os .repo svg {
  width: 14px;
  height: 14px;
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
/* L7 — small playful rotate on the GitHub icon when hovering the repo
   link. Tied to :hover only; mobile users without hover never trigger
   it. prefers-reduced-motion neutralises via global rule. */
@media (hover: hover) {
  .v2-os .repo:hover svg {
    transform: rotate(-8deg);
  }
}

/* P5 — /pricing Tier card. Shadow + transition live here (not inline)
   so the :hover variant can actually override the rest shadow —
   inline styles would have won by specificity. The transition is
   declared in the base rule, runs on every state change including
   hover-exit. */
.pricing-tier {
  box-shadow: 0 18px 40px -20px rgba(31, 17, 8, 0.1);
  transition:
    transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pricing-tier[data-accent='true'] {
  box-shadow: 0 30px 60px -20px rgba(42, 24, 18, 0.3);
}
/* Hover lift gated to hover-capable devices — mobile taps don't stick
   the card in a lifted state. */
@media (hover: hover) {
  .pricing-tier:hover {
    transform: translateY(-2px);
    box-shadow:
      0 30px 60px -20px rgba(31, 17, 8, 0.18),
      0 12px 30px -16px rgba(31, 17, 8, 0.1);
  }
  .pricing-tier[data-accent='true']:hover {
    box-shadow:
      0 40px 80px -20px rgba(42, 24, 18, 0.36),
      0 16px 36px -16px rgba(42, 24, 18, 0.18);
  }
}

/* ============ THE SHIFT (PDF → HTML manifesto beat) ============ */
.v2-shift {
  padding: 100px 56px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.v2-shift .head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: baseline;
}
@media (max-width: 900px) {
  .v2-shift .head {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.v2-shift .head .kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.v2-shift .head .kicker::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--ink-3);
}
.v2-shift p {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.32;
  color: var(--ink);
  margin: 0;
  max-width: 36ch;
}
.v2-shift p em {
  font-style: italic;
  color: var(--brand);
  font-weight: 600;
}

/* Small PDF → HTML visual that anchors the section */
.v2-shift-visual {
  margin: 56px 0 0 256px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 900px) {
  .v2-shift-visual {
    margin-left: 0;
  }
}
.v2-shift-chip {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 600;
}
.v2-shift-chip.old {
  color: var(--ink-3);
  text-decoration: line-through;
  background: transparent;
}
.v2-shift-chip.new {
  background: var(--ink);
  color: var(--pop);
  border-color: var(--ink);
}
.v2-shift-arrow {
  position: relative;
  width: 48px;
  height: 2px;
  background-image: linear-gradient(to right, var(--ink-3) 50%, transparent 50%);
  background-size: 6px 100%;
}
.v2-shift-arrow::after {
  content: '→';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1;
}

/* ============ WHAT IT DOES (4 specific claims) ============ */
.v2-claims {
  padding: 100px 56px;
  max-width: 1180px;
  margin: 0 auto;
}
.v2-claims .head {
  margin-bottom: 48px;
}
.v2-claims .head h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.1;
  margin: 0;
  max-width: 22ch;
}
.v2-claims-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 56px;
}
@media (max-width: 900px) {
  .v2-claims-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.v2-claim {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v2-claim .n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 700;
}
.v2-claim h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.015em;
  font-size: 22px;
  line-height: 1.22;
  margin: 0;
  color: var(--ink);
}
.v2-claim h3 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 600;
}
.v2-claim p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 42ch;
}

/* ============ WORKFLOW (vertical timeline, Langbase-style) ============
 * Three lifecycle events stamped in mono kickers down the left column
 * with a thin oxblood connector line. A small packet element travels
 * the connector path on a 7s loop. Right column shows a "live"
 * dashboard mock that progresses through three states as the packet
 * passes each row. One viewport, zero scroll-driven JS.
 */
.v2-flow {
  padding: 90px 56px;
  max-width: 1180px;
  margin: 0 auto;
}
.v2-flow .head {
  margin-bottom: 56px;
}
.v2-flow h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.05;
  margin: 0;
  max-width: 22ch;
}
.v2-flow h2 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 600;
}
/* Stage = 3-row, 2-col grid. Each row pairs ONE timeline step with
 * its matching mock so the columns align row-by-row (left text never
 * drifts past the right visual). Connector line + animated packet
 * are positioned absolutely against the stage so they span all rows
 * seamlessly. */
.v2-flow-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 56px;
  padding-left: 36px;
}
@media (max-width: 900px) {
  .v2-flow-stage {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 32px;
  }
}
.v2-flow-stage::before {
  /* Connector line spanning the full stage */
  content: '';
  position: absolute;
  left: 11px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background-image: linear-gradient(to bottom, var(--line-2) 50%, transparent 50%);
  background-size: 1px 6px;
  background-repeat: repeat-y;
}
.v2-flow-stage::after {
  /* Animated packet traveling top→bottom of the stage */
  content: '';
  position: absolute;
  left: 7px;
  top: 24px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(107, 30, 44, 0.16);
  animation: v2-packet-down 7s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
/* L4 — pause the workflow packet on hover so the reader can study the
   steps without the dot pulling attention. Pure CSS; mobile users
   without :hover never trigger it. */
@media (hover: hover) {
  .v2-flow-stage:hover::after {
    animation-play-state: paused;
  }
}
@keyframes v2-packet-down {
  0% {
    top: 0;
    opacity: 0;
  }
  6% {
    opacity: 1;
  }
  94% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
/* Each timeline step is one grid child in column 1. Centers
 * vertically against its paired mock in column 2 so the eye walks
 * row-by-row left↔right. */
.v2-flow-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: flex-start;
  align-self: center;
}
.v2-flow-step .dot {
  position: absolute;
  left: -32px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--line-2);
  z-index: 1;
}
.v2-flow-step .kicker {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-3);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  align-self: flex-start;
  white-space: nowrap;
}
.v2-flow-step h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.015em;
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 6px;
  color: var(--ink);
}
.v2-flow-step h3 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 600;
}
.v2-flow-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 40ch;
}
.v2-flow-step .body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Each mock is a direct grid child in column 2, one per row.
 * Critically: NOT the same Seed Deck dashboard from the pitch section
 * above (that would be redundant). Each row gets its own purpose-built
 * snapshot — upload form, share toggles, live readers. */
.v2-flow-mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 14px 28px -14px rgba(42, 24, 18, 0.12);
}
.v2-flow-mock .mock-kicker {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 700;
}
/* Mock 1: upload — file dropping into a zone */
.v2-mock-upload .zone {
  border: 1.5px dashed var(--line-2);
  border-radius: 10px;
  padding: 18px 16px;
  background: #fbf9f3;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
  animation: v2-drop-glow 4s ease-in-out infinite;
}
.v2-mock-upload .file-ico {
  width: 36px;
  height: 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 4px;
  flex-shrink: 0;
  position: relative;
  animation: v2-mock-file 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes v2-mock-file {
  0%,
  10% {
    transform: translateY(-20px) rotate(-12deg);
    opacity: 0;
  }
  20%,
  80% {
    transform: translateY(0) rotate(-4deg);
    opacity: 1;
  }
  90%,
  100% {
    transform: translateY(4px) rotate(-4deg);
    opacity: 0;
  }
}
.v2-mock-upload .file-ico::before {
  content: 'HTML';
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
  color: var(--brand);
  font-weight: 700;
}
.v2-mock-upload .file-ico .l {
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  margin-top: 4px;
}
.v2-mock-upload .file-ico .l.s {
  width: 60%;
}
.v2-mock-upload .info {
  flex: 1;
}
.v2-mock-upload .info .name {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.v2-mock-upload .info .size {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  margin-top: 3px;
}
.v2-mock-upload .progress {
  height: 4px;
  background: rgba(14, 14, 12, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 8px;
}
.v2-mock-upload .progress .bar {
  height: 100%;
  background: var(--ink);
  border-radius: 999px;
  width: 0%;
  animation: v2-fill 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Mock 2: share — URL row + toggle pills */
.v2-mock-share .url-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  background: #fbf9f3;
  border: 1px solid var(--line);
  border-radius: 8px;
  animation: v2-link-pulse 5s ease-in-out infinite;
}
.v2-mock-share .url-row .url {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v2-mock-share .url-row .copy {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 8px;
  background: var(--ink);
  color: #fff;
  border-radius: 4px;
  animation: v2-copy-press 5s ease-in-out infinite;
}
.v2-mock-share .toggles {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v2-mock-share .toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
}
.v2-mock-share .toggle-row .l {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.v2-mock-share .toggle-row .l::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-3);
}
.v2-mock-share .pill {
  width: 26px;
  height: 14px;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  position: relative;
}
.v2-mock-share .pill::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.35s;
}
.v2-mock-share .pill.on {
  background: var(--ink);
  border-color: var(--ink);
}
.v2-mock-share .pill.on::after {
  left: 13px;
  background: var(--pop);
}

/* Mock 3: live — reader rows with active highlight */
.v2-mock-live .live-bar {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin-bottom: 4px;
}
.v2-mock-live .live-bar .now {
  color: var(--good);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.v2-mock-live .live-bar .now::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--good);
  animation: v2-pulse 2s infinite;
}
.v2-mock-live .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 11px;
}
.v2-mock-live .row.active {
  background: var(--ink);
  color: var(--pop);
  animation: v2-flow-livepulse 3s ease-in-out infinite;
}
.v2-mock-live .row.active .name::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pop);
  margin-right: 8px;
  vertical-align: middle;
  animation: v2-pulse 1.4s infinite;
}
.v2-mock-live .row.quiet {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-2);
}
.v2-mock-live .row .stat {
  font-weight: 700;
}
.v2-mock-live .row.active .stat {
  color: var(--pop);
}

/* The old single-mock variant was replaced by per-step mocks above.
 * No display:none override here — the new .v2-flow-mock styles at
 * the top of the section are the truth. */
.v2-flow-mock .mock-head {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.v2-flow-mock .mock-head .live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--good);
}
.v2-flow-mock .mock-head .live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 3px rgba(31, 122, 58, 0.18);
  animation: v2-pulse 2s infinite;
}
.v2-flow-mock .doc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v2-flow-mock .doc-card .title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.v2-flow-mock .doc-card .url {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
.v2-flow-mock .live-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 11.5px;
  animation: v2-flow-livepulse 3s ease-in-out infinite;
}
@keyframes v2-flow-livepulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(235, 217, 181, 0);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(235, 217, 181, 0.3);
  }
}
.v2-flow-mock .live-row .who {
  flex: 1;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.v2-flow-mock .live-row .who::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pop);
  animation: v2-pulse 1.4s infinite;
}
.v2-flow-mock .live-row .stat {
  color: var(--pop);
  letter-spacing: 0.06em;
}
.v2-flow-mock .quiet-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
}
.v2-flow-mock .bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.v2-flow-mock .bar {
  display: grid;
  grid-template-columns: 90px 1fr 50px;
  gap: 12px;
  align-items: center;
  font-size: 12.5px;
}
.v2-flow-mock .bar .l {
  color: var(--ink);
}
.v2-flow-mock .bar .v {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
  text-align: right;
}
.v2-flow-mock .bar .track {
  height: 5px;
  background: var(--bg-deep);
  border-radius: 999px;
  overflow: hidden;
}
.v2-flow-mock .bar .track i {
  display: block;
  height: 100%;
  background: var(--brand);
  border-radius: 999px;
  width: 0;
  animation: v2-bar-grow 2s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
@keyframes v2-bar-grow {
  to {
    width: var(--w);
  }
}
.v2-flow-mock .bar:nth-child(1) i {
  animation-delay: 0.6s;
}
.v2-flow-mock .bar:nth-child(2) i {
  animation-delay: 0.85s;
}
.v2-flow-mock .bar:nth-child(3) i {
  animation-delay: 1.1s;
}

/* Tighter footer + faded radar in the corner for a subtle texture
 * — references the brand mark without dominating. The radar SVG is
 * inlined via background-image so we don't ship another asset. */
.v2-foot {
  font-size: 10px;
  padding: 28px 40px 22px;
  position: relative;
  overflow: hidden;
}
.v2-foot::before {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at center,
      transparent 30%,
      rgba(107, 30, 44, 0.06) 31%,
      rgba(107, 30, 44, 0.06) 32%,
      transparent 33%
    ),
    radial-gradient(
      circle at center,
      transparent 48%,
      rgba(107, 30, 44, 0.05) 49%,
      rgba(107, 30, 44, 0.05) 50%,
      transparent 51%
    ),
    radial-gradient(
      circle at center,
      transparent 66%,
      rgba(107, 30, 44, 0.04) 67%,
      rgba(107, 30, 44, 0.04) 68%,
      transparent 69%
    ),
    conic-gradient(
      from 0deg,
      transparent 0deg 300deg,
      rgba(107, 30, 44, 0.08) 350deg,
      transparent 360deg
    );
  pointer-events: none;
  z-index: 0;
  animation: v2-foot-sweep 18s linear infinite;
}
@keyframes v2-foot-sweep {
  to {
    transform: rotate(360deg);
  }
}
.v2-foot > * {
  position: relative;
  z-index: 1;
}
.v2-foot a {
  font-size: 10px;
}

/* ============================================================
 * MOBILE BREAKPOINTS — comprehensive pass.
 *
 * Three tiers:
 *   • <= 980px (existing): hero + pitch stack vertically.
 *   • <= 760px: nav compresses, hero loses the tilted dashboard
 *     (which doesn't fit at all + clipping is ugly), floating chips
 *     hide (decorative on desktop, noise on phone), section paddings
 *     drop to 20px lateral, all headlines tighten.
 *   • <= 420px (iPhone SE / fold): even tighter type, more breathing.
 *
 * Strategy: on phone, the hero's job is "land the positioning + the
 * CTA"; the dashboard mock + floating chips are visual scaffolding
 * for desktop. Phone users see a clean, fast-loading hero with the
 * headline + lede + CTA, then scroll into the content where the
 * actual product cards (Seed Deck, workflow mocks, etc.) live.
 * ============================================================ */

@media (max-width: 760px) {
  /* NAV — hide menu links on phone, keep logo + CTA. Pill stops
   * overflowing the viewport. */
  .v2-nav {
    padding: 7px 7px 7px 16px;
    gap: 4px;
  }
  .v2-nav ul {
    display: none;
  }
  .v2-nav .logo {
    margin-right: 0;
    font-size: 14px;
  }
  .v2-nav .logo .ital {
    font-size: 15px;
  }
  .v2-nav .nav-cta {
    margin-left: 8px;
    padding: 8px 14px;
    font-size: 13px;
  }

  /* HERO — drop the tilted dashboard, kill floating chips. They
   * overlap badly at narrow widths. The hero on phone is the
   * headline + lede + CTA + trust row. */
  .v2-hero {
    padding: 90px 20px 32px;
  }
  .v2-hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
  }
  .v2-hero-right {
    display: none;
  }
  .v2-headline {
    font-size: clamp(32px, 9vw, 44px);
  }
  .v2-headline .line {
    white-space: normal; /* allow wrap on narrow phones */
  }
  .v2-hero .lede {
    font-size: 15px;
    margin-top: 22px;
  }
  .v2-hero .cta-row {
    margin-top: 26px;
  }
  .v2-trust {
    margin-top: 32px;
    gap: 12px;
    font-size: 13px;
  }
  .v2-trust .logos {
    font-size: 13px;
    gap: 10px;
  }

  /* THE SHIFT */
  .v2-shift {
    padding: 60px 20px 50px;
  }
  .v2-shift p {
    font-size: 18px;
    max-width: none;
  }
  .v2-shift-visual {
    margin-left: 0;
    margin-top: 32px;
    flex-wrap: wrap;
    gap: 10px;
  }

  /* PITCH */
  .v2-pitch {
    padding: 70px 20px;
  }
  .v2-pitch h2 {
    font-size: clamp(26px, 7vw, 36px);
  }
  .v2-pitch-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .v2-pitch-card {
    padding: 22px 20px;
    gap: 18px;
  }
  .v2-pcd-title {
    font-size: clamp(24px, 7vw, 36px);
  }
  .v2-pcd-recipient {
    gap: 14px;
  }
  .v2-pcd-recipient .metrics {
    gap: 24px;
  }
  .v2-pcd-recipient .metrics .val {
    font-size: 22px;
  }
  .v2-pcd-sections .srow {
    grid-template-columns: 100px 1fr 56px;
    gap: 12px;
    font-size: 13px;
  }
  .v2-pcd-week {
    gap: 14px;
  }
  .v2-pull-quote {
    font-size: 19px;
  }

  /* WORKFLOW — keep the vertical timeline, just tighten padding */
  .v2-flow {
    padding: 60px 20px;
  }
  .v2-flow h2 {
    font-size: clamp(24px, 7vw, 32px);
  }
  .v2-flow-stage {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 28px;
  }
  .v2-flow-stage::before {
    left: 9px;
  }
  .v2-flow-stage::after {
    left: 5px;
  }
  .v2-flow-step {
    align-self: flex-start;
  }
  .v2-flow-step .dot {
    left: -26px;
  }
  .v2-flow-step h3 {
    font-size: 17px;
  }
  .v2-flow-step p {
    font-size: 13px;
    max-width: none;
  }
  .v2-flow-mock {
    padding: 14px 16px;
    margin-bottom: 14px;
  }

  /* CONTROLS */
  .v2-controls {
    padding: 70px 20px;
  }
  .v2-controls h2 {
    font-size: clamp(26px, 7vw, 36px);
  }
  .v2-controls .lede {
    font-size: 15.5px;
  }
  .v2-ctrl-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
  }
  .v2-ctrl-item {
    padding: 18px 20px;
    gap: 14px;
  }
  .v2-ctrl-item h4 {
    font-size: 17px;
  }
  .v2-ctrl-item p {
    font-size: 13px;
  }

  /* OPEN SOURCE */
  .v2-os {
    padding: 60px 20px;
  }
  .v2-os-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 22px;
  }
  .v2-os h2 {
    font-size: clamp(22px, 6vw, 30px);
  }
  .v2-os p {
    font-size: 14px;
  }
  .v2-os ul li {
    font-size: 13.5px;
  }

  /* CTA */
  .v2-cta {
    padding: 80px 20px;
  }
  .v2-cta h2 {
    font-size: clamp(30px, 9vw, 54px);
  }
  .v2-cta p {
    font-size: 15.5px;
    margin: 24px auto 30px;
  }

  /* FOOTER */
  .v2-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 24px 20px;
  }
  .v2-foot > div:last-child {
    flex-wrap: wrap;
    gap: 14px !important;
  }
  .v2-foot::before {
    width: 220px;
    height: 220px;
    right: -100px;
    bottom: -100px;
  }
}

@media (max-width: 420px) {
  /* iPhone SE / fold-class screens — push everything just a touch
   * tighter so the page never feels like it's bursting at the
   * seams. Mostly type-scale tweaks. */
  .v2-hero {
    padding: 80px 16px 28px;
  }
  .v2-headline {
    font-size: clamp(28px, 9vw, 36px);
  }
  .v2-hero .lede {
    font-size: 14.5px;
  }
  .v2-shift,
  .v2-pitch,
  .v2-flow,
  .v2-controls,
  .v2-os,
  .v2-cta {
    padding-left: 16px;
    padding-right: 16px;
  }
  .v2-pitch-card,
  .v2-flow-mock,
  .v2-ctrl-item,
  .v2-os-card {
    padding: 16px 16px;
  }
  .v2-shift p {
    font-size: 17px;
  }
  .v2-cta h2 {
    font-size: clamp(28px, 8.5vw, 42px);
  }
}

/* PRICING — its grid mobile rules are inline but tighten paddings */
@media (max-width: 760px) {
  /* The pricing page reuses .v2-root + landing-v2.css; its sections
   * declare their own padding inline, so we override by re-targeting
   * the inline styled hero / tier section. */
  .v2-root section[style*='1180'] {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* MOBILE GAP FIX — first-fold + inter-section gaps were ugly because
 * (a) .v2-hero kept min-height: 100vh from its base rule even after
 *     we hid .v2-hero-right, leaving a viewport-tall gap;
 * (b) section paddings 60-80px top/bottom are too generous for phone.
 * Tightening both. */
@media (max-width: 760px) {
  .v2-hero {
    min-height: 0;
    padding: 72px 20px 24px;
  }
  .v2-shift {
    padding: 40px 20px 32px;
  }
  .v2-pitch {
    padding: 48px 20px;
  }
  .v2-flow {
    padding: 40px 20px;
  }
  .v2-controls {
    padding: 48px 20px;
  }
  .v2-os {
    padding: 40px 20px;
  }
  .v2-cta {
    padding: 56px 20px;
  }
}

@media (max-width: 420px) {
  .v2-hero {
    padding: 64px 16px 20px;
  }
  .v2-shift,
  .v2-pitch,
  .v2-flow,
  .v2-controls,
  .v2-os {
    padding-top: 36px;
    padding-bottom: 30px;
  }
  .v2-cta {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

/* ============================================================
 * MOBILE HERO VISUAL — compact radar + single live chip below CTA
 *
 * Hidden on desktop (.v2-hero-right has the full stage). Shows
 * only on phones (≤ 760px) where .v2-hero-right is display:none.
 * Gives the mobile hero a brand signature without the overlap +
 * clipping problems of the full desktop stage.
 * ============================================================ */
.v2-hero-mobile-visual {
  display: none;
}
@media (max-width: 760px) {
  .v2-hero-mobile-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 40px;
    margin-bottom: 8px;
    position: relative;
    width: 100%;
    padding: 12px 0;
  }

  .v2-hero-mobile-visual .radar-mini {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
  }
  .v2-hero-mobile-visual .radar-mini .ring {
    position: absolute;
    inset: 0;
    border: 1px solid var(--line-2);
    border-radius: 50%;
  }
  .v2-hero-mobile-visual .radar-mini .ring.r2 {
    inset: 18%;
  }
  .v2-hero-mobile-visual .radar-mini .ring.r3 {
    inset: 36%;
  }
  .v2-hero-mobile-visual .radar-mini .sweep {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
      from 0deg,
      transparent 0deg,
      transparent 300deg,
      rgba(107, 30, 44, 0.28) 350deg,
      rgba(107, 30, 44, 0) 360deg
    );
    animation: v2-sweep 6s linear infinite;
  }
  .v2-hero-mobile-visual .radar-mini .blip {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 5px rgba(107, 30, 44, 0.16);
  }
  .v2-hero-mobile-visual .radar-mini .b1 {
    top: 28%;
    left: 64%;
    animation: v2-blink 3.4s infinite 0.4s;
  }
  .v2-hero-mobile-visual .radar-mini .b2 {
    top: 60%;
    left: 38%;
    animation: v2-blink 3.4s infinite 1.4s;
  }
  .v2-hero-mobile-visual .radar-mini .b3 {
    top: 42%;
    left: 72%;
    background: var(--pop-ink);
    animation: v2-blink 3.4s infinite 2.2s;
  }
  .v2-hero-mobile-visual .radar-mini .glow {
    position: absolute;
    inset: -10%;
    border-radius: 50%;
    background: radial-gradient(
      circle at center,
      rgba(107, 30, 44, 0.15) 0%,
      rgba(107, 30, 44, 0) 60%
    );
    z-index: -1;
    filter: blur(16px);
    animation: v2-glow-pulse 6s ease-in-out infinite;
  }

  .v2-hero-mobile-visual .chip {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 9px 14px;
    box-shadow: 0 14px 28px rgba(14, 14, 12, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 12.5px;
    color: var(--ink);
    white-space: nowrap;
    animation: v2-chip-pop 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s both;
  }
  .v2-hero-mobile-visual .chip .ic {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(31, 122, 58, 0.12);
    color: var(--good);
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }
  .v2-hero-mobile-visual .chip .ic svg {
    width: 11px;
    height: 11px;
    stroke-width: 2;
  }
  .v2-hero-mobile-visual .chip .meta .lab {
    font-family: var(--mono);
    font-size: 8.5px;
    letter-spacing: 0.14em;
    color: var(--ink-3);
    text-transform: uppercase;
    font-weight: 700;
  }
  .v2-hero-mobile-visual .chip .meta .val {
    font-weight: 700;
    font-size: 12.5px;
    line-height: 1.1;
  }
}

/* ============================================================
 * RADAR POLISH PASS — warmer, brand-coherent, more sonar than
 * "wireframe rings + ghost sweep".
 *
 * Tuning the existing .v2-radar rather than rewriting it, so every
 * keyframe + structural rule above this point still applies. We just
 * override colors + add ping echos.
 * ============================================================ */

/* Rings: switch from neutral beige to faint oxblood — radar feels
 * coherent with brand instead of "free-tier wireframe template". */
.v2-radar .ring {
  border-color: rgba(107, 30, 44, 0.18);
}

/* Sweep cone: longer trail + warmer leading edge. Was transparent →
 * 22% oxblood (looked cool/washed). Now transparent → 50% oxblood →
 * 12% pop cream → 0% — reads as a real sonar light beam. */
.v2-radar .sweep {
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 280deg,
    rgba(107, 30, 44, 0.08) 310deg,
    rgba(107, 30, 44, 0.5) 354deg,
    rgba(235, 217, 181, 0.35) 358deg,
    rgba(107, 30, 44, 0) 360deg
  );
  filter: blur(0.4px);
}

/* Center anchor — small oxblood core dot at the radar's centroid.
 * Gives the composition something to land on; without it the radar
 * reads as a hollow target. */
.v2-radar::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 3px rgba(107, 30, 44, 0.12),
    0 0 14px rgba(107, 30, 44, 0.4);
  animation: v2-pulse-warm-core 2.4s ease-in-out infinite;
  z-index: 1;
}
@keyframes v2-pulse-warm-core {
  0%,
  100% {
    box-shadow:
      0 0 0 3px rgba(107, 30, 44, 0.12),
      0 0 14px rgba(107, 30, 44, 0.4);
  }
  50% {
    box-shadow:
      0 0 0 5px rgba(107, 30, 44, 0.16),
      0 0 22px rgba(107, 30, 44, 0.55);
  }
}

/* Sonar ping rings — each blip emits an expanding ring on its blink
 * cycle. The ::before on .blip pulses out from each location, like a
 * real radar return. Adds the actual motion vocabulary of "something
 * just got detected." */
.v2-radar .blip {
  /* Make the blip itself a touch warmer */
  background: var(--brand);
  box-shadow:
    0 0 0 6px rgba(107, 30, 44, 0.18),
    0 0 12px rgba(107, 30, 44, 0.4);
}
.v2-radar .blip::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(107, 30, 44, 0.6);
  animation: v2-sonar-ping 3.4s ease-out infinite;
  pointer-events: none;
  opacity: 0;
}
.v2-radar .b1::before {
  animation-delay: 0.4s;
}
.v2-radar .b2::before {
  animation-delay: 1.2s;
}
.v2-radar .b3::before {
  animation-delay: 2s;
}
@keyframes v2-sonar-ping {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    opacity: 0.7;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

/* Warmer glow behind the whole radar — replaces the cool low-alpha
 * one that was reading slightly cold. */
.v2-hero-glow {
  background: radial-gradient(
    circle at center,
    rgba(107, 30, 44, 0.22) 0%,
    rgba(235, 217, 181, 0.18) 35%,
    rgba(107, 30, 44, 0) 65%
  );
  filter: blur(28px);
}

/* Same warmer treatment on the mobile mini-radar */
@media (max-width: 760px) {
  .v2-hero-mobile-visual .radar-mini .ring {
    border-color: rgba(107, 30, 44, 0.18);
  }
  .v2-hero-mobile-visual .radar-mini .sweep {
    background: conic-gradient(
      from 0deg,
      transparent 0deg,
      transparent 280deg,
      rgba(107, 30, 44, 0.1) 310deg,
      rgba(107, 30, 44, 0.55) 354deg,
      rgba(235, 217, 181, 0.4) 358deg,
      rgba(107, 30, 44, 0) 360deg
    );
  }
  .v2-hero-mobile-visual .radar-mini .blip::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1.2px solid rgba(107, 30, 44, 0.55);
    animation: v2-sonar-ping 3.4s ease-out infinite;
    pointer-events: none;
    opacity: 0;
  }
  .v2-hero-mobile-visual .radar-mini .b1::before {
    animation-delay: 0.4s;
  }
  .v2-hero-mobile-visual .radar-mini .b2::before {
    animation-delay: 1.4s;
  }
  .v2-hero-mobile-visual .radar-mini .b3::before {
    animation-delay: 2.2s;
  }
}

/* Center core + warmer blip on the mobile mini-radar too, so the
 * mobile hero visual matches the desktop radar's character. */
@media (max-width: 760px) {
  .v2-hero-mobile-visual .radar-mini {
    /* center core dot */
    position: relative;
  }
  .v2-hero-mobile-visual .radar-mini::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand);
    transform: translate(-50%, -50%);
    box-shadow:
      0 0 0 2.5px rgba(107, 30, 44, 0.12),
      0 0 10px rgba(107, 30, 44, 0.4);
    animation: v2-pulse-warm-core 2.4s ease-in-out infinite;
    z-index: 1;
  }
  .v2-hero-mobile-visual .radar-mini .blip {
    background: var(--brand);
    box-shadow:
      0 0 0 4px rgba(107, 30, 44, 0.18),
      0 0 10px rgba(107, 30, 44, 0.4);
  }
}

