:root {
  --bg: #eef1ec;
  --bg-soft: #f8faf6;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: #ffffff;
  --surface-2: #f4f6f0;
  --line: rgba(28, 37, 32, 0.12);
  --line-strong: rgba(28, 37, 32, 0.2);
  --text: #142017;
  --muted: #5c6a60;
  --accent: #0f766e;
  --accent-2: #bc4f2f;
  --accent-3: #f59e0b;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --head: "Sora", "Space Grotesk", sans-serif;
  --body: "Manrope", "Segoe UI", sans-serif;
  --serif: "Fraunces", Georgia, serif;
  --step-body: 1rem;
  --step-caption: 0.78rem;
  --step-label: 0.72rem;
  --step-h3: clamp(1rem, 1.8vw, 1.24rem);
  --step-h2: clamp(1.55rem, 3.2vw, 2.7rem);
  --step-h1: clamp(2.15rem, 5vw, 4.25rem);
  --lh-body: 1.58;
  --lh-copy: 1.64;
  --lh-heading: 1.03;
  --t-fast: 350ms;
  --t-med: 550ms;
  --t-slow: 800ms;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --radius-xs: 8px;
  --radius: 20px;
  --radius-sm: 14px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow-sm: 0 10px 28px rgba(15, 24, 18, 0.07);
  --shadow-md: 0 18px 48px rgba(15, 24, 18, 0.12);
  --shadow-lg: 0 24px 64px rgba(15, 24, 18, 0.14), 0 8px 20px rgba(15, 24, 18, 0.06);
  --shadow-xl: 0 32px 80px rgba(15, 24, 18, 0.18), 0 12px 28px rgba(15, 24, 18, 0.08);
  --shadow-glow-teal: 0 0 40px rgba(15, 118, 110, 0.15);
  --shadow-glow-clay: 0 0 40px rgba(188, 79, 47, 0.12);
  --success: #16a34a;
  --success-bg: rgba(22, 163, 74, 0.08);
  --danger: #dc2626;
  --danger-bg: rgba(220, 38, 38, 0.08);
  --warning: #f59e0b;
  --warning-bg: rgba(245, 158, 11, 0.08);
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;
  --space-40: 40px;
  --space-48: 48px;
  --space-64: 64px;
  --section-space: clamp(54px, 7.5vw, 104px);
  --section-space-alt: clamp(62px, 8.5vw, 116px);
  --section-tight-space: clamp(34px, 5vw, 72px);
  --max: 1280px;
  --pad: clamp(16px, 2.2vw, 28px);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--step-body);
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(15, 118, 110, 0.1), transparent 45%),
    radial-gradient(circle at 92% 8%, rgba(188, 79, 47, 0.08), transparent 42%),
    linear-gradient(180deg, #eef1ec 0%, #edf0e8 40%, #f3f4ef 100%);
  line-height: var(--lh-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.045;
  background-image:
    radial-gradient(#000 0.4px, transparent 0.4px),
    radial-gradient(#000 0.35px, transparent 0.35px);
  background-position: 0 0, 8px 8px;
  background-size: 16px 16px;
  mix-blend-mode: soft-light;
  z-index: 1;
}

.noise-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(109, 224, 255, 0.2), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.16), transparent 38%),
    radial-gradient(circle at 50% 88%, rgba(15, 118, 110, 0.16), transparent 46%);
  background-size: 124% 124%, 126% 126%, 132% 132%;
  background-position:
    calc(0% + var(--river-a-x, 0%)) calc(0% + var(--river-a-y, 0%)),
    calc(100% + var(--river-b-x, 0%)) calc(0% + var(--river-b-y, 0%)),
    calc(50% + var(--river-c-x, 0%)) calc(100% + var(--river-c-y, 0%));
  animation: river-shift 48s ease-in-out infinite alternate;
  opacity: 0.86;
  filter: saturate(var(--river-sat, 1.03)) blur(2px);
  transition: filter var(--t-slow) var(--ease-premium), opacity var(--t-slow) var(--ease-premium);
}

.noise-glow::before,
.noise-glow::after {
  content: "";
  position: absolute;
  inset: -10%;
  pointer-events: none;
  opacity: 0.45;
}

.noise-glow::before {
  background:
    radial-gradient(circle at 12% 72%, rgba(91, 140, 255, 0.08), transparent 34%),
    radial-gradient(circle at 88% 68%, rgba(188, 79, 47, 0.07), transparent 38%);
  animation: river-drift-a 58s ease-in-out infinite alternate;
}

.noise-glow::after {
  background:
    radial-gradient(circle at 64% 22%, rgba(15, 118, 110, 0.08), transparent 32%),
    radial-gradient(circle at 38% 78%, rgba(245, 158, 11, 0.06), transparent 36%);
  animation: river-drift-b 64s ease-in-out infinite alternate;
}

@keyframes river-shift {
  0% {
    background-position:
      calc(4% + var(--river-a-x, 0%)) calc(8% + var(--river-a-y, 0%)),
      calc(96% + var(--river-b-x, 0%)) calc(4% + var(--river-b-y, 0%)),
      calc(50% + var(--river-c-x, 0%)) calc(96% + var(--river-c-y, 0%));
  }

  50% {
    background-position:
      calc(12% + var(--river-a-x, 0%)) calc(4% + var(--river-a-y, 0%)),
      calc(88% + var(--river-b-x, 0%)) calc(12% + var(--river-b-y, 0%)),
      calc(44% + var(--river-c-x, 0%)) calc(86% + var(--river-c-y, 0%));
  }

  100% {
    background-position:
      calc(20% + var(--river-a-x, 0%)) calc(10% + var(--river-a-y, 0%)),
      calc(78% + var(--river-b-x, 0%)) calc(14% + var(--river-b-y, 0%)),
      calc(56% + var(--river-c-x, 0%)) calc(78% + var(--river-c-y, 0%));
  }
}

@keyframes river-drift-a {
  0% {
    transform: translate3d(-1.5%, 0%, 0) scale(1);
  }

  100% {
    transform: translate3d(1.5%, -1.2%, 0) scale(1.03);
  }
}

@keyframes river-drift-b {
  0% {
    transform: translate3d(1.3%, 0.8%, 0) scale(1);
  }

  100% {
    transform: translate3d(-1.6%, -0.8%, 0) scale(1.02);
  }
}

.shell {
  width: min(calc(100% - 2 * var(--pad)), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px) saturate(1.06);
  background: rgba(238, 241, 236, 0.68);
  border-bottom: 1px solid rgba(20, 32, 23, 0.06);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.35);
  transition:
    background-color var(--t-fast) var(--ease-premium),
    box-shadow var(--t-fast) var(--ease-premium);
}

.site-header--scrolled {
  background: rgba(238, 241, 236, 0.88);
  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.35),
    var(--shadow-sm);
  border-bottom-color: rgba(20, 32, 23, 0.1);
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.na-scroll-bridge {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 40;
  pointer-events: none;
  transform-origin: left center;
  transform: scaleX(var(--progress, 0));
  background: linear-gradient(90deg, #6de0ff, #0f766e, #f59e0b);
  box-shadow: 0 0 14px rgba(15, 118, 110, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--head);
  letter-spacing: -0.02em;
}

.brand::after {
  content: "Not Alone Studios";
  color: var(--text);
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: auto;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(20, 32, 23, 0.08);
  background: rgba(255, 255, 255, 0.78);
  padding: 4px 6px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 8px 18px rgba(15, 24, 18, 0.06);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.82rem;
  background: linear-gradient(135deg, #0f766e, #1b5567 55%, #bc4f2f);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
  border-radius: 999px;
  padding: 9px 12px;
  border: 1px solid transparent;
  transition:
    color var(--t-fast) var(--ease-premium),
    background-color var(--t-fast) var(--ease-premium),
    border-color var(--t-fast) var(--ease-premium);
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6de0ff, #0f766e, #f59e0b);
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left center;
  transition:
    transform var(--t-med) var(--ease-premium),
    opacity var(--t-fast) var(--ease-premium);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(20, 32, 23, 0.08);
}

.nav a:hover:not(.nav-cta)::after {
  opacity: 0.55;
  transform: scaleX(0.7);
}

.nav a[aria-current="page"]:not(.nav-cta)::after {
  opacity: 0.95;
  transform: scaleX(1);
}

.nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, #0f766e, #135f59);
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.22);
}

.nav .nav-cta:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #126a63, #0f5550);
}

main {
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
}

.section {
  padding: var(--section-space) 0;
}

main>.section:nth-of-type(even):not(.section-tight) {
  padding-block: var(--section-space-alt);
}

.section[data-bridge-divider="true"] .shell {
  position: relative;
}

.section[data-bridge-divider="true"] .shell::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(-1 * clamp(24px, 3vw, 34px));
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(109, 224, 255, 0.8), rgba(15, 118, 110, 0.9), rgba(245, 158, 11, 0.85));
  opacity: 0.5;
}

.section[data-bridge-divider="true"] .shell::after {
  content: "";
  position: absolute;
  top: calc(-1 * clamp(24px, 3vw, 34px) - 3px);
  left: -14%;
  width: 14%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  filter: blur(4px);
  opacity: 0.6;
  animation: divider-bridge 7.5s ease-in-out infinite;
}

@keyframes divider-bridge {

  0%,
  100% {
    transform: translateX(0%);
    opacity: 0;
  }

  18% {
    opacity: 0.55;
  }

  52% {
    transform: translateX(430%);
    opacity: 0.6;
  }

  100% {
    transform: translateX(720%);
    opacity: 0;
  }
}

.section-tight {
  padding: var(--section-tight-space) 0;
}

.kicker {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: var(--step-caption);
  font-family: var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: var(--lh-heading);
  letter-spacing: -0.035em;
  font-family: var(--head);
  text-wrap: balance;
}

h1 {
  font-size: var(--step-h1);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h2 {
  font-size: var(--step-h2);
  line-height: 1.05;
  letter-spacing: -0.032em;
}

h3 {
  font-size: var(--step-h3);
  line-height: 1.08;
  letter-spacing: -0.028em;
}

p {
  margin: 0;
  line-height: var(--lh-copy);
  text-wrap: pretty;
}

li {
  line-height: 1.52;
}

.lede {
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  color: var(--muted);
  max-width: 65ch;
  line-height: 1.55;
}

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(24px, 5vw, 64px) 0 clamp(36px, 6vw, 78px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8px 2% auto;
  height: min(72vh, 560px);
  z-index: -1;
  border-radius: 32px;
  background:
    radial-gradient(circle at 16% 18%, rgba(109, 224, 255, 0.18), transparent 34%),
    radial-gradient(circle at 78% 22%, rgba(245, 158, 11, 0.15), transparent 36%),
    radial-gradient(circle at 58% 78%, rgba(15, 118, 110, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  filter: blur(4px) saturate(1.04);
  opacity: 0.9;
  animation: hero-mesh 34s ease-in-out infinite alternate;
}

.hero-showcase {
  padding-bottom: clamp(18px, 3vw, 30px);
}

.hero-showcase__intro {
  max-width: 900px;
  margin-bottom: clamp(18px, 2.4vw, 28px);
}

.hero-showcase__intro h1 {
  margin-bottom: 12px;
  max-width: 18ch;
}

.feature-carousel {
  border-radius: 26px;
  border: 1px solid rgba(20, 32, 23, 0.08);
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(16px) saturate(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 22px 44px rgba(15, 24, 18, 0.09);
  padding: 12px;
}

.feature-carousel__stage {
  position: relative;
  min-height: clamp(420px, 48vw, 560px);
  overflow: hidden;
  border-radius: 20px;
}

.feature-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(20, 32, 23, 0.08);
  padding: clamp(18px, 2.4vw, 28px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(14px, 2vw, 22px);
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(56px, 0, 0) scale(0.97);
  pointer-events: none;
  transition:
    opacity 480ms cubic-bezier(0.32, 0.72, 0, 1),
    visibility 480ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 520ms cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.feature-slide[data-active="true"] {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

/* Direction-aware exit transitions */
.feature-slide[data-leaving="next"] {
  opacity: 0;
  visibility: visible;
  transform: translate3d(-56px, 0, 0) scale(0.97);
  pointer-events: none;
  z-index: 1;
}

.feature-slide[data-leaving="prev"] {
  opacity: 0;
  visibility: visible;
  transform: translate3d(56px, 0, 0) scale(0.97);
  pointer-events: none;
  z-index: 1;
}

/* Incoming direction: slide enters from the correct side */
.feature-carousel[data-direction="prev"] .feature-slide:not([data-active]):not([data-leaving]) {
  transform: translate3d(-56px, 0, 0) scale(0.97);
}

.feature-slide--studio {
  background:
    radial-gradient(circle at 86% 16%, rgba(109, 224, 255, 0.12), transparent 38%),
    radial-gradient(circle at 78% 82%, rgba(245, 158, 11, 0.1), transparent 42%),
    linear-gradient(135deg, rgba(8, 19, 28, 0.86), rgba(8, 19, 28, 0.48));
  border-color: rgba(109, 224, 255, 0.14);
}

.feature-slide--maulya {
  background:
    radial-gradient(circle at 88% 12%, rgba(109, 224, 255, 0.14), transparent 36%),
    radial-gradient(circle at 14% 86%, rgba(245, 158, 11, 0.08), transparent 42%),
    rgba(248, 249, 245, 0.82);
}

.feature-slide--revalk {
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 176, 124, 0.14), transparent 36%),
    radial-gradient(circle at 12% 82%, rgba(46, 111, 86, 0.1), transparent 42%),
    rgba(251, 247, 238, 0.85);
  border-color: rgba(31, 38, 29, 0.08);
}

.feature-slide__bg-video,
.feature-slide__bg-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.feature-slide__bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.26;
  filter: blur(8px) saturate(0.92) contrast(1.03);
  transform: scale(1.04);
  transition:
    opacity var(--t-med) var(--ease-premium),
    filter var(--t-med) var(--ease-premium),
    transform var(--t-med) var(--ease-premium);
}

.feature-slide[data-active="true"] .feature-slide__bg-video {
  opacity: 0.36;
  filter: blur(5px) saturate(0.98) contrast(1.03);
  transform: scale(1.01);
}

.feature-slide__bg-scrim {
  background:
    radial-gradient(circle at 78% 34%, rgba(109, 224, 255, 0.18), transparent 46%),
    linear-gradient(90deg,
      rgba(8, 19, 28, 0.82) 0%,
      rgba(8, 19, 28, 0.7) 34%,
      rgba(8, 19, 28, 0.42) 58%,
      rgba(8, 19, 28, 0.22) 100%);
}

.feature-slide__content,
.feature-slide__media,
.feature-slide__aside {
  position: relative;
  z-index: 1;
}

.feature-slide__content {
  display: grid;
  gap: 12px;
  align-content: start;
}

.feature-slide__content h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.3vw, 2.25rem);
  line-height: 1.06;
}

.feature-slide__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.feature-slide__list {
  margin-top: 2px;
}

.feature-slide__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-slide__chips .chip {
  background: rgba(255, 255, 255, 0.52);
}

.feature-slide--studio .feature-slide__content,
.feature-slide--studio .feature-slide__content p,
.feature-slide--studio .feature-slide__content li,
.feature-slide--studio .feature-slide__content h2 {
  color: rgba(248, 251, 255, 0.94);
}

.feature-slide--studio .feature-slide__content p,
.feature-slide--studio .feature-slide__content li {
  color: rgba(230, 238, 255, 0.78);
}

.feature-slide--studio .feature-slide__chips .chip {
  border-color: rgba(109, 224, 255, 0.22);
  background: rgba(8, 19, 28, 0.28);
  color: rgba(244, 248, 255, 0.92);
}

.feature-slide__actions {
  margin-top: 2px;
}

.feature-slide__media {
  display: grid;
  gap: 10px;
  align-content: center;
}

.feature-slide__screen {
  margin: 0;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition:
    opacity 500ms cubic-bezier(0.32, 0.72, 0, 1) 180ms,
    transform 600ms cubic-bezier(0.32, 0.72, 0, 1) 180ms;
}

.feature-slide[data-active="true"] .feature-slide__screen {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.feature-slide__screen .screen-frame__caption {
  display: none;
}

.feature-slide__media-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

.feature-slide--studio .feature-slide__media-note {
  color: rgba(235, 242, 255, 0.7);
}

.feature-slide__aside {
  display: grid;
  gap: 10px;
  align-content: end;
}

.feature-slide__callout {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 19, 28, 0.18);
  padding: 12px;
  backdrop-filter: blur(8px);
}

.feature-slide__callout .label {
  margin: 0;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  color: rgba(235, 242, 255, 0.62);
}

.feature-slide__callout .value {
  margin: 6px 0 0;
  color: rgba(245, 249, 255, 0.92);
  font-size: 0.94rem;
  line-height: 1.4;
}

.feature-carousel__footer {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.feature-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-carousel__dots button {
  position: relative;
  border: 1px solid rgba(20, 32, 23, 0.1);
  background: rgba(255, 255, 255, 0.54);
  color: var(--muted);
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 0.84rem;
  overflow: hidden;
  transition:
    border-color var(--t-fast) var(--ease-premium),
    background-color var(--t-fast) var(--ease-premium),
    color var(--t-fast) var(--ease-premium),
    transform var(--t-fast) var(--ease-premium),
    box-shadow var(--t-fast) var(--ease-premium);
}

.feature-carousel__dots button[aria-pressed="true"] {
  color: var(--text);
  border-color: rgba(15, 118, 110, 0.28);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 3px 14px rgba(15, 118, 110, 0.14);
  transform: translateY(-2px);
}

/* Autoplay progress bar on active dot */
.feature-carousel__dots button[aria-pressed="true"]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2.5px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #0f766e, #6de0ff);
  transform-origin: left center;
  transform: scaleX(0);
  animation: carousel-progress var(--carousel-autoplay-ms, 7200ms) linear forwards;
}

.feature-carousel[data-paused="true"] .feature-carousel__dots button[aria-pressed="true"]::after {
  animation-play-state: paused;
}

.feature-carousel__dots button:not([aria-pressed="true"])::after {
  content: none;
}

@keyframes carousel-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.feature-carousel__controls {
  display: flex;
  gap: 8px;
}

.feature-carousel__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 32, 23, 0.1);
  background: rgba(255, 255, 255, 0.54);
  color: var(--text);
  min-height: 38px;
  min-width: 38px;
  width: 38px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition:
    background-color var(--t-fast) var(--ease-premium),
    border-color var(--t-fast) var(--ease-premium),
    box-shadow var(--t-fast) var(--ease-premium),
    transform var(--t-fast) var(--ease-premium);
}

.feature-carousel__control svg {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.feature-carousel__control:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(15, 118, 110, 0.22);
  box-shadow: 0 4px 16px rgba(15, 118, 110, 0.14);
}

.feature-carousel__dots button:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(15, 24, 18, 0.08);
}

.home-signals .hero-grid {
  align-items: start;
}

.home-signals .hero-copy h2 {
  margin-bottom: 10px;
}

@keyframes hero-mesh {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0.8%, -0.6%, 0) scale(1.015);
  }

  100% {
    transform: translate3d(-0.8%, 0.5%, 0) scale(1.01);
  }
}

.hero-living {
  --hero-video-open: 0.12;
  --hero-video-visible: 0.85;
  position: absolute;
  inset: clamp(20px, 3.4vw, 42px) 2% auto;
  height: min(62vh, 500px);
  z-index: 0;
  pointer-events: none;
}

.hero-living__surface {
  position: absolute;
  inset: 0 0 0 53%;
  overflow: hidden;
  border-radius: 32px;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: calc(0.44 + (0.34 * var(--hero-video-visible, 0.85)));
  -webkit-mask-image: radial-gradient(150% 132% at 76% 52%,
      rgba(0, 0, 0, 1) 28%,
      rgba(0, 0, 0, 0.96) 44%,
      rgba(0, 0, 0, 0.84) 58%,
      rgba(0, 0, 0, 0.58) 70%,
      rgba(0, 0, 0, 0.28) 80%,
      rgba(0, 0, 0, 0.08) 88%,
      transparent 95%);
  mask-image: radial-gradient(150% 132% at 76% 52%,
      rgba(0, 0, 0, 1) 28%,
      rgba(0, 0, 0, 0.96) 44%,
      rgba(0, 0, 0, 0.84) 58%,
      rgba(0, 0, 0, 0.58) 70%,
      rgba(0, 0, 0, 0.28) 80%,
      rgba(0, 0, 0, 0.08) 88%,
      transparent 95%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hero-living__surface::before {
  content: "";
  position: absolute;
  inset: -6%;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 36%, rgba(109, 224, 255, 0.22), transparent 46%),
    radial-gradient(circle at 78% 72%, rgba(245, 158, 11, 0.14), transparent 44%),
    radial-gradient(circle at 60% 52%, rgba(15, 118, 110, 0.12), transparent 52%),
    linear-gradient(110deg,
      rgba(243, 246, 241, 0.08) 0%,
      rgba(243, 246, 241, 0.04) 28%,
      rgba(243, 246, 241, 0.02) 52%,
      rgba(8, 19, 28, 0.03) 100%);
  filter: blur(6px);
  opacity: calc(0.68 + (0.12 * var(--hero-video-open, 0)));
  z-index: 2;
}

.hero-living__surface::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(#000 0.36px, transparent 0.36px),
    radial-gradient(#000 0.28px, transparent 0.28px);
  background-position: 0 0, 6px 6px;
  background-size: 12px 12px;
  mix-blend-mode: soft-light;
  opacity: 0.06;
  z-index: 3;
}

.hero-living__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
  opacity: calc(0.16 + (0.46 * var(--hero-video-open, 0)));
  filter:
    blur(calc(14px - (10px * var(--hero-video-open, 0)))) saturate(calc(0.88 + (0.22 * var(--hero-video-open, 0)))) contrast(calc(0.96 + (0.08 * var(--hero-video-open, 0))));
  transform: scale(calc(1.055 - (0.03 * var(--hero-video-open, 0))));
  transform-origin: center center;
  transition:
    opacity var(--t-med) var(--ease-premium),
    filter var(--t-med) var(--ease-premium),
    transform var(--t-slow) var(--ease-premium);
}

.hero-living[data-video-playing="false"] .hero-living__video {
  opacity: calc(0.12 + (0.36 * var(--hero-video-open, 0)));
}

.hero-living__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at 80% 20%, rgba(109, 224, 255, 0.14), transparent 34%),
    radial-gradient(circle at 84% 82%, rgba(245, 158, 11, 0.1), transparent 42%),
    linear-gradient(130deg,
      rgba(243, 246, 241, 0.06) 0%,
      rgba(243, 246, 241, 0.03) 22%,
      rgba(8, 19, 28, 0.08) 60%,
      rgba(8, 19, 28, 0.16) 100%),
    radial-gradient(140% 120% at 78% 52%,
      transparent 48%,
      rgba(243, 246, 241, 0.02) 64%,
      rgba(243, 246, 241, 0.08) 78%,
      rgba(243, 246, 241, 0.16) 92%,
      rgba(243, 246, 241, 0.2) 100%);
}

.hero-living__overlay {
  position: absolute;
  inset: 12px;
  z-index: 4;
  display: grid;
  justify-items: end;
  align-content: space-between;
  gap: 12px;
  padding-right: 4px;
  opacity: calc(0.38 + (0.48 * var(--hero-video-open, 0)));
  transition: opacity var(--t-med) var(--ease-premium);
}

.hero-living__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-left: auto;
  max-width: min(100%, 360px);
  padding: 4px 2px 4px 6px;
  border-radius: 12px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.hero-living__logo {
  display: block;
  width: auto;
  height: 30px;
  border-radius: 9px;
  border: 0;
  background: transparent;
  padding: 0;
  opacity: 0.92;
  filter: drop-shadow(0 4px 10px rgba(8, 19, 28, 0.1));
}

.hero-living__meta {
  display: grid;
  gap: 2px;
}

.hero-living__meta strong {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 8px rgba(8, 19, 28, 0.22);
}

.hero-living__meta span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.22;
  text-shadow: 0 1px 8px rgba(8, 19, 28, 0.2);
}

.hero-living__bridge {
  display: grid;
  gap: 8px;
  width: min(100%, 260px);
  margin-left: auto;
  margin-top: auto;
  padding: 2px 2px 2px 4px;
  border-radius: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.hero-living__bridge-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
  text-shadow: 0 1px 10px rgba(8, 19, 28, 0.22);
}

.hero-living__bridge-line {
  position: relative;
  height: 2px;
  border-radius: 999px;
  overflow: hidden;
  background:
    linear-gradient(90deg,
      rgba(109, 224, 255, 0.12),
      rgba(15, 118, 110, 0.14),
      rgba(245, 158, 11, 0.12));
  box-shadow: 0 0 12px rgba(15, 118, 110, 0.08);
}

.hero-living__bridge-line::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #6de0ff, #0f766e, #f59e0b);
  transform-origin: left center;
  transform: scaleX(calc(0.1 + (0.9 * var(--hero-video-open, 0))));
  transition: transform var(--t-med) var(--ease-premium);
}

.hero-living__bridge-line::after {
  content: "";
  position: absolute;
  top: -5px;
  bottom: -5px;
  left: -18%;
  width: 18%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), transparent);
  filter: blur(4px);
  opacity: calc(0.08 + (0.52 * var(--hero-video-open, 0)));
  animation: bridge-scan 6s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: clamp(18px, 2vw, 26px);
  align-items: start;
}

.hero-grid>* {
  position: relative;
  z-index: 1;
}

.surface {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(20, 32, 23, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px) saturate(1.03);
}

.surface-strong {
  background:
    radial-gradient(circle at 90% 14%, rgba(255, 255, 255, 0.65), transparent 38%),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 32, 23, 0.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.hero-copy {
  padding: clamp(20px, 3vw, 30px);
}

.hero-copy h1 {
  margin-bottom: 14px;
}

.hero-copy .lede {
  margin-top: 14px;
}

.button-row {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.text-center .button-row,
.text-center .cta-micro-row {
  justify-content: center;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.94rem;
  transition:
    transform var(--t-fast) var(--ease-premium),
    box-shadow var(--t-fast) var(--ease-premium),
    background-color var(--t-fast) var(--ease-premium),
    border-color var(--t-fast) var(--ease-premium);
}

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

.btn::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6de0ff, #0f766e, #f59e0b);
  opacity: 0;
  transform: scaleX(0.16);
  transform-origin: left center;
  transition:
    opacity var(--t-fast) var(--ease-premium),
    transform var(--t-med) var(--ease-premium);
}

.btn:hover::after {
  opacity: 0.85;
  transform: scaleX(1);
}

.btn-primary::after,
.btn-clay::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.45), transparent);
}

.btn:focus-visible {
  outline: 2px solid rgba(15, 118, 110, 0.26);
  outline-offset: 2px;
  box-shadow:
    0 0 0 4px rgba(15, 118, 110, 0.1),
    0 10px 22px rgba(15, 118, 110, 0.16);
}

body[data-theme="revalk"] .btn:focus-visible {
  outline-color: rgba(188, 79, 47, 0.25);
  box-shadow:
    0 0 0 4px rgba(188, 79, 47, 0.09),
    0 10px 22px rgba(188, 79, 47, 0.12);
}

.btn-primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #0f766e, #124f65);
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
}

.btn-ghost {
  border-style: dashed;
  background: transparent;
}

.btn-clay {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #bc4f2f, #a54224);
  box-shadow: 0 10px 22px rgba(188, 79, 47, 0.25);
}

.btn:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 80ms;
}

.btn-primary:active {
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.18);
}

.btn-clay:active {
  box-shadow: 0 4px 12px rgba(188, 79, 47, 0.18);
}

.btn-secondary:active {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 3px rgba(15, 24, 18, 0.08);
}

.btn-ghost:active {
  background: rgba(15, 24, 18, 0.03);
}

.btn-small {
  min-height: 38px;
  padding: 0 12px;
  font-size: 0.86rem;
}

.chip-row {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: #243328;
  font-weight: 700;
  font-size: var(--step-caption);
  letter-spacing: 0.01em;
  transition:
    transform var(--t-fast) var(--ease-premium),
    box-shadow var(--t-fast) var(--ease-premium),
    border-color var(--t-fast) var(--ease-premium),
    background-color var(--t-fast) var(--ease-premium);
}

.chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.8);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}

.eyebrow-link {
  margin-top: 14px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.eyebrow-link:hover {
  color: var(--text);
}

.hero-bullet-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-bullet-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.hero-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6de0ff, #1d4ed8);
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.1);
  transform: translateY(-50%);
}

.action-link-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
}

.action-link-row a,
.action-link {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}

.action-link-row a:hover,
.action-link:hover {
  color: var(--text);
}

.action-link-row--center {
  justify-content: center;
}

.trust-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.maulya-hero-stack {
  display: grid;
  gap: 14px;
  align-content: start;
}

.maulya-hero-frame .screen-frame__viewport {
  max-height: min(72vh, 720px);
  overflow: auto;
}

.proof-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card--compact .screen-frame__viewport {
  max-height: 360px;
  overflow: auto;
}

.proof-card--wide {
  padding: 18px;
}

.maulya-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: center;
}

.pipeline-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.pipeline-step {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(20, 32, 23, 0.08);
  background: rgba(255, 255, 255, 0.76);
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.details-panel {
  margin-top: 16px;
  border-radius: 18px;
  border: 1px solid rgba(20, 32, 23, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.details-panel__summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.details-panel__summary::-webkit-details-marker {
  display: none;
}

.details-panel__summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--muted);
}

.details-panel[open] .details-panel__summary::after {
  content: "−";
}

.details-panel__body {
  padding: 0 18px 18px;
}

.support-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(20, 32, 23, 0.1);
  background:
    radial-gradient(circle at 88% 16%, rgba(91, 140, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 247, 255, 0.94));
  box-shadow: var(--shadow-sm);
}

.support-callout__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.maulya-feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 18px;
  align-items: center;
  padding: clamp(20px, 3vw, 30px);
}

.maulya-feature-band__media .screen-frame__viewport {
  max-height: min(68vh, 720px);
  overflow: auto;
}

.bridge-bar {
  display: grid;
  max-width: 100%;
  gap: 10px;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(20, 32, 23, 0.1);
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(16px) saturate(1.05);
  box-shadow: var(--shadow-sm);
}

.bridge-bar__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.bridge-bar__label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.bridge-bar__copy {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.bridge-bar__row {
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.bridge-bar__lane {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 10px;
  font-weight: 700;
  font-size: 0.82rem;
  border: 1px solid var(--line);
  white-space: nowrap;
}

.bridge-bar__lane::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.bridge-bar__lane--v1 {
  color: #eef2ff;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 90% 15%, rgba(91, 140, 255, 0.2), transparent 45%),
    linear-gradient(180deg, #0b0f1c, #121a2f);
}

.bridge-bar__lane--v1::before {
  background: #6de0ff;
  box-shadow: 0 0 0 4px rgba(109, 224, 255, 0.12);
}

.bridge-bar__lane--v2 {
  color: #1d2b24;
  border-color: #d6dbc9;
  background:
    radial-gradient(circle at 85% 12%, rgba(245, 158, 11, 0.14), transparent 44%),
    #fffaf0;
}

.bridge-bar__lane--v2::before {
  background: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.bridge-bar__line {
  position: relative;
  height: 3px;
  border-radius: 999px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(109, 224, 255, 0.2), rgba(15, 118, 110, 0.2), rgba(245, 158, 11, 0.2));
}

.bridge-bar__line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #6de0ff, #0f766e, #f59e0b);
  opacity: 0.95;
}

.bridge-bar__line::after {
  content: "";
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: -22%;
  width: 22%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  filter: blur(4px);
  animation: bridge-scan 5.8s ease-in-out infinite;
}

@keyframes bridge-scan {

  0%,
  15% {
    transform: translateX(0%);
    opacity: 0;
  }

  25% {
    opacity: 0.95;
  }

  70% {
    transform: translateX(560%);
    opacity: 0.9;
  }

  100% {
    transform: translateX(620%);
    opacity: 0;
  }
}

.bridge-bar+.workflow-strip {
  margin-top: 12px;
}

.evidence-rail {
  max-width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(20, 32, 23, 0.1);
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(16px) saturate(1.05);
  box-shadow: var(--shadow-sm);
  padding: 12px;
  display: grid;
  gap: 10px;
}

.evidence-rail__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.evidence-rail__label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.evidence-rail__groups {
  display: grid;
  gap: 10px;
}

.evidence-rail__group {
  display: grid;
  gap: 8px;
}

.evidence-rail__group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.evidence-rail__product {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.evidence-rail__track {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  max-width: 100%;
  animation: rail-breathe 9.5s ease-in-out infinite;
}

.evidence-rail .chip {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(20, 32, 23, 0.1);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-inline: 10px;
  transform: translateY(0);
}

.evidence-rail .chip::before {
  display: none;
}

.evidence-rail .chip[data-active="true"] {
  border-color: rgba(15, 118, 110, 0.24);
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 6px 18px rgba(15, 118, 110, 0.12);
}

.evidence-rail--zen .chip[data-active="true"] {
  border-color: rgba(109, 224, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 6px 18px rgba(91, 140, 255, 0.1);
}

.evidence-rail--revalk {
  border-color: rgba(31, 38, 29, 0.1);
  background: rgba(251, 247, 238, 0.56);
}

.evidence-rail--revalk .chip {
  border-color: rgba(31, 38, 29, 0.1);
  background: rgba(255, 255, 255, 0.46);
  color: #1f261d;
}

.evidence-rail--revalk .chip[data-active="true"] {
  border-color: rgba(32, 74, 56, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 6px 18px rgba(32, 74, 56, 0.08);
}

.evidence-rail--hero {
  position: relative;
}

.evidence-rail--hero::after {
  content: "";
  position: absolute;
  inset: auto 12px -1px 12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(109, 224, 255, 0.9), rgba(15, 118, 110, 0.9), rgba(245, 158, 11, 0.9));
  opacity: 0.88;
}

@keyframes rail-breathe {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-1.5px);
  }
}

.hero-stack {
  display: grid;
  gap: 14px;
}

.hero-panel {
  padding: 16px;
}

.brand-film {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.brand-film__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-film__logo {
  width: auto;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(20, 32, 23, 0.08);
  background: rgba(255, 255, 255, 0.8);
  padding: 4px 6px;
}

.brand-film__copy {
  display: grid;
  gap: 2px;
}

.brand-film__copy strong {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-film__copy span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.3;
}

.brand-film__frame {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(20, 32, 23, 0.08);
  aspect-ratio: 16 / 9;
  background: #08131c;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 24px rgba(15, 24, 18, 0.08);
}

.brand-film__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.03) contrast(1.02);
}

.brand-film__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 18%, rgba(109, 224, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(8, 19, 28, 0.06), rgba(8, 19, 28, 0.2));
}

.brand-film__caption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.brand-film__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 19, 28, 0.46);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-film__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6de0ff;
  box-shadow: 0 0 0 4px rgba(109, 224, 255, 0.12);
}

.brand-film__caption small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-family: var(--mono);
  letter-spacing: 0.08em;
}

.hero-panels {
  display: grid;
  gap: 14px;
}

.split-hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.product-mini {
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 14px;
  min-height: 184px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.product-mini::after {
  content: "";
  position: absolute;
  inset: auto -10% -50% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.2;
}

.product-mini.zen {
  color: #eef2ff;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(165deg, #0b0f1c 0%, #121a2f 55%, #182342 100%);
}

.product-mini.zen::after {
  background: #5b8cff;
}

.product-mini.revalk {
  color: #1f261d;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 176, 124, 0.22), transparent 36%),
    radial-gradient(circle at 14% 82%, rgba(46, 111, 86, 0.14), transparent 42%),
    #f4efe4;
  border-color: #d6c7ad;
}

.product-mini.revalk::after {
  background: #2e6f56;
}

.mini-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.revalk .status-badge {
  border-color: rgba(31, 38, 29, 0.14);
  background: rgba(255, 255, 255, 0.45);
}

.status-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6de0ff;
  box-shadow: 0 0 0 4px rgba(109, 224, 255, 0.12);
}

.revalk .status-badge::before {
  background: #204a38;
  box-shadow: 0 0 0 4px rgba(46, 111, 86, 0.12);
}

.product-mini h3 {
  font-size: 1.2rem;
}

.product-mini p {
  color: inherit;
  opacity: 0.85;
  font-size: 0.9rem;
}

.mini-strip {
  height: 10px;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      rgba(91, 140, 255, 0.9) 0 20%,
      rgba(109, 224, 255, 0.9) 20% 40%,
      rgba(15, 118, 110, 0.85) 40% 68%,
      rgba(245, 158, 11, 0.9) 68% 100%);
  opacity: 0.9;
}

.mini-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mini-tags span {
  font-family: var(--mono);
  font-size: 0.73rem;
  border-radius: 999px;
  padding: 5px 9px;
}

.zen .mini-tags span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.revalk .mini-tags span {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(31, 38, 29, 0.1);
}

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

.stat-card {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.stat-card .label {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-card .value {
  margin-top: 8px;
  font-weight: 800;
  line-height: 1.2;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(16px, 2vw, 20px);
  max-width: 80ch;
}

.section-head.text-center {
  place-items: center;
  margin-inline: auto;
  text-align: center;
}

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

.section-head p:last-child {
  color: var(--muted);
  max-width: 72ch;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 14px;
}

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

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

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

.card {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(20, 32, 23, 0.09);
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.55), transparent 38%),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--t-fast) var(--ease-premium),
    box-shadow var(--t-fast) var(--ease-premium),
    border-color var(--t-fast) var(--ease-premium);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(20, 32, 23, 0.14);
}

.card::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(109, 224, 255, 0.35), rgba(15, 118, 110, 0.22), rgba(245, 158, 11, 0.3));
  opacity: 0.55;
}

.card h3 {
  margin-bottom: 8px;
}

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

.product-tile {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: clamp(18px, 2vw, 24px);
  border-radius: 22px;
  border: 1px solid rgba(20, 32, 23, 0.1);
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.54), transparent 36%),
    rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
}

.product-tile .copy {
  display: grid;
  gap: 10px;
}

.product-tile .copy p {
  color: var(--muted);
}

.tile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tile-meta .chip {
  background: rgba(255, 255, 255, 0.84);
}

.product-logo {
  display: inline-block;
  height: 48px;
  width: auto;
  border-radius: 12px;
  vertical-align: middle;
}

.product-logo--sm {
  height: 34px;
  border-radius: 8px;
}

.product-logo--lg {
  height: 64px;
  border-radius: 14px;
}

.product-logo--hero {
  height: 72px;
  border-radius: 16px;
  filter: drop-shadow(0 4px 16px rgba(31, 38, 29, .12));
}

.tile-visual {
  border-radius: 16px;
  border: 1px solid var(--line);
  min-height: 210px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(241, 244, 239, 0.9));
  padding: 14px;
  display: grid;
  gap: 10px;
}

.tile-visual__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 0;
}

.tile-visual .mock-row {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.22), rgba(15, 118, 110, 0.08));
}

.tile-visual .mock-card {
  flex: 1;
  min-height: 0;
  border-radius: 12px;
  border: 1px solid rgba(20, 32, 23, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(249, 250, 246, 0.9)),
    repeating-linear-gradient(90deg, rgba(20, 32, 23, 0.02) 0 1px, transparent 1px 32px);
}

.tile-visual.zen {
  background:
    radial-gradient(circle at 90% 18%, rgba(91, 140, 255, 0.15), transparent 35%),
    linear-gradient(180deg, rgba(11, 15, 28, 0.98), rgba(18, 26, 47, 0.98));
  border-color: rgba(255, 255, 255, 0.08);
}

.tile-visual.zen .mock-row {
  background: linear-gradient(90deg, rgba(91, 140, 255, 0.8), rgba(109, 224, 255, 0.3));
}

.tile-visual.zen .mock-card {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
}

.tile-visual.revalk {
  background:
    radial-gradient(circle at 75% 15%, rgba(255, 176, 124, 0.22), transparent 35%),
    radial-gradient(circle at 18% 80%, rgba(46, 111, 86, 0.16), transparent 40%),
    #f4efe4;
  border-color: #d6c7ad;
}

.tile-visual.revalk .mock-row {
  background: linear-gradient(90deg, rgba(32, 74, 56, 0.36), rgba(188, 79, 47, 0.18));
}

.tile-visual.revalk .mock-card {
  border-color: rgba(31, 38, 29, 0.08);
  background: rgba(255, 255, 255, 0.54);
}

.workflow-strip {
  --workflow-progress: 0.34;
  --workflow-travel: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(20, 32, 23, 0.1);
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px) saturate(1.04);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.workflow-strip::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 24px;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(109, 224, 255, 0.18),
      rgba(15, 118, 110, 0.24),
      rgba(245, 158, 11, 0.2));
  opacity: 0.9;
}

.workflow-strip::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 24px;
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      rgba(109, 224, 255, 0.88),
      rgba(15, 118, 110, 0.95) 58%,
      rgba(245, 158, 11, 0.95) 92%,
      rgba(255, 255, 255, 0.9));
  transform-origin: left center;
  transform: scaleX(var(--workflow-progress));
  opacity: 0.95;
  transition:
    transform var(--t-med) var(--ease-premium),
    opacity var(--t-fast) var(--ease-premium);
  box-shadow: 0 0 12px rgba(15, 118, 110, 0.16);
}

.workflow-step {
  position: relative;
  padding: 18px 12px 12px 30px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(20, 32, 23, 0.08);
  transition:
    transform var(--t-med) var(--ease-premium),
    border-color var(--t-fast) var(--ease-premium),
    box-shadow var(--t-med) var(--ease-premium),
    background-color var(--t-fast) var(--ease-premium);
}

.workflow-step::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0f766e;
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
  transition:
    transform var(--t-med) var(--ease-premium),
    box-shadow var(--t-med) var(--ease-premium);
}

.workflow-step h3 {
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.workflow-step p {
  color: var(--muted);
  font-size: 0.9rem;
}

.workflow-step[data-active="true"] {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, 0.18);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.08);
}

.workflow-step[data-active="true"]::before {
  transform: scale(1.06);
  box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.16), 0 0 14px rgba(15, 118, 110, 0.16);
}

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

.proof-card {
  position: relative;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(20, 32, 23, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 250, 246, 0.84));
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
}

.proof-card::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(109, 224, 255, 0.55), rgba(15, 118, 110, 0.75), rgba(245, 158, 11, 0.65));
  opacity: 0.65;
}

.screen-frame {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(20, 32, 23, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 250, 244, 0.86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 10px 22px rgba(15, 24, 18, 0.05);
  overflow: hidden;
}

.screen-frame[data-theme="maulya"] {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 85% 12%, rgba(91, 140, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(11, 15, 28, 0.95), rgba(18, 26, 47, 0.95));
}

.screen-frame[data-theme="revalk"] {
  border-color: rgba(31, 38, 29, 0.08);
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 176, 124, 0.12), transparent 34%),
    #fbf7ee;
}

.screen-frame__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(20, 32, 23, 0.06);
}

.screen-frame[data-theme="maulya"] .screen-frame__chrome {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.screen-frame__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(20, 32, 23, 0.22);
}

.screen-frame[data-theme="maulya"] .screen-frame__dot {
  background: rgba(255, 255, 255, 0.18);
}

.screen-frame__viewport {
  position: relative;
  margin: 10px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(20, 32, 23, 0.06);
  background: #fff;
}

.screen-frame[data-theme="maulya"] .screen-frame__viewport {
  border-color: rgba(255, 255, 255, 0.08);
}

.screen-frame__viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.22) 0 12%, transparent 26%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
}

.screen-frame__viewport img {
  display: block;
  width: 100%;
  height: auto;
}

.screen-frame__caption {
  display: grid;
  gap: 6px;
  padding: 0 12px 12px;
}

.screen-frame__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: start;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(20, 32, 23, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.screen-frame__row-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.screen-frame__row p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.36;
}

.screen-frame__row[data-kind="prevents"] {
  border-left: 2px solid rgba(188, 79, 47, 0.34);
}

.screen-frame__row[data-kind="ensures"] {
  border-left: 2px solid rgba(15, 118, 110, 0.34);
}

.proof-caption {
  display: grid;
  gap: 6px;
}

.proof-caption .small {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proof-caption p:last-child {
  color: var(--muted);
  font-size: 0.94rem;
}

.mock-screen {
  min-height: 220px;
  border-radius: 14px;
  border: 1px solid rgba(20, 32, 23, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 246, 239, 0.95)),
    repeating-linear-gradient(90deg, rgba(20, 32, 23, 0.02) 0 1px, transparent 1px 28px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 6px 14px rgba(20, 32, 23, 0.04);
  position: relative;
  overflow: hidden;
}

.mock-screen.dark {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(11, 15, 28, 0.98), rgba(24, 35, 66, 0.97)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 28px);
}

.mock-screen.parchment {
  border-color: rgba(31, 38, 29, 0.08);
  background:
    radial-gradient(circle at 86% 20%, rgba(255, 176, 124, 0.14), transparent 30%),
    radial-gradient(circle at 12% 78%, rgba(46, 111, 86, 0.08), transparent 34%),
    #fbf7ee;
}

.mock-screen::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 12px;
  height: 14px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8px 50%, rgba(20, 32, 23, 0.24) 0 2px, transparent 2.4px),
    radial-gradient(circle at 20px 50%, rgba(20, 32, 23, 0.18) 0 2px, transparent 2.4px),
    radial-gradient(circle at 32px 50%, rgba(20, 32, 23, 0.12) 0 2px, transparent 2.4px),
    linear-gradient(90deg, rgba(15, 118, 110, 0.2), rgba(15, 118, 110, 0.08));
}

.mock-screen.dark::before {
  background: linear-gradient(90deg, rgba(91, 140, 255, 0.7), rgba(109, 224, 255, 0.2));
}

.mock-screen.parchment::before {
  background: linear-gradient(90deg, rgba(32, 74, 56, 0.24), rgba(188, 79, 47, 0.12));
}

.mock-screen::after {
  content: "";
  position: absolute;
  inset: 36px 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(20, 32, 23, 0.06);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.35) 0 16%, transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.4)),
    linear-gradient(180deg,
      transparent 0 14%,
      rgba(20, 32, 23, 0.04) 14% 15%,
      transparent 15% 26%,
      rgba(20, 32, 23, 0.035) 26% 27%,
      transparent 27% 100%);
}

.mock-screen.dark::after {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.mock-screen.parchment::after {
  background: rgba(255, 255, 255, 0.45);
}

.mock-annotation {
  position: absolute;
  right: 16px;
  bottom: 16px;
  border-radius: 999px;
  padding: 6px 10px;
  font-family: var(--mono);
  font-size: 0.72rem;
  border: 1px solid rgba(20, 32, 23, 0.12);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(8px);
}

.mock-screen.dark .mock-annotation {
  color: #eef2ff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.systems-index {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.systems-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.systems-list li {
  list-style: none;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.systems-list li span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.88rem;
}

.quote-box {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 249, 243, 0.88));
  padding: 18px;
  box-shadow: var(--shadow-sm);
  display: grid;
  align-content: center;
  gap: 12px;
}

.quote-box blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.15;
}

.quote-box p {
  color: var(--muted);
}

.package-grid .card {
  display: grid;
  gap: 10px;
}

.price-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.9);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.split-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
}

.split-band .side {
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 16px;
}

.v1-surface {
  background:
    radial-gradient(circle at 88% 12%, rgba(91, 140, 255, 0.18), transparent 42%),
    linear-gradient(180deg, #0b0f1c, #121a2f);
  color: #eef2ff;
  border-color: rgba(255, 255, 255, 0.08);
}

.v1-surface p,
.v1-surface li {
  color: rgba(238, 242, 255, 0.78);
}

.v2-surface {
  background:
    radial-gradient(circle at 82% 14%, rgba(245, 158, 11, 0.14), transparent 38%),
    #fffaf0;
  border-color: #d6dbc9;
}

.bridge-strip {
  margin-top: 12px;
  height: 10px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #6de0ff, #0f766e, #f59e0b);
}

.bridge-strip::after {
  content: "";
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -20%;
  width: 20%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  filter: blur(3px);
  animation: bridge-scan 6.2s ease-in-out infinite;
}

.pillars-grid .card {
  min-height: 180px;
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: #fff;
  background: linear-gradient(135deg, #0f766e, #154f64);
  margin-bottom: 10px;
}

.process-steps {
  display: grid;
  gap: 10px;
}

.process-step {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.process-step .num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(15, 118, 110, 0.12);
  color: #0f766e;
  font-weight: 800;
  font-family: var(--mono);
  font-size: 0.82rem;
}

.process-step p {
  color: var(--muted);
}

.tag-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.72);
}

.bad-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.check-list li,
.bad-list li {
  border-radius: 12px;
  padding: 10px 12px 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  position: relative;
}

.check-list li::before,
.bad-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 72%;
  border-radius: 999px;
}

.check-list li::before {
  background: #0f766e;
}

.bad-list li::before {
  background: #bc4f2f;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  overflow: hidden;
  transition:
    border-color var(--t-fast) var(--ease-premium),
    box-shadow var(--t-fast) var(--ease-premium),
    background-color var(--t-fast) var(--ease-premium);
}

.faq button {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  font-weight: 800;
}

.faq button span:last-child {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 0.8rem;
}

.faq-panel {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  color: var(--muted);
  opacity: 0;
  transition:
    max-height var(--t-med) var(--ease-premium),
    opacity var(--t-fast) var(--ease-premium),
    padding var(--t-med) var(--ease-premium);
}

.faq[data-open="true"] .faq-panel {
  max-height: var(--faq-panel-max, 240px);
  padding: 0 16px 14px;
  opacity: 1;
}

.faq[data-open="true"] button span:last-child {
  color: var(--text);
}

.faq[data-open="true"] {
  border-color: rgba(15, 118, 110, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 10px 22px rgba(15, 24, 18, 0.05);
}

.cta-band {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.1fr 0.9fr;
  padding: clamp(18px, 2vw, 26px);
  border-radius: 22px;
  border: 1px solid rgba(20, 32, 23, 0.1);
  background:
    radial-gradient(circle at 85% 15%, rgba(15, 118, 110, 0.16), transparent 36%),
    radial-gradient(circle at 12% 85%, rgba(188, 79, 47, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
}

.cta-band p {
  color: var(--muted);
}

.cta-actions {
  display: grid;
  align-content: center;
  gap: 10px;
  justify-items: start;
}

.footnote {
  color: var(--muted);
  font-size: 0.9rem;
}

.page-hero {
  padding: clamp(24px, 4.5vw, 56px) 0 clamp(20px, 3vw, 28px);
}

.page-hero .surface-strong {
  padding: clamp(18px, 2.5vw, 28px);
}

.breadcrumbs {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.breadcrumbs > * {
  animation: breadcrumb-in var(--t-med) var(--ease-premium) both;
}

.breadcrumbs > *:nth-child(1) { animation-delay: 0ms; }
.breadcrumbs > *:nth-child(2) { animation-delay: 60ms; }
.breadcrumbs > *:nth-child(3) { animation-delay: 120ms; }
.breadcrumbs > *:nth-child(4) { animation-delay: 180ms; }
.breadcrumbs > *:nth-child(5) { animation-delay: 240ms; }

@keyframes breadcrumb-in {
  from {
    opacity: 0;
    transform: translateX(-6px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.breadcrumbs a {
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-premium);
}

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

.page-hero-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.hero-note {
  color: var(--muted);
  margin-top: 10px;
  max-width: 72ch;
}

.zen-panel-duo {
  display: grid;
  gap: 12px;
}

.panel-shell {
  border-radius: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  background: transparent;
}

.panel-shell h3 {
  margin-bottom: 8px;
}

.panel-shell ul {
  margin: 0;
  padding-left: 18px;
}

/* Surface classes own contrast; panel-shell stays neutral. */
.v1-surface {
  background: #0b0f1c;
  color: #eef2ff;
  border: 1px solid #253355;
}

.v1-surface h1,
.v1-surface h2,
.v1-surface h3 {
  color: #eef2ff;
}

.v1-surface p,
.v1-surface li {
  color: #98a6c9;
}

.v1-surface .kicker {
  color: #98a6c9;
}

.v1-surface .list li::before {
  background: #6de0ff;
  box-shadow: 0 0 0 3px rgba(109, 224, 255, 0.14);
}

.v1-surface .chip,
.v1-surface .badge {
  background: rgba(91, 140, 255, 0.12);
  border: 1px solid rgba(109, 224, 255, 0.35);
  color: #eef2ff;
}

.v1-surface a {
  color: #6de0ff;
}

.v1-surface a:hover {
  color: #5b8cff;
}

.v2-surface {
  background: #fffaf0;
  color: #1d2b24;
  border: 1px solid #d6dbc9;
}

.v2-surface h1,
.v2-surface h2,
.v2-surface h3 {
  color: #1d2b24;
}

.v2-surface p,
.v2-surface li {
  color: #5f6f66;
}

.v2-surface a {
  color: #0f766e;
}

.v2-surface .chip,
.v2-surface .badge {
  color: #1d2b24;
}

body[data-theme="maulya"] {
  --surface: rgba(247, 250, 255, 0.86);
  --surface-strong: #f7faff;
  --surface-2: #eef4ff;
  --line: rgba(18, 39, 71, 0.12);
  --line-strong: rgba(18, 39, 71, 0.2);
  --text: #102039;
  --muted: #586980;
  --accent: #1d4ed8;
  --accent-2: #0b6aa8;
  background:
    radial-gradient(circle at 12% 10%, rgba(109, 224, 255, 0.18), transparent 38%),
    radial-gradient(circle at 88% 14%, rgba(91, 140, 255, 0.16), transparent 36%),
    linear-gradient(180deg, #e8eef9 0%, #eef3fb 45%, #f6f9ff 100%);
}

body[data-theme="maulya"] .site-header {
  background: rgba(232, 238, 249, 0.82);
  border-bottom-color: rgba(18, 39, 71, 0.08);
}

body[data-theme="maulya"] .noise-glow {
  background:
    radial-gradient(circle at 16% 12%, rgba(109, 224, 255, 0.26), transparent 38%),
    radial-gradient(circle at 82% 16%, rgba(91, 140, 255, 0.24), transparent 36%),
    radial-gradient(circle at 54% 82%, rgba(11, 106, 168, 0.16), transparent 44%);
}

body[data-theme="maulya"] .surface-strong {
  background:
    radial-gradient(circle at 88% 14%, rgba(91, 140, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(251, 253, 255, 0.96), rgba(239, 246, 255, 0.95));
  border-color: rgba(18, 39, 71, 0.1);
}

body[data-theme="maulya"] .card,
body[data-theme="maulya"] .proof-card,
body[data-theme="maulya"] .split-band,
body[data-theme="maulya"] .cta-band,
body[data-theme="maulya"] .details-panel {
  border-color: rgba(18, 39, 71, 0.1);
  background:
    linear-gradient(180deg, rgba(251, 253, 255, 0.92), rgba(238, 245, 255, 0.94));
}

body[data-theme="maulya"] .btn-primary,
body[data-theme="maulya"] .nav .nav-cta {
  background: linear-gradient(135deg, #1d4ed8, #0b6aa8);
  box-shadow: 0 10px 22px rgba(29, 78, 216, 0.22);
}

body[data-theme="maulya"] .btn-secondary {
  background: rgba(255, 255, 255, 0.82);
}

body[data-theme="maulya"] .theme-surface-zen {
  background:
    radial-gradient(circle at 88% 14%, rgba(109, 224, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(11, 20, 38, 0.96), rgba(18, 32, 58, 0.97));
}

body[data-theme="revalk"] {
  --surface: rgba(251, 247, 238, 0.9);
  --surface-strong: #fbf7ee;
  --surface-2: #f4efe4;
  --line: rgba(31, 38, 29, 0.1);
  --line-strong: rgba(31, 38, 29, 0.18);
  --text: #1f261d;
  --muted: #60655b;
  --accent: #204a38;
  --accent-2: #bc4f2f;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 176, 124, 0.16), transparent 34%),
    radial-gradient(circle at 15% 78%, rgba(46, 111, 86, 0.12), transparent 38%),
    linear-gradient(180deg, #f4efe4 0%, #f7f1e7 46%, #fbf7ee 100%);
}

body[data-theme="revalk"] .site-header {
  background: rgba(244, 239, 228, 0.8);
}

body[data-theme="revalk"] .noise-glow {
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 176, 124, 0.2), transparent 36%),
    radial-gradient(circle at 15% 78%, rgba(46, 111, 86, 0.14), transparent 40%),
    radial-gradient(circle at 48% 18%, rgba(214, 199, 173, 0.1), transparent 46%);
}

body[data-theme="revalk"] .btn-primary,
body[data-theme="revalk"] .nav .nav-cta {
  background: linear-gradient(135deg, #bc4f2f, #9d4328);
  box-shadow: 0 10px 22px rgba(188, 79, 47, 0.22);
}

body[data-theme="revalk"] .brand-mark {
  background: linear-gradient(135deg, #204a38, #1f261d 60%, #bc4f2f);
}

.revalk-hero-visual {
  border-radius: 20px;
  border: 1px solid #d6c7ad;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 176, 124, 0.18), transparent 34%),
    radial-gradient(circle at 12% 85%, rgba(46, 111, 86, 0.12), transparent 38%),
    #fbf7ee;
  padding: 16px;
  display: grid;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(31, 38, 29, 0.05);
}

.tablet-frame {
  border-radius: 20px;
  border: 1px solid rgba(31, 38, 29, 0.12);
  background: #f4efe4;
  padding: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.tablet-screen {
  min-height: 240px;
  border-radius: 14px;
  border: 1px solid rgba(31, 38, 29, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.42)),
    linear-gradient(180deg,
      rgba(32, 74, 56, 0.12) 0 14%,
      transparent 14% 18%,
      rgba(31, 38, 29, 0.05) 18% 19%,
      transparent 19% 36%,
      rgba(188, 79, 47, 0.06) 36% 48%,
      transparent 48% 100%);
  position: relative;
}

.tablet-screen::after {
  content: "Walk Pack / Topic Space / Recall";
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: #60655b;
}

.phone-pill {
  border-radius: 18px;
  border: 1px solid rgba(31, 38, 29, 0.1);
  background: rgba(255, 255, 255, 0.56);
  padding: 12px;
}

.phone-preview {
  height: 120px;
  border-radius: 14px;
  border: 1px solid rgba(31, 38, 29, 0.08);
  background:
    linear-gradient(180deg, rgba(32, 74, 56, 0.14), transparent 16%),
    #f8f3ea;
}

.revalk-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.revalk-chips .chip {
  background: rgba(255, 255, 255, 0.54);
  border-color: rgba(31, 38, 29, 0.12);
}

.revalk-chips .chip::before {
  background: #204a38;
  box-shadow: 0 0 0 3px rgba(32, 74, 56, 0.12);
}

.theme-surface-zen {
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 16%, rgba(109, 224, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #0b0f1c, #121a2f);
  color: #eef2ff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
}

.theme-surface-zen p,
.theme-surface-zen li {
  color: rgba(238, 242, 255, 0.8);
}

.theme-surface-zen .chip {
  color: #eef2ff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.theme-surface-zen .chip::before {
  background: #6de0ff;
  box-shadow: 0 0 0 3px rgba(109, 224, 255, 0.12);
}

.theme-surface-revalk {
  border-radius: 18px;
  border: 1px solid #d6c7ad;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 176, 124, 0.18), transparent 34%),
    #fbf7ee;
  padding: 16px;
}

.theme-surface-revalk p {
  color: #60655b;
}

.theme-surface-revalk h3 {
  font-family: var(--serif);
}

.proof-facts {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.fact-list,
.guarantee-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.fact-list li,
.guarantee-list li {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.fact-list li strong,
.guarantee-list li strong {
  display: block;
  margin-bottom: 4px;
}

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

.form-card {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.form-card h3 {
  margin-bottom: 8px;
}

.form-card p {
  color: var(--muted);
}

form {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
}

label span {
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  padding: 10px 12px;
  font: inherit;
  transition:
    border-color var(--t-fast) var(--ease-premium),
    box-shadow var(--t-fast) var(--ease-premium),
    background-color var(--t-fast) var(--ease-premium);
}

textarea {
  resize: vertical;
  min-height: 92px;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(15, 118, 110, 0.22);
  background: rgba(255, 255, 255, 0.95);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(15, 118, 110, 0.45);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1), var(--shadow-sm);
  background: #fff;
}

input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px var(--danger-bg);
}

input:valid:not(:placeholder-shown),
textarea:valid:not(:placeholder-shown) {
  border-color: rgba(22, 163, 74, 0.35);
}

label:focus-within span {
  color: var(--accent);
}

.form-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-links .btn {
  min-height: 42px;
}

.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(20, 32, 23, 0.08);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px) saturate(1.03);
}

.site-footer .shell {
  padding: 20px 0 30px;
  display: grid;
  gap: 14px;
}

.site-footer .brand-logo {
  height: 42px;
}

.site-footer .brand::after {
  font-size: 0.94rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
}

.footer-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.64);
}

.footer-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.surface,
.surface-strong,
.card,
.proof-card,
.product-tile,
.split-band,
.cta-band,
.form-card,
.faq {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 14px 28px rgba(15, 24, 18, 0.06);
}

.surface {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 12px 26px rgba(15, 24, 18, 0.05);
}

.surface-strong {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 42px rgba(15, 24, 18, 0.09);
}

.card,
.faq {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 12px 24px rgba(15, 24, 18, 0.055);
}

.proof-card {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 16px 30px rgba(15, 24, 18, 0.06);
}

.product-tile,
.cta-band {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 20px 38px rgba(15, 24, 18, 0.08);
}

@media (hover: hover) {

  .card,
  .proof-card,
  .product-tile,
  .form-card,
  .panel-shell,
  .stat-card {
    transition:
      transform var(--t-fast) var(--ease-premium),
      box-shadow var(--t-fast) var(--ease-premium),
      border-color var(--t-fast) var(--ease-premium);
  }

  .card:hover,
  .proof-card:hover,
  .product-tile:hover,
  .form-card:hover {
    transform: translateY(-3px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.55),
      0 20px 38px rgba(15, 24, 18, 0.08);
  }

  .panel-shell:hover,
  .stat-card:hover {
    transform: translateY(-2px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.55),
      0 16px 32px rgba(15, 24, 18, 0.07);
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity var(--t-med) var(--ease-premium),
    transform var(--t-med) var(--ease-premium);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.hero .reveal,
.reveal.hero {
  transition-delay: 40ms;
}

@media (max-width: 1100px) {
  .feature-carousel__stage {
    min-height: clamp(620px, 72vw, 760px);
  }

  .feature-slide {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .feature-slide__aside {
    display: none;
  }

  .hero-living {
    inset-block-start: clamp(18px, 3vw, 28px);
    height: min(50vh, 400px);
  }

  .hero-living__surface {
    inset: 0 0 0 0;
    border-radius: 24px;
  }

  .hero-grid,
  .product-tile,
  .page-hero-grid,
  .split-band,
  .cta-band,
  .systems-index {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 820px) {
  .feature-carousel {
    padding: 10px;
    border-radius: 20px;
  }

  .feature-carousel__stage {
    min-height: clamp(680px, 118vw, 900px);
  }

  .feature-slide {
    padding: 16px;
    border-radius: 16px;
    gap: 14px;
  }

  .feature-carousel__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .feature-carousel__dots,
  .feature-carousel__controls {
    width: 100%;
    justify-content: space-between;
  }

  .feature-carousel__dots {
    gap: 6px;
  }

  .feature-carousel__dots button {
    flex: 1 1 0;
    justify-content: center;
    text-align: center;
    padding-inline: 8px;
  }

  .hero-living {
    inset-inline: 3%;
    height: min(42vh, 340px);
  }

  .hero-living__surface {
    border-radius: 20px;
  }

  .hero-living__overlay {
    inset: 10px;
    gap: 10px;
    justify-items: start;
  }

  .hero-living__badge,
  .hero-living__bridge {
    max-width: 100%;
    width: 100%;
  }

  .split-hero-cards,
  .proof-grid,
  .proof-facts,
  .grid-3,
  .grid-2,
  .workflow-strip {
    grid-template-columns: 1fr;
  }

  .proof-grid--three,
  .pipeline-row,
  .maulya-story-grid,
  .maulya-feature-band,
  .support-callout {
    grid-template-columns: 1fr;
  }

  .systems-list {
    grid-template-columns: 1fr;
  }

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

  .workflow-strip::before {
    display: none;
  }

  .workflow-strip::after {
    display: none;
  }

  .support-callout__actions {
    justify-content: flex-start;
  }

  .site-header .shell {
    min-height: unset;
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .brand-logo {
    height: 42px;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
    gap: 6px;
    padding: 6px;
    border-radius: 14px;
    border: 1px solid rgba(20, 32, 23, 0.08);
    background: rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(14px) saturate(1.04);
  }

  .nav a {
    padding: 9px 10px;
    min-height: 40px;
    justify-content: center;
    text-align: center;
  }

  .bridge-bar__row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  /* ── Mobile polish (820) ── */
  .section {
    padding-block: clamp(28px, 6vw, 48px);
  }

  .section-tight {
    padding-block: clamp(18px, 4vw, 32px);
  }

  .page-hero {
    padding-block: clamp(20px, 5vw, 40px);
  }

  .page-hero h1 {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  .product-tile {
    padding: 20px;
    gap: 18px;
  }

  .tile-visual {
    min-height: 160px;
  }

  .product-logo--hero {
    height: 52px;
    border-radius: 12px;
  }

  .form-card {
    padding: 20px;
  }

  .proof-card {
    gap: 14px;
  }

  .proof-caption {
    padding: 14px;
  }

  .proof-caption h3 {
    font-size: 1.08rem;
  }

  .cta-band {
    padding: 24px;
    gap: 18px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .faq-panel {
    font-size: 0.92rem;
  }

  h2 {
    font-size: clamp(1.3rem, 4.5vw, 2rem);
  }

  h3 {
    font-size: clamp(1.05rem, 3vw, 1.35rem);
  }
}

@media (max-width: 560px) {
  .feature-carousel__stage {
    min-height: clamp(760px, 178vw, 980px);
  }

  .feature-slide__content h2 {
    font-size: 1.42rem;
    line-height: 1.08;
  }

  .feature-slide__meta {
    gap: 6px;
  }

  .feature-slide__media-note {
    font-size: 0.84rem;
  }

  .feature-carousel__dots {
    flex-wrap: nowrap;
  }

  .feature-carousel__dots button {
    min-height: 32px;
    font-size: 0.78rem;
    padding-inline: 6px;
  }

  .feature-carousel__control {
    min-height: 34px;
    min-width: 34px;
    width: 34px;
  }

  .hero-living {
    height: min(36vh, 280px);
  }

  .hero-living__surface {
    border-radius: 18px;
  }

  .hero-living__badge {
    padding: 8px 10px;
  }

  .hero-living__logo {
    height: 34px;
  }

  .hero-living__meta span {
    font-size: 0.76rem;
  }

  .hero-living__bridge {
    padding: 8px 10px;
  }

  .hero-living__bridge-label {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

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

  .hero-copy,
  .hero-panel {
    padding: 16px;
  }

  .brand-film__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-film__logo {
    height: 40px;
  }

  .brand-film__caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand::after {
    font-size: 0.92rem;
  }

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

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

  .support-callout__actions .btn {
    width: 100%;
  }

  .action-link-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .evidence-rail__group-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

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

  .nav .nav-cta {
    grid-column: 1 / -1;
  }

  /* ── Mobile polish (560) ── */
  .shell {
    padding-inline: 14px;
  }

  .page-hero h1 {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .product-logo--hero {
    height: 42px;
    border-radius: 10px;
  }

  .product-logo--lg {
    height: 48px;
  }

  .product-logo--sm {
    height: 26px;
    border-radius: 6px;
  }

  .hero-note {
    font-size: 0.9rem;
  }

  .section {
    padding-block: clamp(22px, 5vw, 36px);
  }

  .card {
    padding: 16px;
  }

  .form-card {
    padding: 16px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-links {
    gap: 6px 12px;
  }

  .footer-note {
    font-size: 0.82rem;
  }

  .proof-caption {
    padding: 12px;
  }

  .tag-cluster {
    gap: 6px;
  }

  .tag {
    font-size: 0.76rem;
    padding: 4px 8px;
  }

  .split-band {
    padding: 18px;
    gap: 18px;
  }

  .process-step {
    padding: 10px 10px 10px 28px;
  }

  .process-step .num {
    font-size: 0.82rem;
  }
}

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

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

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

  .na-scroll-bridge {
    display: none;
  }

  .hero-living {
    --hero-video-open: 0.18;
    --hero-video-visible: 0.9;
  }

  .hero-living__video {
    opacity: 0.24;
    filter: blur(9px) saturate(0.95) contrast(1);
    transform: scale(1.02);
  }
}

/* =========================================================
   Premium overhaul layer
   ========================================================= */

.page-home-v2,
.page-products-v2,
.page-proof-v2,
.page-maulya-v2 {
  --premium-radius: 28px;
  --premium-card-radius: 24px;
  --premium-shadow: 0 24px 80px rgba(21, 32, 23, 0.08);
}

.page-home-v2 {
  background:
    radial-gradient(circle at top left, rgba(168, 203, 196, 0.16), transparent 32%),
    radial-gradient(circle at top right, rgba(225, 188, 126, 0.14), transparent 36%),
    linear-gradient(180deg, #eff2eb 0%, #f6f4ed 52%, #f2f4ef 100%);
}

.page-home-v2 .noise-glow {
  background:
    radial-gradient(circle at 16% 10%, rgba(139, 182, 171, 0.18), transparent 36%),
    radial-gradient(circle at 84% 18%, rgba(219, 194, 144, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(247, 247, 242, 0.94), rgba(243, 244, 239, 0.9));
}

.page-home-v2 .hero-premium,
.page-products-v2 .page-hero,
.page-proof-v2 .page-hero,
.page-maulya-v2 .page-hero {
  padding-top: clamp(26px, 5vw, 58px);
}

.home-hero-v2 {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.home-hero-v2__intro {
  max-width: 64rem;
  display: grid;
  gap: 14px;
}

.home-hero-v2__intro h1 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.home-hero-v2__intro .lede {
  max-width: 56ch;
  font-size: clamp(1.02rem, 1.65vw, 1.18rem);
}

.home-hero-v2__intro-actions {
  align-items: center;
}

.feature-carousel--premium {
  border-radius: var(--premium-radius);
  border: 1px solid rgba(24, 36, 26, 0.08);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--premium-shadow);
  padding: 14px;
  backdrop-filter: blur(18px) saturate(1.04);
}

.page-home-v2 .feature-carousel--premium .feature-carousel__stage {
  min-height: clamp(480px, 48vw, 620px);
}

.page-home-v2 .feature-slide--premium {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(24px, 3vw, 38px);
  padding: clamp(24px, 3vw, 36px);
  border-radius: calc(var(--premium-radius) - 6px);
  align-items: end;
}

.page-home-v2 .feature-slide--premium .feature-slide__content {
  align-self: center;
  gap: 16px;
  max-width: 40rem;
}

.page-home-v2 .feature-slide--premium .feature-slide__content h2 {
  max-width: 11ch;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.page-home-v2 .feature-slide--premium .feature-slide__content p {
  max-width: 44ch;
}

.page-home-v2 .feature-slide--premium .feature-slide__actions {
  margin-top: 8px;
}

.page-home-v2 .feature-slide--premium .action-link-row {
  margin-top: 4px;
}

.page-home-v2 .feature-slide--premium .feature-slide__aside {
  display: grid;
  align-self: stretch;
  align-content: end;
}

.page-home-v2 .feature-slide--premium .feature-slide__callout {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px;
}

.page-home-v2 .feature-slide--premium .feature-slide__media {
  align-self: center;
  justify-items: end;
  gap: 14px;
}

.page-home-v2 .feature-slide--premium .feature-slide__screen {
  width: min(100%, 420px);
}

.page-home-v2 .feature-slide--studio .feature-slide__screen,
.page-home-v2 .feature-slide--revalk .feature-slide__screen,
.page-home-v2 .feature-slide--maulya .feature-slide__screen {
  margin-left: auto;
}

.page-home-v2 .feature-slide--studio {
  background:
    linear-gradient(135deg, rgba(15, 28, 34, 0.9), rgba(46, 62, 69, 0.76) 55%, rgba(112, 140, 144, 0.72)),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
}

.page-home-v2 .feature-slide--maulya {
  background:
    radial-gradient(circle at top left, rgba(111, 172, 255, 0.2), transparent 35%),
    linear-gradient(135deg, rgba(12, 26, 50, 0.96), rgba(24, 51, 88, 0.88) 54%, rgba(73, 123, 184, 0.72));
}

.page-home-v2 .feature-slide--revalk {
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 201, 151, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(34, 40, 27, 0.95), rgba(69, 79, 50, 0.86) 52%, rgba(145, 111, 66, 0.64));
}

.page-home-v2 .feature-slide--maulya .feature-slide__content,
.page-home-v2 .feature-slide--maulya .feature-slide__content p,
.page-home-v2 .feature-slide--maulya .feature-slide__content h2,
.page-home-v2 .feature-slide--maulya .feature-slide__media-note,
.page-home-v2 .feature-slide--revalk .feature-slide__content,
.page-home-v2 .feature-slide--revalk .feature-slide__content p,
.page-home-v2 .feature-slide--revalk .feature-slide__content h2,
.page-home-v2 .feature-slide--revalk .feature-slide__media-note,
.page-home-v2 .feature-slide--studio .feature-slide__content,
.page-home-v2 .feature-slide--studio .feature-slide__content p,
.page-home-v2 .feature-slide--studio .feature-slide__content h2,
.page-home-v2 .feature-slide--studio .feature-slide__media-note {
  color: rgba(248, 250, 255, 0.94);
}

.page-home-v2 .feature-slide--premium .feature-slide__meta .status-badge,
.page-home-v2 .feature-slide--premium .feature-slide__meta .chip {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(248, 250, 255, 0.92);
}

.page-home-v2 .feature-slide--premium .action-link-row a {
  color: rgba(240, 246, 252, 0.78);
}

.page-home-v2 .feature-slide--premium .action-link-row a:hover {
  color: rgba(255, 255, 255, 0.98);
}

.small-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.premium-band .section-head {
  margin-bottom: 22px;
}

.premium-card-grid {
  display: grid;
  gap: clamp(18px, 2vw, 26px);
}

.premium-card-grid--products {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.premium-product-card,
.premium-story-card,
.premium-support-card,
.proof-rail-card {
  border-radius: var(--premium-card-radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-md);
}

.premium-product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: clamp(18px, 2vw, 26px);
  padding: clamp(18px, 2.4vw, 28px);
  align-items: center;
}

.premium-product-card__copy {
  display: grid;
  gap: 12px;
}

.premium-product-card__copy h3,
.premium-product-card__copy h2 {
  margin: 0;
}

.compact-list {
  margin: 0;
}

.premium-proof-band__grid,
.proof-summary-grid,
.premium-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.premium-proof-stack {
  display: grid;
  gap: 16px;
}

.proof-rail-card {
  padding: 20px;
}

.proof-rail-card h3,
.proof-rail-card p {
  margin: 0;
}

.proof-rail-card p {
  margin-top: 8px;
  color: var(--muted);
}

.media-mode-phone {
  max-width: min(100%, 390px);
}

.media-mode-phone .screen-frame__viewport {
  max-height: clamp(360px, 56vw, 560px);
}

.media-mode-dashboard .screen-frame__viewport {
  max-height: clamp(250px, 32vw, 380px);
}

.media-mode-proof .screen-frame__viewport {
  max-height: clamp(220px, 30vw, 330px);
}

.page-products-v2 .surface-strong,
.page-proof-v2 .surface-strong,
.page-home-v2 .surface-strong {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.44), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.74));
  border-radius: var(--premium-radius);
  border: 1px solid rgba(31, 38, 29, 0.08);
  box-shadow: var(--premium-shadow);
}

.page-products-v2 .products-hero-v2 h1,
.page-proof-v2 .proof-hero-v2 h1 {
  max-width: 15ch;
}

.page-maulya-v2 .surface-strong {
  border-radius: 30px;
  border: 1px solid rgba(18, 39, 71, 0.1);
  box-shadow: 0 26px 90px rgba(18, 39, 71, 0.12);
}

.maulya-hero-v2__grid {
  align-items: center;
  gap: clamp(22px, 3vw, 38px);
}

.maulya-hero-v2__copy {
  display: grid;
  gap: 16px;
  max-width: 42rem;
}

.maulya-hero-v2__copy h1 {
  max-width: 11ch;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.048em;
}

.maulya-status-line {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(16, 32, 57, 0.7);
}

.maulya-hero-v2__media {
  justify-self: end;
}

.premium-proof-grid {
  gap: clamp(16px, 1.8vw, 22px);
}

.premium-proof-grid .proof-card {
  padding: 16px;
  gap: 14px;
}

.premium-proof-grid .proof-caption h3 {
  font-size: clamp(1.16rem, 1.6vw, 1.44rem);
}

.premium-story-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(18px, 2vw, 28px);
  padding: clamp(18px, 2.4vw, 28px);
  align-items: center;
}

.premium-story-card__copy {
  display: grid;
  gap: 12px;
}

.premium-pillars .card {
  padding: 20px;
}

.premium-pillars .card p {
  margin-bottom: 0;
}

.premium-support-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.9fr);
  gap: 20px;
  padding: clamp(18px, 2.2vw, 26px);
  align-items: center;
}

.premium-support-card > div {
  display: grid;
  gap: 12px;
}

.page-proof-v2 .proof-card,
.page-products-v2 .proof-card,
.page-home-v2 .proof-card,
.page-maulya-v2 .proof-card {
  box-shadow: 0 18px 60px rgba(21, 32, 23, 0.06);
}

.page-proof-v2 .proof-summary-grid .card {
  padding: 22px;
}

.page-proof-v2 .proof-summary-grid .card p:last-child {
  margin-bottom: 0;
}

.page-proof-v2 .premium-proof-grid--revalk {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.premium-final-cta .cta-band {
  padding: clamp(20px, 2.6vw, 30px);
}

.page-home-v2 .cta-band,
.page-products-v2 .cta-band,
.page-proof-v2 .cta-band {
  border-radius: var(--premium-radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(245, 247, 242, 0.74));
}

.page-maulya-v2 .cta-band {
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(111, 172, 255, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(247, 250, 255, 0.92), rgba(239, 244, 255, 0.84));
}

.page-home-v2 .action-link-row,
.page-products-v2 .action-link-row,
.page-maulya-v2 .action-link-row,
.page-proof-v2 .action-link-row {
  gap: 12px 18px;
}

.page-home-v2 .button-row,
.page-products-v2 .button-row,
.page-maulya-v2 .button-row,
.page-proof-v2 .button-row {
  gap: 10px;
}

@media (max-width: 1180px) {
  .page-home-v2 .feature-slide--premium,
  .premium-product-card,
  .premium-story-card,
  .premium-support-card {
    grid-template-columns: 1fr;
  }

  .page-home-v2 .feature-slide--premium .feature-slide__aside {
    display: none;
  }

  .page-home-v2 .feature-slide--premium .feature-slide__media,
  .maulya-hero-v2__media {
    justify-items: start;
    justify-self: start;
  }
}

@media (max-width: 920px) {
  .premium-card-grid--products,
  .premium-proof-band__grid,
  .proof-summary-grid,
  .premium-support-grid,
  .page-proof-v2 .premium-proof-grid--revalk {
    grid-template-columns: 1fr;
  }

  .page-home-v2 .feature-carousel--premium .feature-carousel__stage {
    min-height: clamp(640px, 114vw, 820px);
  }

  .page-home-v2 .feature-slide--premium {
    padding: 20px;
    gap: 20px;
  }

  .home-hero-v2__intro h1,
  .maulya-hero-v2__copy h1 {
    max-width: 12ch;
  }
}

@media (max-width: 820px) {
  .page-home-v2 .feature-carousel--premium {
    padding: 10px;
  }

  .page-home-v2 .feature-slide--premium .feature-slide__content,
  .maulya-hero-v2__copy,
  .premium-product-card__copy,
  .premium-story-card__copy,
  .premium-support-card > div {
    gap: 10px;
  }

  .page-home-v2 .feature-slide--premium .feature-slide__content h2 {
    max-width: none;
    font-size: clamp(1.72rem, 6vw, 2.24rem);
  }

  .home-hero-v2__intro h1 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
  }

  .maulya-hero-v2__copy h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .page-home-v2 .feature-slide--premium .feature-slide__screen,
  .media-mode-phone,
  .maulya-hero-v2__media {
    width: min(100%, 330px);
  }

  .page-home-v2 .feature-slide--premium .feature-slide__media {
    justify-items: start;
  }

  .page-home-v2 .feature-slide--premium .action-link-row,
  .page-products-v2 .action-link-row,
  .page-maulya-v2 .action-link-row,
  .page-proof-v2 .action-link-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-home-v2 .button-row .btn,
  .page-products-v2 .button-row .btn,
  .page-maulya-v2 .button-row .btn,
  .page-proof-v2 .button-row .btn,
  .page-home-v2 .cta-actions .btn,
  .page-products-v2 .cta-actions .btn,
  .page-proof-v2 .cta-actions .btn,
  .page-maulya-v2 .cta-actions .btn {
    width: 100%;
  }

  .page-home-v2 .button-row,
  .page-products-v2 .button-row,
  .page-maulya-v2 .button-row,
  .page-proof-v2 .button-row,
  .page-home-v2 .cta-actions,
  .page-products-v2 .cta-actions,
  .page-proof-v2 .cta-actions,
  .page-maulya-v2 .cta-actions {
    grid-template-columns: 1fr;
    display: grid;
  }

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

  .premium-proof-grid .proof-card {
    padding: 14px;
  }

  .media-mode-phone .screen-frame__viewport {
    max-height: 420px;
  }

  .media-mode-dashboard .screen-frame__viewport,
  .media-mode-proof .screen-frame__viewport {
    max-height: 280px;
  }
}

@media (max-width: 560px) {
  .page-home-v2 .hero-premium,
  .page-products-v2 .page-hero,
  .page-proof-v2 .page-hero,
  .page-maulya-v2 .page-hero {
    padding-top: 18px;
  }

  .page-home-v2 .feature-carousel--premium .feature-carousel__stage {
    min-height: clamp(700px, 168vw, 860px);
  }

  .page-home-v2 .feature-slide--premium {
    padding: 16px;
  }

  .premium-product-card,
  .premium-story-card,
  .premium-support-card,
  .proof-rail-card,
  .page-proof-v2 .proof-summary-grid .card {
    padding: 16px;
  }

  .home-hero-v2__intro h1 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .maulya-hero-v2__copy h1 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .page-home-v2 .feature-slide--premium .feature-slide__screen,
  .media-mode-phone,
  .maulya-hero-v2__media {
    width: min(100%, 280px);
  }

  .media-mode-phone .screen-frame__viewport {
    max-height: 360px;
  }

  .media-mode-dashboard .screen-frame__viewport,
  .media-mode-proof .screen-frame__viewport {
    max-height: 240px;
  }
}

/* =========================================================
   Revalk V3 premium layer
   ========================================================= */

.page-revalk-v3 {
  --revalk-shadow: 0 22px 72px rgba(31, 38, 29, 0.08);
}

.page-revalk-v3 .page-hero {
  padding-top: clamp(26px, 5vw, 58px);
}

.page-revalk-v3 .surface-strong {
  border-radius: 30px;
  border: 1px solid rgba(31, 38, 29, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 198, 130, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.9), rgba(250, 246, 238, 0.82));
  box-shadow: var(--revalk-shadow);
}

.revalk-hero-v3__grid {
  align-items: center;
  gap: clamp(22px, 3vw, 38px);
}

.revalk-hero-v3__copy {
  display: grid;
  gap: 16px;
  max-width: 43rem;
}

.revalk-hero-v3__copy h1 {
  margin: 0;
  max-width: 11ch;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.revalk-hero-v3__copy .product-logo--hero {
  height: clamp(42px, 5vw, 56px);
  margin-right: 10px;
  vertical-align: baseline;
}

.revalk-hero-v3__bullets {
  margin: 0;
}

.revalk-honesty-bar {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(31, 38, 29, 0.1);
  background: rgba(255, 255, 255, 0.54);
}

.revalk-hero-v3__media-stack {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.revalk-hero-v3__media-stack .screen-frame {
  width: min(100%, 420px);
}

.revalk-hero-v3__signal-card {
  width: min(100%, 320px);
  border-radius: 18px;
  border: 1px solid rgba(31, 38, 29, 0.08);
  background: rgba(255, 255, 255, 0.62);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.revalk-hero-v3__signal-card p:last-child {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.premium-story-card--revalk {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.revalk-outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.revalk-outcome-cell {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.revalk-outcome-cell strong {
  font-size: 0.95rem;
}

.revalk-outcome-cell span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.revalk-tier-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.revalk-tier-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
}

.revalk-tier-card .tag {
  width: max-content;
  background: rgba(255, 255, 255, 0.74);
}

.revalk-tier-card h3,
.revalk-tier-card p {
  margin: 0;
}

.revalk-tier-note {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(31, 38, 29, 0.08);
  background: rgba(255, 255, 255, 0.58);
}

.revalk-tier-note p {
  margin: 0;
}

.revalk-flow-grid .card {
  padding: 20px;
}

.revalk-flow-grid .footnote {
  margin-top: 6px;
  font-size: 0.88rem;
}

.revalk-concept-bundle {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2.2vw, 26px);
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-md);
}

.revalk-concept-bundle__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.revalk-bundle-chip {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  padding: 12px 14px;
  font-weight: 700;
  text-align: center;
}

.premium-proof-grid--revalk-v3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-revalk-v3 .proof-card {
  box-shadow: 0 18px 60px rgba(31, 38, 29, 0.06);
}

.page-revalk-v3 .proof-card .proof-caption h3 {
  font-size: clamp(1.12rem, 1.45vw, 1.34rem);
}

.revalk-roadmap-grid .card {
  padding: 20px;
}

.revalk-partner-strip {
  border-radius: 24px;
  border-color: rgba(31, 38, 29, 0.08);
  background: linear-gradient(135deg, rgba(255,255,255,0.78), rgba(247, 242, 233, 0.74));
}

.page-revalk-v3 .faq {
  border-radius: 20px;
}

.page-revalk-v3 .cta-band {
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.84), rgba(247, 241, 233, 0.78));
}

@media (max-width: 1180px) {
  .premium-story-card--revalk,
  .revalk-hero-v3__grid {
    grid-template-columns: 1fr;
  }

  .revalk-hero-v3__media-stack {
    justify-items: start;
  }
}

@media (max-width: 980px) {
  .revalk-tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .revalk-outcome-grid,
  .revalk-concept-bundle__grid,
  .premium-proof-grid--revalk-v3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .page-revalk-v3 .page-hero {
    padding-top: 18px;
  }

  .revalk-hero-v3__copy {
    gap: 12px;
  }

  .revalk-hero-v3__copy h1 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .revalk-hero-v3__copy .product-logo--hero {
    height: 34px;
    margin-right: 8px;
  }

  .revalk-hero-v3__media-stack .screen-frame {
    width: min(100%, 320px);
  }

  .revalk-tier-grid,
  .revalk-outcome-grid,
  .revalk-concept-bundle__grid,
  .premium-proof-grid--revalk-v3 {
    grid-template-columns: 1fr;
  }

  .revalk-tier-card,
  .revalk-outcome-cell,
  .revalk-bundle-chip {
    text-align: left;
  }

  .revalk-honesty-bar {
    font-size: 0.9rem;
  }
}

@media (max-width: 560px) {
  .revalk-hero-v3__copy h1 {
    font-size: clamp(1.72rem, 8.6vw, 2.4rem);
  }

  .revalk-hero-v3__media-stack .screen-frame {
    width: min(100%, 280px);
  }

  .revalk-tier-card,
  .revalk-flow-grid .card,
  .revalk-roadmap-grid .card,
  .revalk-concept-bundle,
  .revalk-partner-strip {
    padding: 16px;
  }
}

/* =========================================================
   Shipped Facts grid (homepage)
   ========================================================= */

.shipped-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.shipped-fact {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  transition: border-color var(--t-fast) var(--ease-premium),
              box-shadow var(--t-fast) var(--ease-premium);
}

.shipped-fact:hover {
  border-color: var(--line-strong);
  box-shadow: 0 6px 20px rgba(15, 24, 18, 0.06);
}

.shipped-fact__product {
  font-family: var(--mono);
  font-size: var(--step-label);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-weight: 500;
}

.shipped-fact__product--revalk {
  color: var(--accent-2);
}

.shipped-fact__text {
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  color: var(--text);
}

@media (max-width: 980px) {
  .shipped-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .shipped-facts {
    grid-template-columns: 1fr;
  }

  .shipped-fact {
    padding: 14px 16px;
  }
}

/* =========================================================
   Signature diagrams (product pages)
   ========================================================= */

.signature-diagram {
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}

.signature-diagram svg {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
  height: auto;
}

.signature-diagram__caption {
  text-align: center;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: var(--step-caption);
  color: var(--muted);
}

/* =========================================================
   Partner lane strip (cross-site)
   ========================================================= */

.partner-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 28px;
  border-radius: 20px;
  border: 1px dashed var(--line-strong);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(238, 241, 236, 0.54));
  flex-wrap: wrap;
}

.partner-strip__copy {
  display: grid;
  gap: 4px;
  flex: 1;
  min-width: 260px;
}

.partner-strip__label {
  font-family: var(--mono);
  font-size: var(--step-label);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-weight: 500;
}

.partner-strip__text {
  font-size: 0.94rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .partner-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 14px;
  }
}

/* =========================================================
   Conversion rails (homepage hero)
   ========================================================= */

.conversion-rails {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.conversion-rail {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.conversion-rail__label {
  font-family: var(--mono);
  font-size: var(--step-label);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 500;
}

.conversion-rail__heading {
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0;
}

.conversion-rail .btn {
  margin-top: 4px;
}

@media (max-width: 820px) {
  .conversion-rails {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Manifesto strip (homepage footer)
   ========================================================= */

.manifesto-strip {
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 36px);
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.manifesto-strip__text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.52rem);
  font-weight: 500;
  line-height: 1.62;
  color: var(--text);
  margin: 0 auto;
  max-width: 740px;
  font-variation-settings: "opsz" 24;
}

/* =========================================================
   Hero subtitle line
   ========================================================= */

.hero-subtitle {
  font-family: var(--mono);
  font-size: var(--step-caption);
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: -4px;
}

/* =========================================================
   Luxury background grid overlay
   ========================================================= */

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(20, 32, 23, 0.022) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 32, 23, 0.022) 1px, transparent 1px);
  background-size: calc(100% / 12) calc(100% / 12);
  opacity: 0.5;
}

/* =========================================================
   Method page
   ========================================================= */

.method-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.method-step {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.method-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.88rem;
  font-weight: 600;
}

.method-step h3 {
  margin: 0;
  font-size: var(--step-h3);
}

.method-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.method-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
}

.method-connector svg {
  width: 100%;
  max-width: 800px;
  height: auto;
}

@media (max-width: 820px) {
  .method-flow {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Studio upgrade: commitment + pricing signals
   ========================================================= */

.studio-commitment {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.studio-commitment .tag {
  background: rgba(15, 118, 110, 0.08);
  color: var(--accent);
  border: 1px solid rgba(15, 118, 110, 0.14);
}

.package-grid .card .price-range {
  font-family: var(--mono);
  font-size: var(--step-caption);
  color: var(--accent);
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: 0.01em;
}

/* =========================================================
   Hairline card upgrade: replace some shadows with borders
   ========================================================= */

.card {
  border: 1px solid var(--line);
}

.premium-product-card {
  border: 1px solid var(--line);
}

/* =========================================================
   Signature diagram responsive
   ========================================================= */

@media (max-width: 640px) {
  .signature-diagram {
    padding: 16px;
    border-radius: 18px;
  }

  .signature-diagram svg text {
    font-size: 11px;
  }
}

/* =========================================================
   PHASE 3 — Scroll-Driven Animations + Motion Upgrades
   ========================================================= */

/* 3A — Lazy-load image reveal */
.screen-frame__viewport img,
.screen-frame__viewport picture {
  transition:
    opacity var(--t-slow) var(--ease-premium),
    filter var(--t-slow) var(--ease-premium),
    transform var(--t-slow) var(--ease-premium);
}

.reveal:not(.is-visible) .screen-frame__viewport img,
.reveal:not(.is-visible) .screen-frame__viewport picture {
  opacity: 0;
  filter: blur(8px);
  transform: scale(1.04);
}

.reveal.is-visible .screen-frame__viewport img,
.reveal.is-visible .screen-frame__viewport picture {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

/* 3B — Stagger animation for grids */
[data-stagger] > .reveal {
  transition-delay: calc(var(--stagger-i, 0) * 80ms);
}

/* 3C — Screen-frame 3D tilt on hover */
.screen-frame {
  transition: transform var(--t-med) var(--ease-premium);
}

.screen-frame:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) scale(1.01);
}

/* 3E — Parallax depth (CSS hook, driven by JS) */
.noise-glow {
  transition: transform 0s linear;
  will-change: transform;
}

/* =========================================================
   PHASE 4 — Responsive Breakpoint Overhaul
   ========================================================= */

/* 4A — Mobile hamburger navigation */
.nav-hamburger {
  display: none;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 30;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  margin: 4px auto;
  transition:
    transform var(--t-fast) var(--ease-premium),
    opacity var(--t-fast) var(--ease-premium);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 24, 18, 0.4);
  backdrop-filter: blur(6px);
  z-index: 18;
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease-premium);
}

.nav-overlay.is-active {
  opacity: 1;
}

@media (max-width: 820px) {
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    z-index: 25;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 88px 24px 32px;
    background: rgba(238, 241, 236, 0.96);
    backdrop-filter: blur(24px) saturate(1.1);
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform var(--t-med) var(--ease-premium);
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav-overlay {
    display: block;
  }

  .nav a {
    font-size: 1.1rem;
    padding: 14px 16px;
    border-radius: 14px;
    min-height: 48px;
  }

  .nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav .nav-cta {
    margin-top: 12px;
    text-align: center;
    justify-content: center;
  }

  /* Breadcrumb brand link */
  .brand::after {
    font-size: 0.82rem;
  }
}

/* 4B — Grid collapse audit */
@media (max-width: 820px) {
  .shipped-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .conversion-rails {
    grid-template-columns: 1fr;
  }

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

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

  .maulya-feature-band {
    grid-template-columns: 1fr;
  }

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

  .pipeline-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .shipped-facts {
    grid-template-columns: 1fr;
  }

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

/* 4C — Touch target audit */
@media (max-width: 820px) {
  .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .chip {
    min-height: 44px;
    padding: 10px 14px;
  }

  form .btn {
    width: 100%;
    min-height: 48px;
  }
}

/* 4D — Typography scale at mobile */
@media (max-width: 420px) {
  :root {
    --step-h1: clamp(1.75rem, 8vw, 2.4rem);
  }

  h1, h2, h3 {
    word-break: break-word;
    overflow-wrap: break-word;
  }
}

/* =========================================================
   PHASE 5 — Page-Level Content + UX Upgrades
   ========================================================= */

/* 5A — Social proof strip */
.social-proof-strip {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-proof-strip .proof-stat {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.social-proof-strip .proof-stat strong {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  text-transform: none;
}

.social-proof-strip .proof-divider {
  width: 1px;
  height: 24px;
  background: var(--line-strong);
}

/* Animated gradient border on hero surface */
.hero-premium .surface-strong {
  position: relative;
}

.hero-premium .surface-strong::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(109, 224, 255, 0.4), rgba(15, 118, 110, 0.3), rgba(245, 158, 11, 0.35));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
  animation: hero-border-shift 6s ease-in-out infinite alternate;
}

@keyframes hero-border-shift {
  0% { opacity: 0.35; filter: hue-rotate(0deg); }
  100% { opacity: 0.65; filter: hue-rotate(15deg); }
}

/* 5B — Proof metric callouts */
.proof-metric {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.12);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

body[data-theme="revalk"] .proof-metric {
  background: rgba(188, 79, 47, 0.06);
  border-color: rgba(188, 79, 47, 0.12);
  color: var(--accent-2);
}

/* 5C — Form validation and loading */
.form-success {
  display: none;
  padding: 16px;
  border-radius: 14px;
  background: var(--success-bg);
  border: 1px solid rgba(22, 163, 74, 0.2);
  color: var(--success);
  font-weight: 700;
  text-align: center;
  animation: success-in var(--t-med) var(--ease-bounce) both;
}

.form-success.is-visible {
  display: block;
}

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

.btn-loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn-loading::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 600ms linear infinite;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

.char-counter {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  text-align: right;
  margin-top: -4px;
}

/* 5D — Footer upgrade */
.site-footer {
  padding-top: 8px;
}

.footer-links a {
  position: relative;
  transition: color var(--t-fast) var(--ease-premium);
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t-fast) var(--ease-premium);
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.footer-note {
  font-size: 0.82rem;
}

.footer-tagline {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.7;
  margin-top: 2px;
}

/* 5E — Global polish details */
::selection {
  background: rgba(15, 118, 110, 0.18);
  color: var(--text);
}

html {
  scroll-behavior: smooth;
}

*:focus-visible {
  outline: 2px solid rgba(15, 118, 110, 0.26);
  outline-offset: 2px;
}

/* Custom scrollbar */
@supports (scrollbar-width: thin) {
  html {
    scrollbar-width: thin;
    scrollbar-color: rgba(15, 118, 110, 0.25) transparent;
  }
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(15, 118, 110, 0.2);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(15, 118, 110, 0.35);
}

/* Print stylesheet basics */
@media print {
  .noise-glow,
  .grain,
  .na-scroll-bridge,
  .site-header,
  .site-footer,
  .nav-hamburger,
  .nav-overlay {
    display: none !important;
  }

  body {
    background: #fff !important;
    color: #000 !important;
  }

  .card,
  .surface-strong {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }

  a {
    color: #000 !important;
    text-decoration: underline !important;
  }
}

/* =========================================================
   PHASE 1 — CTA anxiety micro-row (conversion psychology)
   ========================================================= */

.cta-micro-row {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: var(--step-label);
  letter-spacing: 0.06em;
  color: var(--muted);
  opacity: 0.8;
}

.cta-micro-row span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cta-micro-row span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--success);
  opacity: 0.6;
}

.cta-micro-row span:first-child::before {
  display: none;
}

.section-so-what {
  color: var(--muted);
  max-width: 56ch;
  font-size: 0.94rem;
}

/* =========================================================
   PHASE 2 — Proof ladder (escalating trust tiers)
   ========================================================= */

.proof-ladder {
  display: grid;
  gap: 24px;
}

.proof-ladder__tier {
  display: grid;
  gap: 12px;
}

.proof-ladder__tier-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-ladder__tier-label {
  font-family: var(--mono);
  font-size: var(--step-label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

.proof-ladder__tier-bar {
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background: var(--line);
}

.proof-ladder__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 12px;
}

/* =========================================================
   PHASE 2 — Trust footer band (per-product guarantees)
   ========================================================= */

.trust-footer-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 12px;
  padding: 20px 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.trust-footer-band__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.trust-footer-band__item::before {
  content: "";
  width: 4px;
  min-height: 20px;
  border-radius: 999px;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

body[data-theme="revalk"] .trust-footer-band__item::before {
  background: var(--accent-2);
}

/* =========================================================
   PHASE 2 — Objection blocks (pre-CTA trust)
   ========================================================= */

.objection-blocks {
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}

.objection-block {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.objection-block__q {
  font-weight: 800;
  font-size: 0.94rem;
  color: var(--text);
  margin: 0;
}

.objection-block__q::before {
  content: "Q: ";
  font-family: var(--mono);
  font-size: var(--step-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.objection-block__a {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* =========================================================
   PHASE 2 — Case study blocks (per-product narrative)
   ========================================================= */

.case-study-block {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.case-study-step {
  display: grid;
  gap: 6px;
}

.case-study-step__label {
  font-family: var(--mono);
  font-size: var(--step-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.case-study-step__text {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 820px) {
  .case-study-block {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .case-study-block {
    grid-template-columns: 1fr;
  }
}

/* One-minute story variant */
.one-minute-story {
  background: transparent;
  border: none;
  padding: 0;
  gap: 10px;
}

.one-minute-story .case-study-step {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

/* =========================================================
   PHASE 4 — Contact micro-wizard
   ========================================================= */

.contact-wizard {
  max-width: 720px;
  margin: 0 auto;
}

.wizard-step {
  display: none;
}

.wizard-step[data-active="true"] {
  display: block;
  animation: wizard-in var(--t-med) var(--ease-premium) both;
}

@keyframes wizard-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.wizard-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.wizard-progress__step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: var(--step-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.wizard-progress__step[data-current="true"] {
  color: var(--text);
  font-weight: 700;
}

.wizard-progress__step[data-done="true"] {
  color: var(--success);
}

.wizard-progress__bar {
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background: var(--line);
}

.wizard-progress__bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  transition: width var(--t-med) var(--ease-premium);
}

.lane-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lane-tile {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 16px;
  border: 2px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  text-align: center;
  transition:
    border-color var(--t-fast) var(--ease-premium),
    box-shadow var(--t-fast) var(--ease-premium),
    transform var(--t-fast) var(--ease-premium);
}

.lane-tile:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 6px 18px rgba(15, 24, 18, 0.06);
}

.lane-tile input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.lane-tile:has(input:checked),
.lane-tile[data-selected="true"] {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1), 0 8px 22px rgba(15, 118, 110, 0.1);
  transform: translateY(-3px);
}

.lane-tile__name {
  font-weight: 800;
  font-size: 1rem;
}

.lane-tile__desc {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0;
}

.wizard-form-panel {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.wizard-back {
  background: none;
  border: none;
  font: inherit;
  font-family: var(--mono);
  font-size: var(--step-caption);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 12px;
}

.wizard-back:hover {
  color: var(--text);
}

.wizard-success {
  text-align: center;
  padding: 40px 20px;
}

.wizard-success__icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.field-error {
  color: var(--danger);
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: -4px;
  display: none;
}

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

@media (max-width: 640px) {
  .lane-tiles {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   PHASE 5 — Hero self-segmentation switch
   ========================================================= */

.segment-switch {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  overflow: hidden;
  margin-bottom: 18px;
  width: fit-content;
}

.segment-switch__option {
  position: relative;
  border: none;
  background: transparent;
  font: inherit;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--muted);
  padding: 10px 18px;
  cursor: pointer;
  transition:
    color var(--t-fast) var(--ease-premium),
    background-color var(--t-fast) var(--ease-premium);
  white-space: nowrap;
  min-height: 44px;
}

.segment-switch__option:not(:last-child) {
  border-right: 1px solid var(--line);
}

.segment-switch__option[aria-selected="true"] {
  color: #fff;
  background: linear-gradient(135deg, #0f766e, #124f65);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.segment-switch__option:focus-visible {
  outline: 2px solid rgba(15, 118, 110, 0.26);
  outline-offset: -2px;
}

.segment-content {
  display: none;
}

.segment-content[data-active="true"] {
  display: block;
}

@media (max-width: 640px) {
  .segment-switch {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
  }
  .segment-switch::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  .segment-switch__option {
    flex: 0 0 auto; /* Prevent squishing */
    font-size: 0.8rem;
    padding: 10px 16px;
    text-align: center;
    scroll-snap-align: center;
  }
}

/* =========================================================
   PHASE 6 — Pilot offer modules
   ========================================================= */

.pilot-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pilot-offer {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.pilot-offer__product {
  font-family: var(--mono);
  font-size: var(--step-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 500;
}

.pilot-offer__duration {
  font-family: var(--mono);
  font-size: var(--step-caption);
  color: var(--muted);
}

.pilot-offer__deliverable {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.pilot-offer__output {
  font-weight: 700;
  font-size: 0.94rem;
  margin: 0;
}

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

/* =========================================================
   PHASE 6 — Hook engine / one-question diagnostic
   ========================================================= */

.hook-engine {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 15%, rgba(15, 118, 110, 0.06), transparent 36%),
    rgba(255, 255, 255, 0.82);
  max-width: 720px;
  margin: 0 auto;
}

.hook-engine__q {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  font-variation-settings: "opsz" 24;
  margin-bottom: 18px;
  text-align: center;
}

.hook-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.hook-tile {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 2px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  text-align: center;
  transition:
    border-color var(--t-fast) var(--ease-premium),
    box-shadow var(--t-fast) var(--ease-premium);
  min-height: 44px;
}

.hook-tile input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.hook-tile:has(input:checked) {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.08);
}

.hook-tile__label {
  font-weight: 700;
  font-size: 0.9rem;
}

.hook-tile__detail {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.hook-engine__optional {
  margin-top: 12px;
}

.hook-engine__optional input {
  width: 100%;
}

.hook-engine__cta {
  margin-top: 16px;
  text-align: center;
}

@media (max-width: 640px) {
  .hook-tiles {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   PHASE 6 — System map micro-simulator
   ========================================================= */

.system-map {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.system-map__progress {
  height: 4px;
  border-radius: 999px;
  background: var(--line);
  margin-bottom: 18px;
  overflow: hidden;
}

.system-map__progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  width: 30%;
  transition: width var(--t-med) var(--ease-premium);
}

.system-map__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.system-map__step {
  padding: 14px;
  border-radius: 14px;
  border: 2px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  text-align: center;
  transition:
    border-color var(--t-fast) var(--ease-premium),
    background-color var(--t-fast) var(--ease-premium);
  min-height: 44px;
}

.system-map__step[data-active="true"] {
  border-color: var(--accent);
  background: rgba(15, 118, 110, 0.04);
}

body[data-theme="revalk"] .system-map__step[data-active="true"] {
  border-color: var(--accent-2);
  background: rgba(188, 79, 47, 0.04);
}

body[data-theme="revalk"] .system-map__progress-fill {
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
}

.system-map__step-num {
  font-family: var(--mono);
  font-size: var(--step-label);
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

.system-map__step-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.system-map__detail {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  color: var(--muted);
  min-height: 60px;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .system-map__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .system-map__steps {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   PHASE 7 — Pain chips (system card micro-input gate)
   ========================================================= */

.pain-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.pain-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color var(--t-fast) var(--ease-premium),
    background-color var(--t-fast) var(--ease-premium);
  min-height: 36px;
}

.pain-chip input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.pain-chip:has(input:checked) {
  border-color: var(--accent);
  background: rgba(15, 118, 110, 0.06);
  color: var(--accent);
}

/* =========================================================
   BEHAVIORAL — Proof snapshot (two-speed proof)
   ========================================================= */

.proof-snapshot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.proof-snapshot__screens {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.proof-snapshot__facts {
  display: grid;
  gap: 8px;
  align-content: center;
}

.proof-snapshot__fact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.proof-snapshot__fact::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

body[data-theme="revalk"] .proof-snapshot__fact::before {
  background: var(--accent-2);
}

.proof-snapshot__so-what {
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 820px) {
  .proof-snapshot {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   BEHAVIORAL — Seal band (peak-end finisher)
   ========================================================= */

.seal-band {
  position: relative;
  text-align: center;
  padding: clamp(32px, 5vw, 56px) clamp(20px, 3vw, 36px);
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.seal-band::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
}

.seal-band__statement {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
  margin: 0 auto 18px;
  max-width: 640px;
  font-variation-settings: "opsz" 24;
}

.seal-band__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================================================
   BEHAVIORAL — Zeigarnik "Continue" pill
   ========================================================= */

.zeigarnik-pill {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: var(--shadow-lg);
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--text);
  z-index: 50;
  transform: translateY(120%);
  opacity: 0;
  transition:
    transform var(--t-med) var(--ease-premium),
    opacity var(--t-med) var(--ease-premium);
  pointer-events: none;
}

.zeigarnik-pill.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.zeigarnik-pill__progress {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--accent);
}

.zeigarnik-pill__dismiss {
  background: none;
  border: none;
  font: inherit;
  color: var(--muted);
  cursor: pointer;
  padding: 2px;
  font-size: 1.1rem;
  line-height: 1;
}

.zeigarnik-pill__dismiss:hover {
  color: var(--text);
}

@media (max-width: 820px) {
  .zeigarnik-pill {
    bottom: 12px;
    right: 50%;
    transform: translateX(50%) translateY(120%);
  }
  .zeigarnik-pill.is-visible {
    transform: translateX(50%) translateY(0);
  }
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  .screen-frame:hover {
    transform: none;
  }

  .breadcrumbs > * {
    animation: none;
  }

  .hero-premium .surface-strong::after {
    animation: none;
  }

  .card:hover {
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }

  .wizard-step[data-active="true"] {
    animation: none;
  }

  .zeigarnik-pill {
    transition: none;
  }

  .lane-tile:hover,
  .hook-tile:hover {
    transform: none;
  }
}
