/* Vouch Pet Studio styles: form honeypot + status states for FormSubmit spam protection. */

:root {
  --primary: #F84E35;
  --primary-soft: #FF8469;
  --primary-deep: #D63C28;
  --bg: #FAF8F6;
  --text: #181818;
  --secondary: #365C46;
  --accent: #3BAA9C;
  --light-accent: #EAD8C0;
  --border: #E9E9E9;
  --success: #5EA66D;
  --warning: #F2B84B;
  --white: #ffffff;
  --muted: rgba(24, 24, 24, 0.62);
  --grad-warm: linear-gradient(135deg, #F84E35 0%, #FF8469 100%);
  --grad-peach: linear-gradient(135deg, #F84E35 0%, #FFB183 100%);
  --grad-deep: linear-gradient(135deg, #F84E35 0%, #D63C28 100%);
  --grad-gold: linear-gradient(135deg, #F84E35 0%, #F7C15B 100%);
  --grad-teal: linear-gradient(135deg, #F84E35 0%, #37B8A9 100%);
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --radius: 4px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 3rem);
}

h3 {
  font-size: 1.2rem;
}

h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

p {
  margin: 0 0 1rem;
}

ul, ol {
  margin: 0;
  padding: 0;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container.narrow {
  width: min(740px, calc(100% - 2.5rem));
}

.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.75rem;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--muted);
}

.punchline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--primary);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.disclaimer {
  font-size: 0.88rem;
  color: var(--muted);
  opacity: 0.85;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  padding: 0.75rem 1.5rem;
  background: rgba(250, 248, 246, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 24px rgba(24, 24, 24, 0.04);
}

.logo img {
  width: 132px;
  height: auto;
  mix-blend-mode: multiply;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--text);
}

.nav-cta,
.footer-cta,
.sticky-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.nav .nav-cta {
  color: var(--white);
  background: var(--primary);
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
}

.nav .nav-cta:hover {
  color: var(--white);
  background: var(--primary-deep);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 110;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 99;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1.25rem 1.25rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 16px 32px rgba(24, 24, 24, 0.08);
  max-height: calc(100svh - var(--header-h));
  overflow-y: auto;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  padding: 0.85rem 0.5rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-nav .nav-cta {
  margin-top: 0.75rem;
  text-align: center;
  color: var(--white);
  background: var(--primary);
  border: none;
  border-bottom: none;
  padding: 0.9rem;
  border-radius: var(--radius);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--grad-warm);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--grad-deep);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(24, 24, 24, 0.18);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--text);
}

.btn-full {
  width: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0 1.25rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 3rem 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 20%, rgba(248, 78, 53, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 45% at 10% 80%, rgba(59, 170, 156, 0.12), transparent 50%),
    linear-gradient(180deg, #FAF8F6 0%, #F3EEE8 48%, #FAF8F6 100%);
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24, 24, 24, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 24, 24, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 2.5rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hero-logo {
  width: min(340px, 100%);
  height: auto;
  margin-bottom: 1.25rem;
  mix-blend-mode: multiply;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 34rem;
}

.hero-positioning {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  max-width: 32rem;
  margin-top: 0.25rem;
}

.hero-qualifier {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 32rem;
}

/* Hero orbit visual */
.hero-visual {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orbit {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.hero-product {
  position: absolute;
  inset: 28%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  z-index: 2;
}

.product-pedestal {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-shot {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  background: #181818;
  border: 1px solid rgba(24, 24, 24, 0.08);
  box-shadow: 0 20px 50px rgba(248, 78, 53, 0.18);
  overflow: hidden;
  padding: 0;
  position: relative;
}

.product-shot::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: 15%;
  right: 15%;
  height: 18%;
  background: radial-gradient(ellipse, rgba(24, 24, 24, 0.12), transparent 70%);
  z-index: -1;
}

.hero-loop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.system-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.5rem 0.7rem;
  background: var(--text);
  color: var(--white);
  border-radius: var(--radius);
  text-align: center;
  line-height: 1.35;
  max-width: 220px;
}

.channel-chip {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem 0.45rem 0.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 10px 24px rgba(24, 24, 24, 0.06);
  animation: chip-in 0.8s var(--ease) both, float-chip 4.5s ease-in-out infinite;
}

.channel-chip img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.channel-chip span {
  white-space: nowrap;
  line-height: 1.2;
}

.chip-1 { top: 5%; left: 22%; animation-delay: 0.05s, 0s; }
.chip-2 { top: 16%; right: 8%; animation-delay: 0.12s, 0.3s; }
.chip-3 { top: 42%; right: 4%; animation-delay: 0.18s, 0.6s; }
.chip-4 { bottom: 16%; right: 8%; animation-delay: 0.24s, 0.2s; }
.chip-5 { bottom: 3%; left: 22%; animation-delay: 0.3s, 0.5s; }
.chip-6 { bottom: 20%; left: 4%; animation-delay: 0.36s, 0.1s; }
.chip-7 { top: 34%; left: 4%; animation-delay: 0.42s, 0.4s; }

@keyframes float-chip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes chip-in {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Positioning comparison */
.positioning {
  background:
    linear-gradient(180deg, transparent, rgba(234, 216, 192, 0.28) 40%, transparent);
}

.positioning-copy {
  margin-top: 0.5rem;
}

.market-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
  align-items: stretch;
}

.market-col {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--white);
}

.market-col h3 {
  margin-bottom: 1.1rem;
}

.market-col ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.market-col li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.market-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--light-accent);
}

.market-col li.dim {
  color: rgba(24, 24, 24, 0.45);
}

.market-side {
  opacity: 0.92;
}

.market-vouch {
  border-color: rgba(54, 92, 70, 0.35);
  background: linear-gradient(180deg, #ffffff, rgba(54, 92, 70, 0.08));
  box-shadow: 0 16px 40px rgba(54, 92, 70, 0.1);
  transform: scale(1.02);
  z-index: 1;
}

.market-vouch .market-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.market-vouch h3 {
  color: var(--secondary);
}

.market-vouch li {
  color: var(--text);
  font-weight: 500;
}

.market-vouch li::before {
  background: var(--accent);
}

.positioning-aside {
  margin-top: 2rem;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--secondary);
}

/* Package / deliverables */
.package {
  background: linear-gradient(180deg, rgba(59, 170, 156, 0.05), transparent 40%);
}

@keyframes gear-rise {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gear-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.package-intro {
  max-width: 720px;
  margin-bottom: 2.75rem;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.deliverable {
  padding: 1.5rem 1.35rem;
  border-top: 3px solid var(--primary);
  background: var(--white);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
  transition: transform 0.25s var(--ease), border-top-color 0.2s ease;
}

.deliverable:hover {
  transform: translateY(-3px);
  border-top-color: var(--accent);
}

.deliverable-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.65rem;
}

.deliverable h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.deliverable p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.deliverable-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  align-items: start;
}

.deliverable-wide .deliverable-num {
  grid-row: 1 / 3;
  align-self: center;
  font-size: 1.25rem;
  margin: 0;
}

.package-samples {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
  align-items: start;
}

.package-sample {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.package-sample-featured {
  grid-column: 1;
}

.package-sample-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--text);
  border: 1px solid var(--border);
}

.package-sample-featured .package-sample-media {
  aspect-ratio: 16 / 9;
}

.package-sample-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.package-sample-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.package-sample figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-inline: 0.1rem;
}

.package-sample-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.package-sample-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.footage-add-on {
  margin-top: 2.5rem;
  padding: 1.75rem 2rem;
  border-left: 3px solid var(--accent);
  background: rgba(59, 170, 156, 0.06);
}

.footage-add-on h3 {
  color: var(--secondary);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.footage-add-on p {
  margin: 0;
  color: var(--muted);
  max-width: 52rem;
}

.price-block {
  margin-top: 2.75rem;
  padding: 2rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
}

.price-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-amount {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}

.price-note {
  max-width: 32rem;
  margin: 0 auto 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Library value */
.library-value {
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(248, 78, 53, 0.07), transparent 55%),
    var(--bg);
}

.library-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.library-stage {
  position: relative;
  min-height: 380px;
  padding: 2rem 1.5rem;
  background: #2a2a2a;
  border: 1px solid var(--border);
  overflow: hidden;
}

.library-stage-bg {
  position: absolute;
  inset: -12px;
  background: url("images/finder-window.png") center / cover no-repeat;
  filter: blur(2px);
  transform: scale(1.04);
  z-index: 0;
  pointer-events: none;
}

.library-product {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  margin: -80px 0 0 -80px;
  overflow: hidden;
  background: var(--text);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(248, 78, 53, 0.2);
  transition: opacity 0.85s ease, transform 1s var(--ease);
  z-index: 3;
}

.library-product-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.library-flash {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95), transparent 55%);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
}

.library-folder {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  margin: -40px 0 0 -90px;
  padding: 1.1rem 1rem;
  background: var(--text);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s ease 0.15s, transform 0.9s var(--ease) 0.15s;
  z-index: 2;
}

.folder-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.library-branches {
  position: absolute;
  inset: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.7s ease 0.35s;
  z-index: 1;
}

.branch {
  padding: 0.45rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.branch-core {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.branch-future {
  color: var(--muted);
}

.library-caption {
  position: absolute;
  bottom: 0.85rem;
  left: 0.75rem;
  right: 0.75rem;
  margin: 0;
  padding: 0.45rem 0.7rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(250, 248, 246, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 2;
}

.library-visual.is-active .library-product {
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
}

.library-visual.is-flashing .library-flash {
  animation: flash-burst 0.9s ease-out;
}

.library-visual.is-active .library-folder {
  opacity: 1;
  transform: scale(1);
  top: 18%;
  margin-top: 0;
}

.library-visual.is-active .library-branches {
  opacity: 1;
  top: 38%;
}

.library-visual.is-active .branch {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.library-visual.is-active .branch:nth-child(1) { transition-delay: 0.45s; }
.library-visual.is-active .branch:nth-child(2) { transition-delay: 0.6s; }
.library-visual.is-active .branch:nth-child(3) { transition-delay: 0.75s; }
.library-visual.is-active .branch:nth-child(4) { transition-delay: 0.9s; }
.library-visual.is-active .branch:nth-child(5) { transition-delay: 1.05s; }
.library-visual.is-active .branch:nth-child(6) { transition-delay: 1.2s; }

.library-visual.is-active .library-caption {
  opacity: 1;
  transition-delay: 1.4s;
}

@keyframes flash-burst {
  0% { opacity: 0; }
  30% { opacity: 1; }
  100% { opacity: 0; }
}

.channel-list {
  margin-top: 2.5rem;
}

.channel-list-label {
  font-weight: 600;
  margin-bottom: 1rem;
}

.channel-list ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.channel-list li {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  background: rgba(54, 92, 70, 0.08);
  color: var(--secondary);
  border-radius: var(--radius);
}

/* Channels section */
.channels {
  background: linear-gradient(180deg, rgba(234, 216, 192, 0.3), transparent);
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2.75rem;
}

.channel-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, transform 0.2s var(--ease);
}

.channel-tile:hover {
  border-color: var(--primary-soft);
  transform: translateY(-2px);
}

/* Production */
.production {
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(59, 170, 156, 0.1), transparent 50%),
    linear-gradient(180deg, rgba(234, 216, 192, 0.18), transparent 35%),
    var(--bg);
}

.production-intro {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.production-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
}

.production-roles,
.tools-block {
  padding: 2rem 1.75rem;
}

.production-roles {
  border-right: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(54, 92, 70, 0.04), transparent 70%);
}

.production-label {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.role-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.role-list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.98rem;
  color: var(--muted);
}

.role-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--primary-soft);
}

.production-sum {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.tools-block h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 1rem;
}

.tools-block p {
  color: var(--muted);
}

.tools-block p:last-child {
  margin-bottom: 0;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.outcome-item {
  padding-top: 1rem;
  border-top: 2px solid var(--light-accent);
}

.outcome-item h4 {
  color: var(--secondary);
}

.outcome-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.package-card {
  margin-top: 3.5rem;
  position: relative;
  padding: 3.75rem 2rem 2.25rem;
  background: var(--text);
  color: var(--white);
  overflow: visible;
  text-align: center;
}

.equip-stage {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(1rem, 3vw, 2.25rem);
  margin: 0 auto 1.75rem;
  padding: 0 0.5rem;
  min-height: 100px;
  max-width: 560px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -42%);
  width: 100%;
  z-index: 2;
}

.equip-piece {
  display: block;
  width: 112px;
  height: 96px;
  flex: 0 0 112px;
  object-fit: contain;
  object-position: center bottom;
  opacity: 0;
  transform: translateY(24px);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.4));
}

.package-card.is-active .equip-piece {
  animation: gear-rise 0.95s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 0.12s);
}

.package-card.is-settled .equip-piece {
  opacity: 1;
  transform: translateY(0);
  animation: gear-float 5s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.35s);
}

.package-card-inner .eyebrow {
  color: var(--primary-soft);
}

.package-card-price {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.package-card-inner p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* Revenue / investment map */
.revenue {
  background:
    radial-gradient(ellipse 55% 45% at 50% 20%, rgba(248, 78, 53, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(54, 92, 70, 0.06), transparent 65%);
}

.revenue .section-head {
  margin-bottom: 2.5rem;
  max-width: 720px;
}

.invest-stage {
  position: relative;
  min-height: 520px;
  padding: 2rem 1rem 1rem;
  display: grid;
  place-items: center;
}

.invest-core {
  position: relative;
  z-index: 3;
  width: min(220px, 70%);
  padding: 1.5rem 1.25rem;
  text-align: center;
  background: var(--text);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(24, 24, 24, 0.22);
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.invest-core-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-soft);
  margin-bottom: 0.45rem;
}

.invest-core-amount {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.invest-core-note {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.invest-spokes {
  position: absolute;
  inset: 12% 8%;
  z-index: 1;
  pointer-events: none;
}

.invest-spoke {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(38vw, 210px);
  height: 1px;
  background: linear-gradient(90deg, rgba(248, 78, 53, 0.55), rgba(59, 170, 156, 0.15));
  transform-origin: left center;
  transform: rotate(calc(var(--i) * 45deg)) scaleX(0);
  opacity: 0;
  transition: transform 0.7s var(--ease), opacity 0.4s ease;
  transition-delay: calc(0.2s + var(--i) * 0.07s);
}

.invest-nodes {
  list-style: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  padding: 0;
}

.invest-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: min(240px, 42%);
  padding: 0.75rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(24, 24, 24, 0.06);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  transition-delay: calc(0.28s + var(--i) * 0.08s);
}

.invest-node:nth-child(1) { left: 50%; top: 7%; }
.invest-node:nth-child(2) { left: 88%; top: 28%; }
.invest-node:nth-child(3) { left: 88%; top: 62%; }
.invest-node:nth-child(4) { left: 50%; top: 90%; }
.invest-node:nth-child(5) { left: 12%; top: 62%; }
.invest-node:nth-child(6) { left: 12%; top: 28%; }
.invest-node:nth-child(7) { left: 78%; top: 10%; }
.invest-node:nth-child(8) { left: 22%; top: 10%; }

.invest-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(54, 92, 70, 0.08);
  color: var(--secondary);
}

.invest-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.invest-copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.invest-copy strong {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.invest-copy em {
  font-style: normal;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--muted);
}

.invest-stage.is-active .invest-core {
  opacity: 1;
  transform: scale(1);
}

.invest-stage.is-active .invest-spoke {
  opacity: 1;
  transform: rotate(calc(var(--i) * 45deg)) scaleX(1);
}

.invest-stage.is-active .invest-node {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.invest-stage.is-settled .invest-node {
  animation: invest-pulse 4.5s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.28s);
}

@keyframes invest-pulse {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-5px); }
}

.revenue-close {
  max-width: 720px;
  margin-top: 2.5rem;
}

@media (max-width: 980px) {
  .invest-stage {
    min-height: 0;
    padding: 0;
    display: block;
  }

  .invest-spokes {
    display: none;
  }

  .invest-core {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 1.25rem;
  }

  .invest-nodes {
    position: static;
    display: grid;
    gap: 0.65rem;
  }

  .invest-node {
    position: static;
    width: 100%;
    transform: translateY(18px) scale(0.98);
  }

  .invest-node:nth-child(n) {
    left: auto;
    top: auto;
  }

  .invest-stage.is-active .invest-node {
    transform: translateY(0) scale(1);
  }

  .invest-stage.is-settled .invest-node {
    animation: none;
  }
}

/* Why Vouch */
.why-vouch {
  background: var(--text);
  color: var(--white);
}

.why-vouch h2 {
  color: var(--white);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
}

.diff-item {
  padding-top: 1.25rem;
  border-top: 2px solid rgba(248, 78, 53, 0.7);
}

.diff-item h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.diff-item p {
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
  font-size: 0.98rem;
}

/* Process */
.steps {
  list-style: none;
  display: grid;
  gap: 0;
}

.steps li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.steps li:first-child {
  border-top: 1px solid var(--border);
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.steps h3 {
  margin-bottom: 0.35rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

/* Work */
.work {
  background: linear-gradient(180deg, rgba(234, 216, 192, 0.35), transparent);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.25rem;
}

.work-item {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
}

.work-featured {
  border-top-color: var(--secondary);
}

.work-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.work-item p {
  font-size: 0.95rem;
  color: var(--muted);
}

.work-item strong {
  color: var(--text);
  font-weight: 600;
}

/* Fit filter */
.fit-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.fit-yes,
.fit-no {
  padding: 1.75rem;
  border: 1px solid var(--border);
  background: var(--white);
}

.fit-yes {
  border-top: 3px solid var(--success);
}

.fit-no {
  border-top: 3px solid var(--warning);
}

.fit-yes ul,
.fit-no ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.fit-yes li,
.fit-no li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--muted);
}

.fit-yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.fit-no li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--warning);
  font-weight: 700;
}

.fit-cta {
  margin-top: 2rem;
  text-align: center;
}

/* Final CTA / form */
.cta-final {
  background:
    radial-gradient(ellipse 55% 60% at 0% 100%, rgba(248, 78, 53, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 50% at 100% 0%, rgba(59, 170, 156, 0.1), transparent 50%),
    var(--bg);
}

.cta-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.cta-second {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: -0.25rem 0 1.25rem;
  color: var(--secondary);
}

.cta-price {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  background: rgba(248, 78, 53, 0.08);
  border-left: 3px solid var(--primary);
}

.project-form {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.project-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.project-form input[type="file"] {
  padding: 0.65rem 0.75rem;
  font-size: 0.88rem;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(248, 78, 53, 0.15);
}

.file-label input {
  cursor: pointer;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  min-height: 1.2em;
}

.form-note.is-success {
  color: var(--success);
}

.form-note.is-error {
  color: var(--primary);
}

/* Visually hidden honeypot — keep in DOM for bots, hide from people and assistive tech */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: #F3EEE8;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 28rem;
}

.footer-cta {
  color: var(--white);
  background: var(--primary);
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius);
}

.footer-cta:hover {
  background: var(--primary-deep);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  padding: 0.85rem 1.2rem;
  background: var(--text);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.9rem;
  box-shadow: 0 12px 30px rgba(24, 24, 24, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
}

.sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta:hover {
  background: var(--primary);
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .nav {
    gap: 0.85rem;
  }

  .nav a {
    font-size: 0.82rem;
  }
}

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

  .menu-toggle {
    display: flex;
  }

  .hero-inner,
  .cta-grid,
  .library-layout,
  .diff-grid,
  .market-grid,
  .deliverable-grid,
  .package-samples,
  .production-split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
    overflow: visible;
  }

  .hero-visual {
    min-height: 400px;
    order: -1;
  }

  .hero-orbit {
    width: min(100%, 400px);
  }

  .hero-product {
    inset: 30%;
  }

  .channel-chip {
    font-size: 0.68rem;
    padding: 0.4rem 0.6rem 0.4rem 0.35rem;
    gap: 0.35rem;
  }

  .channel-chip img {
    width: 24px;
    height: 24px;
  }

  .chip-1 { top: 3%; left: 24%; }
  .chip-2 { top: 15%; right: 2%; }
  .chip-3 { top: 42%; right: 1%; }
  .chip-4 { bottom: 15%; right: 3%; }
  .chip-5 { bottom: 2%; left: 22%; }
  .chip-6 { bottom: 20%; left: 1%; }
  .chip-7 { top: 34%; left: 1%; }

  .market-vouch {
    transform: none;
    order: -1;
  }

  .deliverable-grid {
    grid-template-columns: 1fr 1fr;
  }

  .package-samples {
    grid-template-columns: 1fr 1fr;
  }

  .package-sample-featured {
    grid-column: 1 / -1;
  }

  .deliverable-wide {
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr;
  }

  .diff-grid {
    grid-template-columns: 1fr 1fr;
  }

  .production-roles {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .system-badge {
    max-width: 200px;
    font-size: 0.68rem;
  }
}

@media (max-width: 640px) {
  .container,
  .container.narrow,
  .hero-inner {
    width: calc(100% - 1.75rem);
  }

  .site-header {
    padding-inline: 1rem;
  }

  .form-row,
  .deliverable-grid,
  .package-samples,
  .diff-grid {
    grid-template-columns: 1fr;
  }

  .package-sample-featured {
    grid-column: auto;
  }

  .equip-stage {
    transform: translate(-50%, -40%);
    gap: 0.65rem;
    max-width: 100%;
  }

  .equip-piece {
    width: 72px;
    height: 64px;
    flex: 0 0 72px;
  }

  .deliverable-wide {
    grid-template-columns: 1fr;
  }

  .deliverable-wide .deliverable-num {
    grid-row: auto;
  }

  .steps li {
    grid-template-columns: 3rem 1fr;
  }

  .sticky-cta {
    left: 1rem;
    right: 1rem;
    text-align: center;
  }

  .channel-chip {
    font-size: 0.6rem;
    padding: 0.3rem 0.45rem 0.3rem 0.28rem;
    gap: 0.28rem;
    max-width: 46%;
  }

  .channel-chip img {
    width: 20px;
    height: 20px;
  }

  .channel-chip span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-orbit {
    width: min(100%, 340px);
  }

  .hero-product {
    inset: 32%;
    gap: 0.55rem;
  }

  .chip-1 { top: 2%; left: 18%; }
  .chip-2 { top: 14%; right: 1%; }
  .chip-3 { top: 40%; right: 0%; }
  .chip-4 { bottom: 14%; right: 2%; }
  .chip-5 { bottom: 1%; left: 16%; }
  .chip-6 { bottom: 18%; left: 0%; }
  .chip-7 { top: 32%; left: 0%; }

  .system-badge {
    max-width: 160px;
    font-size: 0.65rem;
    padding: 0.4rem 0.55rem;
  }

  .library-stage {
    min-height: 340px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-row .btn {
    width: 100%;
  }

  .price-block {
    padding: 1.5rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .channel-chip,
  .sticky-cta,
  .btn,
  .library-flash,
  .equip-piece {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .library-visual .library-product {
    opacity: 0;
  }

  .library-visual .library-folder,
  .library-visual .library-branches,
  .library-visual .branch,
  .library-visual .library-caption,
  .equip-piece,
  .invest-core,
  .invest-node,
  .invest-spoke {
    opacity: 1;
    transform: none;
  }

  .invest-stage.is-settled .invest-node {
    animation: none;
  }
}
