/* ===== Found — Design System (dark premium, gradient accents) ===== */

:root {
  --bg: #0a0c0a;
  --bg-elevated: #14170f;
  --bg-elevated-2: #1a1e14;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f6f0;
  --muted: #9a9c92;
  --faint: #6c6e64;

  --emerald: #34d399;
  --lime: #34d399;
  --ink: #0a0c0a;
  --gradient: linear-gradient(90deg, var(--emerald), var(--lime));

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --shadow-sm: 0 10px 30px -14px rgba(0, 0, 0, 0.6);
  --shadow-md: 0 24px 60px -20px rgba(0, 0, 0, 0.7);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Manrope", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --max-width: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

ul {
  list-style: none;
}

section {
  position: relative;
  z-index: 1;
  padding: 5.5rem 1.5rem;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}

p {
  color: var(--muted);
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem 0.4rem 0.7rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

/* ===== Card (generic dark elevated panel) ===== */
.glass {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), filter 0.35s var(--ease);
}

.btn-primary {
  background: var(--gradient);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.cta-band .btn-primary {
  background: var(--ink);
  color: var(--text);
}

.cta-band .btn-primary:hover {
  background: #000;
}

/* ===== Navbar ===== */
.navbar {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.navbar .logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
}

.navbar .logo span {
  color: var(--lime);
}

.navbar nav ul {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.navbar nav a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 9rem;
  padding-bottom: 6rem;
  background:
    radial-gradient(rgba(255, 255, 255, 0.07) 1.5px, transparent 1.5px) 0 0/26px 26px,
    var(--bg);
}

.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background:
    radial-gradient(circle at 30% 40%, rgba(52, 211, 153, 0.28), transparent 55%),
    radial-gradient(circle at 70% 50%, rgba(214, 255, 74, 0.18), transparent 55%);
  filter: blur(48px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p.lead {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 620px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* ===== Service cards ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  display: block;
  padding: 2.25rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  background: var(--bg-elevated-2);
  border-color: var(--border-strong);
}

.service-card::after {
  content: "";
  position: absolute;
  left: 2.25rem;
  right: 2.25rem;
  bottom: 0;
  height: 3px;
  background: var(--gradient);
  border-radius: 3px 3px 0 0;
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: left;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.service-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem 0.4rem 0.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lime);
  margin-bottom: 1.5rem;
}

.offer-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
}

.offer-icon svg,
.contact-info-icon svg {
  width: 18px;
  height: 18px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--lime);
  transition: gap 0.3s var(--ease);
}

.service-card:hover .offer-link {
  gap: 0.8rem;
}

/* ===== Generic section blocks ===== */
.section-header {
  max-width: 620px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-header.left {
  margin: 0 0 3rem;
  text-align: left;
}

/* ===== Why us / stats ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.stat-card {
  padding: 1.75rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ===== Process ===== */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 2rem;
}

.process-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.85rem 2rem;
}

.process-index {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--faint);
  flex-shrink: 0;
}

/* ===== CTA band ===== */
.cta-band {
  text-align: center;
  padding: 4.5rem 3rem;
  position: relative;
  overflow: hidden;
  background: var(--gradient) !important;
  border: none !important;
}

.cta-band .eyebrow {
  background: rgba(10, 12, 10, 0.14);
  color: var(--ink);
  border-color: rgba(10, 12, 10, 0.18);
}

.cta-band .eyebrow::before {
  background: var(--ink);
}

.cta-band h2 {
  margin-bottom: 1.1rem;
  color: var(--ink);
}

.cta-band p {
  max-width: 460px;
  margin: 0 auto 2.25rem;
  color: rgba(10, 12, 10, 0.7);
}

/* ===== Footer ===== */
footer {
  padding: 3.5rem 1.5rem 2.25rem;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand .logo span {
  display: block;
  width: 30px;
  height: 3px;
  margin-top: 6px;
  background: var(--emerald);
  border-radius: 2px;
  font-size: 0;
}

.footer-brand p {
  max-width: 320px;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.footer-social a:hover {
  color: var(--lime);
  border-color: var(--border-strong);
}

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

.footer-links {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
  color: var(--faint);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--faint);
}

/* ===== Custom cursor ===== */
@media (hover: hover) and (pointer: fine) {
  body.cursor-ready {
    cursor: none;
  }

  body.cursor-ready a,
  body.cursor-ready button {
    cursor: none;
  }
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 6px;
  height: 6px;
  background: var(--lime);
}

body.cursor-ready .cursor-dot {
  opacity: 1;
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}

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

.story-inner > .reveal:nth-child(1) { transition-delay: 0s; }
.story-inner > .reveal:nth-child(2) { transition-delay: 0.08s; }
.story-inner > .reveal:nth-child(3) { transition-delay: 0.16s; }
.story-inner > .reveal:nth-child(4) { transition-delay: 0.24s; }
.story-inner > .reveal:nth-child(5) { transition-delay: 0.32s; }
.story-inner > .reveal:nth-child(6) { transition-delay: 0.4s; }

/* ===== Page transition overlay ===== */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: var(--bg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.page-transition.is-active {
  opacity: 1;
  pointer-events: all;
}

/* ===== Intro loader (homepage) ===== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--text);
  letter-spacing: -0.02em;
  text-align: center;
  opacity: 0;
  animation: loaderReveal 0.7s var(--ease) 0.1s forwards;
}

.loader-logo span {
  display: block;
  width: 52px;
  height: 4px;
  margin: 8px auto 0;
  background: var(--emerald);
  border-radius: 2px;
  font-size: 0;
}

@keyframes loaderReveal {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== Hero entrance animation ===== */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > *,
.page-hero .container > * {
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease) forwards;
}

/* Homepage hero waits for the intro loader to clear first */
.hero-content > *:nth-child(1) { animation-delay: 0.55s; }
.hero-content > *:nth-child(2) { animation-delay: 0.68s; }
.hero-content > *:nth-child(3) { animation-delay: 0.8s; }
.hero-content > *:nth-child(4) { animation-delay: 0.92s; }
.hero-content > *:nth-child(5) { animation-delay: 1.04s; }

/* Subpages have no loader, so animate in right away */
.page-hero .container > *:nth-child(1) { animation-delay: 0.1s; }
.page-hero .container > *:nth-child(2) { animation-delay: 0.22s; }
.page-hero .container > *:nth-child(3) { animation-delay: 0.34s; }
.page-hero .container > *:nth-child(4) { animation-delay: 0.46s; }
.page-hero .container > *:nth-child(5) { animation-delay: 0.58s; }

/* ===== Page hero (service/contact pages) ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: 8.5rem;
  padding-bottom: 4.5rem;
  background:
    radial-gradient(rgba(255, 255, 255, 0.07) 1.5px, transparent 1.5px) 0 0/26px 26px,
    var(--bg);
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 400px;
  top: -160px;
  right: -100px;
  background:
    radial-gradient(circle at 40% 40%, rgba(52, 211, 153, 0.22), transparent 55%),
    radial-gradient(circle at 60% 60%, rgba(214, 255, 74, 0.14), transparent 55%);
  filter: blur(48px);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-bottom: 1.5rem;
}

.page-hero p.lead {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 620px;
  margin-bottom: 2rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--faint);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--muted);
}

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

/* ===== Feature list (service pages) ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  margin-top: 2.5rem;
}

.region-note {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(52, 211, 153, 0.06);
  border: 1px solid rgba(52, 211, 153, 0.18);
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 760px;
}

.feature-card {
  padding: 1.85rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.92rem;
}

/* ===== Contact form ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.form-card {
  padding: 2.25rem;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.05rem;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--emerald);
  background: var(--bg-elevated-2);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-info-item {
  padding: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== Story nav (persistent, with real links) ===== */
.story-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 2rem;
  background: rgba(10, 12, 10, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.story-nav .logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.story-nav .logo span {
  display: block;
  width: 28px;
  height: 3px;
  margin-top: 5px;
  background: var(--emerald);
  border-radius: 2px;
  font-size: 0;
}

.story-nav nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.story-nav nav a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-left: 0.4rem;
  border-left: 1px solid var(--border);
}

.lang-switcher a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--faint);
  transition: color 0.3s var(--ease);
}

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

.lang-switcher a.is-active {
  color: var(--lime);
}

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

/* ===== Services dropdown ===== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: "\25BE";
  margin-left: 0.35rem;
  font-size: 0.7em;
  opacity: 0.7;
}

/* Outer element is an invisible hover bridge: it starts flush against the
   trigger (top: 100%, no gap) and the visual gap is just padding-top, so
   the mouse is never over a dead zone between the link and the menu. */
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 1.1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), visibility 0.2s;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown-menu-inner {
  min-width: 230px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.6rem;
  box-shadow: var(--shadow-md);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem !important;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text) !important;
}

.progress-rail {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  z-index: 101;
}

.progress-rail-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient);
}

/* ===== Story sections (generic) ===== */
.story-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.story-inner {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.story-inner.centered {
  text-align: center;
}

.story-inner.centered .story-headline,
.story-inner.centered .story-sub {
  margin-left: auto;
  margin-right: auto;
}

.story-index {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--faint);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.story-headline {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  margin-bottom: 2rem;
}

.story-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 2.5rem;
}

.story-list {
  font-size: 0.92rem;
  color: var(--faint);
  letter-spacing: 0.01em;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
}

.story-inner .offer-link {
  margin-top: 2.5rem;
}

.story-list span {
  color: var(--muted);
}

.story-list span:not(:last-child)::after {
  content: "  /  ";
  color: var(--faint);
}

/* ===== Hero visual (canvas node network) ===== */
.story-hero {
  min-height: 100vh;
  padding-top: 8rem;
  border-top: none;
}

.node-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
}

/* ===== Organic section blobs ===== */
.organic-blobs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.organic-blobs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  background: radial-gradient(circle, rgba(52, 211, 153, 0.35), transparent 70%);
  animation: blobDrift 16s ease-in-out infinite;
}

.organic-blobs span:nth-child(1) {
  width: 380px;
  height: 380px;
  top: 10%;
  left: 55%;
  animation-delay: 0s;
}

.organic-blobs span:nth-child(2) {
  width: 280px;
  height: 280px;
  bottom: 5%;
  left: 62%;
  background: radial-gradient(circle, rgba(214, 255, 74, 0.25), transparent 70%);
  animation-delay: -6s;
}

.organic-blobs span:nth-child(3) {
  width: 220px;
  height: 220px;
  top: 45%;
  left: 78%;
  animation-delay: -11s;
}

@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 25px) scale(1.08); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}

/* ===== Paid section bar chart ===== */
.bar-chart {
  position: absolute;
  right: 6%;
  bottom: 0;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 1.1rem;
  pointer-events: none;
}

.bar-chart span {
  width: 22px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--lime), rgba(214, 255, 74, 0.15));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 1.1s var(--ease);
}

.story-section.is-visible .bar-chart span {
  transform: scaleY(1);
}

.bar-chart span:nth-child(1) { height: 30%; transition-delay: 0.05s; }
.bar-chart span:nth-child(2) { height: 55%; transition-delay: 0.15s; }
.bar-chart span:nth-child(3) { height: 40%; transition-delay: 0.25s; }
.bar-chart span:nth-child(4) { height: 75%; transition-delay: 0.35s; }
.bar-chart span:nth-child(5) { height: 60%; transition-delay: 0.45s; }
.bar-chart span:nth-child(6) { height: 92%; transition-delay: 0.55s; }

/* ===== Browser mockup stack ===== */
.browser-stack {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  height: 360px;
}

.browser-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.browser-frame::before {
  content: "";
  display: block;
  height: 32px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--border);
}

.browser-frame::after {
  content: "";
  position: absolute;
  inset: 32px 0 0 0;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.18), rgba(214, 255, 74, 0.12));
}

.browser-frame.back {
  transform: translate(-24px, 24px) rotate(-3deg);
  opacity: 0.5;
}

.browser-frame.front {
  transform: translate(16px, -8px) rotate(2deg);
}

/* ===== Blog ===== */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.blog-filter {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}

.blog-filter:hover {
  border-color: var(--border-strong);
  color: var(--fg);
}

.blog-filter.is-active {
  background: var(--lime);
  border-color: var(--lime);
  color: #0a0a0a;
}

.blog-card.is-hidden {
  display: none;
}

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

.blog-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
}

.newsletter-band {
  padding: 3rem;
  text-align: center;
}

.newsletter-band h2 {
  margin-bottom: 0.6rem;
}

.newsletter-band p {
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 1.75rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--lime);
}

.newsletter-form button {
  white-space: nowrap;
  border-radius: var(--radius-full);
}

.newsletter-note {
  font-size: 0.8rem;
  color: var(--faint);
  margin-top: 1rem;
}

@media (max-width: 560px) {
  .newsletter-form {
    flex-direction: column;
  }
}

.blog-thumb {
  height: 170px;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.25), rgba(214, 255, 74, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}

.blog-thumb span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.88);
}

.blog-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lime);
  margin-bottom: 1rem;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.blog-card p {
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
}

.blog-meta {
  font-size: 0.78rem;
  color: var(--faint);
}

/* ===== Blog post article body ===== */
.article-body {
  max-width: 700px;
  margin: 0 auto;
}

.article-body p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.article-body h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1.25rem;
}

.article-body h3 {
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
}

.article-body ul {
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.article-body ul li {
  font-size: 1.05rem;
  color: var(--muted);
  padding-left: 1.5rem;
  position: relative;
}

.article-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.article-body strong {
  color: var(--text);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--faint);
  margin-bottom: 2rem;
}

.article-meta span.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--faint);
}

/* ===== Proof section ===== */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.proof-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.proof-thumb {
  height: 170px;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.25), rgba(214, 255, 74, 0.15));
  position: relative;
}

.proof-thumb-img {
  height: 170px;
  width: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.proof-thumb-logo {
  height: 170px;
  background: #060606;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem;
  position: relative;
}

.proof-thumb-logo img {
  max-width: 65%;
  max-height: 65%;
  object-fit: contain;
}

.proof-thumb {
  position: relative;
}

.proof-card {
  display: block;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.proof-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
}

.proof-body {
  padding: 1.25rem 1.4rem 1.5rem;
}

.proof-body h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.proof-body p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.proof-stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  padding: 1.75rem;
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-card span {
  font-size: 0.85rem;
  color: var(--faint);
}

/* ===== Our Offer / simulator ===== */
.offer-paths {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.offer-path-card {
  padding: 2rem;
}

.offer-path-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--lime);
}

.offer-path-card p {
  font-size: 0.95rem;
}

.offer-tool-teaser {
  padding: 2.5rem;
  margin-top: 1rem;
  text-align: center;
}

.offer-tool-teaser h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.offer-tool-teaser p {
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.simulator {
  padding: 2.5rem;
  margin-top: 1rem;
}

.simulator h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.simulator-intro {
  margin-bottom: 1.75rem;
}

.simulator-groups {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.simulator-group-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.simulator-subchips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.simulator-subchips.detailed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0.75rem;
}

.simulator-subchips.detailed .sim-subchip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.35rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  height: 100%;
}

.sim-subchip-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
}

.sim-subchip-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.sim-subchip.is-active .sim-subchip-desc {
  color: var(--ink);
  opacity: 0.75;
}

.simulator-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--emerald);
  min-height: 1.2rem;
}

.sim-subchip {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}

.sim-subchip:hover {
  border-color: var(--emerald);
  color: var(--text);
}

.sim-subchip.is-active {
  background: var(--gradient);
  border-color: transparent;
  color: var(--ink);
  font-weight: 700;
}

.simulator-unsure {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--muted);
  background: none;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  margin-bottom: 1.75rem;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.simulator-unsure span {
  color: var(--lime);
  font-weight: 600;
}

.simulator-unsure:hover,
.simulator-unsure.is-active {
  border-color: var(--lime);
  color: var(--text);
}

.simulator-tier {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.4rem;
  background: rgba(214, 255, 74, 0.05);
  border: 1px solid rgba(214, 255, 74, 0.18);
  border-radius: var(--radius-md);
  margin-top: 0.25rem;
}

.tier-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.tier-symbols {
  display: flex;
  gap: 0.1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
}

.tier-symbol {
  color: var(--faint);
}

.tier-symbol.is-filled {
  color: var(--lime);
}

.tier-name {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.simulator-results {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  min-height: 3rem;
}

.simulator-placeholder {
  color: var(--faint);
  font-size: 0.92rem;
}

.simulator-result-card {
  background: rgba(52, 211, 153, 0.06);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
}

.simulator-result-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--emerald);
  margin-bottom: 0.4rem;
}

.simulator-result-card p {
  color: var(--text);
  font-size: 0.95rem;
  margin: 0;
}

.simulator-result-card.is-full {
  background: rgba(214, 255, 74, 0.08);
  border-color: rgba(214, 255, 74, 0.25);
}

.simulator-result-card.is-full h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--lime);
}

.simulator-result-card.is-full p {
  color: var(--muted);
}

@media (max-width: 700px) {
  .offer-paths {
    grid-template-columns: 1fr;
  }
}

/* ===== System flow diagram ===== */
.flow-diagram {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  padding-left: 2.5rem;
}

.flow-diagram::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--emerald), var(--lime));
  opacity: 0.35;
}

.flow-step {
  position: relative;
  padding-bottom: 2.5rem;
}

.flow-step:last-child {
  padding-bottom: 0;
}

.flow-step::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--lime);
}

.flow-step h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
}

.flow-step.is-final h4 {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Final CTA form ===== */
.story-final {
  padding-bottom: 5rem;
}

.final-form {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.final-form .form-group {
  margin-bottom: 1.1rem;
}

/* ===== Chat widget ===== */
.chat-widget {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 9000;
}

.chat-teaser {
  position: absolute;
  right: 0;
  bottom: calc(100% + 1rem);
  width: 230px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  border-bottom-right-radius: 4px;
  padding: 0.9rem 2rem 0.9rem 1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  cursor: pointer;
}

.chat-teaser.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.chat-teaser p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
}

.chat-teaser-close {
  position: absolute;
  top: 0.4rem;
  right: 0.5rem;
  background: none;
  border: none;
  color: var(--faint);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
}

.chat-teaser-close:hover {
  color: var(--text);
}

.chat-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: var(--gradient);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease);
}

.chat-toggle:hover {
  transform: scale(1.06);
}

.chat-toggle svg {
  width: 24px;
  height: 24px;
}

.chat-toggle .icon-close {
  display: none;
}

.chat-widget.is-open .chat-toggle .icon-chat {
  display: none;
}

.chat-widget.is-open .chat-toggle .icon-close {
  display: block;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 1rem);
  width: 340px;
  max-width: calc(100vw - 3rem);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}

.chat-widget.is-open .chat-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  background: var(--gradient);
  color: var(--ink);
}

.chat-panel-header strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.chat-panel-header span {
  display: block;
  font-size: 0.75rem;
  opacity: 0.75;
}

.chat-close {
  background: none;
  border: none;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
}

.chat-panel-body {
  padding: 1.25rem;
}

.chat-bubble {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  border-bottom-left-radius: 4px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.chat-step[hidden] {
  display: none;
}

.chat-step .form-group {
  margin-bottom: 0.85rem;
}

.chat-step input,
.chat-step textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.chat-step input:focus,
.chat-step textarea:focus {
  outline: none;
  border-color: var(--emerald);
}

.chat-step textarea {
  min-height: 90px;
  resize: vertical;
}

.chat-step .btn {
  width: 100%;
  margin-top: 0.85rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
}

.chat-error {
  font-size: 0.8rem;
  color: #ff8080;
  margin-top: 0.5rem;
  display: none;
}

.chat-error.is-visible {
  display: block;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .service-grid,
  .feature-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .navbar nav,
  .story-nav nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1.5rem;
    right: 1.5rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
  }

  .navbar nav.is-open,
  .story-nav nav.is-open {
    display: block;
  }

  .navbar nav ul,
  .story-nav nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .lang-switcher {
    padding-left: 0;
    border-left: none;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 0.5rem 0 0 1rem;
    margin-top: 0.5rem;
    display: none;
  }

  .nav-dropdown-menu-inner {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
  }

  .nav-toggle {
    display: block;
  }


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

  .proof-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-row {
    grid-template-columns: 1fr;
  }

  .bar-chart {
    opacity: 0.4;
  }

  .browser-stack {
    height: 250px;
  }
}

@media (max-width: 600px) {
  section {
    padding: 3.75rem 1.25rem;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-grid {
    flex-direction: column;
  }

  .story-section {
    padding: 5rem 1.25rem;
    min-height: auto;
  }

  .proof-metrics {
    grid-template-columns: 1fr 1fr;
  }
}

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

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

  .loader {
    display: none;
  }

  .hero-content > *,
  .page-hero .container > * {
    opacity: 1;
    animation: none;
  }

  .organic-blobs span {
    animation: none;
  }

  .bar-chart span {
    transition: none;
    transform: scaleY(1);
  }

  .cursor-dot {
    display: none;
  }

  body.cursor-ready {
    cursor: auto;
  }
}
