:root {
  --white: #ffffff;
  --soft: #f7f7f5;
  --navy: #0a0a0a;
  --yellow: #f2b633;
  --yellow-hover: #dfa723;
  --phone-accent: #f2b633;
  --text: #1a1a1a;
  --muted: #6b7280;
  --line: #e5e7eb;
  --line-strong: #d1d5db;
  --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --radius: 24px;
  --radius-sm: 12px;
  --container: 1240px;
  --section-xl: clamp(100px, 12vw, 160px);
  --section-lg: clamp(80px, 10vw, 120px);
  --section-md: clamp(60px, 8vw, 96px);
  --section-tight: clamp(32px, 4vw, 52px);
  --motion-fast: 200ms;
  --motion-base: 400ms;
  --motion-ambient: 24s;
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

.font-headline {
  font-family: "Inter", sans-serif;
}

.font-body {
  font-family: "Inter", sans-serif;
}

.font-label {
  font-family: "Inter", sans-serif;
}

.grid-bento {
  border: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: 0 14px 28px rgba(10, 10, 10, 0.07);
  transition: transform var(--motion-fast) var(--ease-premium), box-shadow var(--motion-fast) var(--ease-premium);
}

.grid-bento:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}

.masonry-layout {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.doodle-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

h1,
h2,
h3,
p {
  margin: 0;
}

:focus-visible {
  outline: 3px solid rgba(17, 17, 17, 0.28);
  outline-offset: 2px;
}

.container {
  width: min(var(--container), calc(100% - 3rem));
  margin: 0 auto;
}

.section {
  padding: var(--section-lg) 0;
}

.section-xl {
  padding: var(--section-xl) 0;
}

.section-lg {
  padding: var(--section-lg) 0;
}

.section-md {
  padding: var(--section-md) 0;
}

.section-soft {
  background: var(--soft);
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: currentColor;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
}

.doodle-icon {
  width: 1rem;
  height: 1rem;
  display: inline-block;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-head h2 {
  margin-top: 0.6rem;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-head p {
  margin-top: 0.8rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 2rem;
  background: var(--yellow);
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    background var(--motion-fast) var(--ease-premium),
    transform var(--motion-fast) var(--ease-premium),
    box-shadow var(--motion-fast) var(--ease-premium);
}

.btn:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(242, 182, 51, 0.3);
}

.btn-small {
  min-height: 42px;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--navy);
}

.btn-ghost:hover {
  background: rgba(17, 17, 17, 0.04);
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--motion-fast) ease-out, box-shadow var(--motion-fast) ease-out;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: 36px;
  height: 32px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.main-nav a {
  color: rgba(17, 17, 17, 0.65);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color var(--motion-fast) ease-out;
}

.main-nav a:hover {
  color: var(--navy);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto 5px;
  background: var(--navy);
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

.hero {
  padding-top: 0;
}

.hero-wave {
  position: relative;
  background: #070707;
  color: var(--white);
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  padding-bottom: clamp(188px, 24vh, 280px);
  overflow: hidden;
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1080px, calc(100% - 2.5rem));
  max-width: 1080px;
  margin: auto auto 0;
  text-align: left;
  padding: clamp(76px, 10vh, 132px) 20px clamp(22px, 4vh, 48px);
  min-height: clamp(520px, 72vh, 820px);
  display: grid;
  align-content: center;
}

.hero-brandline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-lockup-logo {
  width: 40px;
  height: 34px;
  object-fit: contain;
  transform: translate3d(0, 0, 0) rotate(0deg);
  will-change: transform;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-eyebrow {
  margin-top: clamp(18px, 2.2vw, 26px);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.82);
  gap: 0.7rem;
}

.hero-eyebrow::before {
  width: 2.4rem;
  background: rgba(242, 182, 51, 0.9);
}

.hero-wave-accent {
  color: var(--yellow);
  background: linear-gradient(180deg, #f7cb54 0%, #f2b633 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px rgba(242, 182, 51, 0.2);
}

.hero-title-accent {
  letter-spacing: -0.015em;
}

.hero-title-flip {
  outline: none;
}

.hero-title-flip.is-flip-ready {
  --flip-duration: 250ms;
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  vertical-align: top;
  overflow: hidden;
  max-width: 100%;
  column-gap: 0.18em;
  row-gap: 0.02em;
  white-space: normal;
  line-height: 0.92;
  text-decoration: none;
}

.hero-title-flip.is-flip-ready .hero-flip-word {
  display: inline-flex;
  align-items: flex-start;
}

.hero-title-flip.is-flip-ready .hero-flip-gap {
  display: none;
}

.hero-title-flip.is-flip-ready .hero-flip-char {
  position: relative;
  display: inline-block;
  height: 0.98em;
  overflow: hidden;
}

.hero-title-flip.is-flip-ready .hero-flip-char__layer {
  display: block;
  line-height: 0.92;
  background: linear-gradient(180deg, #f7cb54 0%, #f2b633 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px rgba(242, 182, 51, 0.2);
  transition:
    transform var(--flip-duration) cubic-bezier(0.22, 1, 0.36, 1),
    opacity var(--flip-duration) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--char-delay, 0ms);
  will-change: transform;
}

.hero-title-flip.is-flip-ready .hero-flip-char__layer--top {
  transform: translateY(0);
}

.hero-title-flip.is-flip-ready .hero-flip-char__layer--bottom {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
}

.hero-title-flip.is-flip-ready:is(:hover, :focus-visible) .hero-flip-char__layer--top {
  transform: translateY(-100%);
}

.hero-title-flip.is-flip-ready:is(:hover, :focus-visible) .hero-flip-char__layer--bottom {
  transform: translateY(0);
}

.hero-title-flip.is-flip-ready:focus-visible {
  border-radius: 0.12em;
  box-shadow: 0 0 0 2px rgba(242, 182, 51, 0.72);
}

.hero-shell h1 {
  margin-top: clamp(16px, 2.2vw, 28px);
  max-width: 100%;
  font-size: clamp(3.2rem, 8.2vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--white);
  text-wrap: balance;
}

.hero-wave .lead {
  margin-top: clamp(20px, 2.8vw, 32px);
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.55;
  font-weight: 500;
}

.hero-actions {
  margin-top: clamp(24px, 3vw, 34px);
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-phone-stage {
  position: relative;
  z-index: 2;
  justify-self: end;
  align-self: center;
  width: min(100%, clamp(214px, 17.6vw, 244px));
  min-height: clamp(464px, 57vh, 530px);
  will-change: transform;
  pointer-events: none;
}

.hero-phone-glow {
  position: absolute;
  inset: 20% 10% 16% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 182, 51, 0.46) 0%, rgba(242, 182, 51, 0.2) 42%, rgba(242, 182, 51, 0) 76%);
  filter: blur(34px);
  opacity: 0.6;
}

.hero-phone-rig {
  position: absolute;
  inset: 0;
  transform-origin: 62% 54%;
  will-change: transform;
}

.hero-phone-device {
  position: relative;
  width: 100%;
  max-width: 244px;
  margin-left: auto;
  border-radius: 24px;
  padding: 0;
  overflow: visible;
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateY(-30deg) rotateX(15deg);
  background: transparent;
  box-shadow: none;
}

.hero-phone-device::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: var(--phone-accent);
  transform: translate3d(14px, 12px, -1px);
  box-shadow: 0 18px 30px rgba(242, 182, 51, 0.34);
  pointer-events: none;
  z-index: -1;
}

.hero-phone-side {
  display: none;
}

.hero-phone-side--silent,
.hero-phone-side--volume-up,
.hero-phone-side--volume-down {
  left: -2px;
  width: 2px;
  border-radius: 2px 0 0 2px;
}

.hero-phone-side--silent {
  top: 86px;
  height: 17px;
}

.hero-phone-side--volume-up {
  top: 122px;
  height: 34px;
}

.hero-phone-side--volume-down {
  top: 164px;
  height: 34px;
}

.hero-phone-side--power {
  right: -2px;
  top: 136px;
  width: 2px;
  height: 58px;
  border-radius: 0 2px 2px 0;
}

.hero-phone-bezel {
  position: relative;
  min-height: clamp(444px, 53vh, 500px);
  border-radius: 24px;
  padding: 0.34rem 0.26rem 0.3rem;
  border: 2px solid #ffffff;
  border-top-color: #d4d4d4;
  border-left-color: #d4d4d4;
  border-right-width: 4px;
  border-bottom-width: 4px;
  background: #0a0a0a;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.34);
}

.hero-phone-island {
  position: absolute;
  top: 0.54rem;
  left: 50%;
  width: 4rem;
  height: 0.44rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 999px;
  background: #141414;
  box-shadow: none;
  transform: translateX(-50%);
}

.hero-phone-island-speaker {
  display: none;
}

.hero-phone-island-camera {
  display: none;
}

.hero-phone-status {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0.46rem;
  padding: 0.16rem 0.42rem 0;
  color: #6e6e6e;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-phone-status-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

.hero-phone-ui-icon {
  width: 0.72rem;
  height: 0.72rem;
  display: inline-block;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-phone-screen {
  min-height: clamp(398px, 47vh, 452px);
  position: relative;
  display: block;
  border-radius: 20px;
  padding: 0;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.08);
  overflow: hidden;
}

.hero-phone-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  width: 100%;
  padding: 0 0 0.54rem;
  border-bottom: 1px solid rgba(10, 10, 10, 0.09);
  color: #0d0d0d;
}

.hero-phone-brand img {
  width: 0.98rem;
  height: auto;
}

.hero-phone-brand span {
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-phone-brand--minimal {
  display: none;
}

.hero-phone-surface {
  position: absolute;
  inset: 0;
  display: block;
  gap: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 0;
  background: #ffffff;
  box-shadow: none;
}

.hero-phone-center-logo {
  width: 3.2rem;
  height: auto;
  position: absolute;
  left: 50%;
  top: 49%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.hero-phone-center-label {
  margin: 0;
  position: relative;
  z-index: 2;
  font-size: 0.56rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6f5712;
}

.hero-phone-cta {
  position: absolute;
  left: 0.96rem;
  right: 0.96rem;
  bottom: 0.9rem;
  min-height: 2.18rem;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  background: #ffffff;
  color: var(--phone-accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  box-shadow: 0 8px 16px rgba(10, 10, 10, 0.08);
  z-index: 3;
}

.hero-phone-bloom {
  position: absolute;
  left: 50%;
  bottom: -300px;
  width: 390px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  transform: translateX(-50%);
  background: #f2b633;
  z-index: 2;
}

.hero-phone-chat-stack {
  display: grid;
  gap: 0.52rem;
  align-self: start;
  padding-top: 0.12rem;
}

.hero-phone-chat {
  max-width: 78%;
  padding: 0.58rem 0.72rem;
  border-radius: 18px;
  box-shadow: 0 8px 16px rgba(10, 10, 10, 0.08);
}

.hero-phone-chat--incoming {
  justify-self: start;
  background: rgba(255, 255, 255, 0.96);
  color: #111111;
  border-radius: 18px 18px 18px 8px;
}

.hero-phone-chat--ops {
  max-width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.64rem;
  padding: 0.78rem 0.78rem 0.82rem;
}

.hero-phone-chat--outgoing {
  justify-self: end;
  max-width: 44%;
  background: linear-gradient(180deg, #f7cb54 0%, #f2b633 100%);
  color: #111111;
  border-radius: 18px 18px 8px 18px;
}

.hero-phone-chat-avatar {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(247, 203, 84, 0.2) 0%, rgba(242, 182, 51, 0.3) 100%);
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.08);
}

.hero-phone-chat-avatar img {
  width: 1.28rem;
  height: auto;
}

.hero-phone-chat-body {
  display: grid;
  gap: 0.34rem;
}

.hero-phone-chat-kicker {
  font-size: 0.54rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-phone-chat-metrics {
  display: grid;
  gap: 0.22rem;
  margin: 0.04rem 0 0.14rem;
}

.hero-phone-chat-metrics div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 0.5rem;
}

.hero-phone-chat-metrics dt,
.hero-phone-chat-metrics dd {
  margin: 0;
  font-size: 0.54rem;
  line-height: 1.35;
}

.hero-phone-chat-metrics dt {
  color: rgba(17, 17, 17, 0.72);
  font-weight: 700;
}

.hero-phone-chat-metrics dd {
  font-weight: 800;
  text-align: right;
}

.hero-phone-chat-label {
  font-size: 0.5rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.7);
  margin-top: 0.1rem;
}

.hero-phone-chat-inline {
  font-size: 0.56rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero-phone-chat-total {
  font-size: 0.98rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-top: 0.08rem;
}

.hero-phone-chat > p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.36;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-phone-home-indicator {
  display: none;
}

.hero-wave .btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-wave .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-wave .trust-line {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero-wave .trust-line span::after {
  content: "|";
  margin-left: 0.65rem;
  opacity: 0.55;
}

.hero-wave .trust-line span:last-child::after {
  content: "";
  margin-left: 0;
}

.waves-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.waves {
  width: 100%;
  height: clamp(126px, 18vh, 194px);
  margin-bottom: -7px; /*Fix for safari gap*/
  min-height: 120px;
  max-height: 194px;
  display: block;
}

.parallax > use {
  transform-box: fill-box;
  transform-origin: center bottom;
  will-change: transform;
}

html.no-anime .parallax > use {
  animation-name: wave-drift-fallback;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

html.no-anime .parallax > use:nth-child(1) {
  animation-duration: 16s;
  animation-delay: -2s;
}

html.no-anime .parallax > use:nth-child(2) {
  animation-duration: 24s;
  animation-delay: -5s;
}

html.no-anime .parallax > use:nth-child(3) {
  animation-duration: 32s;
  animation-delay: -7s;
}

html.no-anime .parallax > use:nth-child(4) {
  animation-duration: 44s;
  animation-delay: -9s;
}

@keyframes wave-drift-fallback {
  0% {
    transform: translate3d(-120px, 0, 0);
  }
  50% {
    transform: translate3d(0, -6px, 0);
  }
  100% {
    transform: translate3d(120px, 0, 0);
  }
}

.hero-wave::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: clamp(150px, 22vh, 240px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.hybrid-poster .hero-wave {
  background:
    radial-gradient(circle at 84% 24%, rgba(242, 182, 51, 0.18), transparent 34%),
    radial-gradient(circle at 76% 12%, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, #090909 0%, #060606 68%, #0a0a0a 100%);
}

.hybrid-poster .hero-shell {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  backdrop-filter: none;
  width: min(1240px, calc(100% - 3rem));
  max-width: 1240px;
  padding-inline: clamp(20px, 2.8vw, 36px);
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(214px, 244px);
  column-gap: clamp(3.5rem, 5.4vw, 5.5rem);
  row-gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.hybrid-poster .hero-copy {
  align-self: center;
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.hybrid-poster .hero-brandline {
  justify-self: start;
  align-self: start;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #f8d778;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hybrid-poster .hero-lockup-logo {
  width: clamp(42px, 4.4vw, 58px);
  height: auto;
}

.hybrid-poster .hero-brand-name {
  display: inline;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.hybrid-poster .hero-eyebrow {
  margin-top: 0.9rem;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.1em;
}

.hybrid-poster .hero-eyebrow::before {
  display: inline-block;
}

.hybrid-poster .hero-shell h1 {
  text-wrap: pretty;
  max-width: 10.8ch;
  font-size: clamp(2.95rem, 4.4vw, 4.35rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.hybrid-poster .hero-wave .lead {
  max-width: 36rem;
  border-left: 3px solid var(--yellow);
  padding-left: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.hybrid-poster .hero-wave .trust-line {
  max-width: 36rem;
}

.hybrid-poster .hero-phone-stage {
  grid-column: 2;
  justify-self: end;
  align-self: center;
}

.hybrid-poster .hero-wave .btn {
  min-height: 48px;
  border: 2px solid #111111;
  border-radius: 10px;
  padding: 0.82rem 1.45rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.28);
}

.hybrid-poster .hero-wave .btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 rgba(10, 10, 10, 0.35);
}

.hybrid-poster .hero-wave .btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: none;
}

.hybrid-poster .hero-wave .trust-line {
  margin-top: 15px;
  padding-top: 0.62rem;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.hybrid-poster .waves-container::before {
  content: none;
}

@media (max-width: 980px) {
  .hybrid-poster .hero-shell {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }

  .hybrid-poster .hero-brandline {
    justify-self: start;
    margin-bottom: 0.15rem;
  }

  .hybrid-poster .hero-brand-name {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }

  .hybrid-poster .hero-lockup-logo {
    width: 44px;
    height: 38px;
  }

  .hybrid-poster .hero-shell h1 {
    max-width: 100%;
  }

  .hybrid-poster .hero-wave .lead,
  .hybrid-poster .hero-wave .trust-line {
    max-width: 100%;
  }

  .hybrid-poster .hero-phone-stage {
    grid-column: 1;
    justify-self: center;
    width: min(100%, 244px);
    min-height: 520px;
    margin-top: 0.5rem;
  }

  .hero-phone-rig {
    inset: 0;
  }
}

@media (max-height: 820px) {
  .hero-wave {
    padding-bottom: clamp(228px, 32vh, 340px);
  }

  .hero-shell {
    padding-top: clamp(56px, 8vh, 92px);
    padding-bottom: clamp(18px, 3vh, 32px);
  }
}

@media (max-width: 640px) {
  .hero-phone-stage {
    width: min(100%, 228px);
    min-height: 486px;
  }

  .hero-phone-rig {
    inset: 0;
  }

  .hero-phone-chat > p {
    font-size: 0.78rem;
  }

  .hero-phone-chat--ops {
    gap: 0.56rem;
    padding: 0.72rem;
  }

  .hero-phone-chat-avatar {
    width: 1.92rem;
    height: 1.92rem;
  }

  .hero-phone-chat-kicker,
  .hero-phone-chat-metrics dt,
  .hero-phone-chat-metrics dd,
  .hero-phone-chat-label,
  .hero-phone-chat-inline {
    font-size: 0.58rem;
  }

  .hero-phone-chat-total {
    font-size: 0.94rem;
  }

  .hero-phone-center-logo {
    width: 2.85rem;
  }

  .hero-phone-cta {
    font-size: 0.8rem;
  }

  .hero-phone-bloom {
    width: 352px;
    bottom: -274px;
  }
}

.trust-strip {
  padding-top: var(--section-tight);
  padding-bottom: var(--section-tight);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-title {
  color: #202020;
  font-weight: 600;
}

.trust-evidence-row {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-evidence-item {
  padding: 1rem 1rem 1.1rem;
}

.trust-evidence-item + .trust-evidence-item {
  border-left: 1px solid var(--line);
}

.trust-evidence-item h3 {
  font-size: 0.96rem;
  font-weight: 700;
  color: #111111;
}

.trust-evidence-title {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-evidence-title .doodle-icon {
  width: 0.95rem;
  height: 0.95rem;
  color: #6f4f00;
}

.trust-evidence-item p {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.recognition {
  background: linear-gradient(180deg, #fffdf6 0%, #ffffff 78%);
}

.recognition-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.6rem;
  align-items: start;
}

.recognition-media {
  margin: 0;
}

.recognition-frame {
  position: relative;
  border: 0;
  border-radius: 20px;
  background: #ffffff;
  padding: 10px;
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.12);
}

.recognition-frame img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 14px;
  border: 0;
  transition: transform var(--motion-base) ease-out;
}

.recognition-media:hover .recognition-frame img {
  transform: scale(1.01);
}

.proof-tag {
  position: absolute;
  left: 18px;
  top: 18px;
  min-height: 2rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: var(--yellow);
  color: #111111;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.recognition-media figcaption {
  margin-top: 0.85rem;
  padding-left: 0.1rem;
  font-size: 0.93rem;
  color: #151515;
  font-weight: 600;
}

.recognition-copy {
  border: 0;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(10, 10, 10, 0.07);
  padding: clamp(1.35rem, 3vw, 2.3rem);
}

.recognition-copy h2 {
  margin-top: 0.75rem;
  font-size: clamp(1.95rem, 4vw, 2.8rem);
  line-height: 1.07;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.recognition-copy > p {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 60ch;
  font-size: 1.03rem;
}

.assurance-grid {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.75rem;
}

.assurance-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 0;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(10, 10, 10, 0.06);
}

.assurance-icon {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 10px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  background: rgba(242, 182, 51, 0.25);
  color: #121212;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.assurance-icon svg {
  width: 1.22rem;
  height: 1.22rem;
}

.assurance-card h3 {
  font-size: 1rem;
  line-height: 1.2;
  color: #111111;
}

.assurance-card p {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.pillar-grid,
.feature-grid,
.industry-grid,
.process-grid,
.testimonial-grid,
.credibility-grid {
  display: grid;
  gap: 1.1rem;
}

.pillar-grid,
.feature-grid,
.process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.industry-grid,
.credibility-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.services-editorial,
.leadership-editorial {
  position: relative;
  margin: 0 0 1.15rem;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
}

.services-editorial img,
.leadership-editorial img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.services-editorial::before,
.leadership-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.services-editorial::before {
  background: linear-gradient(105deg, rgba(10, 10, 10, 0.5) 0%, rgba(242, 182, 51, 0.16) 55%, rgba(10, 10, 10, 0.28) 100%);
}

.leadership-editorial::before {
  background: linear-gradient(120deg, rgba(242, 182, 51, 0.22) 0%, rgba(10, 10, 10, 0.5) 100%);
}

.services-editorial figcaption,
.leadership-editorial figcaption {
  position: absolute;
  left: 1rem;
  bottom: 0.95rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-pillar,
.card-evidence,
.card-step,
.contact-form {
  border-radius: var(--radius);
  background: var(--white);
}

.card-pillar {
  border: 0;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf6 100%);
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.09);
  padding: 1.5rem;
}

.card-evidence {
  border: 0;
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.06);
  padding: 1.35rem;
}

.card-step {
  border: 0;
  box-shadow: none;
  padding: 1.25rem;
  background: #ffffff;
}

.pillar-card h3,
.feature-card h3,
.industry-card h3,
.process-card h3,
.credibility-card h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--navy);
}

.pillar-desc,
.feature-card p,
.industry-card p,
.process-card p,
.testimonial-card p,
.credibility-card p {
  margin-top: 0.55rem;
  color: var(--muted);
}

.pillar-meta {
  margin-top: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.45;
}

.pillar-meta strong {
  color: #121212;
}

.process-card span {
  display: inline-flex;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  font-weight: 800;
}

.process-card h3 {
  margin-top: 0.46rem;
}

.testimonials-proof .section-head {
  max-width: 820px;
}

.testimonials-proof {
  background: #f7f7f5;
}

.testimonials-proof .eyebrow {
  color: var(--yellow);
}

.testimonials-proof .eyebrow::before {
  background: var(--yellow);
}

.testimonial-card {
  border: 0;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.06);
  padding: 1.4rem 1.35rem;
}

.quote {
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  font-weight: 500;
  line-height: 1.45;
  color: #111111;
}

.author {
  margin-top: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.source {
  margin-top: 0.18rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.section-cta {
  margin-top: 2rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.section-cta-right {
  justify-content: flex-end;
}

.final-cta {
  background: #050505;
}

.demo-grabber {
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 24px;
  padding: clamp(1.4rem, 4vw, 2.8rem);
  background: #f2b633;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.35);
}

.demo-grabber-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.demo-step {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.3rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: #ecb52e;
  color: #0a0a0a;
  font-size: 1.05rem;
  line-height: 1;
}

.demo-step .doodle-icon {
  width: 0.95rem;
  height: 0.95rem;
}

.demo-progress-label {
  color: rgba(10, 10, 10, 0.72);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.demo-progress {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: #e5ac24;
  border: 1px solid rgba(10, 10, 10, 0.25);
  overflow: hidden;
}

.demo-progress-fill {
  display: block;
  width: 26%;
  height: 100%;
  border-radius: 999px;
  background: #0a0a0a;
  transition: width 260ms var(--ease-premium);
}

.demo-step-indicator {
  margin-top: 0.9rem;
  color: rgba(10, 10, 10, 0.62);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.72rem;
}

.demo-panel-wrap {
  position: relative;
  margin-top: 0.2rem;
}

.demo-step-panel {
  display: none;
  min-height: clamp(320px, 30vw, 430px);
}

.demo-step-panel.is-active {
  display: block;
  animation: demo-step-fade 260ms var(--ease-premium);
}

@keyframes demo-step-fade {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.demo-grabber h2 {
  margin-top: clamp(1rem, 2vw, 1.8rem);
  color: #0a0a0a;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.demo-options {
  margin-top: clamp(1rem, 3vw, 2rem);
  display: grid;
  gap: 0.85rem;
  max-width: 980px;
}

.demo-option {
  width: 100%;
  min-height: 68px;
  border-radius: 999px;
  border: 0;
  padding: 0.95rem 1.5rem;
  background: rgba(255, 255, 255, 0.66);
  color: #141414;
  text-align: left;
  font: 500 clamp(1rem, 1.4vw, 1.35rem) / 1.2 "Inter", sans-serif;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform var(--motion-fast) var(--ease-premium), background var(--motion-fast) var(--ease-premium), box-shadow var(--motion-fast) var(--ease-premium);
}

.demo-option:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 18px rgba(10, 10, 10, 0.1);
}

.demo-option.is-selected {
  background: #fbf8eb;
  box-shadow: inset 0 0 0 2px #0a0a0a;
}

.demo-selection {
  margin-top: 1rem;
  color: rgba(10, 10, 10, 0.8);
  font-size: 0.94rem;
}

.demo-actions {
  margin-top: clamp(1rem, 3vw, 2rem);
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.demo-actions .btn {
  min-width: 188px;
}

.demo-actions #demoBackBtn {
  background: rgba(236, 181, 46, 0.4);
  color: #0a0a0a;
}

.demo-actions #demoBackBtn:hover {
  background: rgba(236, 181, 46, 0.58);
  box-shadow: none;
}

.demo-actions #demoNextBtn {
  background: #0a0a0a;
  color: #ffffff;
}

.demo-actions #demoNextBtn:hover {
  background: #000000;
}

.demo-actions .btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.demo-email-wrap {
  margin-top: clamp(1rem, 3vw, 2rem);
  max-width: 980px;
}

.demo-email-input {
  width: 100%;
  min-height: 72px;
  border-radius: 999px;
  border: 0;
  padding: 0.95rem 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  color: #101010;
  font: 500 clamp(1rem, 1.35vw, 1.25rem) / 1.2 "Inter", sans-serif;
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.18);
}

.demo-email-input::placeholder {
  color: rgba(70, 79, 94, 0.58);
}

.demo-email-input:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(10, 10, 10, 0.68);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.final-cta .btn-ghost {
  border-color: rgba(10, 10, 10, 0.35);
  color: #0a0a0a;
  background: rgba(255, 255, 255, 0.25);
}

.reinforcement {
  margin-top: 1rem;
  font-size: 0.92rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.95fr);
  gap: 1.35rem;
}

.contact-copy h2 {
  margin-top: 0.6rem;
  font-size: clamp(1.9rem, 3.6vw, 2.45rem);
  line-height: 1.1;
}

.contact-copy p {
  margin-top: 0.75rem;
  color: var(--muted);
}

.contact-meta {
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form {
  border: 0;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.9rem;
  padding: 1.4rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  border: 0;
  border-radius: 10px;
  background: var(--white);
  font: inherit;
  color: var(--text);
  padding: 0.78rem 0.84rem;
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.08);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.1);
}

.form-note {
  min-height: 1.4em;
  font-size: 0.86rem;
  color: var(--navy);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2rem;
  background: #faf9f5;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.staff-link {
  font-weight: 700;
  color: var(--navy);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  will-change: transform, opacity;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.no-anime .reveal {
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1), transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hybrid poster layer - keeps hero untouched */
.hybrid-poster main > section:not(.hero-wave) {
  position: relative;
  border-top: 0;
}

.hybrid-poster main > section:not(.hero-wave)::before {
  content: none;
}

.hybrid-poster .trust-strip {
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  background: var(--white);
}

.hybrid-poster .section-head > span,
.hybrid-poster .recognition-copy > span,
.hybrid-poster .contact-copy > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.36rem 0.68rem;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
}

.hybrid-poster .section-kicker .doodle-icon {
  width: 0.95rem;
  height: 0.95rem;
}

.hybrid-poster .trust-evidence-row {
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  background: var(--white);
}

.hybrid-poster .trust-evidence-item {
  padding: 1rem 1.2rem 1.15rem;
}

.hybrid-poster .trust-evidence-item + .trust-evidence-item {
  border-left: 2px solid var(--navy);
}

.hybrid-poster main > section:not(.hero-wave) .grid-bento,
.hybrid-poster .recognition-copy,
.hybrid-poster .recognition-frame,
.hybrid-poster .assurance-card,
.hybrid-poster .contact-form {
  border: 0;
  border-radius: 14px;
  box-shadow: 0 18px 30px rgba(10, 10, 10, 0.1);
}

.hybrid-poster .recognition-frame {
  padding: 8px;
}

.hybrid-poster .proof-tag {
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 14px rgba(10, 10, 10, 0.18);
}

.hybrid-poster .process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 3rem;
  border: 0;
  border-radius: 10px;
  background: var(--navy);
  color: var(--yellow);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hybrid-poster main > section:not(.hero-wave) .btn {
  border: 0;
  border-radius: 10px;
  min-height: 48px;
  padding: 0.82rem 1.5rem;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.16);
}

.hybrid-poster main > section:not(.hero-wave) .btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 rgba(10, 10, 10, 0.2);
}

.hybrid-poster main > section:not(.hero-wave) .btn-ghost {
  background: var(--white);
  color: var(--navy);
  border: 0;
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.25);
}

.hybrid-poster #final-cta .btn-ghost {
  background: rgba(255, 255, 255, 0.25);
  color: #0a0a0a;
  border-color: rgba(10, 10, 10, 0.3);
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.2);
}

.hybrid-poster #final-cta .btn {
  box-shadow: none;
}

.hybrid-poster .feature-card:hover,
.hybrid-poster .pillar-card:hover,
.hybrid-poster .process-card:hover,
.hybrid-poster .industry-card:hover,
.hybrid-poster .testimonial-card:hover,
.hybrid-poster .credibility-card:hover {
  transform: translate(-2px, -2px);
}

/* Section rhythm + shape language (inspired pass) */
#recognition {
  background: linear-gradient(180deg, #f6f6f3 0%, #ffffff 72%);
}

#recognition .recognition-copy,
#recognition .recognition-frame {
  position: relative;
  overflow: hidden;
}

#recognition .recognition-copy::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 86px;
  height: 86px;
  background: linear-gradient(135deg, transparent 50%, rgba(242, 182, 51, 0.42) 50%);
  pointer-events: none;
}

#recognition .assurance-card {
  background: #faf8ef;
}

#why-us {
  background: #080808;
  color: #f6f6f6;
}

#why-us::before {
  content: none;
}

#why-us .section-head h2,
#why-us .section-head p,
#why-us .feature-card h3 {
  color: #f6f6f6;
}

#why-us .feature-card {
  background: linear-gradient(180deg, #f2b633 0%, #e6ad2a 100%);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
}

#why-us .feature-card p {
  color: rgba(10, 10, 10, 0.86);
}

#why-us .feature-card h3 {
  color: #0a0a0a;
}

#services {
  background: #ffffff;
}

#services .pillar-card,
#industries .industry-card,
#leadership .credibility-card {
  position: relative;
  overflow: hidden;
}

#services .pillar-card:nth-child(odd),
#industries .industry-card:nth-child(odd),
#leadership .credibility-card:nth-child(odd) {
  background: linear-gradient(180deg, #fffef9 0%, #ffffff 100%);
}

#services .pillar-card::before,
#industries .industry-card::before,
#leadership .credibility-card::before {
  content: "";
  position: absolute;
  right: 0.9rem;
  top: 0.9rem;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: rgba(242, 182, 51, 0.84);
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.16);
}

#process {
  background: #0a0a0a;
  color: #ffffff;
}

#process .section-head h2,
#process .section-head p {
  color: #f6f6f6;
}

#process .process-card {
  background: #f8f8f5;
  color: #0a0a0a;
  position: relative;
  overflow: hidden;
}

#process .process-card h3,
#process .process-card p {
  color: #0f0f0f;
}

#process .process-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, #f2b633 0%, #dfa723 100%);
}

#industries {
  background: #f8f7f1;
}

#testimonials {
  background: #070707;
  color: #ffffff;
}

#testimonials .section-head h2,
#testimonials .section-head p {
  color: #f2f2f2;
}

#testimonials .testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3);
}

#testimonials .quote,
#testimonials .author {
  color: #ffffff;
}

#testimonials .source {
  color: rgba(255, 255, 255, 0.66);
}

#leadership {
  background: linear-gradient(180deg, #ffffff 0%, #f7f6f1 100%);
}

#leadership .leadership-editorial {
  margin-bottom: 1.35rem;
}

#contact {
  background: #f4f4f2;
}

/* Poster layout pass */
.section-head.poster-box {
  max-width: none;
  margin-bottom: 0;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.14), 0 16px 28px rgba(10, 10, 10, 0.08);
}

.poster-split {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  align-items: start;
}

.poster-box,
.poster-visual-frame,
#recognition .recognition-copy,
#recognition .recognition-frame,
#why-us .feature-card,
#services .pillar-card,
#process .process-card,
#industries .industry-card,
#testimonials .testimonial-card,
#leadership .credibility-card,
#contact .contact-copy,
#contact .contact-form,
#final-cta .demo-grabber {
  border-radius: 10px;
}

.poster-visual-frame {
  margin: 0;
  padding: 0;
  overflow: hidden;
  align-self: stretch;
  aspect-ratio: 4 / 5;
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.14), 0 18px 30px rgba(10, 10, 10, 0.12);
}

.poster-visual-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: auto;
}

#recognition .recognition-grid {
  gap: clamp(1rem, 2vw, 1.4rem);
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.04fr);
}

#recognition .recognition-media,
#recognition .recognition-copy {
  height: 100%;
}

#recognition .recognition-copy {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.14), 0 16px 28px rgba(10, 10, 10, 0.08);
}

#recognition .recognition-copy > p {
  margin-top: 0;
  max-width: 42ch;
}

#recognition .recognition-frame {
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.14), 0 16px 28px rgba(10, 10, 10, 0.1);
}

#recognition .assurance-grid {
  margin-top: 0.35rem;
}

#recognition .assurance-card {
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.1);
}

.why-layout {
  display: grid;
  gap: clamp(1rem, 2vw, 1.3rem);
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  align-items: start;
}

#why-us .why-intro {
  background: linear-gradient(180deg, #141414 0%, #090909 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

#why-us .why-intro h2,
#why-us .why-intro p {
  color: #ffffff;
}

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

#why-us .feature-card {
  min-height: 168px;
  padding: 1.35rem;
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.16), 0 16px 24px rgba(0, 0, 0, 0.26);
}

#why-us .feature-card h3 {
  color: #ffffff !important;
  text-shadow: none;
}

#why-us .feature-card p {
  color: rgba(10, 10, 10, 0.88);
  font-weight: 500;
}

.services-layout {
  display: grid;
  gap: clamp(1rem, 2vw, 1.3rem);
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.84fr);
  align-items: stretch;
}

.services-copy-column,
.leadership-copy-column {
  display: grid;
  gap: 1rem;
  align-content: start;
}

#services .services-intro {
  background: #ffffff;
}

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

#services .services-editorial,
#leadership .leadership-editorial {
  min-height: 0;
  background: #0d0d0d;
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.2), 0 18px 30px rgba(10, 10, 10, 0.14);
}

#services .services-editorial img {
  object-position: 42% center;
}

#leadership .leadership-editorial img {
  object-position: 52% center;
}

#services .services-editorial::before,
#leadership .leadership-editorial::before {
  content: none;
}

#services .services-editorial figcaption,
#leadership .leadership-editorial figcaption {
  display: none;
}

#services .pillar-card {
  min-height: 228px;
  padding: 1.35rem;
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.12), 0 16px 24px rgba(10, 10, 10, 0.08);
}

#services .pillar-card h3 {
  font-size: 1.7rem;
}

#services .pillar-card p {
  color: #4d4d4d;
}

#services .pillar-meta {
  margin-top: 0.65rem;
}

#services .section-cta {
  margin-top: 0.2rem;
}

.process-layout {
  display: grid;
  gap: clamp(1rem, 2vw, 1.3rem);
  grid-template-columns: minmax(280px, 0.54fr) minmax(0, 1fr);
  align-items: start;
}

#process .process-intro {
  background: linear-gradient(180deg, #131313 0%, #080808 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

#process .process-intro h2,
#process .process-intro p {
  color: #ffffff;
}

.process-stack {
  display: grid;
  gap: 0.85rem;
}

#process .process-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  min-height: 108px;
  padding: 0.9rem;
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.14);
}

#process .process-card span {
  margin: 0;
  min-width: 0;
  min-height: 0;
  border-radius: 6px;
  align-self: stretch;
}

.process-card-body {
  display: grid;
  align-content: center;
}

.process-card-body p {
  margin-top: 0.45rem !important;
}

.industries-layout {
  display: grid;
  gap: 1rem;
}

#industries .industries-head {
  background: #ffffff;
}

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

#industries .industry-card {
  min-height: 176px;
  padding: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.12), 0 10px 18px rgba(10, 10, 10, 0.06);
}

.testimonials-layout {
  display: grid;
  gap: 1rem;
}

.testimonials-intro {
  max-width: 580px;
  margin-bottom: 0;
}

.testimonials-band {
  margin-top: 0;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#testimonials .testimonial-card {
  min-height: 290px;
  padding: 1.8rem;
  background: linear-gradient(180deg, #121212 0%, #060606 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 18px 30px rgba(0, 0, 0, 0.28);
}

#testimonials .section-cta {
  margin-top: 0.25rem;
}

.leadership-layout {
  display: grid;
  gap: clamp(1rem, 2vw, 1.3rem);
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1fr);
  align-items: stretch;
}

#leadership .leadership-editorial {
  margin: 0;
  background: #f3eee2;
}

#leadership .leadership-intro {
  background: #ffffff;
}

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

#leadership .credibility-card {
  min-height: 214px;
  padding: 1.35rem;
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.12), 0 14px 22px rgba(10, 10, 10, 0.07);
}

#final-cta .demo-grabber {
  max-width: 1040px;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.16), 0 22px 42px rgba(0, 0, 0, 0.28);
}

#contact .contact-grid {
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: 1rem;
}

#contact .contact-copy {
  padding: clamp(1.4rem, 2.4vw, 2rem);
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.12), 0 14px 24px rgba(10, 10, 10, 0.06);
}

#contact .contact-form {
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.12), 0 14px 24px rgba(10, 10, 10, 0.06);
}

@media (max-width: 1080px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .recognition-grid {
    grid-template-columns: 1fr;
  }

  .trust-evidence-row {
    grid-template-columns: 1fr;
  }

  .trust-evidence-item + .trust-evidence-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .industry-grid,
  .credibility-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .why-layout,
  .services-layout,
  .process-layout,
  .leadership-layout,
  #contact .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-pillar-grid,
  .why-feature-grid,
  .leadership-grid,
  .industries-strip,
  .testimonials-band {
    grid-template-columns: 1fr;
  }

  .leadership-copy-column {
    order: 1;
  }

  #leadership .leadership-editorial {
    order: 2;
  }

  #services .services-editorial {
    min-height: 0;
  }

  #services .services-editorial,
  #leadership .leadership-editorial {
    aspect-ratio: 4 / 5;
  }

  .hybrid-poster .trust-evidence-item + .trust-evidence-item {
    border-left: 0;
    border-top: 2px solid var(--navy);
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 0.35rem;
    padding: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0.96);
    transform-origin: top;
    pointer-events: none;
    transition: opacity var(--motion-fast) ease-out, transform var(--motion-fast) ease-out, visibility var(--motion-fast) ease-out;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 0.72rem 0.85rem;
    border-radius: 8px;
  }

  .main-nav a:hover {
    background: rgba(17, 17, 17, 0.05);
  }

  .pillar-grid,
  .feature-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  #process .process-card {
    grid-template-columns: 68px minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title-flip.is-flip-ready .hero-flip-char__layer {
    transition: none;
  }

  .hero-title-flip.is-flip-ready .hero-flip-char__layer--top {
    transform: translateY(0);
  }

  .hero-title-flip.is-flip-ready .hero-flip-char__layer--bottom {
    transform: translateY(100%);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 1.35rem));
  }

  .header-inner {
    min-height: 72px;
  }

  .hero-shell h1 {
    max-width: 100%;
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .hero-wave .lead {
    font-size: 1rem;
  }

  .hero-wave .trust-line {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
  }

  .hero-actions .btn,
  .section-cta .btn,
  .demo-actions .btn {
    width: 100%;
  }

  .card-pillar,
  .card-evidence,
  .card-step,
  .contact-form {
    padding: 1.2rem;
  }

  .hybrid-poster main > section:not(.hero-wave) .grid-bento,
  .hybrid-poster .recognition-copy,
  .hybrid-poster .recognition-frame,
  .hybrid-poster .assurance-card,
  .hybrid-poster .contact-form {
    box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.12);
  }

  .demo-option {
    min-height: 58px;
    font-size: 1.05rem;
    padding-inline: 1.1rem;
  }

  .services-editorial,
  .leadership-editorial,
  .services-editorial img,
  .leadership-editorial img {
    min-height: 188px;
  }

  #process .process-card {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 0.85rem;
    padding: 0.8rem;
  }

  #contact .contact-copy {
    padding: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    will-change: auto;
  }

  .parallax > use {
    animation: none;
    transform: none;
  }
}

