/* ═══ HERO ═══ */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: #1A1A1A;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(232,85,58,.4) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(217,70,168,.35) 0%, transparent 55%),
    radial-gradient(ellipse 70% 70% at 50% 80%, rgba(255,127,92,.2) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 70% 70%, rgba(59,130,246,.15) 0%, transparent 50%);
  animation: heroMeshShift 18s ease-in-out infinite alternate;
}
@keyframes heroMeshShift {
  0% { transform: scale(1) translate(0, 0); }
  33% { transform: scale(1.05) translate(-1%, 1%); }
  66% { transform: scale(1.02) translate(1%, -1%); }
  100% { transform: scale(1.08) translate(-2%, 0%); }
}
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.15'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2rem;
  padding: .45rem 1.1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.9);
  font-weight: 500;
  animation: fadeInUp .6s ease both;
}
.hero-badge i { font-size: .9rem; color: #FF7F5C; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.04em;
  animation: fadeInUp .6s ease .1s both;
}
.hero-title-accent {
  background: linear-gradient(135deg, #FF7F5C 0%, #E879A8 50%, #FF7F5C 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  max-width: 580px;
  animation: fadeInUp .6s ease .2s both;
}
.hero-buttons { animation: fadeInUp .6s ease .3s both; }
.hero-stats-wrap { animation: fadeInUp .6s ease .4s both; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.hero-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
  align-self: center;
}
.btn-hero-primary {
  background: #fff;
  color: #1A1A1A;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  padding: .85rem 2.4rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  position: relative;
  overflow: hidden;
}
.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232,85,58,.15), transparent);
  transition: left .5s;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,127,92,.2);
  color: #1A1A1A;
}
.btn-hero-primary:hover::before { left: 120%; }
.btn-hero-outline {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.15);
  font-weight: 600;
  padding: .8rem 2rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.35);
  color: #fff;
  transform: translateY(-1px);
}

/* ═══ SECTION LABEL ═══ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--accent-light);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  padding: .35rem .9rem;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
}

/* ═══ BENTO GRID ═══ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.bento-item { min-height: 0; }
.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 2; }
@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide, .bento-tall { grid-column: span 1; grid-row: span 1; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-wide { grid-column: span 2; }
}

/* ═══ FEATURES ═══ */
.feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  background: var(--surface);
  transition: transform .35s cubic-bezier(.25,.46,.45,.94), box-shadow .35s ease, border-color .35s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--accent) 18%, var(--border));
}
.feature-card:hover::before { opacity: .45; }
.row > [class*="col-"]:nth-child(1) .feature-card { transition-delay: 0s; }
.row > [class*="col-"]:nth-child(2) .feature-card { transition-delay: .05s; }
.row > [class*="col-"]:nth-child(3) .feature-card { transition-delay: .1s; }
.row > [class*="col-"]:nth-child(4) .feature-card { transition-delay: .15s; }
.row > [class*="col-"]:nth-child(5) .feature-card { transition-delay: .2s; }
.row > [class*="col-"]:nth-child(6) .feature-card { transition-delay: .25s; }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature-card:hover .feature-icon {
  transform: scale(1.06);
  box-shadow: 0 0 0 10px transparent;
}
.feature-icon-text   { background: var(--accent-light); color: var(--accent); }
.feature-icon-image  { background: var(--pink-bg); color: var(--pink); }
.feature-icon-video  { background: var(--sky-bg); color: var(--sky); }
.feature-icon-token  { background: var(--warning-bg); color: var(--warning); }
.feature-icon-shield { background: var(--success-bg); color: var(--success); }
.feature-icon-bolt   { background: var(--violet-bg); color: var(--violet); }
.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: .5rem;
  color: var(--text-primary);
}

/* ═══ STEPS ═══ */
.steps-section {
  background: var(--surface);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  transition: background .35s;
}
.step-card {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-accent);
  position: relative;
  z-index: 1;
}
.step-connector { display: none; }
@media (min-width: 768px) {
  .step-connector {
    display: block;
    position: absolute;
    top: 1.5rem;
    left: calc(50% + 30px);
    width: calc(100% - 60px);
    height: 2px;
    background: var(--border);
    z-index: 0;
    overflow: hidden;
  }
  .step-connector::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .8s cubic-bezier(.25,.46,.45,.94);
  }
  .step-card.revealed .step-connector::before { transform: scaleX(1); }
  .step-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    transition: opacity .3s .7s;
  }
  .step-card.revealed .step-connector::after { opacity: 1; }
}

/* ═══ PRICING ═══ */
.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  background: var(--surface);
  text-align: center;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94), box-shadow .35s ease;
  height: 100%;
  position: relative;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-card-popular {
  border-color: var(--accent);
  background: var(--gradient-subtle);
  transform: scale(1.04);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 40%, transparent), var(--shadow-lg), 0 0 24px rgba(var(--accent-rgb),.08);
  z-index: 1;
}
.price-card-popular:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 40%, transparent), var(--shadow-lg), 0 0 28px rgba(var(--accent-rgb),.1);
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem .85rem;
  border-radius: 2rem;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: var(--shadow-accent);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.price-currency {
  font-size: .95rem;
  font-weight: 600;
  -webkit-text-fill-color: var(--text-secondary);
}
.price-tokens {
  font-size: .95rem;
  color: var(--text-secondary);
  margin-bottom: .5rem;
}

/* ═══ CTA ═══ */
.cta-section {
  background: #1A1A1A;
  border-radius: var(--radius-2xl);
  position: relative;
  overflow: hidden;
}
.cta-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(232,85,58,.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 70% 60%, rgba(217,70,168,.25) 0%, transparent 55%);
  animation: heroMeshShift 10s ease-in-out infinite alternate;
}
.cta-border-anim {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(232,85,58,.4), transparent 40%, transparent 60%, rgba(217,70,168,.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: ctaBorderRotate 10s linear infinite;
}
@keyframes ctaBorderRotate {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

/* ═══ Content visibility for performance ═══ */
.steps-section, .cta-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 400px;
}

/* ═══ BRANDS/MODELS ═══ */
.models-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.model-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: .5rem 1rem;
  border-radius: 2rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all .25s cubic-bezier(.25,.46,.45,.94);
}
.model-badge:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(var(--accent-rgb),.12);
  transform: translateY(-1px);
}

.model-badge:active {
  transform: scale(.96);
}
.model-badge i { font-size: 1rem; }

/* ═══ 2026 Landing Refresh ═══ */
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 1.2rem;
}

.hero-proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 2.25rem;
  padding: 0 .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.84);
  font-size: .78rem;
  font-weight: 700;
}

.hero-proof-strip i {
  color: #ffb18f;
}

.hero-preview {
  position: relative;
  z-index: 2;
}

.hero-preview-shell {
  display: grid;
  gap: 1rem;
}

.hero-preview-window {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.06);
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-preview-window--primary {
  border-radius: 1.75rem;
  overflow: hidden;
}

.hero-window-bar {
  display: flex;
  gap: .45rem;
  padding: .9rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hero-window-bar span {
  width: .65rem;
  height: .65rem;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
}

.hero-window-content {
  padding: 1.2rem 1.2rem 1.3rem;
}

.hero-window-content h3 {
  margin-bottom: .45rem;
  font-size: 1.28rem;
}

.hero-window-content p {
  margin-bottom: 1rem;
  color: rgba(255,255,255,.66);
  font-size: .88rem;
  line-height: 1.55;
}

.hero-window-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .85rem;
}

.hero-mini-label {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0 .68rem;
  margin-bottom: .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.76);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-mini-status {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-height: 1.85rem;
  padding: 0 .65rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
  font-size: .7rem;
  font-weight: 700;
}

.hero-mini-status i {
  color: #ffb18f;
}

.hero-mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
  margin-bottom: .95rem;
}

.hero-mini-metric {
  display: grid;
  gap: .15rem;
  padding: .72rem .78rem;
  border-radius: 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

.hero-mini-metric span {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.48);
  font-weight: 700;
}

.hero-mini-metric strong {
  color: #fff;
  font-size: .8rem;
  line-height: 1.4;
}

.hero-mini-messages {
  display: grid;
  gap: .65rem;
}

.hero-mini-bubble {
  max-width: 90%;
  padding: .8rem .9rem;
  border-radius: 1rem;
  font-size: .83rem;
  line-height: 1.55;
}

.hero-mini-bubble--user {
  justify-self: end;
  background: rgba(255,255,255,.12);
  color: #fff;
}

.hero-mini-bubble--ai {
  background: linear-gradient(135deg, rgba(255,127,92,.18), rgba(232,121,168,.14));
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
}

.hero-workflow {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1rem;
}

.hero-workflow span {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  min-height: 1.95rem;
  padding: 0 .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.78);
  font-size: .72rem;
  font-weight: 700;
}

.hero-proof-panel {
  display: grid;
  gap: .85rem;
  padding: 1rem 1.1rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(255,255,255,.1);
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    rgba(255,255,255,.03);
  box-shadow: 0 22px 72px rgba(0,0,0,.16);
}

.hero-proof-panel-copy {
  display: grid;
  gap: .22rem;
}

.hero-proof-panel-label {
  font-size: .64rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.48);
  font-weight: 700;
}

.hero-proof-panel-copy strong {
  font-size: .95rem;
  color: #fff;
}

.hero-proof-panel-copy p {
  margin: 0;
  color: rgba(255,255,255,.64);
  font-size: .8rem;
  line-height: 1.55;
}

.hero-proof-panel-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: #fff;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-preview-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.hero-preview-window--secondary {
  padding: 1rem 1rem 1.05rem;
  border-radius: 1.2rem;
}

.hero-preview-window--secondary strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: .2rem;
}

.hero-preview-window--secondary span {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: .8rem;
  line-height: 1.45;
}

.start-here-section {
  position: relative;
}

.start-card {
  display: block;
  height: 100%;
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top right, rgba(var(--accent-rgb), .08), transparent 28%),
    color-mix(in srgb, var(--surface) 96%, transparent);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.start-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--accent) 22%, var(--border));
}

.start-card h3 {
  margin-bottom: .45rem;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.start-card p {
  margin: 0 0 .95rem;
  color: var(--text-secondary);
  font-size: .88rem;
  line-height: 1.6;
}

.start-card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.start-card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.start-card-icon--text { background: var(--accent-light); color: var(--accent); }
.start-card-icon--image { background: var(--pink-bg); color: var(--pink); }
.start-card-icon--video { background: var(--sky-bg); color: var(--sky); }

.landing-story-section {
  position: relative;
}

.landing-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}

.landing-story-card {
  display: grid;
  gap: .32rem;
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top right, rgba(var(--accent-rgb), .06), transparent 28%),
    color-mix(in srgb, var(--surface) 96%, transparent);
  box-shadow: var(--shadow-sm);
}

.landing-story-step {
  font-size: .68rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.landing-story-card strong {
  color: var(--text-primary);
  font-size: .94rem;
}

.landing-story-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: .82rem;
  line-height: 1.55;
}

@media (max-width: 991.98px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-preview {
    order: -1;
  }
}

@media (max-width: 767.98px) {
  .hero-window-topline,
  .hero-mini-metrics {
    grid-template-columns: 1fr;
  }

  .hero-window-topline {
    display: grid;
    justify-content: stretch;
  }

  .hero-preview-stack {
    grid-template-columns: 1fr;
  }

  .hero-proof-strip span {
    width: 100%;
    justify-content: center;
  }

  .landing-story-grid {
    grid-template-columns: 1fr;
  }
}
