:root {
  --vz-yellow: #ffdd15;
  --vz-yellow-soft: #ffe85a;
  --vz-navy: #1b2360;
  --vz-navy-deep: #10173f;
  --vz-pulse: #00c896;
  --vz-coral: #ff6b5c;
  --vz-sky: #4a90e2;
  --vz-ink: #0e1130;
  --vz-slate-700: #4a5072;
  --vz-slate-500: #8087a8;
  --vz-slate-300: #d2d5e2;
  --vz-slate-100: #eef0f7;
  --vz-cream: #fbf6e3;
  --vz-paper: #fffcf1;
  --vz-white: #ffffff;
  --vz-success: #00b585;
  --vz-warning: #f5a623;
  --vz-error: #e5484d;
  --font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --font-text: "Geist", "Inter", system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--vz-paper);
  color: var(--vz-ink);
  font-family: var(--font-text);
}

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

:focus-visible {
  outline: 3px solid var(--vz-navy);
  outline-offset: 3px;
  border-radius: 4px;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 78px;
  padding: 14px clamp(20px, 4vw, 64px);
  background: color-mix(in srgb, var(--vz-paper) 88%, transparent);
  border-bottom: 1px solid rgba(27, 35, 96, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-end {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid rgba(27, 35, 96, 0.14);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--vz-navy);
  border-radius: 2px;
  transition: transform 300ms ease, opacity 300ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 15;
  display: flex;
  flex-direction: column;
  padding: calc(78px + 24px) clamp(20px, 6vw, 48px) 40px;
  background: var(--vz-paper);
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}

.mobile-nav.is-open {
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav a {
  padding: 20px 0;
  border-bottom: 1px solid var(--vz-slate-300);
  color: var(--vz-navy);
  font-family: var(--font-display);
  font-size: clamp(26px, 6vw, 36px);
  font-weight: 700;
  line-height: 1;
  transition: color 200ms ease, padding-left 200ms ease;
}

.mobile-nav a:hover {
  color: var(--vz-slate-700);
  padding-left: 8px;
}

.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 28px;
  border: 0 !important;
  border-radius: 14px;
  padding: 0 24px !important;
  background: var(--vz-navy);
  color: var(--vz-yellow) !important;
  font-family: var(--font-text) !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  text-align: center;
}

.mobile-nav-cta:hover {
  padding-left: 24px !important;
  opacity: 0.9;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--vz-navy);
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--vz-slate-700);
  font-size: 15px;
  font-weight: 600;
}

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

.nav-cta,
.button,
.contact-form button,
.appointment button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 14px;
  padding: 0 20px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.nav-cta,
.button.primary,
.contact-form button,
.appointment button {
  background: var(--vz-navy);
  color: var(--vz-yellow);
}

.button.secondary {
  background: rgba(27, 35, 96, 0.08);
  color: var(--vz-navy);
  border: 1px solid rgba(27, 35, 96, 0.16);
}

.nav-cta:hover,
.button:hover,
.contact-form button:hover,
.appointment button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(27, 35, 96, 0.18);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 0.94fr);
  align-items: center;
  gap: clamp(34px, 4vw, 72px);
  padding: clamp(48px, 7vw, 108px) clamp(20px, 6vw, 88px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 252, 241, 0.98) 0%, rgba(255, 252, 241, 0.86) 47%, rgba(255, 221, 21, 0.97) 47%),
    var(--vz-yellow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18px;
  background: repeating-linear-gradient(
    90deg,
    var(--vz-navy) 0 92px,
    var(--vz-yellow) 92px 184px
  );
}

.hero-mark {
  position: absolute;
  right: -10vw;
  top: 4vh;
  width: min(56vw, 680px);
  opacity: 0.08;
  pointer-events: none;
  animation: mark-drift 18s ease-in-out infinite;
}

.hero-mark img {
  width: 100%;
}

.hero-content {
  position: relative;
  max-width: 820px;
  animation: hero-rise 900ms ease both;
}

.eyebrow,
.mono {
  margin: 0;
  color: var(--vz-slate-500);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}


h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
}

h1 {
  margin: 18px 0 24px;
  color: var(--vz-navy);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.hero-copy {
  max-width: 680px;
  color: var(--vz-slate-700);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stage {
  position: relative;
  min-height: 860px;
  align-self: end;
  isolation: isolate;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 6% -9% 5% 5%;
  z-index: -1;
  border: 2px solid rgba(27, 35, 96, 0.15);
  border-radius: 42px 42px 0 42px;
  transform: rotate(4deg);
  animation: stage-rock 12s ease-in-out infinite;
}

.hero-photo {
  position: absolute;
  inset: 24px 0 86px 8%;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(27, 35, 96, 0.2);
  border-radius: 30px 30px 8px 30px;
  box-shadow: 0 34px 90px rgba(14, 17, 48, 0.22);
  animation: photo-rise 1050ms 120ms ease both;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(14, 17, 48, 0.34));
}

.hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  animation: photo-breathe 20s ease-in-out infinite;
}

.product-panel {
  position: absolute;
  right: auto;
  bottom: 22px;
  left: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  animation:
    panel-rise 950ms 180ms ease both,
    float-panel 7.5s 1.15s ease-in-out infinite;
}

.phone-shell {
  width: min(100%, 392px);
  min-height: 700px;
  padding: 22px;
  border: 10px solid var(--vz-navy);
  border-radius: 42px;
  background: var(--vz-paper);
  box-shadow: 0 30px 70px rgba(14, 17, 48, 0.28);
}

.hero-note {
  position: absolute;
  right: clamp(10px, 3vw, 34px);
  bottom: 44px;
  z-index: 2;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: min(48%, 300px);
  border: 1px solid rgba(27, 35, 96, 0.16);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 252, 241, 0.94);
  box-shadow: 0 22px 54px rgba(14, 17, 48, 0.18);
  animation:
    note-in 760ms 360ms ease both,
    float-note 6s 1.12s ease-in-out infinite;
}

.hero-note img {
  width: 58px;
  height: 58px;
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  color: var(--vz-navy);
  font-family: var(--font-display);
  font-size: 27px;
}

.hero-note span {
  margin-top: 2px;
  color: var(--vz-slate-700);
  line-height: 1.35;
}

.signal-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.8fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: center;
  padding: clamp(38px, 5vw, 68px) clamp(20px, 6vw, 88px);
  background: var(--vz-ink);
  color: var(--vz-paper);
}

.signal-strip p {
  max-width: 960px;
  margin: 0;
  color: var(--vz-paper);
  font-family: var(--font-display);
  font-size: clamp(31px, 4vw, 62px);
  font-weight: 600;
  line-height: 0.98;
}

.signal-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
}

.signal-strip span {
  border: 1px solid rgba(255, 252, 241, 0.18);
  border-radius: 999px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--vz-yellow);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: signal-glow 4.6s ease-in-out infinite;
}

.signal-strip span:nth-child(2) {
  animation-delay: 180ms;
}

.signal-strip span:nth-child(3) {
  animation-delay: 360ms;
}

.signal-strip span:nth-child(4) {
  animation-delay: 540ms;
}

.signal-strip span:nth-child(5) {
  animation-delay: 720ms;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  color: var(--vz-navy);
  font-size: 14px;
  font-weight: 700;
}

.appointment {
  margin-top: 24px;
  padding: 24px;
  border-radius: 18px;
  background: var(--vz-yellow);
  color: var(--vz-navy);
}

.appointment h2 {
  margin: 10px 0 8px;
  font-size: 34px;
}

.appointment p:not(.mono) {
  margin: 0 0 20px;
  color: rgba(27, 35, 96, 0.76);
  line-height: 1.45;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.quick-grid article {
  min-height: 112px;
  padding: 14px;
  border: 1px solid var(--vz-slate-300);
  border-radius: 14px;
  background: var(--vz-white);
}

.icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 8px;
  font-weight: 800;
}

.coral {
  background: rgba(255, 107, 92, 0.16);
  color: var(--vz-coral);
}

.mint {
  background: rgba(0, 200, 150, 0.16);
  color: var(--vz-pulse);
}

.sky {
  background: rgba(74, 144, 226, 0.16);
  color: var(--vz-sky);
}

.navy {
  background: rgba(27, 35, 96, 0.1);
  color: var(--vz-navy);
}

.metric {
  margin-top: 14px;
  padding: 18px;
  border-radius: 14px;
  background: var(--vz-slate-100);
}

.metric span {
  color: var(--vz-slate-500);
  font-weight: 700;
}

.metric strong {
  display: block;
  margin-top: 4px;
  color: var(--vz-navy);
  font-family: var(--font-display);
  font-size: 44px;
}

.metric small {
  color: var(--vz-slate-500);
  font-size: 22px;
}

.metric svg {
  width: 100%;
  height: 72px;
  margin-top: 8px;
}

.metric path {
  fill: none;
  stroke: var(--vz-navy);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.section,
.contact-section {
  padding: clamp(64px, 8vw, 116px) clamp(20px, 6vw, 88px);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 42px;
}

.section-heading h2,
.split-section h2,
.impact-copy h2,
.contact-copy h2 {
  margin: 14px 0 0;
  color: var(--vz-navy);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

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

.feature-grid article,
.security-grid article,
.status-list article,
.impact-stats article {
  border: 1px solid var(--vz-slate-300);
  border-radius: 14px;
  background: var(--vz-white);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.feature-grid article,
.security-grid article {
  padding: 28px;
}

.solutions-section {
  background: var(--vz-cream);
  border-top: 1px solid rgba(27, 35, 96, 0.08);
  border-bottom: 1px solid rgba(27, 35, 96, 0.08);
}

.solutions-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.solutions-header .section-heading {
  margin-bottom: 0;
}

.solutions-copy {
  margin: 0 0 6px;
  color: var(--vz-slate-700);
  font-size: 18px;
  line-height: 1.6;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.solution-spotlight {
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px solid rgba(42, 24, 16, 0.12);
  border-radius: 14px;
  padding: clamp(22px, 3vw, 38px);
  background:
    linear-gradient(135deg, rgba(216, 155, 46, 0.18), transparent 40%),
    #f8f1e7;
  color: #2a1810;
  box-shadow: 0 24px 72px rgba(42, 24, 16, 0.08);
}

.spotlight-body {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.78fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}

.spotlight-story {
  min-width: 0;
}

.spotlight-identity {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.spotlight-identity img {
  width: 82px;
  height: 82px;
}

.spotlight-identity .solution-top {
  margin: 0 0 16px;
}

.spotlight-identity .solution-top strong {
  background: rgba(200, 75, 49, 0.13);
  color: #7b2a18;
}

.spotlight-identity h3 {
  margin: 0;
  color: #2a1810;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.92;
}

.spotlight-audience {
  margin: 12px 0 0;
  color: #7b2a18;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.spotlight-description {
  max-width: 720px;
  margin: 28px 0 0;
  color: #2a1810;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.7vw, 40px);
  font-weight: 600;
  line-height: 1.08;
}

.spotlight-mission {
  max-width: 660px;
  margin: 18px 0 0;
  color: #6a554a;
  font-size: 18px;
  line-height: 1.6;
}

.spotlight-story .solution-highlights {
  margin-bottom: 0;
}

.spotlight-story .solution-highlights li {
  border-color: rgba(42, 24, 16, 0.1);
  background: white;
  color: #2a1810;
}

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

.spotlight-pillars section {
  min-height: 170px;
  border: 1px solid rgba(42, 24, 16, 0.1);
  border-radius: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.76);
  transition:
    transform 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease;
}

.spotlight-pillars h4,
.adoxy-today h4 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
}

.spotlight-pillars h4 {
  color: #2a1810;
  font-size: 25px;
}

.spotlight-pillars p {
  margin: 10px 0 0;
  color: #6a554a;
  font-size: 16px;
  line-height: 1.5;
}

.solution-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 14px;
  margin-top: 24px;
}

.solution-gallery figure {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(42, 24, 16, 0.12);
  border-radius: 14px;
  transition:
    transform 380ms ease,
    box-shadow 380ms ease;
}

.solution-gallery figure:first-child {
  min-height: 410px;
}

.solution-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.solution-gallery figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  border-radius: 8px;
  padding: 13px 15px;
  background: rgba(42, 24, 16, 0.8);
  color: #f8f1e7;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
}

.adoxy-preview {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 610px;
  isolation: isolate;
}

.adoxy-preview::before {
  content: "";
  position: absolute;
  inset: 44px 14px 18px;
  z-index: -1;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(74, 155, 142, 0.22), transparent 46%),
    rgba(200, 75, 49, 0.12);
  animation: preview-pulse 8s ease-in-out infinite;
}

.adoxy-ages {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: min(100%, 410px);
}

.adoxy-ages span {
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(42, 24, 16, 0.1);
  border-radius: 8px;
  padding: 12px;
  color: #2a1810;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.adoxy-ages b {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
}

.adoxy-ages .age-gold {
  background: #fff6e1;
}

.adoxy-ages .age-terracotta {
  background: #fbe9e2;
}

.adoxy-ages .age-green {
  background: #e4efe6;
}

.adoxy-phone {
  width: min(100%, 410px);
  min-height: 520px;
  display: grid;
  align-content: start;
  gap: 14px;
  margin-top: 12px;
  border: 9px solid #2a1810;
  border-radius: 38px;
  padding: 22px;
  background: #f8f1e7;
  box-shadow: 0 30px 72px rgba(42, 24, 16, 0.22);
  animation: adoxy-float 7s ease-in-out infinite;
}

.adoxy-app-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: #6a554a;
  font-size: 13px;
  font-weight: 700;
}

.adoxy-app-top span {
  color: #2a1810;
  font-family: var(--font-display);
  font-size: 27px;
}

.adoxy-today {
  border: 1px solid rgba(42, 24, 16, 0.1);
  border-radius: 16px;
  padding: 20px;
  background: white;
}

.adoxy-today small {
  display: block;
  color: #7b2a18;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.adoxy-today h4 {
  margin-top: 13px;
  color: #2a1810;
  font-size: 31px;
  line-height: 1.04;
}

.adoxy-today span {
  display: inline-flex;
  margin-top: 14px;
  color: #6a554a;
  font-weight: 700;
}

.adoxy-tools,
.adoxy-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.adoxy-tools span,
.adoxy-topics span {
  border-radius: 999px;
  padding: 9px 11px;
  font-size: 13px;
  font-weight: 700;
}

.adoxy-tools span:nth-child(1) {
  background: rgba(216, 155, 46, 0.22);
  color: #7a5817;
}

.adoxy-tools span:nth-child(2) {
  background: rgba(200, 75, 49, 0.15);
  color: #7b2a18;
}

.adoxy-tools span:nth-child(3) {
  background: rgba(74, 155, 142, 0.16);
  color: #245f57;
}

.adoxy-tools span:nth-child(4) {
  background: rgba(178, 44, 28, 0.12);
  color: #8e2114;
}

.adoxy-topics span {
  border: 1px solid rgba(42, 24, 16, 0.1);
  background: white;
  color: #2a1810;
}

.adoxy-chat {
  margin: 0;
  border-radius: 16px;
  padding: 16px;
  background: #2f5d3e;
  color: white;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.28;
}

.solution-spotlight > .solution-link {
  width: min(100%, 310px);
  margin-top: 24px;
  border-color: rgba(42, 24, 16, 0.12);
  background: #2a1810;
  color: #f8f1e7;
}

.solution-spotlight > .solution-link::after {
  color: #e8705a;
}

.solution-card {
  --solution-accent: var(--vz-navy);
  --solution-surface: rgba(27, 35, 96, 0.08);
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--vz-slate-300);
  border-radius: 14px;
  background: var(--vz-white);
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: var(--solution-accent);
}

.solution-card.theme-mint {
  --solution-accent: var(--vz-pulse);
  --solution-surface: rgba(0, 200, 150, 0.12);
}

.solution-card.theme-coral {
  --solution-accent: var(--vz-coral);
  --solution-surface: rgba(255, 107, 92, 0.12);
}

.solution-card.theme-sky {
  --solution-accent: var(--vz-sky);
  --solution-surface: rgba(74, 144, 226, 0.12);
}

.solution-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-top span {
  color: var(--vz-slate-500);
}

.solution-top strong {
  border-radius: 999px;
  padding: 8px 10px;
  background: var(--solution-surface);
  color: var(--solution-accent);
}

.solution-card h3 {
  margin: 28px 0 10px;
  color: var(--vz-navy);
  font-size: clamp(28px, 2.5vw, 38px);
  letter-spacing: -0.015em;
  line-height: 1.05;
}

.solution-audience {
  margin: 0;
  color: var(--solution-accent);
  font-weight: 700;
  line-height: 1.4;
}

.solution-description {
  margin: 18px 0 0;
  color: var(--vz-slate-700);
  font-size: 17px;
  line-height: 1.55;
}

.solution-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.solution-highlights li {
  border: 1px solid rgba(27, 35, 96, 0.12);
  border-radius: 999px;
  padding: 9px 11px;
  background: var(--solution-surface);
  color: var(--vz-navy);
  font-size: 14px;
  font-weight: 700;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 50px;
  margin-top: auto;
  border: 1px solid rgba(27, 35, 96, 0.14);
  border-radius: 14px;
  padding: 0 16px;
  background: var(--solution-surface);
  color: var(--vz-navy);
  font-weight: 800;
  transition:
    transform 220ms ease,
    background-color 220ms ease;
}

.solution-link::after {
  content: "→";
  color: var(--solution-accent);
  font-size: 22px;
}

.solutions-empty {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px dashed var(--vz-slate-300);
  border-radius: 14px;
  padding: 28px;
  color: var(--vz-slate-700);
  background: var(--vz-white);
}

.blog-section {
  display: grid;
  gap: 40px;
  padding: clamp(64px, 8vw, 116px) clamp(20px, 6vw, 88px);
  background: var(--vz-paper);
}

.blog-header {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(300px, 0.58fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.blog-header .section-heading {
  margin-bottom: 0;
}

.blog-header > p {
  margin: 0 0 4px;
  color: var(--vz-slate-700);
  font-size: 18px;
  line-height: 1.6;
}

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

.blog-card,
.blog-empty {
  border: 1px solid var(--vz-slate-300);
  border-radius: 14px;
  background: var(--vz-white);
}

.blog-card {
  --post-accent: var(--vz-navy);
  --post-wash: rgba(27, 35, 96, 0.08);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(180deg, var(--post-wash), transparent 52%),
    var(--vz-white);
  transition:
    transform 300ms ease,
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.blog-card.tone-mint {
  --post-accent: var(--vz-pulse);
  --post-wash: rgba(0, 200, 150, 0.13);
}

.blog-card.tone-coral {
  --post-accent: var(--vz-coral);
  --post-wash: rgba(255, 107, 92, 0.14);
}

.blog-card.tone-sky {
  --post-accent: var(--vz-sky);
  --post-wash: rgba(74, 144, 226, 0.14);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  color: var(--vz-slate-500);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-meta span {
  border-radius: 999px;
  padding: 8px 10px;
  background: var(--post-wash);
  color: var(--post-accent);
}

.blog-card h3 {
  margin: auto 0 14px;
  color: var(--vz-navy);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
}

.blog-card p {
  margin: 0 0 24px;
  color: var(--vz-slate-700);
  font-size: 17px;
  line-height: 1.55;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  border: 1px solid rgba(27, 35, 96, 0.14);
  border-radius: 14px;
  padding: 0 15px;
  background: var(--post-wash);
  color: var(--vz-navy);
  font-weight: 800;
  transition:
    transform 220ms ease,
    background-color 220ms ease;
}

.blog-link::after {
  content: "→";
  color: var(--post-accent);
  font-size: 21px;
}

.blog-card:hover {
  border-color: rgba(27, 35, 96, 0.24);
  box-shadow: 0 24px 58px rgba(14, 17, 48, 0.12);
  transform: translateY(-6px);
}

.blog-card:hover .blog-link {
  transform: translateX(3px);
}

.blog-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  color: var(--vz-slate-700);
}

.feature-grid article:hover,
.security-grid article:hover,
.status-list article:hover,
.impact-stats article:hover,
.solution-card:hover {
  border-color: rgba(27, 35, 96, 0.26);
  box-shadow: 0 22px 50px rgba(14, 17, 48, 0.12);
  transform: translateY(-5px);
}

.spotlight-pillars section:hover {
  background: white;
  box-shadow: 0 18px 42px rgba(42, 24, 16, 0.1);
  transform: translateY(-4px);
}

.solution-gallery figure:hover {
  box-shadow: 0 26px 58px rgba(42, 24, 16, 0.18);
  transform: translateY(-5px);
}

.solution-gallery figure:hover img {
  transform: scale(1.045);
}

.solution-link:hover {
  transform: translateX(3px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes photo-rise {
  from {
    opacity: 0;
    transform: translateY(38px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes panel-rise {
  from {
    opacity: 0;
    transform: translateY(42px) rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes note-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes float-panel {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes float-note {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 8px;
  }
}

@keyframes photo-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.055);
  }
}

@keyframes stage-rock {
  0%,
  100% {
    transform: rotate(4deg) translateY(0);
  }
  50% {
    transform: rotate(2.6deg) translateY(-10px);
  }
}

@keyframes mark-drift {
  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }
  50% {
    transform: rotate(4deg) translateY(-16px);
  }
}

@keyframes signal-glow {
  0%,
  100% {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(0);
  }
  50% {
    background: rgba(255, 221, 21, 0.16);
    transform: translateY(-2px);
  }
}

@keyframes preview-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.025);
    opacity: 0.84;
  }
}

@keyframes adoxy-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

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

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

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

.number {
  display: block;
  color: var(--vz-coral);
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
}

.feature-grid h3,
.security-grid h3,
.status-list h3 {
  margin: 18px 0 10px;
  color: var(--vz-navy);
  font-size: 24px;
  letter-spacing: -0.015em;
}

.feature-grid p,
.security-grid p,
.split-section p,
.status-list p,
.contact-copy p {
  margin: 0;
  color: var(--vz-slate-700);
  font-size: 17px;
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  background: var(--vz-slate-100);
}

.split-section p {
  max-width: 680px;
  margin-top: 22px;
}

.status-list {
  display: grid;
  gap: 14px;
}

.status-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
}

.status-dot {
  width: 16px;
  height: 16px;
  margin-top: 9px;
  border-radius: 999px;
}

.status-dot.success {
  background: var(--vz-success);
}

.status-dot.info {
  background: var(--vz-sky);
}

.status-dot.warning {
  background: var(--vz-warning);
}

.impact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  padding: clamp(70px, 9vw, 128px) clamp(20px, 6vw, 88px);
  background: var(--vz-navy);
  color: var(--vz-paper);
}

.impact-band .eyebrow {
  color: var(--vz-yellow);
}

.impact-copy h2 {
  color: var(--vz-paper);
}

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

.impact-stats article {
  min-height: 190px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.impact-stats strong {
  display: block;
  color: var(--vz-yellow);
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
}

.impact-stats span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 252, 241, 0.76);
  line-height: 1.45;
}

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

.reviews-section {
  display: grid;
  gap: 40px;
  padding: clamp(64px, 8vw, 116px) clamp(20px, 6vw, 88px);
  background:
    linear-gradient(135deg, rgba(255, 221, 21, 0.2), transparent 38%),
    var(--vz-slate-100);
}

.reviews-header {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(300px, 0.58fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.reviews-header .section-heading {
  margin-bottom: 0;
}

.reviews-header > p {
  margin: 0 0 4px;
  color: var(--vz-slate-700);
  font-size: 18px;
  line-height: 1.6;
}

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

.reviews-empty,
.review-card {
  border: 1px solid var(--vz-slate-300);
  border-radius: 14px;
  background: var(--vz-white);
}

.reviews-empty {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  min-height: 270px;
  align-content: center;
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(120deg, rgba(255, 221, 21, 0.18), transparent 50%),
    var(--vz-white);
}

.reviews-empty strong {
  color: var(--vz-navy);
  font-family: var(--font-display);
  font-size: clamp(31px, 4vw, 56px);
  line-height: 1;
}

.reviews-empty p {
  max-width: 720px;
  margin: 0;
  color: var(--vz-slate-700);
  font-size: 18px;
  line-height: 1.55;
}

.review-tracks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.review-tracks span {
  border: 1px solid rgba(27, 35, 96, 0.12);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(27, 35, 96, 0.06);
  color: var(--vz-navy);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-card {
  --review-accent: var(--vz-navy);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 28px;
  box-shadow: inset 0 8px 0 var(--review-accent);
  transition:
    transform 280ms ease,
    box-shadow 280ms ease;
}

.review-card.tone-mint {
  --review-accent: var(--vz-pulse);
}

.review-card.tone-coral {
  --review-accent: var(--vz-coral);
}

.review-card.tone-sky {
  --review-accent: var(--vz-sky);
}

.review-card blockquote {
  margin: 24px 0;
  color: var(--vz-navy);
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 600;
  line-height: 1.16;
}

.review-card footer {
  display: grid;
  gap: 5px;
}

.review-card footer strong {
  color: var(--vz-ink);
}

.review-card footer span {
  color: var(--vz-slate-500);
  line-height: 1.4;
}

.review-card:hover {
  box-shadow:
    inset 0 8px 0 var(--review-accent),
    0 22px 52px rgba(14, 17, 48, 0.12);
  transform: translateY(-5px);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: clamp(34px, 6vw, 94px);
  background: var(--vz-yellow);
}

.contact-copy img {
  width: 116px;
  height: 116px;
  border-radius: 18px;
}

.contact-copy a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--vz-navy);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(27, 35, 96, 0.2);
  border-radius: 14px;
  background: var(--vz-paper);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--vz-navy);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--vz-slate-300);
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--vz-white);
  color: var(--vz-ink);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--vz-slate-700);
  font-size: 14px;
  line-height: 1.5;
}

.privacy-hero {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 7vw, 96px) clamp(42px, 6vw, 76px);
  background: var(--vz-paper);
  border-bottom: 1px solid rgba(27, 35, 96, 0.1);
}

.privacy-hero h1 {
  max-width: 920px;
  margin: 14px 0 22px;
}

.privacy-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--vz-slate-700);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
}

.privacy-content {
  display: grid;
  gap: 18px;
  padding: clamp(44px, 7vw, 88px) clamp(20px, 7vw, 96px);
  background: var(--vz-cream);
}

.privacy-content article {
  display: grid;
  gap: 12px;
  max-width: 920px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--vz-white);
  border: 1px solid rgba(27, 35, 96, 0.09);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(27, 35, 96, 0.08);
}

.privacy-content h2 {
  margin: 0;
  color: var(--vz-navy);
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: 0;
}

.privacy-content p {
  margin: 0;
  color: var(--vz-slate-700);
  line-height: 1.75;
}

.privacy-content a {
  color: var(--vz-navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.mission-section {
  padding: clamp(64px, 8vw, 116px) clamp(20px, 6vw, 88px);
  background: var(--vz-ink);
  color: var(--vz-paper);
}

.mission-inner {
  max-width: 980px;
}

.mission-section .eyebrow {
  color: var(--vz-yellow);
}

.mission-quote {
  margin: 24px 0 0;
  padding: 0;
  border: 0;
  color: var(--vz-paper);
  font-family: var(--font-display);
  font-size: clamp(26px, 3.8vw, 52px);
  font-weight: 600;
  line-height: 1.12;
}

.mission-body {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 252, 241, 0.68);
  font-size: 18px;
  line-height: 1.7;
}

.mission-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.mission-tags span {
  border: 1px solid rgba(255, 252, 241, 0.18);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--vz-yellow);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bi-section {
  background: var(--vz-navy-deep);
  color: var(--vz-paper);
}

.bi-section .eyebrow {
  color: var(--vz-yellow);
}

.bi-intro h2 {
  margin: 14px 0 0;
  color: var(--vz-paper);
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1.05;
}

.bi-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.bi-lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 252, 241, 0.72);
  font-size: 18px;
  line-height: 1.6;
}

.bi-features {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 22px;
}

.bi-features li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}

.bi-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

.bi-icon.navy { background: rgba(27, 35, 96, 0.5); color: var(--vz-yellow); }
.bi-icon.sky  { background: rgba(74, 144, 226, 0.2); color: var(--vz-sky); }
.bi-icon.mint { background: rgba(0, 200, 150, 0.18); color: var(--vz-pulse); }
.bi-icon.coral { background: rgba(255, 107, 92, 0.18); color: var(--vz-coral); }

.bi-features li strong {
  display: block;
  color: var(--vz-paper);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.bi-features li p {
  margin: 0;
  color: rgba(255, 252, 241, 0.6);
  font-size: 15px;
  line-height: 1.5;
}

.bi-dashboard {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 252, 241, 0.5);
}

.dash-top strong {
  color: var(--vz-yellow);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
}

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

.kpi-card {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 240ms ease;
}

.kpi-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.kpi-card > span:first-child {
  color: rgba(255, 252, 241, 0.52);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.kpi-card strong {
  color: var(--vz-paper);
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1;
}

.kpi-card strong small {
  font-size: 0.52em;
  color: rgba(255, 252, 241, 0.5);
}

.kpi-up  { color: var(--vz-pulse)   !important; font-size: 13px !important; font-weight: 700 !important; font-family: var(--font-mono) !important; }
.kpi-down { color: var(--vz-coral)  !important; font-size: 13px !important; font-weight: 700 !important; font-family: var(--font-mono) !important; }

.dash-chart {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.dash-chart-label {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 252, 241, 0.45);
}

.bar-chart {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  height: 100px;
}

.bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
}

.bar {
  width: 100%;
  height: var(--h, 50%);
  border-radius: 4px 4px 0 0;
  background: rgba(255, 255, 255, 0.18);
  transition: background 240ms ease;
}

.bar--active {
  background: var(--vz-yellow);
}

.bar-group:hover .bar { background: rgba(255, 255, 255, 0.34); }
.bar-group:hover .bar--active { background: var(--vz-yellow-soft); }

.bar-group span {
  color: rgba(255, 252, 241, 0.45);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
}

.dash-alert {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 10px;
  background: rgba(245, 166, 35, 0.08);
}

.dash-alert p {
  margin: 0;
  color: rgba(255, 252, 241, 0.75);
  font-size: 14px;
  line-height: 1.4;
}

.dash-alert strong {
  color: var(--vz-warning);
}

@media (max-width: 1020px) {
  .bi-layout {
    grid-template-columns: 1fr;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 860px;
  width: calc(100% - 48px);
  padding: 18px 24px;
  background: var(--vz-navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(14, 17, 48, 0.32);
  transform: translateX(-50%) translateY(0);
  transition:
    opacity 380ms ease,
    transform 380ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner--hiding {
  opacity: 0;
  transform: translateX(-50%) translateY(12px);
}

.cookie-text {
  flex: 1;
  margin: 0;
  color: rgba(255, 252, 241, 0.82);
  font-size: 15px;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--vz-yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept,
.cookie-refuse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 0;
  border-radius: 14px;
  padding: 0 18px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.cookie-accept {
  background: var(--vz-yellow);
  color: var(--vz-navy);
}

.cookie-refuse {
  background: rgba(255, 255, 255, 0.1);
  color: var(--vz-paper);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cookie-accept:hover,
.cookie-refuse:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 16px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-accept,
  .cookie-refuse {
    flex: 1;
  }
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--vz-navy);
  outline: none;
  box-shadow: 0 0 0 4px rgba(27, 35, 96, 0.10);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 88px);
  background: var(--vz-ink);
  color: rgba(255, 252, 241, 0.7);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero,
  .split-section,
  .impact-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    background: linear-gradient(180deg, var(--vz-paper) 0%, var(--vz-paper) 56%, var(--vz-yellow) 56%);
  }

  .hero-stage {
    min-height: 820px;
    width: min(100%, 760px);
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }

  .reviews-header {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .solutions-grid,
  .reviews-grid,
  .security-grid,
  .impact-stats {
    grid-template-columns: 1fr 1fr;
  }

  .solutions-header {
    grid-template-columns: 1fr;
  }

  .blog-header,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-body {
    grid-template-columns: 1fr;
  }

  .adoxy-preview {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    gap: 14px;
  }

  .brand span {
    font-size: 21px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    font-size: 34px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .phone-shell {
    min-height: 620px;
    border-width: 7px;
    border-radius: 32px;
  }

  .hero-stage {
    min-height: 980px;
  }

  .hero-photo {
    inset: 0 0 330px;
    min-height: 420px;
    border-radius: 22px;
  }

  .product-panel {
    right: 0;
    bottom: 134px;
    left: 0;
  }

  .hero-note {
    right: 0;
    bottom: 32px;
    left: 0;
    width: auto;
  }

  .feature-grid,
  .solutions-grid,
  .reviews-grid,
  .security-grid,
  .impact-stats {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 0;
  }

  .blog-card {
    min-height: 320px;
  }

  .spotlight-identity {
    grid-template-columns: 1fr;
  }

  .spotlight-pillars,
  .adoxy-ages,
  .solution-gallery {
    grid-template-columns: 1fr;
  }

  .adoxy-phone {
    min-height: 0;
    border-width: 7px;
    border-radius: 30px;
  }

  .solution-gallery figure:first-child {
    min-height: 320px;
  }

  .impact-stats article {
    min-height: 140px;
  }

  .review-card {
    min-height: 250px;
  }

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