/* ---------- Base: v04 visual system ---------- */

:root {
  --fs-xs: 0.875rem;
  --fs-sm: 1rem;
  --fs-md: 1.25rem;
  --fs-lg: 1.563rem;
  --fs-xl: 1.953rem;
  --fs-hero: clamp(2.4rem, 4.8vw, 3.4rem);

  --lh-normal: 1.6;
  --lh-tight: 1.3;

  --color-bg: #f7f1e3;
  --color-text-main: #253024;
  --color-text-soft: #6f7565;
  --color-line: rgba(37, 48, 36, 0.18);

  --color-circle-main: rgba(255, 255, 255, 0.82);
  --color-circle-alt1: rgba(230, 255, 51, 0.38);
  --color-circle-alt2: rgba(255, 59, 215, 0.36);
  --flower-accent-glow: rgba(230, 255, 51, 0.28);

  --color-btn-hover: #e6ff33;
  --radius-pill: 999px;
  --shadow-card: 0 24px 70px rgba(0, 0, 0, 0.08);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text-main);
  position: relative;
  overflow-x: hidden;
}

a { color: inherit; }

/* ---------- Floating circle layer ---------- */

#circle-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background-color: var(--color-circle-main);
  opacity: 0.45;
  transition: opacity 220ms ease-out, transform 220ms ease-out, background-color 220ms ease-out;
}

.circle:hover {
  transform: scale(1.2);
  background-color: var(--hover-color);
  box-shadow: 0 0 18px rgba(86, 191, 255, 0.5), 0 0 36px rgba(255, 59, 215, 0.35);
}

.circle[data-tone="lime"] { background-color: var(--color-circle-alt1); }
.circle[data-tone="pink"] { background-color: var(--color-circle-alt2); }
.circle.pop-in { animation: circle-pop 320ms ease-out forwards; }

@keyframes circle-pop {
  0% { transform: scale(0.7); opacity: 0.2; }
  60% { transform: scale(1.12); opacity: 0.9; }
  100% { transform: scale(1); opacity: 0.8; }
}

/* ---------- Two-level navigation ---------- */

nav.main {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 8px 18px;
  background: rgba(247, 241, 227, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(37, 48, 36, 0.1);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  animation: fadeInUp 900ms cubic-bezier(0.2, 0.8, 0.25, 1) forwards;
}

.logo-icon {
  height: 22px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.logo-sep {
  color: rgba(37, 48, 36, 0.3);
  font-weight: 300;
}

.logo-page {
  color: var(--color-text-soft);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.nav-item {
  position: relative;
}

.nav-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: min(640px, calc(100vw - 36px));
  height: 16px;
}

.nav-item.nav-about::after {
  left: auto;
  right: 0;
  width: min(360px, calc(100vw - 36px));
}

.nav-trigger,
.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--color-text-main);
  font: inherit;
  font-size: var(--fs-sm);
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 140ms ease-out, border-color 140ms ease-out, transform 140ms ease-out;
}

.nav-trigger svg {
  width: 13px;
  height: 13px;
  color: rgba(37, 48, 36, 0.55);
  transition: transform 160ms ease-out;
}

.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger,
.nav-item.is-open .nav-trigger,
.nav-trigger:hover,
.nav-trigger.active {
  background: rgba(235, 228, 211, 0.78);
  outline: none;
}

.nav-item:hover .nav-trigger svg,
.nav-item:focus-within .nav-trigger svg,
.nav-item.is-open .nav-trigger svg {
  transform: rotate(180deg);
}

.nav-item:hover::after,
.nav-item:focus-within::after,
.nav-item.is-open::after {
  display: block;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: min(640px, calc(100vw - 36px));
  padding: 24px 28px;
  border: 2px solid rgba(37, 48, 36, 0.16);
  border-radius: 24px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 160ms ease-out, transform 160ms ease-out, visibility 0s linear 180ms;
}

.nav-dropdown-right {
  left: auto;
  right: 0;
  width: min(360px, calc(100vw - 36px));
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.nav-dropdown a {
  display: block;
  color: var(--color-text-main);
  text-decoration: none;
  margin-bottom: 20px;
}

.nav-dropdown a:last-child {
  margin-bottom: 0;
}

.nav-dropdown-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.25;
}

.nav-dropdown-desc {
  display: block;
  max-width: 520px;
  margin-top: 4px;
  color: var(--color-text-soft);
  font-size: var(--fs-xs);
  line-height: 1.35;
}

.nav-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: #caff3a;
  color: var(--color-text-main);
  font-family: "Courier New", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-badge.soft {
  background: rgba(235, 228, 211, 0.92);
  color: var(--color-text-soft);
}

.nav-cta {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #142519;
  color: var(--color-bg);
  font-weight: 700;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--color-btn-hover);
  color: var(--color-text-main);
  outline: none;
}

/* ---------- Layout ---------- */

.page {
  position: relative;
  z-index: 2;
}

#upload-section {
  scroll-margin-top: 96px;
}

.hero,
.industry-hero,
.funnel,
.solution-section,
.article,
.company,
.video-post {
  max-width: 1040px;
  margin: 0 auto;
  padding: 96px 24px 72px;
}

.hero-grid,
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 1fr);
  column-gap: 28px;
  align-items: flex-start;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr);
}

.hero-copy,
.hero-left {
  max-width: 700px;
}

h1,
.industry-headline,
.section-headline,
.case-headline,
.final-cta h2 {
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
  margin: 4px 0 22px;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(6px);
  animation: fadeInUp 1000ms cubic-bezier(0.2, 0.8, 0.25, 1) forwards;
  animation-delay: 120ms;
}

.section-headline,
.case-headline,
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.highlight,
em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 58%, rgba(230, 255, 51, 0.58) 58%);
}

.flip-container {
  display: inline-block;
  height: 1.28em;
  overflow: hidden;
  vertical-align: bottom;
}

.flip-word {
  display: block;
  line-height: 1.28;
  color: var(--color-text-main);
  animation: flipUp 12s infinite;
}

@keyframes flipUp {
  0%, 20% { transform: translateY(0%); }
  25%, 45% { transform: translateY(-100%); }
  50%, 70% { transform: translateY(-200%); }
  75%, 95% { transform: translateY(-300%); }
  100% { transform: translateY(-400%); }
}

p,
.hero-sub,
.industry-sub,
.case-body,
.company .lede {
  font-size: var(--fs-md);
  line-height: var(--lh-normal);
  color: var(--color-text-main);
  margin: 6px 0 16px;
  opacity: 0;
  transform: translateY(6px);
  animation: fadeInUp 1300ms cubic-bezier(0.2, 0.8, 0.25, 1) forwards;
}

.investor-centered {
  text-align: center;
  padding-top: 120px;
}

.investor-centered .industry-headline {
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.investor-centered .industry-sub {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.investor-centered .hero-ctas {
  justify-content: center;
  margin-top: 48px;
}

.hero-copy p:nth-of-type(1),
.hero-sub { animation-delay: 620ms; }
.hero-copy p:nth-of-type(2) { animation-delay: 940ms; }
.hero-copy p:nth-of-type(3) { animation-delay: 1180ms; }

.hero-ctas,
.cta-column,
.final-cta-buttons,
.submit-row {
  margin: 20px 0 36px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeInUp 1000ms cubic-bezier(0.2, 0.8, 0.25, 1) forwards;
  animation-delay: 220ms;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(10px); }
  30% { opacity: 0.55; transform: translateY(5px); }
  50% { opacity: 0.7; transform: translateY(3px); }
  65% { opacity: 0.6; transform: translateY(2px); }
  80% { opacity: 0.9; transform: translateY(1px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ---------- Buttons ---------- */

.btn,
.btn-primary,
.btn-secondary,
.btn-light,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 26px;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--color-text-main);
  cursor: pointer;
  color: var(--color-text-main);
  background: transparent;
  box-shadow: none;
  gap: 0;
  transition: transform 140ms ease-out, box-shadow 140ms ease-out, background-color 140ms ease-out, color 140ms ease-out, border-color 140ms ease-out;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-light:hover,
.btn-ghost:hover,
.btn:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-light:focus-visible,
.btn-ghost:focus-visible {
  background: var(--color-btn-hover);
  border-color: var(--color-text-main);
  color: var(--color-text-main);
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(38, 48, 36, 0.08), 0 8px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.btn-secondary:hover,
.btn-ghost:hover { background: #ff3bd7; }

/* ---------- Flower & line ---------- */

.flower-stack {
  position: absolute;
  top: 132px;
  bottom: 56px;
  left: 24px;
  z-index: 2;
  width: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.flower-icon {
  display: block;
  width: 96px;
  height: 96px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(1px) scale(0.6);
  filter: drop-shadow(0 0 18px var(--flower-accent-glow));
  transition: filter 420ms ease, transform 320ms ease;
}

.flower-stem {
  width: 2px;
  flex: 1 1 auto;
  height: auto;
  min-height: 180px;
  margin: 12px 0 0;
  border-left: 2px dashed rgba(37, 48, 36, 0.5);
}

.flower-icon.grow-start {
  animation: flowerGrow 620ms cubic-bezier(0.18, 0.86, 0.32, 1) forwards;
  visibility: visible;
}

.flower-icon:hover {
  transform: translateX(0) scale(1.02);
  filter: drop-shadow(0 0 24px var(--flower-accent-glow));
}

@keyframes flowerGrow {
  from { opacity: 0; transform: translateX(-8px) scale(0.6); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

/* ---------- Product content, compact v04 treatment ---------- */

.story-carousel,
.case-visual,
.upload-card,
.contact-panel,
.waitlist-form,
.feature,
.solution-detail-item,
.stat {
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(37, 48, 36, 0.14);
  border-radius: 28px;
  box-shadow: none;
}

.story-carousel {
  position: relative;
  z-index: 2;
  margin-top: 46px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.38);
  touch-action: pan-y;
}

.story-carousel-stage {
  position: relative;
  height: 560px;
}

.story-slide {
  display: none;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  height: 560px;
}

.story-slide.active {
  display: grid;
}

.story-slide-media {
  min-height: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 24% 20%, rgba(230, 255, 51, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(247, 241, 227, 0.86), rgba(255, 255, 255, 0.42));
  border-right: 2px solid rgba(37, 48, 36, 0.12);
}

.story-slide-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center bottom;
  border: 2px solid rgba(37, 48, 36, 0.12);
  border-radius: 18px;
  background: rgba(247, 241, 227, 0.72);
  box-shadow: 0 18px 54px rgba(37, 48, 36, 0.12);
}

.story-slide-media-contain img {
  object-fit: contain;
  object-position: center;
}

.story-slide-media-cta {
  background:
    radial-gradient(circle at 50% 45%, rgba(230, 255, 51, 0.34), transparent 28%),
    radial-gradient(circle at 20% 72%, rgba(255, 59, 215, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(247, 241, 227, 0.92), rgba(255, 255, 255, 0.38));
}

.story-cta-mark {
  width: min(360px, 72%);
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(37, 48, 36, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-main);
  font-size: var(--fs-xl);
  font-weight: 700;
  letter-spacing: 0;
  background: rgba(255, 255, 255, 0.46);
}

.story-slide-copy {
  min-height: 0;
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: flex-start;
}

.story-slide-copy p {
  opacity: 1;
  transform: none;
  animation: none;
}

.story-step-label {
  margin: 0 0 14px;
  color: var(--color-text-soft);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.story-slide-copy h2 {
  margin: 0 0 14px;
  color: var(--color-text-main);
  font-size: clamp(1.52rem, 2.35vw, 2rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.story-slide-copy > p:last-of-type {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.42;
}

.story-slide-copy > p:not(.story-step-label):not(.story-slide-highlight) {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.42;
}

.story-slide-body p {
  margin: 0 0 0.7em;
  font-size: 1.02rem;
  line-height: 1.42;
}

.story-slide-body p:last-child {
  margin-bottom: 0;
}

.story-slide-highlight {
  margin-top: auto !important;
  padding: 16px 18px;
  border: 2px solid rgba(37, 48, 36, 0.16);
  border-radius: 18px;
  background: rgba(230, 255, 51, 0.34);
  color: var(--color-text-main);
  font-size: 0.96rem !important;
  font-weight: 700;
  line-height: 1.34 !important;
}

.story-slide-copy .btn-primary {
  margin-top: 18px;
  align-self: flex-start;
}

.story-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(37, 48, 36, 0.72);
  border-radius: 50%;
  background: rgba(247, 241, 227, 0.9);
  color: var(--color-text-main);
  font: inherit;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(37, 48, 36, 0.14);
  transition: opacity 180ms ease-out, visibility 180ms ease-out, background-color 140ms ease-out, transform 140ms ease-out;
}

.story-arrow:hover,
.story-arrow:focus-visible {
  background: var(--color-btn-hover);
  transform: translateY(-50%) scale(1.04);
  outline: none;
}

.story-carousel.is-engaged .story-arrow {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.story-arrow-prev {
  left: 18px;
}

.story-arrow-next {
  right: 18px;
}

.story-carousel-controls {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-top: 2px solid rgba(37, 48, 36, 0.12);
  background: rgba(247, 241, 227, 0.78);
}

.story-step-trigger {
  min-height: 70px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  border: 0;
  border-right: 1px solid rgba(37, 48, 36, 0.12);
  background: transparent;
  color: var(--color-text-main);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
  text-align: left;
  cursor: pointer;
}

.story-step-trigger:last-child {
  border-right: 0;
}

.story-step-trigger span {
  color: var(--color-text-soft);
  font-size: 0.72rem;
}

.story-step-trigger:hover,
.story-step-trigger:focus-visible {
  background: rgba(230, 255, 51, 0.42);
  outline: none;
}

.story-step-trigger.active {
  background: var(--color-text-main);
  color: var(--color-bg);
}

.story-step-trigger.active span {
  color: rgba(247, 241, 227, 0.72);
}

.case-study,
.final-cta {
  position: relative;
  z-index: 2;
  padding: 84px 24px;
}

.case-inner,
.final-cta-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 36px;
  align-items: center;
}

.case-meta,
.section-label,
.industry-eyebrow,
.feature-num,
.waitlist-tag,
.price-badge {
  font-size: var(--fs-xs);
  color: var(--color-text-soft);
  font-weight: 700;
}

.feature-num { margin-bottom: 12px; text-transform: capitalize; }
.industry-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.industry-meta-row .waitlist-tag {
  margin-left: auto;
}

.case-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 14px; }
.case-meta-tag,
.waitlist-tag {
  display: inline-flex;
  border: 2px solid rgba(37, 48, 36, 0.2);
  border-radius: 999px;
  padding: 6px 10px;
}

.case-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: var(--lh-tight);
  margin: 4px 0 22px;
}

.case-copy p {
  font-size: var(--fs-md);
  line-height: var(--lh-normal);
}

.case-copy blockquote {
  border-left: 2px dashed rgba(37, 48, 36, 0.48);
  padding-left: 18px;
  margin: 22px 0;
}

.case-copy blockquote p {
  font-size: var(--fs-md);
  margin: 6px 0;
}

.case-copy blockquote p:last-child {
  color: var(--color-text-soft);
}

.case-copy a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.case-copy a:hover,
.case-copy a:focus-visible {
  color: var(--color-text-soft);
  outline: none;
}

.case-copy-outro > p > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 26px;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--color-text-main);
  color: var(--color-text-main);
}

.case-copy-outro > p > a:hover,
.case-copy-outro > p > a:focus-visible {
  background: #ff3bd7;
  color: var(--color-text-main);
  outline: none;
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.stat { padding: 16px; }
.stat-num { font-size: var(--fs-xl); font-weight: 700; }
.stat-label { font-size: var(--fs-xs); color: var(--color-text-soft); }

.quote {
  border-left: 2px dashed rgba(37, 48, 36, 0.48);
  padding-left: 18px;
  margin: 22px 0;
}

.quote-text { font-size: var(--fs-md); }
.quote-attr { color: var(--color-text-soft); }

.case-visual {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.case-visual-embed {
  aspect-ratio: 504 / 399;
}

.case-visual-link {
  display: block;
  width: 100%;
  height: 100%;
}

.case-visual-link:focus-visible {
  outline: 3px solid var(--color-text-main);
  outline-offset: -6px;
}

.case-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.case-visual iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.funnel-grid,
.feature-grid,
.solution-detail {
  display: grid;
  gap: 18px;
}

.funnel-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  margin-top: 34px;
}

.funnel-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}

.funnel-step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 18px;
  border: 2px solid transparent;
  border-radius: 24px;
  cursor: pointer;
}

.funnel-step::before {
  content: counter(step, decimal-leading-zero);
  color: var(--color-text-soft);
  font-weight: 700;
  padding-top: 3px;
}

.funnel-step.active {
  border: 2px solid rgba(37, 48, 36, 0.18);
  background: rgba(255, 255, 255, 0.28);
}

.funnel-step h4,
.feature h3,
.solution-detail-item h4 {
  margin: 0 0 12px;
  font-size: var(--fs-md);
  line-height: 1.25;
}

.funnel-step p,
.feature p,
.solution-detail-item p {
  font-size: var(--fs-sm);
  margin: 0 0 8px;
  color: var(--color-text-soft);
}

.upload-card,
.contact-panel,
.waitlist-form {
  padding: 24px;
}

.upload-tabs { display: flex; gap: 8px; margin-bottom: 22px; }
.upload-tab {
  flex: 1;
  min-height: 38px;
  border: 2px solid var(--color-text-main);
  border-radius: 999px;
  background: transparent;
  color: var(--color-text-main);
  font-weight: 700;
  cursor: pointer;
}
.upload-tab.active,
.upload-tab:hover { background: var(--color-btn-hover); }

.upload-zone {
  border: 2px dashed rgba(37, 48, 36, 0.35);
  border-radius: 18px;
  padding: 26px 18px 18px;
  text-align: center;
  margin-bottom: 18px;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(246, 240, 228, 0.36);
  transition: background-color 140ms ease-out, border-color 140ms ease-out, transform 140ms ease-out;
}

.upload-zone:hover,
.upload-zone.has-file {
  border-color: var(--color-text-main);
  background: rgba(255, 255, 255, 0.22);
}

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

.upload-zone.has-file {
  border-style: solid;
}

.upload-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  border: 2px solid var(--color-text-main);
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  background: rgba(255, 255, 255, 0.34);
}

.upload-title {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(1.05rem, 1.8vw, 1.38rem);
  font-weight: 800;
  line-height: 1.16;
}

.upload-hint {
  margin-top: 4px;
  color: var(--color-text-soft);
}

.upload-picker {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100%, 430px);
  min-height: 44px;
  margin: 18px auto 0;
  padding: 5px;
  border: 2px solid rgba(37, 48, 36, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  text-align: left;
}

.upload-picker-button {
  flex: 0 0 auto;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--color-text-main);
  color: var(--color-bg);
  font-size: var(--fs-xs);
  font-weight: 800;
}

.upload-picker-name {
  min-width: 0;
  overflow: hidden;
  color: var(--color-text-soft);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-zone.has-file .upload-picker {
  border-color: var(--color-text-main);
}

.upload-zone.has-file .upload-picker-name {
  color: var(--color-text-main);
}

.upload-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-row label {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 700;
}

.form-row-priority label::after,
.form-row-required label::after {
  content: "";
  width: 0.42em;
  height: 0.42em;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.42;
  transform: translateY(-0.08em);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 2px solid rgba(37, 48, 36, 0.35);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.28);
  padding: 12px 14px;
  color: var(--color-text-main);
  font: inherit;
}

.form-row-priority label {
  font-size: 0.95rem;
}

.form-row-priority input,
.form-row-priority textarea {
  border-color: rgba(37, 48, 36, 0.64);
  background: rgba(255, 255, 255, 0.38);
}

.form-row select {
  min-height: 51px;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--color-text-main) 50%), linear-gradient(135deg, var(--color-text-main) 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 12px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-row textarea { min-height: 86px; resize: vertical; }

.contact-message-row textarea {
  min-height: 118px;
}

.lead-status {
  margin: 12px 0 0;
  color: var(--color-text-soft);
  font-size: var(--fs-xs);
  font-weight: 700;
}

.lead-status.has-error {
  color: #8f1d1d;
}

.upload-diagnosis {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 2px dashed rgba(37, 48, 36, 0.2);
}

.upload-status-card {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
  padding: 13px 14px;
  border: 2px solid var(--color-text-main);
  border-radius: 14px;
  background: rgba(230, 255, 51, 0.28);
}

.upload-status-card strong {
  font-size: var(--fs-sm);
}

.upload-status-card span {
  color: var(--color-text-soft);
  font-size: var(--fs-xs);
  font-weight: 700;
}

.upload-status-card.is-confirmed {
  background: rgba(255, 255, 255, 0.42);
}

.upload-status-card.has-warning {
  background: rgba(255, 214, 102, 0.28);
}

.upload-diagnosis-header,
.upload-metrics,
.upload-columns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.upload-diagnosis-header {
  justify-content: space-between;
  margin-bottom: 14px;
}

.upload-diagnosis-header h3,
.upload-warnings h4,
.upload-preview-block h4 {
  margin: 0;
  font-size: var(--fs-sm);
}

.upload-diagnosis-header span,
.upload-columns span {
  border: 1px solid rgba(37, 48, 36, 0.26);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: var(--fs-xs);
  font-weight: 700;
}

.upload-metrics {
  margin: 0 0 14px;
}

.upload-metrics div {
  min-width: 92px;
  padding: 10px 12px;
  border: 1px solid rgba(37, 48, 36, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.22);
}

.upload-metrics dt {
  font-size: 0.72rem;
  color: var(--color-text-soft);
}

.upload-metrics dd {
  margin: 2px 0 0;
  font-weight: 800;
}

.upload-columns {
  margin-bottom: 16px;
}

.upload-warnings,
.upload-preview-block {
  margin: 14px 0;
}

.upload-warnings ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.upload-preview-wrap {
  overflow-x: auto;
  border: 1px solid rgba(37, 48, 36, 0.18);
  border-radius: 12px;
}

.upload-preview {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.upload-preview th,
.upload-preview td {
  padding: 9px 10px;
  border-bottom: 1px solid rgba(37, 48, 36, 0.14);
  text-align: left;
  vertical-align: top;
  max-width: 180px;
}

.upload-preview th {
  background: rgba(255, 255, 255, 0.24);
  font-weight: 800;
}

.upload-error {
  color: #8f1d1d;
  font-weight: 700;
}

.btn-primary:disabled {
  cursor: wait;
  opacity: 0.65;
}

.btn-primary.is-confirmed {
  background: var(--color-btn-hover);
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

.feature {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 28px;
  border-radius: 18px;
}

.feature.dark { background: rgba(255, 59, 215, 0.12); }

.feature-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.feature-art {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.feature-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature h3 {
  font-size: var(--fs-lg);
  line-height: 1.18;
}

.feature p {
  max-width: 34rem;
}

.feature ul {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
}

.feature li {
  display: grid;
  grid-template-columns: 1.1em minmax(0, 1fr);
  gap: 8px;
  padding: 12px 0;
  border-top: 2px dashed rgba(37, 48, 36, 0.14);
  color: var(--color-text-soft);
  font-size: var(--fs-sm);
  line-height: 1.35;
}

.feature li::before {
  content: "\2192";
  font-weight: 700;
  color: var(--color-text-main);
}

.solution-detail { grid-template-columns: repeat(3, 1fr); margin-top: 24px; }
.solution-detail-item { padding: 20px; }

.waitlist-hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 24px 84px;
  position: relative;
  z-index: 2;
}

.final-cta {
  text-align: center;
}

.final-cta-buttons { justify-content: center; }

.contact-panel {
  max-width: 780px;
  margin: 28px auto 0;
  text-align: left;
}

.contact-form h3 {
  margin: 0 0 18px;
  font-size: var(--fs-lg);
  line-height: 1.2;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 14px;
}

.contact-submit-row {
  margin-bottom: 0;
  justify-content: space-between;
  opacity: 1;
  transform: none;
  animation: none;
}

.contact-submit-row .price-badge {
  max-width: 360px;
  line-height: 1.35;
}

.contact-alt-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: baseline;
  gap: 6px 12px;
  max-width: 420px;
  color: var(--color-text-soft);
  font-size: var(--fs-xs);
  font-weight: 800;
  line-height: 1.35;
}

.contact-alt-links a {
  color: inherit;
  font-weight: 800;
  white-space: nowrap;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.contact-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 6px;
  text-decoration: none;
  transform: translateY(0.2em);
}

.contact-social-icon svg {
  width: 18px;
  height: 18px;
}

.article,
.company,
.video-post,
.video-article {
  max-width: 820px;
}

.article h2,
.company h2,
.video-post h2,
.video-article h2 {
  margin-top: 44px;
  font-size: var(--fs-xl);
}

.article p,
.company p,
.video-post p,
.video-article p {
  color: var(--color-text-main);
}

.article ul,
.article ol {
  margin: 8px 0 22px;
  padding-left: 1.35em;
  color: var(--color-text-main);
  font-size: var(--fs-md);
  line-height: var(--lh-normal);
}

.article li {
  margin: 4px 0;
}

.article-infographic {
  width: min(1320px, calc(100vw - 48px));
  margin: 36px 50% 0;
  transform: translateX(-50%);
}

.article-infographic img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 2px solid rgba(37, 48, 36, 0.16);
  border-radius: 20px;
  box-shadow: 0 14px 42px rgba(37, 48, 36, 0.1);
}

.article-infographic figcaption {
  margin-top: 18px;
  color: var(--color-text-soft);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-align: center;
}

.article-infographic + p {
  margin-top: 22px;
}

.article-cta-band {
  display: flex;
  width: min(1040px, calc(100vw - 48px));
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin: 28px 50% 0;
  padding: 22px 26px;
  border: 2px solid rgba(37, 48, 36, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.34);
  transform: translateX(-50%);
}

.article-cta-band h2,
.article-cta-band p {
  margin: 0;
}

.article-cta-band h2 {
  flex: 1 1 180px;
  font-size: var(--fs-xl);
}

.article-cta-band p {
  flex: 2 1 360px;
  font-size: var(--fs-sm);
  line-height: 1.45;
}

.article-cta-band .btn-primary {
  flex: 0 1 auto;
  white-space: nowrap;
}

.video-article {
  margin: 0 auto;
  padding: 96px 24px 72px;
}

.video-kicker,
.video-meta {
  font-size: var(--fs-xs);
  color: var(--color-text-soft);
  font-weight: 700;
}

.video-kicker {
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.video-dek {
  font-size: var(--fs-lg);
  line-height: 1.45;
}

.video-article h1 + p {
  font-size: var(--fs-lg);
  line-height: 1.45;
}

.video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 32px;
}

.video-meta span,
.reader-list li {
  border: 2px solid rgba(37, 48, 36, 0.14);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.26);
}

.listen-guide {
  border-top: 2px solid rgba(37, 48, 36, 0.18);
  border-bottom: 2px solid rgba(37, 48, 36, 0.18);
  padding: 26px 0;
  margin: 34px 0;
}

.pullquote,
.video-article blockquote {
  margin: 38px 0;
  padding: 0 0 0 24px;
  border-left: 8px solid var(--color-btn-hover);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.18;
  color: var(--color-text-main);
}

.reader-list,
.video-article ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.reader-list li,
.video-article ul li {
  color: var(--color-text-soft);
}

.edited-transcript {
  margin-top: 46px;
  padding-top: 28px;
  border-top: 2px dashed rgba(37, 48, 36, 0.24);
}

.edited-transcript p {
  font-size: var(--fs-sm);
  line-height: 1.65;
}

.video-post > p a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 26px;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--color-text-main);
  color: var(--color-text-main);
}

.video-post > p a:hover,
.video-post > p a:focus-visible {
  background: #ff3bd7;
  outline: none;
}

.legal-document {
  max-width: 920px;
}

.legal-updated {
  color: var(--color-text-soft);
  font-weight: 700;
}

.legal-intro,
.legal-section {
  margin: 24px 0;
}

.legal-document p,
.legal-document li,
.legal-document div {
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
}

.legal-document h2 {
  margin-top: 48px;
  font-size: var(--fs-lg);
}

.legal-document h3 {
  margin: 24px 0 8px;
  font-size: var(--fs-md);
}

.legal-toc {
  margin: 32px 0;
  padding: 22px;
  border: 2px solid rgba(37, 48, 36, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.3);
}

.legal-toc h2 {
  margin: 0 0 12px;
  font-size: var(--fs-md);
  opacity: 1;
  transform: none;
  animation: none;
}

.legal-toc ol {
  margin: 0;
  padding-left: 22px;
}

.legal-toc a {
  color: var(--color-text-main);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.legal-section {
  scroll-margin-top: 110px;
  padding-top: 1px;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 30px 0;
  border: 2px solid var(--color-text-main);
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-card);
}

.video-grid {
  display: grid;
  gap: 28px;
  margin: 32px 0;
}

.video-card {
  padding: 0;
}

.video-card h2 {
  margin-top: 0;
}

.video-placeholder {
  display: grid;
  place-items: center;
  min-height: 280px;
  margin: 30px 0;
  border: 2px dashed rgba(37, 48, 36, 0.28);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.28);
  color: var(--color-text-soft);
  font-weight: 700;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.investor-page {
  --investor-bg: #151d14;
  --investor-surface: rgba(247, 241, 227, 0.095);
  --investor-surface-strong: rgba(247, 241, 227, 0.14);
  --investor-text: #fff8e8;
  --investor-muted: #e7dcc0;
  --investor-accent: #e6ff33;

  background: var(--investor-bg);
  color: var(--investor-text);
}

.investor-page #circle-layer { display: none; }
.investor-page .flower-stem { border-left-color: rgba(247, 241, 227, 0.58); }
.investor-page nav.main { background: rgba(21, 29, 20, 0.92); border-bottom-color: rgba(247, 241, 227, 0.28); }
.investor-page .logo,
.investor-page .nav-trigger,
.investor-page p,
.investor-page .industry-sub { color: var(--investor-text); }
.investor-page .industry-eyebrow,
.investor-page .feature-num,
.investor-page .price-badge,
.investor-page .contact-alt-links,
.investor-page .lead-status { color: var(--investor-muted); }
.investor-page .industry-eyebrow,
.investor-page .feature-num { color: var(--investor-accent); }
.investor-page .logo-sep { color: rgba(247, 241, 227, 0.48); }
.investor-page .logo-page { color: var(--investor-muted); }
.investor-page .nav-trigger:hover,
.investor-page .nav-trigger.active,
.investor-page .nav-item:hover .nav-trigger { background: rgba(247, 241, 227, 0.16); }
.investor-page .nav-trigger svg { color: var(--investor-muted); }
.investor-page .btn-light,
.investor-page .btn-ghost { color: var(--investor-text); border-color: var(--investor-text); }
.investor-page .btn-light:hover,
.investor-page .btn-ghost:hover,
.investor-page .btn-light:focus-visible,
.investor-page .btn-ghost:focus-visible { color: var(--color-text-main); border-color: var(--investor-accent); background: var(--investor-accent); }
.investor-page .feature,
.investor-page .contact-panel {
  background: var(--investor-surface);
  border-color: rgba(247, 241, 227, 0.36);
}
.investor-page .feature-grid {
  grid-template-columns: 1fr;
  gap: 22px;
}
.investor-page .feature.has-image {
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(0, 1fr);
  min-height: 0;
  padding: 0;
  overflow: hidden;
}
.investor-page .feature.has-image .feature-art {
  min-height: 300px;
  border-radius: 0;
  background: rgba(21, 29, 20, 0.64);
  border-right: 1px solid rgba(247, 241, 227, 0.14);
}
.investor-page .feature.has-image .feature-art img {
  object-fit: contain;
}
.investor-page .feature.has-image .feature-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 76% 46%, rgba(230, 255, 51, 0.12), transparent 42%);
  pointer-events: none;
}
.investor-page .feature.has-image .feature-copy {
  justify-content: center;
  min-height: 300px;
  padding: 36px;
}
.investor-page .feature p {
  color: var(--investor-muted);
}
.investor-page .contact-panel {
  background: var(--investor-surface-strong);
}
.investor-page .form-row label {
  color: var(--investor-text);
}
.investor-page .form-row input,
.investor-page .form-row select,
.investor-page .form-row textarea {
  background-color: rgba(255, 248, 232, 0.94);
  border-color: rgba(255, 248, 232, 0.76);
  color: var(--color-text-main);
}
.investor-page .form-row input:focus,
.investor-page .form-row select:focus,
.investor-page .form-row textarea:focus {
  border-color: var(--investor-accent);
  outline: 3px solid rgba(230, 255, 51, 0.22);
}
.investor-page .btn-primary {
  background: var(--investor-text);
  border-color: var(--investor-text);
  color: var(--color-text-main);
}
.investor-page .btn-primary:hover,
.investor-page .btn-primary:focus-visible {
  background: var(--investor-accent);
  border-color: var(--investor-accent);
  color: var(--color-text-main);
}
.investor-page footer,
.investor-page footer a {
  color: var(--investor-muted);
}

footer {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin: 0 auto;
  padding: 46px 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: var(--fs-xs);
  color: var(--color-text-soft);
}

footer a {
  color: var(--color-text-main);
  text-decoration: none;
  margin-left: 12px;
  font-weight: 700;
}

footer a:hover { background: var(--color-btn-hover); }

.reveal { opacity: 0; transform: translateY(20px); animation: fadeInUp 0.8s ease-out forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

body.motion-paused *,
body.motion-paused *::before,
body.motion-paused *::after {
  animation-play-state: paused !important;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.001ms !important;
  }

  #circle-layer {
    display: none;
  }

  .logo,
  h1,
  .industry-headline,
  .section-headline,
  .case-headline,
  .final-cta h2,
  p,
  .hero-sub,
  .industry-sub,
  .case-body,
  .company .lede,
  .hero-ctas,
  .cta-column,
  .final-cta-buttons,
  .submit-row,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .flower-icon {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

}

@media (min-width: 821px) and (max-width: 960px) {
  .logo-name,
  .logo-sep { display: none; }
}

@media (max-width: 820px) {
  #upload-section {
    scroll-margin-top: 86px;
  }

  nav.main {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 8px 14px 10px;
  }

  .logo {
    gap: 6px;
    min-height: 30px;
    font-size: 0.95rem;
    opacity: 1;
    transform: none;
    animation: none;
  }

  .logo-icon {
    height: 20px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    gap: 4px;
    padding-bottom: 0;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-trigger,
  .nav-cta {
    min-height: 36px;
    padding: 0 8px;
    gap: 6px;
    font-size: 0.9rem;
    border-radius: 12px;
  }

  .nav-trigger svg {
    width: 11px;
    height: 11px;
  }

  .nav-cta {
    display: none;
  }

  .nav-dropdown {
    position: fixed;
    top: 86px;
    left: 14px;
    right: 14px;
    width: auto;
    max-height: calc(100vh - 106px);
    overflow-y: auto;
    padding: 22px 20px;
  }

  .nav-about {
    display: none;
  }

  .hero,
  .industry-hero,
  .funnel,
  .solution-section,
  .article,
  .company,
  .video-post { padding: 54px 20px 56px; }

  .logo,
  h1,
  .hero-sub,
  .hero-ctas,
  .story-carousel,
  .upload-card,
  .upload-tabs,
  .upload-zone,
  .submit-row,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .flip-word {
    animation: none;
  }

  .flip-word:not(:first-child) {
    display: none;
  }

  .hero-grid,
  .hero-layout,
  .case-grid,
  .funnel-grid,
  .feature-grid,
  .contact-form-grid,
  .solution-detail {
    grid-template-columns: 1fr;
  }

  .flower-stack { display: none; }
  .case-stats { grid-template-columns: 1fr; }
  .funnel-grid {
    gap: 16px;
    margin-top: 22px;
  }
  .funnel-steps {
    display: grid;
    gap: 8px;
  }
  .funnel-step {
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
  }
  .funnel-step h4 {
    margin-bottom: 4px;
    font-size: 1rem;
    line-height: 1.18;
  }
  .funnel-step p {
    font-size: 0.9rem;
    line-height: 1.35;
  }
  .upload-card {
    width: 100%;
    padding: 16px;
    border-radius: 20px;
  }
  .upload-tabs {
    gap: 6px;
    margin-bottom: 14px;
    padding: 4px;
    border: 2px solid rgba(37, 48, 36, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
  }
  .upload-tab {
    min-height: 38px;
    padding: 0 10px;
    border: 0;
    font-size: 0.92rem;
    line-height: 1.1;
  }
  .upload-zone {
    margin-bottom: 14px;
    padding: 18px 12px 12px;
    border-radius: 16px;
  }
  .upload-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    font-size: 1.05rem;
  }
  .upload-title {
    font-size: 1.05rem;
    line-height: 1.18;
  }
  .upload-hint {
    font-size: 0.88rem;
    line-height: 1.35;
  }
  .upload-picker {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    min-height: 0;
    margin-top: 14px;
    padding: 6px;
    border-radius: 16px;
    text-align: center;
  }
  .upload-picker-button {
    padding: 9px 12px;
  }
  .upload-picker-name {
    padding: 2px 8px 6px;
    text-align: center;
  }
  .form-row {
    margin-bottom: 12px;
  }
  .form-row label {
    font-size: 0.82rem;
  }
  .form-row input,
  .form-row select,
  .form-row textarea {
    min-height: 46px;
    border-radius: 14px;
    padding: 11px 12px;
    font-size: 16px;
  }
  .form-row textarea {
    min-height: 90px;
  }
  .submit-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin: 16px 0 0;
  }
  .submit-row .btn-primary {
    width: 100%;
    min-height: 46px;
  }
  .submit-row .price-badge {
    display: block;
    text-align: center;
    line-height: 1.35;
  }
  .feature-grid {
    gap: 14px;
    padding: 0 20px 56px;
  }
  .feature {
    min-height: 0;
    padding: 20px;
    border-radius: 18px;
  }
  .feature-num {
    margin-bottom: 10px;
  }
  .feature h3 {
    font-size: 1.35rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .feature p {
    font-size: 1rem;
    line-height: 1.45;
  }
  .feature ul {
    margin-top: 16px;
  }
  .feature li {
    padding: 10px 0;
    font-size: 0.98rem;
    line-height: 1.35;
  }
  .investor-page .feature.has-image {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .investor-page .feature.has-image .feature-art {
    min-height: 0;
    aspect-ratio: 1.55 / 1;
    border-right: 0;
    border-bottom: 1px solid rgba(247, 241, 227, 0.14);
  }
  .investor-page .feature.has-image .feature-copy {
    min-height: 0;
    padding: 22px;
  }
  .contact-submit-row {
    align-items: flex-start;
  }
  .contact-alt-links {
    justify-content: flex-start;
  }
  .article-infographic {
    width: calc(100vw - 40px);
  }
  .article-infographic img {
    border-radius: 14px;
  }
  .article-cta-band {
    width: calc(100vw - 40px);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
  }
  .story-carousel {
    margin-top: 34px;
    border-radius: 20px;
  }
  .story-carousel-stage {
    height: auto;
    min-height: 0;
  }
  .story-slide,
  .story-slide.active {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }
  .story-slide-media {
    min-height: 0;
    aspect-ratio: 1.08 / 1;
    padding: 12px;
    border-right: 0;
    border-bottom: 2px solid rgba(37, 48, 36, 0.12);
  }
  .story-slide-media img {
    max-height: none;
    border-radius: 12px;
  }
  .story-arrow {
    top: calc((100vw - 40px) * 0.46);
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .story-arrow-prev {
    left: 18px;
  }
  .story-arrow-next {
    left: auto;
    right: 18px;
  }
  .story-slide-copy {
    padding: 16px;
    min-height: 220px;
  }
  .story-step-label {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }
  .story-slide-copy h2 {
    margin-bottom: 8px;
    font-size: 1.18rem;
    line-height: 1.1;
  }
  .story-slide-copy > p:last-of-type {
    font-size: 0.88rem;
    line-height: 1.34;
  }
  .story-slide-body {
    margin-bottom: 8px;
  }
  .story-slide-body p {
    margin-bottom: 0.48em;
    font-size: 0.88rem;
    line-height: 1.34;
  }
  .story-slide-highlight {
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 0.78rem !important;
    line-height: 1.24 !important;
  }
  .story-carousel-controls {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: calc(50% - 56px);
    padding-inline: calc(50% - 56px);
    scrollbar-width: none;
  }
  .story-carousel-controls::-webkit-scrollbar {
    display: none;
  }
  .story-step-trigger {
    flex: 0 0 112px;
    min-height: 52px;
    padding: 8px;
    font-size: 0.7rem;
    scroll-snap-align: center;
  }
  .story-step-trigger span {
    font-size: 0.64rem;
  }
  footer a { margin-left: 0; margin-right: 12px; }

  .industry-meta-row {
    flex-wrap: wrap;
  }
}

@media (min-width: 821px) and (max-width: 1320px) {
  .hero,
  .industry-hero,
  .funnel,
  .solution-section,
  .article,
  .company,
  .video-post,
  .case-study,
  .final-cta,
  footer {
    padding-left: 140px;
  }
}
