/* ═══════════════════════════════════════════════
   Noissime Marketing Site — Styles
   Cosmic Night Sky · Enterprise · Awwwards-grade
   ═══════════════════════════════════════════════ */

/* ─── Skip Link ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 8px 16px;
  background: var(--brand-start);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 12px;
  outline: 2px solid #fff;
}

/* ─── Tokens ─── */
:root {
  --space:       #060a14;
  --space-light: #0c1224;
  --violet:      #5433FF;
  --blue:        #20BDFF;
  --aqua:        #A5FECB;
  --white:       #ffffff;
  --off-white:   #f8f9fb;
  --gray-50:     #f4f5f7;
  --gray-100:    #eaecf0;
  --gray-200:    #d0d5dd;
  --gray-400:    #98a2b3;
  --gray-500:    #667085;
  --gray-300:    #b0b8c8;
  --gray-600:    #475467;
  --gray-700:    #344054;
  --gray-900:    #101828;

  /* ── Brand gradient — change here to update site-wide ── */
  --brand-gradient: linear-gradient(90deg, #5DA92F, #9BD46A);
  --brand-start: #5DA92F;
  --brand-end:   #9BD46A;

  --font: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --tracking-tight: -0.04em;
  --tracking-tighter: -0.055em;

  --container: 1200px;
  --gap: 24px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--space);
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow-x: clip;
}
/* Subtle film-grain overlay for depth */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}
::selection { background: rgba(93,169,47,0.2); color: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
}

/* ═══════ Cosmic Canvas ═══════ */
#cosmic-canvas {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* ═══════ Navigation ═══════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: var(--space);
  transition: padding 0.4s var(--ease-out-expo);
}
.nav.scrolled {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-img {
  height: 35px;
  width: auto;
  opacity: 0.95;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.25s;
  letter-spacing: -0.01em;
  padding: 4px 0;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
}
.nav-links a:hover { color: var(--white); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-link-login {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.25s;
}
.nav-link-login:hover { color: var(--white); }
.nav-burger { display: none; }

/* ═══════ Buttons ═══════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.btn-nav {
  padding: 8px 20px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.btn-nav:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.25);
}
.btn-primary {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(93,169,47,0.3), 0 1px 3px rgba(0,0,0,0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(93,169,47,0.4), 0 2px 6px rgba(0,0,0,0.15);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(93,169,47,0.25);
}
.btn-ghost {
  padding: 12px 28px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline {
  padding: 12px 28px;
  background: transparent;
  color: var(--gray-900);
  border: 1px solid var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--brand-start);
  color: var(--brand-start);
}
.btn-lg { padding: 14px 32px; font-size: 15px; border-radius: 12px; }
.btn-full { width: 100%; justify-content: center; }

/* Focus visible indicators */
.btn:focus-visible,
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.btn-nav:focus-visible,
.btn-outline:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 2px;
}
.nav-links a:focus-visible,
.nav-link-login:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 2px;
}
.footer-col a:focus-visible,
.footer-social a:focus-visible,
.footer-oynk a:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 2px;
}

/* ═══════ Hero ═══════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 140px var(--gap) 0;
  z-index: 1;
  overflow: visible;
}
.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-end);
  box-shadow: 0 0 8px var(--brand-end);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 24px;
}
.gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Hero title: stretch one gradient across both words */
.hero-title .gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  background-position: 0% center;
}
.hero-title .gradient-text + .gradient-text {
  background-position: 100% center;
}
.hero-sub {
  font-size: clamp(16px, 1.5vw, 18px);
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero mockup */
.hero-mockup {
  position: relative;
  max-width: 960px;
  width: 100%;
  margin: 64px auto 0;
  z-index: 4;
  transition: transform 0.15s ease-out;
}
/* Glow behind the mockup */
.hero-mockup::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 10%;
  right: 10%;
  bottom: -20%;
  background: radial-gradient(ellipse, rgba(93,169,47,0.12) 0%, rgba(155,212,106,0.06) 40%, transparent 70%);
  z-index: -1;
  filter: blur(40px);
  pointer-events: none;
}
.hero-curve {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
  pointer-events: none;
  line-height: 0;
}
.hero-curve svg {
  display: block;
  width: 100%;
  height: 100px;
}
@media (min-width: 768px) {
  .hero-curve svg { height: 140px; }
}
@media (min-width: 1200px) {
  .hero-curve svg { height: 180px; }
}

/* ─── Mock Browser Chrome ─── */
.mock-browser {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.06),
    0 24px 80px rgba(0,0,0,0.18),
    0 8px 24px rgba(0,0,0,0.08);
}
.mock-titlebar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}
.mock-dots {
  display: flex;
  gap: 6px;
}
.mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
}
.mock-dots span:first-child { background: #ff5f57; }
.mock-dots span:nth-child(2) { background: #febc2e; }
.mock-dots span:nth-child(3) { background: #28c840; }
.mock-url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 400;
  background: var(--white);
  border-radius: 6px;
  padding: 4px 12px;
  border: 1px solid var(--gray-100);
}
.mock-body {
  padding: 20px;
}

/* ─── Dashboard mock ─── */
.mock-dashboard {
  display: flex;
  gap: 0;
  padding: 0;
  background: var(--off-white);
}
.mock-sidebar {
  width: 52px;
  background: #1e2028;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.mock-sidebar-logo {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
  margin: 0 auto 12px;
}
.mock-sidebar-item {
  width: 36px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  transition: background 0.3s;
}
.mock-sidebar-item.active { background: rgba(255,255,255,0.2); }
.mock-sidebar-sep {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 4px 0;
}
.mock-main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}
.mock-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.mock-kpi {
  background: var(--white);
  border-radius: 8px;
  padding: 14px 16px;
  border: 1px solid var(--gray-100);
}
.mock-kpi-label {
  font-size: 10px;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.mock-kpi-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}
.mock-kpi-unit {
  font-size: 10px;
  color: var(--gray-500);
  margin-top: 2px;
}
.mock-card {
  background: var(--white);
  border-radius: 8px;
  padding: 16px;
  border: 1px solid var(--gray-100);
}
.mock-card-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 12px;
}

/* Scope bar */
.mock-scope-bar, .mock-mini-scopebar {
  display: flex;
  height: 10px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--gray-50);
  gap: 2px;
}
.mock-scope-seg {
  height: 100%;
  width: 0;
  transition: width 1.2s var(--ease-out-expo);
  border-radius: 4px;
}
.mock-scope-seg.animate { width: var(--target-w); }
.mock-scope-seg.s1 { background: var(--brand-start); }
.mock-scope-seg.s2 { background: var(--brand-end); }
.mock-scope-seg.s3 { background: #c8e6c9; }
.mock-scope-legend {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  font-size: 10px;
  color: var(--gray-500);
}
.mock-scope-legend i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  margin-right: 4px;
  vertical-align: middle;
}

/* Chart bars */
.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  padding-top: 8px;
}
.mock-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  height: 0;
  transition: height 1s var(--ease-out-expo);
  background: linear-gradient(to top, var(--brand-start), var(--brand-end));
}
.mock-bar.animate { height: var(--h); }
.mock-bar:nth-child(even) { background: linear-gradient(to top, var(--brand-end), #c8e6c9); opacity: 0.85; }

/* ─── Floating badges on hero mockup ─── */
.mock-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(6,10,20,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 10;
  animation: float 6s ease-in-out infinite;
}
.mock-badge-1 { top: 20%; right: -28px; animation-delay: 0s; }
.mock-badge-2 { bottom: 35%; left: -24px; animation-delay: 2s; }
.mock-badge-3 { top: 40%; right: -20px; animation-delay: 4s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ═══════ Statement ═══════ */
.statement {
  position: relative;
  z-index: 4;
  background: var(--off-white);
  padding: 80px 0 0;
  text-align: center;
}
.statement-text {
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.035em;
  color: var(--gray-900);
  max-width: 700px;
  margin: 0 auto;
}

/* ═══════ Trust Section ═══════ */
.trust {
  position: relative;
  z-index: 4;
  background: var(--off-white);
  padding: 80px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-item { padding: 16px; }
.trust-num {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  color: var(--gray-900);
  line-height: 1;
}
.trust-pct { font-size: 32px; }
.trust-label {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 4px;
  font-weight: 500;
}

/* ═══════ Features Grid ═══════ */
.features {
  position: relative;
  z-index: 4;
  background: var(--white);
  padding: 140px 0;
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-start);
  margin-bottom: 16px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(93,169,47,0.08);
  border: 1px solid rgba(93,169,47,0.18);
}
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--gray-500);
  letter-spacing: -0.01em;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
/* ─── Bento Feature Grid ─── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
}
.bento-card {
  padding: 32px;
  border-radius: 16px;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 12px 40px 80px rgba(0,0,0,0.12);
}
.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}
.bento-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.bento-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
}

/* Bento size variants */
.bento-card--lg {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.bento-card--lg .bento-card-content { flex: 1; min-height: 0; }
.bento-card--lg .bento-card-visual { flex: 1; min-height: 0; }
.bento-card--sm { min-height: 180px; }
.bento-card--md { min-height: 240px; }

/* Bento colour variants */
.bento-card--violet {
  background: linear-gradient(160deg, #1a0f40, #2a1866);
  color: #fff;
}
.bento-card--violet .bento-icon { background: rgba(255,255,255,0.12); color: #c4b5fd; }

.bento-card--dark {
  background: var(--space);
  color: #fff;
}
.bento-card--dark .bento-icon { background: rgba(255,255,255,0.1); color: var(--brand-end); }

.bento-card--blue {
  background: linear-gradient(160deg, #0a2540, #0d3460);
  color: #fff;
}
.bento-card--blue .bento-icon { background: rgba(255,255,255,0.1); color: #60a5fa; }

.bento-card--green {
  background: linear-gradient(160deg, #e8f5e9, #c8e6c9);
  color: var(--gray-900);
}
.bento-card--green .bento-icon { background: rgba(0,100,0,0.1); color: #2d8659; }
.bento-card--green p { color: var(--gray-600); }

.bento-card--beige {
  background: linear-gradient(160deg, #faf5eb, #f0e8d4);
  color: var(--gray-900);
}
.bento-card--beige .bento-icon { background: rgba(120,80,20,0.08); color: #8B6508; }
.bento-card--beige p { color: var(--gray-600); }

/* Bento card visual (photo bleed) */
.bento-card-visual {
  margin: 24px -32px -32px;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
}
.bento-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ═══════ Platform Deep Dives ═══════ */
.platform {
  position: relative;
  z-index: 4;
  background: var(--off-white);
}
.deep-dive {
  padding: 100px 0;
  overflow: hidden;
}
.deep-dive:nth-child(even) { background: var(--white); }
.deep-dive-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.deep-dive.reverse .deep-dive-inner { direction: rtl; }
.deep-dive.reverse .deep-dive-inner > * { direction: ltr; }
.deep-dive-text { max-width: 440px; }
.deep-dive-text .section-title { text-align: left; margin-bottom: 16px; }
.deep-dive-text .section-sub { text-align: left; margin-bottom: 28px; }
.deep-dive-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.deep-dive-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}
.deep-dive-visual {
  perspective: 1200px;
}
.mock-sm {
  transform: rotateY(-2deg) rotateX(1deg);
  transition: transform 0.6s var(--ease-out-expo);
  position: relative;
}
.mock-sm::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(93,169,47,0.2), rgba(155,212,106,0.15), rgba(200,230,201,0.1));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  filter: blur(1px);
}
.mock-sm:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}
.mock-sm:hover::after {
  opacity: 1;
}

/* ─── AI Input mock ─── */
.mock-ai-input { padding: 24px; background: var(--white); }
.mock-ai-header {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 16px;
}
.mock-ai-inputbox {
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 14px;
  color: var(--gray-900);
  min-height: 44px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  background: var(--gray-50);
}
.typing-cursor {
  animation: blink 0.8s step-end infinite;
  color: var(--brand-start);
  font-weight: 300;
  margin-left: 1px;
}
@keyframes blink { 50% { opacity: 0; } }
.mock-ai-result {
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.5s var(--ease-out-expo);
}
.mock-ai-result.visible {
  opacity: 1;
  transform: translateY(0);
}
.mock-ai-result-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(165,254,203,0.1);
  font-size: 12px;
  font-weight: 600;
  color: #2d8659;
  border-bottom: 1px solid var(--gray-100);
}
.mock-ai-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gray-100);
}
.mock-ai-result-item {
  padding: 12px 14px;
  background: var(--white);
}
.mock-ai-result-item.highlight { background: rgba(165,254,203,0.06); }
.mock-ai-result-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 4px;
  font-weight: 500;
}
.mock-ai-result-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
}
.mock-ai-result-value.big {
  font-size: 18px;
  background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── Dashboard mini mock ─── */
.mock-dash-mini { padding: 20px; background: var(--off-white); }
.mock-mini-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.mock-mini-kpi {
  background: var(--white);
  border-radius: 8px;
  padding: 12px;
  border: 1px solid var(--gray-100);
}
.mock-mini-kpi-label {
  display: block;
  font-size: 10px;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mock-mini-kpi-val {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin: 2px 0;
}
.mock-mini-kpi-val.score { color: #2d8659; }
.mock-mini-kpi-val.down { color: #2d8659; }
.mock-mini-kpi-unit {
  font-size: 10px;
  color: var(--gray-500);
}
.mock-mini-scopebar {
  margin-bottom: 16px;
}
.mock-mini-chart {
  background: var(--white);
  border-radius: 8px;
  padding: 16px;
  border: 1px solid var(--gray-100);
  margin-bottom: 16px;
}
.mock-area-chart { width: 100%; height: auto; }
.mock-area-line {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: drawLine 2s var(--ease-out-expo) forwards;
  animation-delay: 0.3s;
}
.mock-area-fill {
  opacity: 0;
  animation: fadeAreaIn 1.5s ease forwards;
  animation-delay: 0.8s;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes fadeAreaIn { to { opacity: 1; } }
.mock-mini-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-action-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--gray-700);
  font-weight: 500;
  padding: 8px 12px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--gray-100);
}
.mock-action-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mock-action-dot.green { background: #2d8659; }
.mock-action-dot.amber { background: #daa520; }
.mock-action-dot.blue { background: var(--brand-end); }

/* ─── Supplier mock ─── */
.mock-suppliers { padding: 20px; background: var(--white); }
.mock-supplier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
}
.mock-supplier-count {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
}
.mock-supplier-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--gray-100);
  margin-bottom: 8px;
  transition: all 0.3s ease;
}
.mock-supplier-row:hover { border-color: var(--gray-200); background: var(--gray-50); }
.mock-supplier-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.mock-supplier-info { flex: 1; min-width: 0; }
.mock-supplier-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-900);
}
.mock-supplier-cat {
  font-size: 10px;
  color: var(--gray-500);
}
.mock-supplier-status {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.mock-supplier-status.responded { background: rgba(45,134,89,0.1); color: #236b47; }
.mock-supplier-status.pending { background: rgba(218,165,32,0.1); color: #8B6508; }
.mock-supplier-status.overdue { background: rgba(220,53,69,0.1); color: #dc3545; }
.mock-supplier-score {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-700);
  flex-shrink: 0;
}
.mock-score-bar {
  width: 48px;
  height: 5px;
  border-radius: 3px;
  background: var(--gray-100);
  overflow: hidden;
}
.mock-score-fill {
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--brand-start), var(--brand-end));
  transition: width 1s var(--ease-out-expo);
}
.mock-score-fill.animate { width: var(--sw); }

/* ─── Compliance mock ─── */
.mock-compliance { padding: 20px; background: var(--off-white); }
.mock-compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mock-fw-card {
  background: var(--white);
  border-radius: 8px;
  padding: 14px;
  border: 1px solid var(--gray-100);
}
.mock-fw-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.mock-fw-bar {
  height: 6px;
  border-radius: 3px;
  background: var(--gray-100);
  overflow: hidden;
  margin-bottom: 6px;
}
.mock-fw-fill {
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--brand-start), var(--brand-end), #c8e6c9);
  transition: width 1.2s var(--ease-out-expo);
}
.mock-fw-fill.animate { width: var(--fw); }
.mock-fw-status {
  font-size: 10px;
  font-weight: 600;
}
.mock-fw-status.complete { color: #236b47; }
.mock-fw-status.progress { color: #8B6508; }

/* ─── Framework Badges mock ─── */
.mock-badges {
  padding: 24px;
  background: #fff;
  border-radius: 0 0 12px 12px;
}
.mock-badges-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-900);
}
.mock-badges-header svg { color: var(--brand-start); flex-shrink: 0; }
.mock-badges-count {
  margin-left: auto;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-400);
}
.mock-badges-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.mock-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.mock-badge-circle {
  position: relative;
  width: 64px;
  height: 64px;
}
.mock-badge-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.mock-badge-inner {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--gray-50, #f8f9fa);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-badge-inner--earned {
  background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
  box-shadow: 0 0 14px rgba(93,169,47,0.35);
  overflow: hidden;
}
/* Shimmer sweep on earned badge */
.mock-badge-inner--earned::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-25deg);
  animation: mockBadgeShimmer 4s ease-in-out infinite;
  animation-delay: var(--shimmer-delay, 0s);
  pointer-events: none;
}
@keyframes mockBadgeShimmer {
  0%, 60% { left: -100%; }
  100% { left: 200%; }
}
.mock-badge-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-400);
  text-align: center;
  letter-spacing: 0.02em;
}
.mock-badge-label--earned {
  color: var(--gray-900);
}
@media (max-width: 480px) {
  .mock-badge-circle { width: 48px; height: 48px; }
  .mock-badges-row { gap: 4px; }
}

/* ═══════ Standards Carousel ═══════ */
.standards {
  position: relative;
  z-index: 4;
  background: var(--white);
  padding: 120px 0;
}
.standards-track-wrap {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.standards-track {
  display: flex;
  gap: 20px;
  animation: scroll-standards 40s linear infinite;
  width: max-content;
}
.standards-track:hover {
  animation-play-state: paused;
}
.standards-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 240px;
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  background: var(--white);
  transition: all 0.3s var(--ease-smooth);
  flex-shrink: 0;
}
.standards-item:hover {
  border-color: var(--gray-200);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.standards-logo {
  min-width: 48px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(93,169,47,0.06), rgba(155,212,106,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--brand-start);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  overflow: hidden;
}
.standards-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}
.standards-info { min-width: 0; }
.standards-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}
.standards-desc {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.4;
  margin-top: 2px;
}

@keyframes scroll-standards {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .standards-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }
  .standards-track [aria-hidden="true"] { display: none; }
}

/* ═══════ Pricing ═══════ */
.pricing {
  position: relative;
  z-index: 4;
  background: var(--off-white);
  padding: 140px 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid transparent;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  text-align: center;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.pricing-card.featured {
  border-color: var(--brand-start);
  box-shadow: 0 8px 40px rgba(93,169,47,0.1);
}
.pricing-card.featured:hover {
  box-shadow: 0 16px 48px rgba(93,169,47,0.15);
}
.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.pricing-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 42px;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-500);
}
.pricing-desc {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.5;
}
.pricing-list {
  margin-bottom: 32px;
  text-align: left;
}
.pricing-list li {
  font-size: 14px;
  color: var(--gray-700);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-50);
  position: relative;
  padding-left: 24px;
}
.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 4' stroke='%235DA92F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ═══════ CTA Section ═══════ */
.cta-section {
  position: relative;
  z-index: 4;
  padding: 160px 0;
  background: var(--space);
  overflow: hidden;
}
.cta-cosmic-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(93,169,47,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  text-align: center;
}
.cta-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════ Footer ═══════ */
.footer {
  position: relative;
  z-index: 4;
  background: var(--space);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 64px;
}
.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 12px;
  opacity: 0.7;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  max-width: 240px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  padding: 4px 0;
  transition: color 0.25s;
}
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  color: rgba(255,255,255,0.42);
  transition: color 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
}
.footer-social a:hover { color: rgba(255,255,255,0.7); }

/* Footer OYNK branding */
.footer-oynk {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 12px;
}
.footer-oynk span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.footer-oynk a {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s;
}
.footer-oynk a:hover {
  color: var(--white);
}
.footer-snout {
  height: 16px;
  width: auto;
  display: inline-block;
  opacity: 0.5;
}

/* ═══════ Photo Break Wrapper ═══════ */
.photo-break-section {
  position: relative;
  z-index: 4;
  padding: 60px 0;
}
.photo-break-section--off-white { background: var(--off-white); }
.photo-break-section--white { background: var(--white); }

/* ═══════ Photo Breaks ═══════ */
.photo-break {
  position: relative;
  z-index: 4;
  height: 420px;
  overflow: hidden;
  border-radius: 24px;
  max-width: var(--container);
  margin: 0 auto;
  /* Inset from page edges */
  margin-left: var(--gap);
  margin-right: var(--gap);
}
@media (min-width: 1248px) {
  .photo-break {
    margin-left: auto;
    margin-right: auto;
  }
}
.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-break::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(to bottom, rgba(6,10,20,0.25), rgba(6,10,20,0.6));
  pointer-events: none;
}
.photo-break-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  padding: 40px var(--gap) 52px;
}
.photo-break-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  max-width: 540px;
  margin: 0 auto;
}
.photo-break-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ─── Rotating Quotes ─── */
.rotating-quotes {
  position: relative;
  min-height: 110px;
  margin-bottom: 24px;
}
.rotating-quote {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 2.5s var(--ease-smooth), transform 2.5s var(--ease-smooth);
  pointer-events: none;
}
.rotating-quote.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.rotating-quote p {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,0.8);
  font-style: italic;
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.rotating-quote cite {
  display: block;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ═══════ Section Divider ═══════ */
.section-divider {
  border: none;
  height: 1px;
  max-width: 800px;
  margin: 0 auto 48px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

/* ═══════ Scroll Reveal Animations ═══════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-smooth), transform 1s var(--ease-smooth);
}
.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal-word.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger words */
.reveal-word:nth-child(1) { transition-delay: 0.05s; }
.reveal-word:nth-child(2) { transition-delay: 0.12s; }
.reveal-word:nth-child(3) { transition-delay: 0.2s; }
.reveal-word:nth-child(4) { transition-delay: 0.28s; }

/* Stagger bento cards */
.bento-card:nth-child(1) { transition-delay: 0s; }
.bento-card:nth-child(2) { transition-delay: 0.08s; }
.bento-card:nth-child(3) { transition-delay: 0.16s; }
.bento-card:nth-child(4) { transition-delay: 0.24s; }
.bento-card:nth-child(5) { transition-delay: 0.32s; }
.bento-card:nth-child(6) { transition-delay: 0.40s; }
.bento-card:nth-child(7) { transition-delay: 0.48s; }

/* Stagger trust items */
.trust-item:nth-child(1) .reveal { transition-delay: 0s; }
.trust-item:nth-child(2) .reveal { transition-delay: 0.1s; }
.trust-item:nth-child(3) .reveal { transition-delay: 0.2s; }
.trust-item:nth-child(4) .reveal { transition-delay: 0.3s; }

/* ═══════ Responsive ═══════ */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card--lg { grid-row: span 1; grid-column: span 2; min-height: auto; }
  .deep-dive-inner { grid-template-columns: 1fr; gap: 40px; }
  .deep-dive.reverse .deep-dive-inner { direction: ltr; }
  .deep-dive-text { max-width: 100%; }
  .mock-kpi-row { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    background: rgba(6,10,20,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 100px;
    gap: 24px;
    z-index: 99;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { display: flex; }
  .nav-links a,
  .nav-links .nav-link-parent {
    font-size: 20px;
    color: var(--white);
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-link-login { display: none; }
  .nav-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 12px;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
  }
  .nav-burger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  .nav-burger.open span:first-child { transform: rotate(45deg) translate(4px, 4px); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:last-child { transform: rotate(-45deg) translate(4px, -4px); }

  .hero { padding-top: 110px; }
  .hero-title { font-size: clamp(32px, 8vw, 52px); }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--lg { grid-column: span 1; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust-num { font-size: 36px; }
  .mock-badge { display: none; }
  .mock-kpi-row { grid-template-columns: 1fr 1fr; }
  .mock-compliance-grid { grid-template-columns: 1fr; }
  .photo-break { height: 320px; border-radius: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-col a { padding: 6px 0; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; justify-content: center; }
  .mock-sidebar { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .mock-mini-kpis { grid-template-columns: 1fr; }
}

/* ═══════ Early Bird ═══════ */
.early-bird-capsule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(45,134,89,0.3);
  background: rgba(45,134,89,0.08);
  font-size: 13px;
  font-weight: 600;
  color: #2d8659;
  margin: 0 auto 12px;
  text-align: center;
}
.pricing-card .early-bird-capsule {
  display: flex;
  width: fit-content;
  margin: 0 auto 12px;
}
.early-bird-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: pulse-live 2s ease-in-out infinite;
}
@keyframes pulse-live {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.08); }
}
.early-bird-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-start);
  margin-bottom: 4px;
}
.pricing-note {
  max-width: 520px;
  margin: 32px auto 0;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  background: var(--gray-50);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  line-height: 1.6;
}
.pricing-note strong {
  color: var(--primary);
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-up, .reveal-word {
    opacity: 1 !important;
    transform: none !important;
  }
}
