:root {
  --display: "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, sans-serif;
  --mono: "DM Mono", ui-monospace, monospace;
  --ink: #171a1b;
  --deep: #032e34;
  --cream: #fffaf1;
  --gold: #fbe84b;
  --blue: #4585ee;
  --mute: #5b5b5b;
  --max: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; }
::selection { background: var(--gold); color: var(--ink); }
.display { font-family: var(--display); }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.narrow { max-width: 900px; margin-inline: auto; }
.wide { max-width: 1100px; margin-inline: auto; }
@media (min-width: 768px) { .wrap { width: min(var(--max), calc(100% - 64px)); } }

.kicker { font-family: var(--mono); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute); margin: 0; }
.kicker--light { color: rgba(255,255,255,.45); }
.kicker--tight { margin-top: 8px; }
.foot-kicker { margin-top: 24px; color: rgba(255,255,255,.4); }

.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 12px 24px; font-size: 15px; font-weight: 600; border: 1px solid transparent; cursor: pointer; }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #000; }
.btn-ghost { background: transparent; border-color: rgba(23,26,27,.15); }
.btn-ghost:hover { border-color: rgba(23,26,27,.4); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: #f2f2f2; }
.btn-outline-white { background: transparent; border: 1px solid rgba(255,255,255,.55); color: #fff; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* Didero-style hero header */
.has-hero { background: #0a0a0a; }
.hero-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 20px;
  pointer-events: none;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.hero-header.is-scrolled {
  background: linear-gradient(to bottom, rgba(245,245,245,.92) 0%, rgba(245,245,245,.55) 70%, transparent 100%);
}
.hero-header > * { pointer-events: auto; }
.hero-header__logo {
  position: absolute;
  left: clamp(20px, 4vw, 48px);
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.hero-header__logo .circle-mark {
  width: 44px;
  height: 44px;
  display: block;
}
.hero-header.is-scrolled .hero-header__logo {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-pill {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(780px, calc(100vw - 40px));
  min-height: 58px;
  padding: 5px 6px 5px 0;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.92);
  background: var(--cream);
  box-shadow: 0 6px 28px rgba(0,0,0,.22);
}
.nav-pill__left {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-left: 30px;
  justify-self: start;
}
.nav-pill__left a {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: #0f2228;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.nav-pill__left a:hover { color: var(--ink); }
.nav-pill__brand {
  justify-self: center;
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.01em;
  color: #0b1c20;
  padding: 0 10px;
  white-space: nowrap;
  line-height: 1;
}
.nav-pill__right {
  justify-self: end;
  display: flex;
  align-items: center;
  padding-right: 5px;
}
.nav-pill__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-pill__cta:hover { background: #3474dc; }

.nav-toggle--light span { background: #fff; }
.nav-mobile--dark {
  background: rgba(10,10,10,.96);
  border-top: 1px solid rgba(255,255,255,.1);
}
.nav-mobile--dark a { color: #fff; }

@media (max-width: 900px) {
  .hero-header {
    justify-content: flex-end;
    padding: 24px 20px 0;
  }
  .nav-pill { display: none; }
  .hero-header .nav-toggle { display: block; }
}
@media (min-width: 901px) {
  .hero-header .nav-toggle { display: none; }
}
@media (min-width: 1100px) {
  .hero-header { padding: 28px 32px; }
  .nav-pill { width: min(800px, calc(100vw - 80px)); }
}

/* Didero hero */
.hero-didero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: #fff;
  overflow: hidden;
  background: #0a0a0a;
}
.hero-didero__bg {
  position: absolute;
  inset: -8%;
  background:
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=2000&q=80") center/cover no-repeat;
  filter: blur(10px) brightness(0.45) saturate(0.7);
  transform: scale(1.08);
  animation: hero-drift 18s ease-in-out infinite alternate;
}
@keyframes hero-drift {
  from { transform: scale(1.08) translateX(-1%); }
  to { transform: scale(1.12) translateX(1%); }
}
.hero-didero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 50%, rgba(0,0,0,.5) 100%);
}
.hero-didero__frame {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  margin: 12px 12px 0;
  border: 1px solid rgba(255,255,255,.22);
  border-bottom: 0;
  border-radius: 0 56px 0 0;
  padding: 120px 32px 64px;
}
@media (min-width: 768px) {
  .hero-didero__frame { margin: 16px 20px 0; padding: 140px 48px 80px; border-radius: 0 80px 0 0; }
}
.hero-didero__grid {
  display: grid;
  gap: 48px;
  align-items: end;
  max-width: 1280px;
  margin: 0 auto;
  min-height: calc(100vh - 200px);
}
@media (min-width: 1024px) {
  .hero-didero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
  }
}
.hero-didero__title {
  margin: 0;
  font-size: clamp(44px, 7.5vw, 88px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.055em;
}
.hero-didero__lede {
  margin: 28px 0 0;
  max-width: 34rem;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: rgba(255,255,255,.78);
}
.hero-didero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.hero-didero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.proof-carousel {
  position: relative;
  width: min(100%, 500px);
  height: 248px;
}
.proof-shell {
  position: absolute;
  inset: 0;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
.proof-shell.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.proof-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  height: 100%;
}
.proof-card__left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 22px 14px 16px;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  overflow: hidden;
}
.proof-card__triangle {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 72px solid transparent;
  border-right: 72px solid transparent;
  border-bottom: 118px solid var(--gold);
  opacity: 0.98;
}
.proof-card__top {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}
.proof-card__number {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 46px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.proof-card__label {
  margin: 8px auto 0;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  line-height: 1.45;
  max-width: 168px;
  color: rgba(23, 26, 27, 0.62);
  text-transform: uppercase;
}
.proof-card__person {
  position: relative;
  z-index: 1;
  width: 100%;
}
.proof-card__name {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.proof-card__role {
  margin: 5px auto 0;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(23, 26, 27, 0.55);
  max-width: 190px;
  line-height: 1.45;
}
.proof-card__portrait {
  border-radius: 14px;
  background: #1a1a1a;
  overflow: hidden;
  min-height: 100%;
}
.proof-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  filter: grayscale(1) contrast(1.08);
}
.proof-dots {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.proof-dot {
  height: 8px;
  width: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.proof-dot.is-on {
  width: 26px;
  background: #fff;
}

.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(0,0,0,.05); background: rgba(255,255,255,.9); backdrop-filter: blur(12px); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand span { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -0.04em; }
.mark,
.circle-mark { width: 36px; height: 36px; display: block; }
.nav-desktop { display: none; align-items: center; gap: 32px; }
.site-header .nav-desktop a:not(.btn) { font-size: 15px; font-weight: 500; color: rgba(23,26,27,.8); }
.site-header .nav-desktop a:not(.btn):hover { color: var(--ink); }
.nav-toggle { background: none; border: 0; padding: 8px; cursor: pointer; display: block; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); }
.nav-toggle span + span { margin-top: 6px; }
.nav-mobile { display: none; border-top: 1px solid rgba(0,0,0,.05); background: #fff; padding: 16px 20px 24px; }
.nav-mobile.is-open { display: block; }
.nav-mobile a { display: block; padding: 8px 0; font-weight: 500; }
@media (min-width: 768px) {
  .site-header .nav-desktop { display: flex; }
  .site-header .nav-toggle,
  .site-header .nav-mobile { display: none !important; }
}

.hero { overflow: hidden; background: #fff; padding: 40px 0 32px; }
.hero__grid { display: grid; gap: 48px; align-items: center; }
.hero h1 { margin: 16px 0 0; font-size: clamp(48px, 8vw, 84px); font-weight: 600; line-height: 0.95; letter-spacing: -0.055em; }
.lede { margin: 24px 0 0; max-width: 36rem; font-size: 18px; line-height: 1.65; color: rgba(23,26,27,.7); }
.quote-card { margin-top: 40px; max-width: 28rem; border-radius: 16px; border: 1px solid rgba(0,0,0,.08); background: var(--cream); padding: 20px; }
.quote-card .stat { margin: 0; font-size: 36px; font-weight: 600; letter-spacing: -0.04em; }
.quote-card p { margin: 4px 0 0; font-size: 14px; color: rgba(23,26,27,.7); }
.quote-card .who { margin-top: 16px; font-size: 14px; font-weight: 500; color: var(--ink); }
.quote-card .role { margin: 0; font-size: 12px; color: var(--mute); }
@media (min-width: 1024px) { .hero { padding-top: 64px; } .hero__grid { grid-template-columns: 1.05fr 0.95fr; } .lede { font-size: 20px; } }

.stats { border-block: 1px solid rgba(0,0,0,.05); background: var(--cream); padding: 24px 0; }
.stats__row { display: flex; flex-wrap: wrap; gap: 32px; }
.stat-k { margin: 0; font-size: 30px; font-weight: 600; letter-spacing: -0.04em; }
.stat-v { margin: 0; font-size: 14px; color: var(--mute); }

/* Didero-style credibility banner */
.cred-banner {
  position: relative;
  overflow: hidden;
  background: #4a96f7;
  color: #fff;
  padding: 48px 0;
}
.cred-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 64px);
  width: min(1320px, calc(100% - 40px));
  margin-inline: auto;
}
.cred-banner__word {
  margin: 0;
  font-size: clamp(64px, 13.5vw, 172px);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.045em;
  line-height: 0.88;
  white-space: nowrap;
  flex: 1 1 auto;
  min-width: 0;
}
.cred-banner__glow-anchor {
  position: relative;
  display: inline-block;
}
.cred-banner__orb {
  position: absolute;
  right: -0.08em;
  top: 52%;
  width: 0.72em;
  height: 0.72em;
  transform: translateY(-50%);
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 42% 38%, rgba(255,255,255,.72) 0%, rgba(255,255,255,.28) 34%, rgba(74,150,247,.15) 58%, transparent 72%);
}
.cred-banner__orb::before {
  content: "";
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: cover;
  mix-blend-mode: soft-light;
  opacity: 0.55;
}
.cred-banner__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: clamp(12px, 1.35vw, 15px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 2.1;
  text-align: left;
}
.cred-banner__facts li {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.cred-banner__icon {
  display: inline-flex;
  align-items: center;
}
.cred-banner__icon svg {
  width: 14px;
  height: 14px;
  display: block;
}
@media (max-width: 900px) {
  .cred-banner { padding: 40px 0; }
  .cred-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .cred-banner__word { font-size: clamp(56px, 22vw, 96px); }
  .cred-banner__facts { line-height: 1.85; }
  .cred-banner__facts li { white-space: normal; }
}
@media (min-width: 768px) {
  .cred-banner { padding: 56px 0; }
  .cred-banner__inner { width: min(1320px, calc(100% - 64px)); }
}
@media (min-width: 1200px) {
  .cred-banner { padding: 64px 0; }
}

.marquee { overflow: hidden; padding: 56px 0 0; background: #fff; }
.marquee__label,
.marquee > .kicker {
  text-align: center;
  margin-bottom: 28px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.marquee-track { display: flex; width: max-content; gap: 56px; padding-inline: 32px; animation: marquee 32s linear infinite; }
.marquee-track span {
  font-family: var(--display);
  white-space: nowrap;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.marquee-rule {
  width: min(720px, 86%);
  height: 1px;
  margin: 52px auto 0;
  background: linear-gradient(90deg, transparent 0%, rgba(69,133,238,.45) 50%, transparent 100%);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* Didero-style product video section */
.product-showcase {
  padding: 56px 0 88px;
  background: #fff;
  text-align: center;
}
.product-showcase__title {
  margin: 0 auto;
  font-size: clamp(36px, 5.2vw, 58px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
  max-width: none;
  color: var(--ink);
}
.product-showcase__frame {
  margin: 48px 0 0;
  padding-inline: clamp(16px, 3vw, 32px);
  padding-bottom: 0;
}
.product-showcase + .cta-defense {
  margin-top: 0;
}

@media (min-width: 769px) {
  .product-showcase {
    padding-bottom: 96px;
  }
}

.demo-video {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  aspect-ratio: 16 / 9.4;
  border-radius: 28px;
  overflow: hidden;
  background: #e8ecef;
  box-shadow: 0 18px 48px rgba(23,26,27,.12);
}
.demo-video--has-src {
  cursor: pointer;
  background: #0f1a18;
}
.demo-video--has-src .demo-video__media {
  z-index: 1;
}
.demo-video--has-src .demo-video__play {
  z-index: 3;
}
.demo-video__poster {
  position: absolute;
  inset: 0;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.demo-video.is-playing .demo-video__poster {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.demo-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
.demo-video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 72px;
  height: 72px;
  margin: -36px 0 0 -36px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255,255,255,.38);
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, background 0.2s ease;
}
.demo-video__play:hover { transform: scale(1.06); background: rgba(255,255,255,.48); }
.demo-video.is-playing .demo-video__play { display: none; }
.demo-video__play-icon {
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #fff;
  transform: translateX(3px);
}

.demo-ui {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 168px 1fr;
  font-size: 11px;
}
.demo-ui__side {
  background: #121f1d;
  color: rgba(255,255,255,.55);
  padding: 18px 14px;
}
.demo-ui__logo {
  margin: 0 0 22px;
  font-size: 13px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.04em;
  color: #fff;
}
.demo-ui__nav {
  display: grid;
  gap: 10px;
}
.demo-ui__nav span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
}
.demo-ui__nav span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  flex-shrink: 0;
}
.demo-ui__nav .is-active {
  color: #5ecfc0;
}
.demo-ui__nav .is-active::before {
  border-color: #5ecfc0;
  background: #5ecfc0;
  transform: rotate(45deg);
  border-radius: 2px;
}
.demo-ui__main {
  background: linear-gradient(180deg, #f3f5f7 0%, #eef1f4 100%);
  padding: 20px 24px;
  overflow: hidden;
}
.demo-ui__table { opacity: .92; }
.demo-ui__thead,
.demo-ui__row {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
}
.demo-ui__thead {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(23,26,27,.45);
  border-bottom: 1px solid rgba(23,26,27,.08);
}
.demo-ui__row {
  font-size: 11px;
  color: rgba(23,26,27,.78);
  border-bottom: 1px solid rgba(23,26,27,.05);
}
.demo-ui__row span:first-child { font-weight: 600; color: var(--ink); }

.demo-float {
  position: absolute;
  z-index: 2;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(23,26,27,.18);
  pointer-events: none;
}
.demo-float--menu {
  left: 19%;
  top: 34%;
  width: 118px;
  padding: 12px;
  background: rgba(30,38,40,.88);
  animation: float-card 6s ease-in-out infinite;
}
.demo-float__list {
  height: 52px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  margin-bottom: 10px;
}
.demo-float__btn {
  display: block;
  height: 28px;
  border-radius: 999px;
  background: var(--blue);
}
.demo-float--calendar {
  right: 8%;
  top: 8%;
  width: 132px;
  padding: 12px;
  background: #1a2f2b;
  animation: float-card 7s ease-in-out infinite 0.4s;
}
.demo-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.demo-cal span {
  aspect-ratio: 1;
  border-radius: 4px;
  background: rgba(255,255,255,.08);
}
.demo-cal .is-range { background: #3eb8a8; }
.demo-cal .is-check {
  position: relative;
  background: #3eb8a8;
}
.demo-cal .is-check::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 8px;
  color: #fff;
}
.demo-float--roi {
  right: 14%;
  top: 42%;
  width: 108px;
  padding: 12px;
  background: rgba(255,255,255,.94);
  animation: float-card 5.5s ease-in-out infinite 0.2s;
}
.demo-float--roi p {
  margin: 0 0 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.demo-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 44px;
}
.demo-bars i {
  flex: 1;
  height: var(--h);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #5ecfc0, #3eb8a8);
}
.demo-float--avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #7ee8dc, #2f9d8f 70%);
  box-shadow: 0 8px 24px rgba(47,157,143,.45);
}
.demo-float--avatar-a { left: 54%; top: 18%; animation: float-card 4.8s ease-in-out infinite; }
.demo-float--avatar-b { right: 22%; top: 58%; animation: float-card 5.2s ease-in-out infinite 0.6s; }

@media (max-width: 768px) {
  .product-showcase { padding: 40px 0 72px; }
  .product-showcase__frame { margin-top: 32px; }
  .demo-video { border-radius: 20px; aspect-ratio: 4 / 3; }
  .demo-ui { grid-template-columns: 120px 1fr; }
  .demo-float--menu,
  .demo-float--calendar,
  .demo-float--roi,
  .demo-float--avatar { transform: scale(0.82); }
}

.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 112px 0; } }
.section h2 { margin: 12px 0 0; font-size: clamp(32px, 5vw, 60px); font-weight: 600; letter-spacing: -0.045em; max-width: 48rem; }
.section-title { font-size: 32px; }
.section-title-sm { font-size: 28px; margin: 0; }
.sub { margin: 16px 0 0; max-width: 40rem; font-size: 18px; line-height: 1.6; color: rgba(23,26,27,.7); }
.bg-ink { background: var(--ink); color: #fff; }
.bg-ink .kicker, .bg-deep .kicker { color: rgba(255,255,255,.45); }
.bg-ink .sub, .bg-deep .sub { color: rgba(255,255,255,.65); }
.bg-cream { background: var(--cream); }
.bg-deep { background: var(--deep); color: #fff; }
.bg-deep .kicker { color: var(--gold); }
.bg-gold { background: var(--gold); }
.stage-wrap { margin-top: 40px; }

.stage { position: relative; height: 420px; }
@media (min-width: 768px) { .stage { height: 520px; } }
.stage__inner { position: absolute; inset: 0; overflow: hidden; border-radius: 28px; background: var(--deep); box-shadow: 0 40px 80px -30px rgba(3,46,52,.65); display: flex; flex-direction: column; padding: 16px; }
.grid-dots { position: absolute; inset: 0; opacity: .7; background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px); background-size: 18px 18px; }
.scanline { pointer-events: none; position: absolute; left: 0; right: 0; height: 96px; background: linear-gradient(to bottom, transparent, rgba(251,232,75,.2), transparent); animation: scan 3.6s ease-in-out infinite; }
@keyframes scan { 0% { transform: translateY(-20%); opacity: 0; } 15% { opacity: 1; } 100% { transform: translateY(320%); opacity: 0; } }
@keyframes pulse-dot { 50% { opacity: .4; transform: scale(.85); } }
@keyframes float-card { 50% { transform: translateY(-8px); } }
.stage__top { position: relative; display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,.7); }
.mono { font-family: var(--mono); letter-spacing: .12em; }
.dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-right: 8px; animation: pulse-dot 1.4s infinite; }
.stage__grid { position: relative; margin-top: 16px; flex: 1; display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 768px) { .stage__inner { padding: 24px; } .stage__grid { grid-template-columns: 7fr 5fr; } }
.panel { border-radius: 16px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05); padding: 16px; }
.heat { margin-top: 12px; display: grid; grid-template-columns: repeat(8, 1fr); gap: 6px; }
.heat i { aspect-ratio: 1; border-radius: 2px; display: block; background: rgba(255,255,255,.08); }
.heat i.hot { background: #fbe84b; }
.heat i.mid { background: rgba(69,133,238,.85); }
.metrics { margin-top: 16px; display: flex; gap: 24px; font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,.7); }
.metrics strong { display: block; font-size: 24px; font-weight: 500; color: #fff; }
.gold { color: var(--gold); }
.alert-card { border-radius: 16px; border: 1px solid rgba(255,255,255,.1); background: var(--ink); padding: 16px; color: #fff; animation: float-card 5s ease-in-out infinite; }
.alert-card h3 { margin: 8px 0 0; font-size: 18px; }
.pill { display: inline-flex; margin-top: 12px; border-radius: 999px; background: var(--gold); color: var(--ink); font-size: 11px; font-weight: 600; padding: 2px 10px; }
.evidence { display: none; margin-top: 12px; border-radius: 16px; border: 1px solid rgba(255,255,255,.1); background: #fff; color: var(--ink); padding: 16px; }
@media (min-width: 768px) { .evidence { display: block; } }

.kicker--brand { color: var(--blue); }

/* Didero-style paired tab + visual sections (shared column grid) */
.agents-didero-pair {
  padding: 72px 0 80px;
  background: #fff;
}
.agents-didero-pair__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 1024px) {
  .agents-didero-pair__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    row-gap: 56px;
    column-gap: 0;
  }
  .agents-didero-pair__left--modules {
    grid-column: 1;
    grid-row: 1;
    padding-right: clamp(24px, 3vw, 44px);
    border-bottom: 0;
  }
  .agents-didero-pair__visual--modules {
    grid-column: 2;
    grid-row: 1;
    border-bottom: 0;
  }
  .agents-didero-pair__visual--industries {
    grid-column: 1;
    grid-row: 2;
  }
  .agents-didero-pair__left--industries {
    grid-column: 2;
    grid-row: 2;
    padding-left: clamp(24px, 3vw, 44px);
  }
}
.agents-didero-pair__left {
  display: flex;
  flex-direction: column;
}
.agents-didero-pair__visual {
  min-height: 0;
  display: flex;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .agents-didero-pair__left,
  .agents-didero-pair__visual {
    align-self: stretch;
  }
}
@media (max-width: 1023px) {
  .agents-didero-pair {
    padding: 56px 0 64px;
  }
  .agents-didero-pair__grid {
    row-gap: 48px;
  }
  .agents-didero-pair__visual--modules {
    order: -1;
    margin-bottom: 0;
  }
  .agents-didero-pair__left--industries {
    margin-top: 0;
  }
}
.agents-didero__head {
  flex-shrink: 0;
  padding-bottom: 4px;
}
.agents-didero__title {
  margin: 10px 0 0;
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
  max-width: 20rem;
}
.agents-didero__intro {
  margin: 14px 0 0;
  max-width: 32rem;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(23, 26, 27, 0.7);
}
.agents-didero__tabs {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.agent-tab {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  padding: 14px 36px 14px 20px;
  cursor: pointer;
  color: rgba(23, 26, 27, 0.34);
  transition: color 0.2s ease, background 0.25s ease;
}
.agent-tab:last-child {
  border-bottom: 0;
}
.agent-tab span {
  font-family: var(--display);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
}
.agent-tab:hover {
  color: rgba(23, 26, 27, 0.6);
}
.agent-tab.is-on {
  color: var(--ink);
  background: linear-gradient(90deg, rgba(69, 133, 238, 0.16) 0%, rgba(69, 133, 238, 0) 72%);
}
.agent-tab.is-on::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--blue);
}
.agent-tab.is-on::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  transform: translateY(-50%);
}
.agent-visual {
  position: relative;
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 40vw, 480px);
  overflow: hidden;
  background: #c8d0d8;
}
@media (min-width: 1024px) {
  .agents-didero-pair__visual .agent-visual {
    min-height: clamp(380px, 36vw, 520px);
  }
}
.agent-visual__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.agent-visual__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.06);
  pointer-events: none;
  z-index: 1;
}
.agent-visual__bg {
  position: absolute;
  inset: -32px;
  background-size: cover;
  background-position: center;
  transition: opacity 0.35s ease;
  z-index: 0;
  transform: scale(1.08);
  filter: blur(4px);
  will-change: transform, filter;
}
.agent-visual__bg--sod { background-image: url('../img/modules/sod.jpg'); }
.agent-visual__bg--monitor { background-image: url('../img/modules/monitor.jpg'); }
.agent-visual__bg--reporting { background-image: url('../img/modules/reporting.jpg'); }
.agent-visual__bg--uar { background-image: url('../img/modules/uar.jpg'); }
.agent-visual__bg--itgc { background-image: url('../img/modules/itgc.jpg'); }
.agent-visual__bg--alerts { background-image: url('../img/modules/alerts.jpg'); }
.agent-visual__bg--autocorrect { background-image: url('../img/modules/autocorrect.jpg'); }
.agent-visual__bg--manufacturing { background-image: url('../img/industries/manufacturing.jpg'); }
.agent-visual__bg--financial { background-image: url('../img/industries/financial.jpg'); }
.agent-visual__bg--energy { background-image: url('../img/industries/energy.jpg'); }
.agent-visual__bg--fmcg { background-image: url('../img/industries/fmcg.jpg'); }
.agent-visual__bg--chemicals { background-image: url('../img/industries/chemicals.jpg'); }
.agent-visual__bg--hightech { background-image: url('../img/industries/hightech.jpg'); }
.agent-visual__bg--telecom { background-image: url('../img/industries/telecom.jpg'); }
.agent-visual__bg--public { background-image: url('../img/industries/public.jpg'); }
.agent-visual__caption {
  position: absolute;
  z-index: 2;
  left: clamp(16px, 2.5vw, 28px);
  right: clamp(16px, 2.5vw, 28px);
  bottom: clamp(16px, 2.5vw, 28px);
  background: var(--blue);
  color: #fff;
  padding: clamp(18px, 2.2vw, 26px) clamp(20px, 2.4vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}
.agent-visual__caption-title {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.agent-visual__caption p {
  margin: 10px 0 0;
  font-size: clamp(14px, 1.5vw, 15px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.96);
  max-width: none;
}

/* Legacy single-section classes (kept for inner pages if referenced) */
.agents-didero {
  padding: 112px 0;
  background: #fff;
}
.agents-didero--industries {
  padding-top: 0;
}
.agents-didero__split {
  display: grid;
  gap: 40px;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .agents-didero__split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    min-height: 640px;
  }
  .agents-didero__split--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .agents-didero__split--reverse .agents-didero__right {
    order: 1;
  }
  .agents-didero__split--reverse .agents-didero__left {
    order: 2;
    padding-left: clamp(32px, 4vw, 56px);
  }
  .agents-didero__left {
    padding-right: clamp(32px, 4vw, 56px);
    display: flex;
    flex-direction: column;
  }
  .agents-didero__right {
    min-height: 640px;
  }
}
@media (max-width: 1023px) {
  .agents-didero {
    padding: 80px 0;
  }
  .agents-didero--industries {
    padding-top: 0;
  }
  .agents-didero__tabs {
    margin-top: 32px;
  }
}

.modules { display: grid; gap: 40px; margin-top: 56px; }
@media (min-width: 1024px) { .modules { grid-template-columns: 1fr 1.1fr; } }
.mod-btn { width: 100%; text-align: left; background: none; border: 0; border-bottom: 1px solid rgba(0,0,0,.1); padding: 16px 0; cursor: pointer; color: var(--mute); }
.mod-btn.is-on, .mod-btn:hover { color: var(--ink); }
.mod-btn span { font-family: var(--display); font-size: clamp(20px, 2.4vw, 24px); font-weight: 600; letter-spacing: -0.03em; }
.mod-panel { border-radius: 28px; background: var(--cream); padding: 32px; }
.mod-panel h3 { margin: 12px 0 0; font-size: 30px; font-weight: 600; letter-spacing: -0.04em; }
.sap-run { margin-top: 32px; overflow: hidden; border-radius: 16px; background: var(--deep); color: #fff; padding: 20px; }
.step { display: flex; align-items: center; gap: 12px; margin-top: 8px; border-radius: 12px; background: rgba(255,255,255,.05); padding: 10px 12px; font-size: 14px; }
.step b { width: 24px; height: 24px; border-radius: 50%; background: var(--gold); color: var(--ink); display: grid; place-items: center; font-family: var(--mono); font-size: 11px; }

.grid-4, .grid-3 { display: grid; gap: 16px; margin-top: 40px; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card, .addon { border-radius: 24px; background: #fff; padding: 24px; }
.card--cream { background: var(--cream); }
.addon { border: 1px solid rgba(0,0,0,.08); }
.card h3, .addon h3 { margin: 0; font-size: 20px; font-weight: 600; letter-spacing: -0.03em; }
.card p, .addon p { margin: 12px 0 0; font-size: 14px; line-height: 1.6; color: rgba(23,26,27,.7); }
.deploy-card { border-radius: 24px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05); padding: 24px; }
.deploy-card h3 { margin: 0; font-size: 24px; color: var(--gold); }
.deploy-card p { margin: 8px 0 0; font-size: 14px; color: rgba(255,255,255,.7); }

.roi { display: grid; gap: 32px; margin-top: 48px; }
@media (min-width: 1024px) { .roi { grid-template-columns: 1fr 1fr; } }
.field { display: block; margin-bottom: 24px; }
.field div { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; }
.field input[type="range"] { width: 100%; accent-color: var(--ink); height: 6px; }
.roi-out { border-radius: 28px; background: var(--ink); color: #fff; padding: 32px; }
.big { margin: 24px 0 0; font-size: 48px; font-weight: 600; letter-spacing: -0.04em; color: var(--gold); }
.roi-split { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; }
.roi-num { font-size: 24px; margin: 0; }
.roi-label { color: rgba(255,255,255,.55); font-size: 14px; margin: 0; }
.fineprint { margin-top: 24px; font-size: 12px; color: rgba(255,255,255,.4); }

/* Didero-style ROI calculator */
.roi-didero {
  padding: 80px 0;
  background: var(--cream);
}
@media (min-width: 768px) {
  .roi-didero { padding: 112px 0; }
}
.roi-didero__split {
  display: grid;
  gap: 40px;
  align-items: start;
}
@media (min-width: 1024px) {
  .roi-didero__split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
  }
}
.roi-didero__title {
  margin: 12px 0 0;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
  max-width: 14ch;
}
.roi-didero__intro {
  margin: 18px 0 0;
  max-width: 38rem;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(23, 26, 27, 0.72);
}
.roi-didero__fields {
  margin-top: 36px;
}
.roi-field {
  display: block;
  margin-bottom: 28px;
}
.roi-field__label,
.roi-field__val {
  display: block;
  font-size: 14px;
  line-height: 1.4;
}
.roi-field {
  position: relative;
}
.roi-field__label {
  color: rgba(23, 26, 27, 0.72);
  margin-bottom: 10px;
}
.roi-field__val {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 600;
  color: var(--ink);
}
.roi-field--select .roi-field__label {
  margin-bottom: 12px;
}
.roi-didero__select {
  width: 100%;
  padding: 14px 40px 14px 16px;
  border: 1px solid rgba(23, 26, 27, 0.18);
  border-radius: 6px;
  background: transparent;
  font-size: 15px;
  color: var(--ink);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23171a1b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.roi-didero__select:focus {
  outline: 2px solid rgba(69, 133, 238, 0.35);
  outline-offset: 2px;
}
.roi-didero__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  margin-top: 8px;
  border-radius: 2px;
  background: rgba(23, 26, 27, 0.14);
  cursor: pointer;
}
.roi-didero__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  border: 0;
  box-shadow: 0 0 0 2px var(--cream);
}
.roi-didero__range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  border: 0;
  box-shadow: 0 0 0 2px var(--cream);
}
.roi-didero__range::-moz-range-track {
  height: 2px;
  background: rgba(23, 26, 27, 0.14);
  border: 0;
}
.roi-didero__card {
  border-radius: 20px;
  background: var(--blue);
  color: #fff;
  padding: clamp(28px, 3.5vw, 40px);
}
.roi-didero__card-kicker {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.roi-didero__stat {
  margin-top: 28px;
}
.roi-didero__stat-label {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
}
.roi-didero__stat-value {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 64px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.roi-didero__divider {
  margin: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.roi-didero__fineprint {
  margin: 28px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}
.roi-didero__fineprint strong {
  color: #fff;
  font-weight: 600;
}
.roi-didero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 28px;
  padding: 16px 24px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s ease;
}
.roi-didero__cta:hover {
  background: #f2f2f2;
}

/* Didero-style deployment section */
.deploy-didero {
  padding: 80px 0;
  background: #fff;
}
@media (min-width: 768px) {
  .deploy-didero { padding: 112px 0; }
}
.deploy-didero__inner {
  text-align: center;
}
.deploy-didero__title {
  margin: 0 auto;
  max-width: 18ch;
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}
.deploy-didero__intro {
  margin: 20px auto 0;
  max-width: 42rem;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(23, 26, 27, 0.68);
}
.deploy-didero__grid {
  display: grid;
  gap: 36px 32px;
  margin-top: 56px;
  text-align: left;
}
@media (min-width: 640px) {
  .deploy-didero__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 36px;
  }
}
@media (min-width: 1024px) {
  .deploy-didero__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px 40px;
    margin-top: 64px;
  }
}
.deploy-didero__item-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.deploy-didero__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--blue);
}
.deploy-didero__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.deploy-didero__item-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
}
.deploy-didero__item-body {
  margin: 10px 0 0 40px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(23, 26, 27, 0.62);
}

/* Didero-style yellow partner strip */
.partner-strip {
  background: var(--gold);
  padding: 28px 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .partner-strip { padding: 32px 0; }
}
.partner-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (min-width: 900px) {
  .partner-strip__inner {
    flex-direction: row;
    align-items: center;
    gap: clamp(32px, 5vw, 64px);
  }
}
.partner-strip__title {
  margin: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--ink);
}
.partner-strip__line {
  display: block;
  white-space: nowrap;
}
.partner-strip__marquee {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
@media (min-width: 900px) {
  .partner-strip__marquee {
    flex: 1;
  }
}
.partner-strip__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(32px, 4vw, 56px);
  padding-right: clamp(32px, 4vw, 56px);
  animation: partner-marquee 26s linear infinite;
}
.partner-strip__track:hover {
  animation-play-state: paused;
}
@keyframes partner-marquee {
  to { transform: translateX(-50%); }
}
.partner-strip__logo {
  font-family: var(--display);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  opacity: 0.9;
  white-space: nowrap;
  flex-shrink: 0;
}
.partner-strip__logo--sap {
  font-weight: 800;
  letter-spacing: -0.04em;
}
.partner-strip__logo--rise {
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.partner-strip__logo--caps {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.blog-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.blog-head h2 { margin: 0; font-size: 36px; }
.blog-head a { font-size: 14px; font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }
.post-tease h3 { margin: 12px 0 0; font-size: 24px; letter-spacing: -0.03em; }
.post-tease:hover h3 { text-decoration: underline; }
.post-tease p:last-child { color: rgba(23,26,27,.7); font-size: 14px; line-height: 1.6; }

/* Didero-style defense banner below product video */
.cta-defense {
  position: relative;
  overflow: hidden;
  min-height: clamp(600px, 78vh, 820px);
  display: grid;
  place-items: center;
}
.cta-defense__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.cta-defense__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(72, 145, 220, 0.18) 0%, transparent 55%);
  pointer-events: none;
}
.cta-defense__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px 56px;
  max-width: 920px;
}
.cta-defense__ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.95);
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(2px);
}
.cta-defense__ring .circle-mark {
  width: 56px;
  height: 56px;
}
.cta-defense__title {
  margin: 0;
  font-size: clamp(34px, 5.4vw, 58px);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
  text-shadow: 0 1px 18px rgba(16, 48, 72, 0.35);
}

@media (max-width: 768px) {
  .cta-defense {
    min-height: clamp(520px, 72vh, 700px);
  }
  .cta-defense__bg {
    background-position: 62% center;
  }
  .cta-defense__ring {
    width: 84px;
    height: 84px;
    margin-bottom: 24px;
  }
  .cta-defense__ring .circle-mark {
    width: 50px;
    height: 50px;
  }
}

.cta-close h2 { margin: 0; max-width: 48rem; font-size: clamp(36px, 6vw, 60px); letter-spacing: -0.05em; }
.cta-close p { margin: 16px 0 0; max-width: 36rem; font-size: 18px; color: rgba(23,26,27,.75); }
.cta-close .btn { margin-top: 32px; }

/* Didero-style closing CTA hero */
.cta-close-didero {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 88vh, 920px);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
}
.cta-close-didero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cta-close-didero__bg {
  position: absolute;
  inset: -32px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: blur(2.5px);
  transform: scale(1.06);
  will-change: transform;
}
.cta-close-didero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.38) 55%, rgba(0, 0, 0, 0.48) 100%),
    rgba(0, 0, 0, 0.12);
  pointer-events: none;
}
.cta-close-didero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px 64px;
  max-width: 920px;
}
.cta-close-didero__logo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
.cta-close-didero__logo .circle-mark {
  width: 52px;
  height: 52px;
}
.cta-close-didero__kicker {
  margin: 30px 0 0;
  max-width: 30rem;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}
.cta-close-didero__title {
  margin: 24px 0 0;
  font-size: clamp(34px, 5.4vw, 60px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.06;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.3);
}
.cta-close-didero__line {
  display: block;
}
.cta-close-didero__btn {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cta-close-didero__btn:hover {
  background: #3a75de;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .cta-close-didero {
    min-height: clamp(500px, 78vh, 760px);
  }
  .cta-close-didero__bg {
    background-position: 62% center;
    filter: blur(2px);
    transform: scale(1.08);
  }
  .cta-close-didero__logo {
    width: 76px;
    height: 76px;
  }
  .cta-close-didero__logo .circle-mark {
    width: 46px;
    height: 46px;
  }
}

.site-footer { background: var(--ink); color: #fff; }
.site-footer__grid { display: grid; gap: 40px; padding: 64px 0; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer a:hover { color: var(--gold); }
.muted { margin-top: 20px; max-width: 24rem; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.65); }
.foot-links { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.foot-addr { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.7); }
.foot-bar { border-top: 1px solid rgba(255,255,255,.1); }
.foot-bar__inner { display: flex; flex-direction: column; gap: 12px; padding: 24px 0; font-size: 12px; color: rgba(255,255,255,.45); }
@media (min-width: 768px) { .foot-bar__inner { flex-direction: row; justify-content: space-between; align-items: center; } }
.foot-legal { display: flex; gap: 20px; }

/* Didero-style footer */
.foot-didero {
  background: var(--blue);
  color: #fff;
  padding: 40px 0 32px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .foot-didero { padding: 48px 0 36px; }
}
.foot-didero a {
  color: inherit;
  text-decoration: none;
}
.foot-didero a:hover {
  opacity: 0.82;
}
.foot-didero__top {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .foot-didero__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }
}
.foot-didero__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}
.foot-didero__meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .foot-didero__meta {
    flex-direction: row;
    align-items: flex-start;
    gap: 28px;
  }
}
.foot-didero__addr {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  font-style: normal;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}
.foot-didero__badges {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.foot-didero__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.foot-didero__badge-icon {
  width: 40px;
  height: 40px;
  color: #fff;
}
.foot-didero__badge-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.foot-didero__badge-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
}
.foot-didero__brand {
  display: flex;
  align-items: flex-end;
  gap: clamp(12px, 2vw, 24px);
  margin-top: clamp(36px, 6vw, 64px);
  padding-bottom: clamp(28px, 5vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.foot-didero__wordmark {
  margin: 0;
  font-size: clamp(72px, 17.5vw, 210px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 0.88;
  color: #fff;
  white-space: nowrap;
}
.foot-didero__mark {
  flex-shrink: 0;
  width: clamp(48px, 6vw, 72px);
  height: clamp(48px, 6vw, 72px);
  margin-bottom: clamp(8px, 1.2vw, 16px);
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
}
.foot-didero__mark .circle-mark {
  width: clamp(30px, 4vw, 44px);
  height: clamp(30px, 4vw, 44px);
}
.foot-didero__bottom {
  padding-top: 28px;
}
.foot-didero__bottom--legal {
  padding-top: 0;
}
.foot-didero__backers-kicker {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.foot-didero__backers-marquee {
  overflow: hidden;
  width: 100%;
  margin-top: 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}
.foot-didero__backers-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(40px, 6vw, 72px);
  padding-right: clamp(40px, 6vw, 72px);
  animation: foot-backers-marquee 28s linear infinite;
}
.foot-didero__backers-track:hover {
  animation-play-state: paused;
}
@keyframes foot-backers-marquee {
  to { transform: translateX(-50%); }
}
.foot-didero__backer {
  font-family: var(--display);
  font-size: clamp(15px, 1.7vw, 20px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.42);
  white-space: nowrap;
  flex-shrink: 0;
}
.foot-didero__backer--ms {
  font-weight: 600;
  letter-spacing: -0.01em;
}
.foot-didero__backer--sap {
  font-weight: 800;
  letter-spacing: -0.04em;
}
.foot-didero__backer--caps {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
}
.foot-didero__legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}
@media (min-width: 768px) {
  .foot-didero__legal {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}
.foot-didero__legal p {
  margin: 0;
}
.foot-didero__legal-links {
  display: flex;
  gap: 20px;
}

.page-hero { padding: 96px 0; }
.page-hero h1, .legal h1, .single h1 { margin: 16px 0 0; font-size: clamp(40px, 7vw, 72px); font-weight: 600; letter-spacing: -0.05em; }
.blog-list { background: var(--cream); }
.blog-item { display: block; border-top: 1px solid rgba(0,0,0,.1); padding-top: 32px; margin-top: 40px; }
.blog-item h2 { margin: 12px 0 0; font-size: 30px; }
.read-more { display: inline-block; margin-top: 16px; font-size: 14px; font-weight: 600; }
.jobs { margin-top: 32px; border-top: 1px solid rgba(0,0,0,.1); }
.job { display: flex; flex-direction: column; gap: 4px; padding: 24px 0; border-bottom: 1px solid rgba(0,0,0,.1); }
.job-title { margin: 4px 0 0; font-size: 24px; font-weight: 600; }
.job-loc { letter-spacing: 0; }
@media (min-width: 768px) { .job { flex-direction: row; align-items: center; justify-content: space-between; } }
.legal, .single { max-width: 720px; margin: 0 auto; padding: 80px 20px; }
.legal-meta { margin-top: 12px; }
.post-date { margin-top: 32px; }
.prose p { font-size: 18px; line-height: 1.7; color: rgba(23,26,27,.8); }
.cred-grid { display: grid; gap: 16px; margin-top: 32px; }
@media (min-width: 640px) { .cred-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cred-grid { grid-template-columns: repeat(4, 1fr); } }
.posture { border-radius: 24px; background: var(--ink); color: #fff; padding: 24px; }
.posture-row { display: flex; justify-content: space-between; gap: 16px; margin-top: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 14px; }
.posture-row span:last-child { color: var(--gold); }
.security-split { display: grid; gap: 32px; margin-top: 64px; }
@media (min-width: 1024px) { .security-split { grid-template-columns: 1fr 1fr; } }
.trust-strip { border-block: 1px solid rgba(0,0,0,.05); background: #fff; padding: 32px 0; }
.trust-strip__grid { display: grid; gap: 24px; grid-template-columns: repeat(2, 1fr); text-align: center; }
.trust-strip__grid strong { display: block; font-size: 28px; letter-spacing: -0.04em; }
.trust-strip__grid span { font-size: 13px; color: var(--mute); }
@media (min-width: 768px) { .trust-strip__grid { grid-template-columns: repeat(4, 1fr); } }
.field-select select { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid rgba(0,0,0,.12); font-size: 15px; background: #fff; }
.roi-cta { margin-top: 24px; }
.industry-panel { min-height: 280px; }
