:root {
  --navy: #071728;
  --navy2: #0b2137;
  --navy3: #123652;
  --gold: #d2a347;
  --gold2: #b97c2f;
  --gold3: #f0cc7d;
  --ivory: #f8f4ec;
  --paper: #fffdf9;
  --mist: #eef3f5;
  --slate: #566474;
  --ink: #202936;
  --teal: #2ea9a0;
  --green: #32c98a;
  --red: #d76657;
  --line: rgba(7, 23, 40, .12);
  --shadow: 0 24px 70px rgba(7, 23, 40, .14);
  --soft: 0 14px 40px rgba(7, 23, 40, .08);
  --radius: 28px;
  --radius2: 18px;
  --max: 1180px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden
}

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

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

button,
input,
select,
textarea {
  font: inherit
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: auto
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0
}

.skip-link:focus {
  left: 15px;
  top: 15px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  z-index: 999
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(210, 163, 71, .14)
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  line-height: 1.04;
  letter-spacing: -.04em;
  margin: 0
}

h1 {
  font-size: clamp(43px, 6vw, 80px)
}

h2 {
  font-size: clamp(34px, 4.5vw, 58px)
}

h3 {
  font-size: clamp(23px, 2.2vw, 31px)
}

p {
  margin: 0 0 16px
}

.lead {
  font-size: clamp(18px, 1.7vw, 22px);
  color: #4d5b6b;
  max-width: 760px;
  margin: 24px 0 30px
}

.muted {
  color: var(--slate)
}

.small {
  font-size: 13px
}

.center {
  text-align: center
}

.section-head {
  max-width: 840px;
  margin-bottom: 42px
}

.section-head.center {
  margin: 0 auto 44px
}

.section-head h2 {
  margin-top: 15px
}

.section-head p {
  font-size: 18px;
  color: var(--slate);
  margin-top: 16px
}

.gradient-text {
  background: linear-gradient(135deg, var(--navy) 12%, var(--navy3) 56%, var(--gold2));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent
}

.topbar {
  background: linear-gradient(90deg, var(--navy), var(--navy3));
  color: rgba(255, 255, 255, .8);
  font-size: 13px
}

.topbar .wrap {
  padding: 9px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px
}

.topbar strong {
  color: var(--gold3)
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(248, 244, 236, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(7, 23, 40, .09)
}

.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px
}

.logo-mark {
  width: 42px;
  height: 52px;
  flex: none
}

.wordmark {
  font-weight: 850;
  letter-spacing: .21em;
  color: var(--navy);
  font-size: 19px;
  line-height: 1
}

.brand-tag {
  font-size: 8px;
  color: var(--gold2);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-top: 6px
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 760;
  color: #344357
}

.desktop-nav a {
  position: relative
}

.desktop-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  transition: .2s
}

.desktop-nav a:hover:after,
.desktop-nav a[aria-current="page"]:after {
  right: 0
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  cursor: pointer
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 10px 0 20px
}

.mobile-nav.open {
  display: grid
}

.mobile-nav a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(7, 23, 40, .07);
  font-weight: 760
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 49px;
  padding: 0 21px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 820;
  transition: transform .2s, box-shadow .2s
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold3), var(--gold), var(--gold2));
  color: #18120a;
  box-shadow: 0 14px 30px rgba(185, 124, 47, .24)
}

.btn-dark {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 28px rgba(7, 23, 40, .2)
}

.btn-light {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line)
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(7, 23, 40, .18)
}

.btn-small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 13px
}

.text-link {
  color: var(--gold2);
  font-weight: 820
}

.text-link:hover {
  text-decoration: underline
}

main {
  min-height: 60vh
}

section {
  padding: 86px 0
}

.hero {
  position: relative;
  padding: 82px 0 70px;
  overflow: hidden;
  background: radial-gradient(circle at 80% 12%, rgba(210, 163, 71, .2), transparent 28%), linear-gradient(180deg, #fffdf8, var(--ivory))
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(7, 23, 40, .034) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 23, 40, .034) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 50% 15%, #000, transparent 78%);
  pointer-events: none
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 54px;
  align-items: center
}

.hero-copy h1 {
  margin-top: 20px
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.trust-strip {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 27px
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #47576a;
  font-size: 13px;
  font-weight: 720
}

.trust-chip:before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(46, 169, 160, .12);
  color: var(--teal);
  font-weight: 900
}

.hero-visual {
  position: relative;
  min-height: 590px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy)
}

.hero-visual>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .66
}

.hero-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 23, 40, .04), rgba(7, 23, 40, .92))
}

.hero-dashboard {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: #fff;
  display: grid;
  gap: 12px
}

.live-row {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 850
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.8s infinite
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(50, 201, 138, 0)
  }
}

.glass {
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 18px
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px
}

.hero-metrics div {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 13px
}

.hero-metrics span {
  display: block;
  color: rgba(255, 255, 255, .56);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em
}

.hero-metrics strong {
  display: block;
  color: var(--gold3);
  font-size: 20px;
  margin-top: 3px
}

.page-hero {
  padding: 72px 0 56px;
  background: radial-gradient(circle at 75% 0, rgba(210, 163, 71, .18), transparent 30%), linear-gradient(180deg, #fffdf9, var(--ivory))
}

.page-hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 45px;
  align-items: center
}

.page-hero h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  margin-top: 18px
}

.page-hero .image-shell {
  height: 450px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative
}

.image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.image-shell:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 23, 40, .55))
}

.breadcrumb {
  font-size: 12px;
  color: var(--slate);
  margin-bottom: 14px
}

.breadcrumb a {
  color: var(--gold2)
}

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

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

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

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

.card {
  position: relative;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(7, 23, 40, .09);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--soft);
  overflow: hidden
}

.card.topline:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent)
}

.card h3 {
  margin: 12px 0 11px
}

.card p {
  color: var(--slate)
}

.card-icon {
  width: 49px;
  height: 49px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(210, 163, 71, .2), rgba(210, 163, 71, .06));
  color: var(--gold2);
  font-weight: 950
}

.card.dark-card {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .1);
  box-shadow: none
}

.card.dark-card h3 {
  color: #fff
}

.card.dark-card p {
  color: rgba(255, 255, 255, .68)
}

.number-step {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 850;
  color: var(--gold2)
}

.dark {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden
}

.dark:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 10%, rgba(210, 163, 71, .16), transparent 27%), linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 100%, 50px 50px
}

.dark>.wrap {
  position: relative
}

.dark h2,
.dark h3,
.dark h4 {
  color: #fff
}

.dark .section-head p,
.dark p {
  color: rgba(255, 255, 255, .68)
}

.soft-section {
  background: linear-gradient(180deg, #f1eee7, #fffdf9)
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center
}

.copy-block h2 {
  margin: 13px 0 18px
}

.copy-block>p {
  color: var(--slate);
  font-size: 17px
}

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

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--slate)
}

.check-list li:before {
  content: "✓";
  color: var(--gold2);
  font-weight: 950
}

.dark .check-list li {
  color: rgba(255, 255, 255, .73)
}

.visual-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 470px;
  background: var(--navy)
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.visual-frame .caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(7, 23, 40, .85);
  border: 1px solid rgba(255, 255, 255, .13);
  color: #fff;
  padding: 17px;
  border-radius: 18px
}

.caption strong {
  display: block
}

.caption span {
  font-size: 12px;
  color: rgba(255, 255, 255, .62)
}

.problem-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px
}

.leak-map {
  background: linear-gradient(155deg, var(--navy), #08101c);
  border-radius: 34px;
  padding: 27px;
  color: #fff;
  box-shadow: var(--shadow)
}

.leak-stage {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 15px;
  margin: 11px 0;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 17px
}

.leak-stage b {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(210, 163, 71, .16);
  color: var(--gold3)
}

.leak-stage strong {
  display: block
}

.leak-stage small {
  color: rgba(255, 255, 255, .56)
}

.leak-stage em {
  font-style: normal;
  color: #ffc08a;
  font-weight: 800;
  font-size: 12px
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: stretch;
  gap: 18px
}

.compare-panel {
  padding: 28px;
  border-radius: 27px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .75);
  box-shadow: var(--soft)
}

.compare-panel.before {
  background: #fff5f2
}

.compare-panel.after {
  background: #effaf6
}

.compare-title {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 17px
}

.compare-title span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 850
}

.before .compare-title span {
  color: var(--red)
}

.after .compare-title span {
  color: #208b63
}

.compare-list {
  display: grid;
  gap: 11px
}

.compare-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #49596b;
  font-size: 14px
}

.compare-item:before {
  content: "×";
  font-weight: 900;
  color: var(--red)
}

.after .compare-item:before {
  content: "✓";
  color: #208b63
}

.compare-arrow {
  display: grid;
  place-items: center;
  font-size: 34px;
  color: var(--gold2)
}

.journey-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
  margin-top: 32px
}

.journey-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--soft);
  cursor: pointer;
  transition: .2s
}

.journey-step:hover,
.journey-step.active {
  transform: translateY(-4px);
  border-color: rgba(210, 163, 71, .55)
}

.journey-step:after {
  content: "→";
  position: absolute;
  right: -13px;
  top: 32px;
  color: var(--gold2);
  font-weight: 900
}

.journey-step:last-child:after {
  display: none
}

.journey-step span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold2);
  font-weight: 850
}

.journey-step h3 {
  font-size: 23px;
  margin: 9px 0
}

.journey-step p {
  font-size: 13px;
  color: var(--slate)
}

.journey-detail {
  margin-top: 18px;
  border-radius: 25px;
  padding: 25px;
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center
}

.journey-detail h3 {
  color: #fff
}

.journey-detail p {
  color: rgba(255, 255, 255, .66);
  margin: 8px 0 0
}

.voice-demo {
  background: linear-gradient(155deg, var(--navy), #07111f);
  border-radius: 32px;
  padding: 25px;
  color: #fff;
  box-shadow: var(--shadow)
}

.voice-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.voice-person {
  display: flex;
  align-items: center;
  gap: 12px
}

.voice-avatar {
  width: 47px;
  height: 47px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold3), var(--gold2));
  display: grid;
  place-items: center;
  color: var(--navy);
  font-weight: 950
}

.voice-person strong {
  display: block
}

.voice-person span {
  font-size: 12px;
  color: rgba(255, 255, 255, .53)
}

.badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold3);
  border: 1px solid rgba(240, 204, 125, .24);
  background: rgba(210, 163, 71, .12);
  padding: 6px 9px;
  border-radius: 999px
}

.conversation {
  display: grid;
  gap: 12px;
  padding: 20px 0
}

.bubble {
  max-width: 88%;
  padding: 13px 15px;
  border-radius: 17px;
  font-size: 13px;
  opacity: 1
}

.bubble.ai {
  background: rgba(210, 163, 71, .13);
  border: 1px solid rgba(240, 204, 125, .19)
}

.bubble.customer {
  justify-self: end;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1)
}

.voice-demo.playing .bubble {
  animation: bubbleIn .45s both
}

.voice-demo.playing .bubble:nth-child(2) {
  animation-delay: .55s
}

.voice-demo.playing .bubble:nth-child(3) {
  animation-delay: 1.1s
}

.voice-demo.playing .bubble:nth-child(4) {
  animation-delay: 1.65s
}

.voice-demo.playing .bubble:nth-child(5) {
  animation-delay: 2.2s
}

@keyframes bubbleIn {
  from {
    opacity: .15;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.voice-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px
}

.voice-results div {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08)
}

.voice-results span {
  display: block;
  color: rgba(255, 255, 255, .45);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em
}

.voice-results strong {
  font-size: 13px;
  color: var(--gold3)
}

.demo-controls {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap
}

.demo-controls button {
  min-height: 42px
}

.audio-status {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  align-self: center
}

.workflow-player {
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy), #08101c);
  box-shadow: var(--shadow);
  color: #fff
}

.player-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 21px;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.player-head strong {
  color: #fff
}

.player-screen {
  min-height: 425px;
  padding: 28px;
  display: grid;
  place-items: center;
  position: relative;
  background: radial-gradient(circle at 75% 15%, rgba(210, 163, 71, .18), transparent 26%)
}

.workflow-flow {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  align-items: center
}

.workflow-node {
  padding: 15px 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  border-radius: 16px;
  text-align: center;
  transition: .25s
}

.workflow-node b {
  display: block;
  color: var(--gold3);
  font-size: 11px
}

.workflow-node span {
  display: block;
  color: rgba(255, 255, 255, .65);
  font-size: 11px;
  margin-top: 5px
}

.workflow-player.playing .workflow-node {
  animation: nodeGlow 4s infinite
}

.workflow-player.playing .workflow-node:nth-child(2) {
  animation-delay: .8s
}

.workflow-player.playing .workflow-node:nth-child(3) {
  animation-delay: 1.6s
}

.workflow-player.playing .workflow-node:nth-child(4) {
  animation-delay: 2.4s
}

.workflow-player.playing .workflow-node:nth-child(5) {
  animation-delay: 3.2s
}

@keyframes nodeGlow {

  0%,
  18%,
  100% {
    transform: none;
    background: rgba(255, 255, 255, .06)
  }

  8% {
    transform: translateY(-6px);
    background: rgba(210, 163, 71, .2);
    border-color: rgba(240, 204, 125, .55)
  }
}

.player-controls {
  padding: 16px 21px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  gap: 12px
}

.progress {
  height: 6px;
  flex: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  overflow: hidden
}

.progress i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold3), var(--gold2))
}

.workflow-player.playing .progress i {
  animation: progress 4s linear infinite
}

@keyframes progress {
  to {
    width: 100%
  }
}

.tool-shell {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 22px;
  align-items: stretch
}

.tool-inputs,
.tool-results {
  border-radius: 30px;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow)
}

.tool-inputs {
  background: rgba(255, 255, 255, .84)
}

.tool-results {
  background: linear-gradient(155deg, var(--navy), #09121f);
  color: #fff;
  position: relative;
  overflow: hidden
}

.tool-results:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 3%, rgba(210, 163, 71, .24), transparent 28%)
}

.tool-results>* {
  position: relative
}

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

.field {
  margin-bottom: 15px
}

.field label {
  display: block;
  color: var(--navy);
  font-weight: 780;
  font-size: 13px;
  margin-bottom: 7px
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(7, 23, 40, .15);
  border-radius: 14px;
  background: #fff;
  padding: 12px 14px;
  outline: none;
  color: var(--navy)
}

.field input,
.field select {
  height: 50px
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(210, 163, 71, .13)
}

.result-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 850;
  color: rgba(255, 255, 255, .5)
}

.result-number {
  font-size: clamp(48px, 6vw, 76px);
  line-height: .95;
  letter-spacing: -.06em;
  color: var(--gold3);
  font-weight: 950;
  margin: 12px 0 20px
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px
}

.result-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 14px
}

.result-card span {
  display: block;
  color: rgba(255, 255, 255, .47);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em
}

.result-card strong {
  display: block;
  color: #fff;
  font-size: 18px;
  margin-top: 4px
}

.tool-note {
  font-size: 11px;
  color: rgba(255, 255, 255, .43);
  margin-top: 17px
}

.tool-tabs {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 25px
}

.tool-tab {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--navy);
  font-weight: 790;
  cursor: pointer
}

.tool-tab.active {
  background: var(--navy);
  color: #fff
}

.tool-panel {
  display: none
}

.tool-panel.active {
  display: block
}

.score-gauge {
  position: relative;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  margin: 12px auto 20px;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--gold) var(--score, 0%), rgba(255, 255, 255, .12) 0)
}

.score-gauge:before {
  content: "";
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: var(--navy);
  position: absolute
}

.score-gauge strong {
  position: relative;
  font-size: 44px;
  color: var(--gold3)
}

.assessment-options {
  display: grid;
  gap: 10px
}

.option-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px;
  background: #fff;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  cursor: pointer
}

.option-card input {
  margin-top: 4px
}

.assessment-result {
  display: none
}

.assessment-result.visible {
  display: block
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  overflow: hidden
}

.metric-band div {
  background: rgba(255, 255, 255, .05);
  padding: 24px
}

.metric-band strong {
  display: block;
  color: var(--gold3);
  font-size: 30px
}

.metric-band span {
  font-size: 12px;
  color: rgba(255, 255, 255, .56)
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch
}

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 29px;
  box-shadow: var(--soft);
  display: flex;
  flex-direction: column
}

.price-card.featured {
  border-color: var(--gold);
  box-shadow: 0 24px 70px rgba(185, 124, 47, .19);
  transform: translateY(-8px)
}

.price-card h3 {
  margin: 13px 0
}

.price {
  font-size: 35px;
  color: var(--navy);
  font-weight: 950;
  letter-spacing: -.04em
}

.price small {
  font-size: 13px;
  color: var(--slate);
  font-weight: 600
}

.price-card .btn {
  margin-top: auto
}

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

.logo-tile {
  min-height: 90px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .76);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
  font-weight: 850;
  color: var(--navy)
}

.logo-tile span {
  font-size: 10px;
  color: var(--slate);
  font-weight: 650
}

.faq-list {
  display: grid;
  gap: 11px;
  max-width: 930px;
  margin: auto
}

details {
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 20px;
  box-shadow: 0 9px 28px rgba(7, 23, 40, .05)
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 38px 20px 0;
  font-weight: 820;
  color: var(--navy);
  position: relative
}

summary::-webkit-details-marker {
  display: none
}

summary:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(210, 163, 71, .13);
  color: var(--gold2);
  font-size: 20px
}

details[open] summary:after {
  content: "−"
}

details p {
  color: var(--slate);
  padding-bottom: 20px
}

.table-wrap {
  overflow: auto;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px
}

th,
td {
  text-align: left;
  padding: 15px;
  border-bottom: 1px solid var(--line)
}

th {
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em
}

td {
  color: #4f5d6d;
  font-size: 14px
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow)
}

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

.form-success {
  display: none;
  padding: 22px;
  border-radius: 18px;
  background: #edf9f4;
  border: 1px solid rgba(32, 139, 99, .25);
  color: #176d4d
}

.form-success.visible {
  display: block
}

.error-text {
  color: #a13b31;
  font-size: 12px;
  margin-top: 4px
}

.required {
  color: #a13b31
}

.content-prose {
  max-width: 850px
}

.content-prose h2 {
  font-size: 38px;
  margin: 40px 0 15px
}

.content-prose h3 {
  font-size: 27px;
  margin: 28px 0 12px
}

.content-prose p,
.content-prose li {
  color: #4e5c6c
}

.content-prose a {
  color: var(--gold2);
  font-weight: 750
}

.callout {
  border-left: 4px solid var(--gold);
  background: #fff;
  border-radius: 0 20px 20px 0;
  padding: 22px;
  margin: 25px 0
}

.resource-card {
  display: flex;
  flex-direction: column
}

.resource-card .resource-type {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold2);
  font-weight: 850
}

.resource-card .btn {
  margin-top: auto;
  align-self: flex-start
}

.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy3));
  color: #fff;
  padding: 58px 0
}

.cta-band .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px
}

.cta-band h2 {
  color: #fff
}

.cta-band p {
  color: rgba(255, 255, 255, .65);
  font-size: 18px;
  max-width: 710px;
  margin-top: 13px
}

.site-footer {
  background: #050f1c;
  color: rgba(255, 255, 255, .68);
  padding: 58px 0 24px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 30px
}

.site-footer h4 {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 14px
}

.site-footer a {
  display: block;
  margin: 8px 0;
  font-size: 14px
}

.site-footer a:hover {
  color: var(--gold3)
}

.site-footer .wordmark {
  color: #fff
}

.footer-bottom {
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, .42)
}

.credit-list {
  display: grid;
  gap: 18px
}

.credit-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: center
}

.credit-item img {
  width: 130px;
  height: 90px;
  object-fit: cover;
  border-radius: 14px
}

.reveal,
.js .reveal,
.js .reveal.visible {
  opacity: 1;
  transform: none
}

.reveal {
  transition: transform .25s ease
}

.reveal:hover {
  transform: translateY(-2px)
}

@media(max-width:1050px) {
  .desktop-nav {
    display: none
  }

  .menu-toggle {
    display: grid;
    place-items: center
  }

  .header-actions .btn-light {
    display: none
  }

  .hero-grid,
  .page-hero .wrap,
  .split,
  .problem-grid,
  .tool-shell {
    grid-template-columns: 1fr
  }

  .hero-visual {
    min-height: 530px
  }

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

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

  .journey-track {
    grid-template-columns: repeat(3, 1fr)
  }

  .journey-step:after {
    display: none
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1.25fr 1fr 1fr
  }

  .footer-grid>div:last-child {
    grid-column: 2/4
  }

  .workflow-flow {
    grid-template-columns: repeat(3, 1fr)
  }

  .metric-band {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:760px) {
  .wrap {
    width: min(100% - 28px, var(--max))
  }

  .topbar .wrap {
    justify-content: center;
    text-align: center
  }

  .topbar .wrap>div:last-child {
    display: none
  }

  .nav-inner {
    min-height: 72px
  }

  .brand {
    min-width: auto
  }

  .wordmark {
    font-size: 17px
  }

  .header-actions>.btn {
    display: none
  }

  .logo-mark {
    width: 36px;
    height: 44px
  }

  section {
    padding: 64px 0
  }

  .hero {
    padding: 60px 0 50px
  }

  .hero-visual {
    min-height: 470px
  }

  .hero-dashboard {
    left: 15px;
    right: 15px;
    bottom: 15px
  }

  .hero-metrics {
    grid-template-columns: 1fr
  }

  .page-hero {
    padding: 54px 0 42px
  }

  .page-hero .image-shell {
    height: 330px
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .pricing-grid {
    grid-template-columns: 1fr
  }

  .price-card.featured {
    transform: none
  }

  .before-after {
    grid-template-columns: 1fr
  }

  .compare-arrow {
    transform: rotate(90deg)
  }

  .journey-track {
    grid-template-columns: 1fr
  }

  .journey-detail {
    grid-template-columns: 1fr
  }

  .voice-results,
  .result-grid {
    grid-template-columns: 1fr
  }

  .workflow-flow {
    grid-template-columns: 1fr
  }

  .player-screen {
    min-height: 500px
  }

  .input-grid,
  .form-grid {
    grid-template-columns: 1fr
  }

  .metric-band {
    grid-template-columns: 1fr
  }

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

  .cta-band .wrap {
    flex-direction: column;
    align-items: flex-start
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-grid>div:last-child {
    grid-column: auto
  }

  .footer-bottom {
    flex-direction: column
  }

  .credit-item {
    grid-template-columns: 1fr
  }

  .credit-item img {
    width: 100%;
    height: 180px
  }

  .tool-tabs {
    overflow: auto;
    flex-wrap: nowrap;
    padding-bottom: 7px
  }

  .tool-tab {
    white-space: nowrap
  }
}

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

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

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

/* VOXFARO LAYOUT REFRESH 2026 */
:root {
  --vf-navy: #06192a;
  --vf-navy-2: #0a2a45;
  --vf-gold: #e1aa3c;
  --vf-gold-2: #f3c768;
  --vf-cream: #fbfaf7;
  --vf-red: #df454b;
  --vf-green: #32a868;
  --vf-blue: #4f7ee8;
  --vf-teal: #45af98;
  --vf-border: #dce2e7;
  --vf-text: #131b27;
  --vf-muted: #5d6875;
  --max: 1240px
}

body {
  background: var(--vf-cream);
  color: var(--vf-text)
}

.wrap {
  width: min(var(--max), calc(100% - 44px))
}

.vf-header {
  position: sticky;
  top: 0;
  background: var(--vf-navy);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .12)
}

.vf-header .nav-inner {
  min-height: 72px
}

.vf-header .wordmark {
  color: var(--vf-gold-2);
  font-size: 20px
}

.vf-header .brand-tag {
  color: #fff;
  font-size: 7px
}

.vf-header .logo-mark {
  width: 36px;
  height: 44px
}

.vf-header .desktop-nav {
  color: #fff;
  font-weight: 650;
  font-size: 13px;
  gap: 28px
}

.vf-header .desktop-nav a:after {
  background: var(--vf-gold)
}

.vf-header .menu-toggle {
  background: transparent;
  border-color: rgba(255, 255, 255, .22);
  color: var(--vf-gold-2)
}

.vf-header .mobile-nav {
  border-color: rgba(255, 255, 255, .13);
  background: var(--vf-navy)
}

.vf-header .mobile-nav a {
  color: #fff;
  border-color: rgba(255, 255, 255, .1)
}

.vf-review-btn {
  border-radius: 7px;
  background: transparent;
  color: var(--vf-gold-2);
  border: 1px solid var(--vf-gold);
  box-shadow: none
}

.vf-review-btn:hover {
  background: var(--vf-gold);
  color: var(--vf-navy)
}

.btn {
  border-radius: 6px;
  min-height: 46px;
  font-weight: 800
}

.btn-primary {
  background: linear-gradient(135deg, var(--vf-gold-2), var(--vf-gold));
  color: #111820;
  box-shadow: 0 10px 24px rgba(225, 170, 60, .22)
}

.btn-light {
  border-color: #d8dee4
}

.vf-outline-gold {
  background: transparent;
  color: #fff;
  border: 1px solid var(--vf-gold);
  box-shadow: none
}

.vf-hero {
  position: relative;
  min-height: 660px;
  padding: 0;
  background: var(--vf-navy);
  overflow: hidden;
  color: #fff
}

.vf-hero:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, var(--vf-navy) 0%, rgba(6, 25, 42, .98) 37%, rgba(6, 25, 42, .68) 58%, rgba(6, 25, 42, .08) 82%)
}

.vf-hero-image {
  position: absolute;
  inset: 0 0 0 43%
}

.vf-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.vf-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .72fr);
  align-items: center;
  gap: 50px;
  padding-top: 58px;
  padding-bottom: 58px
}

.vf-hero-copy {
  max-width: 690px
}

.vf-overline {
  display: inline-block;
  color: var(--vf-gold-2);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 850
}

.vf-hero h1 {
  color: #fff;
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: 1.04;
  margin: 16px 0 20px;
  letter-spacing: -.045em
}

.vf-hero h1 em {
  display: block;
  color: var(--vf-gold-2);
  font-style: normal
}

.vf-hero-copy>p {
  font-size: 19px;
  line-height: 1.65;
  max-width: 650px;
  color: rgba(255, 255, 255, .9)
}

.vf-hero-points {
  list-style: none;
  padding: 0;
  margin: 20px 0 26px;
  display: grid;
  gap: 11px
}

.vf-hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px
}

.vf-hero-points svg {
  width: 22px;
  height: 22px;
  color: var(--vf-gold-2)
}

.vf-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.vf-trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px
}

.vf-trust-row>span {
  color: var(--vf-gold-2);
  letter-spacing: .12em
}

.vf-trust-row small {
  max-width: 280px;
  color: rgba(255, 255, 255, .72)
}

.vf-impact-card {
  align-self: end;
  justify-self: end;
  width: 420px;
  margin-bottom: -26px;
  border-radius: 14px;
  background: rgba(5, 22, 38, .92);
  border: 1px solid rgba(255, 255, 255, .25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
  backdrop-filter: blur(12px);
  overflow: hidden
}

.vf-impact-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .06em
}

.vf-impact-head small {
  color: rgba(255, 255, 255, .45)
}

.vf-impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr
}

.vf-impact-grid>div {
  padding: 15px 18px;
  border-right: 1px solid rgba(255, 255, 255, .13);
  border-bottom: 1px solid rgba(255, 255, 255, .13)
}

.vf-impact-grid>div:nth-child(2n) {
  border-right: 0
}

.vf-impact-grid>div:nth-last-child(-n+2) {
  border-bottom: 0
}

.vf-impact-grid small {
  display: block;
  color: rgba(255, 255, 255, .65)
}

.vf-impact-grid strong {
  display: inline-block;
  font-size: 27px;
  color: #fff;
  margin-top: 3px
}

.vf-impact-grid em {
  float: right;
  color: #67cb6c;
  font-style: normal;
  font-size: 12px;
  margin-top: 12px
}

.vf-leak-summary {
  padding: 46px 0 30px;
  background: #fff
}

.vf-section-intro {
  text-align: center
}

.vf-section-intro h2 {
  font-size: 36px
}

.vf-section-intro p {
  color: var(--vf-muted);
  margin-top: 8px
}

.vf-summary-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 30px
}

.vf-summary-metrics article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 28px;
  border-right: 1px solid #e0e5e9
}

.vf-summary-metrics article:last-child {
  border-right: 0
}

.vf-summary-metrics svg {
  width: 52px;
  height: 52px;
  color: #b97c1d;
  flex: none
}

.vf-summary-metrics strong {
  display: block;
  font-size: 25px;
  color: #121a25
}

.vf-summary-metrics span {
  display: block;
  font-size: 11px;
  line-height: 1.35;
  color: var(--vf-muted);
  max-width: 145px
}

.vf-summary-copy {
  text-align: center;
  color: #3f5367;
  margin: 28px 0 0
}

.vf-trusted-band {
  padding: 24px 0;
  background: var(--vf-navy);
  color: #fff
}

.vf-trusted-band p {
  text-align: center;
  font-weight: 750;
  margin-bottom: 18px
}

.vf-trusted-band .wrap>div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px
}

.vf-trusted-band span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 12px;
  color: rgba(255, 255, 255, .86)
}

.vf-trusted-band svg {
  width: 25px;
  height: 25px;
  color: var(--vf-gold-2)
}

.vf-platform-section {
  padding: 72px 0;
  background: #fff
}

.vf-section-title {
  margin-bottom: 32px
}

.vf-section-title>span {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #b77816
}

.vf-section-title h2 {
  font-size: clamp(34px, 4.1vw, 54px);
  margin-top: 7px
}

.vf-section-title>p {
  color: var(--vf-muted);
  font-size: 17px;
  margin-top: 10px
}

.vf-platform-shell {
  display: grid;
  grid-template-columns: 275px minmax(250px, .72fr) minmax(430px, 1.2fr);
  border: 1px solid #d7dde2;
  border-radius: 13px;
  overflow: hidden;
  min-height: 465px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(6, 25, 42, .08)
}

.vf-platform-nav {
  border-right: 1px solid #dfe4e8
}

.vf-platform-nav button {
  width: 100%;
  min-height: 76px;
  padding: 13px 18px;
  border: 0;
  border-bottom: 1px solid #e3e7eb;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 13px;
  text-align: left;
  cursor: pointer;
  color: #1a2633;
  transition: .2s
}

.vf-platform-nav button:last-child {
  border-bottom: 0
}

.vf-platform-nav button:hover,
.vf-platform-nav button.active {
  background: #fff9ed;
  box-shadow: inset 4px 0 var(--vf-gold)
}

.vf-platform-nav svg {
  width: 31px;
  height: 31px;
  color: #d49426;
  padding: 6px;
  border-radius: 50%;
  background: #fff5df
}

.vf-platform-nav span {
  display: grid
}

.vf-platform-nav strong {
  font-size: 13px
}

.vf-platform-nav small {
  font-size: 10px;
  color: var(--vf-muted);
  margin-top: 2px
}

.vf-platform-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 30px
}

.vf-platform-copy h3 {
  font-size: 34px
}

.vf-platform-copy p {
  color: var(--vf-muted);
  margin-top: 14px
}

.vf-platform-copy ul {
  padding-left: 18px;
  color: #3e4b59;
  font-size: 14px;
  display: grid;
  gap: 8px
}

.vf-platform-copy .btn {
  align-self: flex-start;
  margin-top: 10px
}

.vf-platform-device {
  position: relative;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fbfaf8, #f1f3f4);
  padding: 30px;
  overflow: hidden
}

.vf-platform-live {
  position: absolute;
  left: 24px;
  bottom: 22px;
  background: var(--vf-navy);
  color: #fff;
  border-radius: 9px;
  padding: 9px 13px;
  box-shadow: 0 10px 28px rgba(6, 25, 42, .2)
}

.vf-platform-live span {
  font-size: 10px;
  color: rgba(255, 255, 255, .65);
  display: block
}

.vf-platform-live strong {
  font-size: 20px;
  color: var(--vf-gold-2)
}

.vf-device-stage {
  position: relative;
  width: min(100%, 500px);
  height: 330px
}

.vf-laptop {
  position: absolute;
  left: 10px;
  right: 38px;
  top: 28px
}

.vf-laptop-screen {
  height: 245px;
  background: #fff;
  border: 8px solid #070b10;
  border-bottom-width: 13px;
  border-radius: 12px 12px 5px 5px;
  padding: 13px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, .15)
}

.vf-laptop-base {
  height: 14px;
  background: linear-gradient(#bfc3c6, #73787d);
  margin: -1px -22px 0;
  border-radius: 0 0 50% 50%
}

.vf-dash-top {
  display: flex;
  justify-content: space-between;
  font-size: 10px
}

.vf-dash-top span {
  color: #71808e
}

.vf-dash-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 12px 0
}

.vf-dash-kpis>div {
  border: 1px solid #e2e7eb;
  border-radius: 6px;
  padding: 8px
}

.vf-dash-kpis small {
  display: block;
  font-size: 7px;
  color: #71808e
}

.vf-dash-kpis strong {
  font-size: 18px;
  color: #182331
}

.vf-dash-kpis em {
  float: right;
  color: #37a76b;
  font-size: 8px;
  font-style: normal
}

.vf-dash-grid {
  display: grid;
  grid-template-columns: 1.55fr .8fr;
  gap: 8px
}

.vf-line-card,
.vf-mini-donut {
  border: 1px solid #e2e7eb;
  border-radius: 6px;
  padding: 8px;
  min-height: 115px
}

.vf-line-card small,
.vf-mini-donut small {
  font-size: 7px;
  color: #526270
}

.vf-line-card svg {
  width: 100%;
  height: 75px
}

.vf-mini-donut {
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center
}

.vf-mini-donut small {
  grid-column: 1/-1
}

.vf-donut-static {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: conic-gradient(#4a7ee4 0 42%, #4db49d 42% 68%, #e6ad42 68% 82%, #dd5960 82%);
  position: relative
}

.vf-donut-static:after {
  content: "";
  position: absolute;
  inset: 11px;
  background: #fff;
  border-radius: 50%
}

.vf-mini-donut ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 5px;
  color: #697987
}

.vf-phone {
  position: absolute;
  right: 0;
  bottom: 8px;
  width: 100px;
  height: 190px;
  border: 7px solid #080b0e;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .24);
  padding: 24px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.vf-phone-notch {
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 11px;
  background: #080b0e;
  border-radius: 0 0 8px 8px
}

.vf-phone small {
  font-size: 8px;
  color: #717f8d
}

.vf-phone strong {
  font-size: 11px;
  line-height: 1.2
}

.vf-phone span {
  font-size: 9px
}

.vf-phone i {
  margin-top: auto;
  background: #ebf8f1;
  color: #238151;
  border-radius: 20px;
  font-size: 7px;
  font-style: normal;
  text-align: center;
  padding: 5px
}

.vf-testimonial {
  max-width: 780px;
  margin: 26px auto 0;
  border: 1px solid #e3c987;
  border-radius: 8px;
  padding: 18px 24px;
  color: #3d4b5b;
  background: #fffdf7;
  font-size: 14px
}

.vf-testimonial cite {
  display: block;
  margin-top: 8px;
  color: #647181;
  font-size: 12px;
  font-style: normal
}

.vf-calculator-section {
  padding: 72px 0;
  background: linear-gradient(180deg, #f8f8f7, #fff)
}

.vf-calculator {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 16px;
  align-items: stretch
}

.vf-calc-input-card,
.vf-calc-results-card {
  background: #fff;
  border: 1px solid #e3c987;
  border-radius: 9px;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(6, 25, 42, .06)
}

.vf-calc-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 16px
}

.vf-calc-card-head span {
  font-weight: 850
}

.vf-calc-card-head small {
  color: var(--vf-muted);
  font-size: 10px
}

.vf-calc-fields {
  display: grid;
  gap: 8px
}

.vf-calc-fields label {
  display: grid;
  grid-template-columns: 1fr 145px;
  align-items: center;
  gap: 15px;
  font-size: 11px;
  font-weight: 720;
  color: #3f4b57
}

.vf-calc-fields input {
  height: 35px;
  border: 1px solid #dfe4e8;
  border-radius: 5px;
  padding: 6px 10px;
  background: #fbfcfd;
  color: #16202b
}

.vf-recalculate {
  width: 100%;
  margin-top: 16px;
  min-height: 38px
}

.vf-calc-results-card {
  background: linear-gradient(135deg, #fffdf8, #fff);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px
}

.vf-total-block {
  border-bottom: 1px solid #e8cf96;
  padding-bottom: 14px
}

.vf-total-block small {
  display: block;
  font-weight: 750;
  color: #4c5863
}

.vf-total-block>strong {
  display: block;
  font-size: 38px;
  color: var(--vf-red);
  letter-spacing: -.04em;
  line-height: 1.1;
  margin: 3px 0
}

.vf-total-block span {
  font-size: 10px;
  color: var(--vf-muted)
}

.vf-breakdown {
  border: 1px solid #e4e8eb;
  border-radius: 7px;
  padding: 15px
}

.vf-breakdown h3,
.vf-revenue-lift h3 {
  font-size: 12px;
  letter-spacing: 0;
  margin-bottom: 12px
}

.vf-breakdown-grid {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 20px;
  align-items: center
}

.vf-donut {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: conic-gradient(var(--vf-red) 0 41%, var(--vf-teal) 41% 65%, var(--vf-blue) 65%);
  position: relative;
  margin: auto;
  transition: background .2s
}

.vf-donut:after {
  content: "";
  position: absolute;
  inset: 31px;
  border-radius: 50%;
  background: #fff
}

.vf-breakdown-list {
  display: grid;
  gap: 9px
}

.vf-breakdown-list>div {
  display: grid;
  grid-template-columns: 10px 1fr auto 40px;
  gap: 8px;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 1px solid #edf0f2;
  font-size: 10px
}

.vf-breakdown-list>div:last-child {
  border-bottom: 0
}

.vf-breakdown-list i {
  width: 8px;
  height: 8px;
  border-radius: 2px
}

.vf-breakdown-list .missed {
  background: var(--vf-red)
}

.vf-breakdown-list .noshow {
  background: var(--vf-teal)
}

.vf-breakdown-list .estimate {
  background: var(--vf-blue)
}

.vf-breakdown-list strong {
  font-size: 12px
}

.vf-breakdown-list em {
  font-style: normal;
  color: var(--vf-muted)
}

.vf-revenue-lift {
  border: 1px solid #e4e8eb;
  border-radius: 7px;
  padding: 13px
}

.vf-revenue-lift>div {
  display: grid;
  grid-template-columns: repeat(3, 1fr)
}

.vf-revenue-lift article {
  text-align: center;
  padding: 4px 12px;
  border-right: 1px solid #e5e9ec
}

.vf-revenue-lift article:last-child {
  border-right: 0
}

.vf-revenue-lift strong {
  display: block;
  font-size: 22px
}

.vf-revenue-lift span {
  display: block;
  color: var(--vf-muted);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .03em
}

.vf-calc-cta {
  width: 100%;
  min-height: 41px
}

.vf-calc-note {
  font-size: 9px;
  color: #7a858f;
  text-align: center;
  margin: 0
}

.vf-proof-section {
  padding: 72px 0;
  background: #fff
}

.vf-before-after {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: 20px
}

.vf-before-after article {
  border: 1px solid #ecd7d4;
  background: #fff8f7;
  border-radius: 12px;
  padding: 25px
}

.vf-before-after article.after {
  border-color: #b8dfd4;
  background: #f4fcf9
}

.vf-before-after header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(6, 25, 42, .1);
  padding-bottom: 14px
}

.vf-before-after header span {
  font-size: 11px;
  text-transform: uppercase;
  color: #b94c45;
  font-weight: 850
}

.vf-before-after .after header span {
  color: #23835f
}

.vf-before-after ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 11px;
  color: #4f5e6d
}

.vf-before-after li:before {
  content: "×";
  color: #d85454;
  font-weight: 900;
  margin-right: 10px
}

.vf-before-after .after li:before {
  content: "✓";
  color: #2b9d70
}

.vf-transform-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--vf-gold);
  display: grid;
  place-items: center;
  color: var(--vf-navy);
  font-size: 24px;
  margin: auto
}

.vf-voice-section {
  padding: 78px 0;
  background: var(--vf-navy);
  color: #fff
}

.vf-voice-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center
}

.vf-voice-copy h2 {
  color: #fff;
  font-size: 48px;
  margin: 12px 0 18px
}

.vf-voice-copy p,
.vf-voice-copy li {
  color: rgba(255, 255, 255, .72)
}

.vf-voice-copy ul {
  padding-left: 18px;
  display: grid;
  gap: 8px
}

.vf-voice-demo {
  box-shadow: 0 22px 55px rgba(0, 0, 0, .25)
}

.vf-tool-hero {
  padding: 68px 0 54px;
  background: linear-gradient(110deg, var(--vf-navy), var(--vf-navy-2));
  color: #fff
}

.vf-tool-hero h1 {
  color: #fff;
  font-size: 64px;
  margin: 10px 0
}

.vf-tool-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
  font-size: 19px
}

.vf-calculator-page {
  padding-top: 48px
}

.vf-calculator-explain {
  padding: 72px 0;
  background: #fff
}

.vf-footer {
  padding: 42px 0 18px;
  background: var(--vf-navy);
  color: rgba(255, 255, 255, .72);
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.vf-footer-main {
  display: grid;
  grid-template-columns: 1.55fr repeat(4, .82fr) 1.25fr;
  gap: 28px;
  align-items: start
}

.vf-footer-brand .brand {
  margin-bottom: 16px
}

.vf-footer-brand p {
  font-size: 13px;
  line-height: 1.55
}

.vf-footer-col h4 {
  color: var(--vf-gold-2);
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0
}

.vf-footer-col a {
  font-size: 12px;
  margin: 7px 0
}

.vf-footer-cta {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, .25)
}

.vf-footer-cta h3 {
  color: #fff;
  font-size: 21px;
  letter-spacing: -.02em
}

.vf-footer-cta p {
  font-size: 13px
}

.vf-footer-cta .btn {
  min-height: 40px;
  font-size: 12px
}

.vf-footer .footer-bottom {
  margin-top: 28px
}

.vf-footer .footer-bottom a {
  display: inline
}

/* Keep legacy page heroes and cards visually consistent with the refreshed navigation. */
.page-hero {
  background: linear-gradient(180deg, #f8fafb, #fff)
}

.page-hero .eyebrow,
.page-hero .kicker {
  color: #b77816
}

.page-hero h1 {
  font-size: clamp(42px, 5vw, 68px)
}

.card {
  border-radius: 14px
}

.site-footer .vf-brand .wordmark {
  color: var(--vf-gold-2)
}

@media(max-width:1120px) {
  .vf-hero-inner {
    grid-template-columns: 1fr .65fr
  }

  .vf-impact-card {
    width: 360px
  }

  .vf-platform-shell {
    grid-template-columns: 235px 1fr
  }

  .vf-platform-device {
    grid-column: 1/-1;
    min-height: 420px
  }

  .vf-platform-nav {
    border-bottom: 1px solid #e0e5e9
  }

  .vf-platform-copy {
    border-bottom: 1px solid #e0e5e9
  }

  .vf-footer-main {
    grid-template-columns: 1.3fr repeat(3, 1fr)
  }

  .vf-footer-col:nth-of-type(5) {
    display: none
  }

  .vf-footer-cta {
    grid-column: 3/5;
    border-left: 0;
    padding: 0
  }

  .vf-summary-metrics article {
    padding: 8px 15px
  }
}

@media(max-width:900px) {
  .vf-hero {
    min-height: auto
  }

  .vf-hero:before {
    background: linear-gradient(90deg, var(--vf-navy) 0%, rgba(6, 25, 42, .94) 57%, rgba(6, 25, 42, .45))
  }

  .vf-hero-image {
    inset: 0
  }

  .vf-hero-inner {
    grid-template-columns: 1fr;
    min-height: 720px;
    padding-top: 60px
  }

  .vf-impact-card {
    justify-self: start;
    margin: 0;
    width: min(100%, 520px)
  }

  .vf-summary-metrics {
    grid-template-columns: 1fr 1fr
  }

  .vf-summary-metrics article:nth-child(2) {
    border-right: 0
  }

  .vf-summary-metrics article {
    border-bottom: 1px solid #e0e5e9;
    justify-content: flex-start
  }

  .vf-summary-metrics article:nth-last-child(-n+2) {
    border-bottom: 0
  }

  .vf-trusted-band .wrap>div {
    grid-template-columns: repeat(3, 1fr)
  }

  .vf-platform-shell {
    grid-template-columns: 1fr
  }

  .vf-platform-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-right: 0
  }

  .vf-platform-nav button {
    border-right: 1px solid #e3e7eb
  }

  .vf-platform-device {
    grid-column: auto
  }

  .vf-calculator {
    grid-template-columns: 1fr
  }

  .vf-before-after {
    grid-template-columns: 1fr
  }

  .vf-transform-arrow {
    transform: rotate(90deg)
  }

  .vf-voice-grid {
    grid-template-columns: 1fr
  }

  .vf-footer-main {
    grid-template-columns: 1.3fr 1fr 1fr
  }

  .vf-footer-cta {
    grid-column: 1/-1
  }

  .vf-footer-col:nth-of-type(5) {
    display: block
  }
}

@media(max-width:680px) {
  .wrap {
    width: min(100% - 28px, var(--max))
  }

  .vf-header .nav-inner {
    min-height: 64px
  }

  .vf-header .wordmark {
    font-size: 18px
  }

  .vf-review-btn {
    display: none
  }

  .vf-hero:before {
    background: linear-gradient(180deg, rgba(6, 25, 42, .93), rgba(6, 25, 42, .82))
  }

  .vf-hero-image img {
    object-position: 55% center
  }

  .vf-hero-inner {
    min-height: 780px;
    padding-top: 48px;
    padding-bottom: 38px
  }

  .vf-hero h1 {
    font-size: 46px
  }

  .vf-hero-copy>p {
    font-size: 16px
  }

  .vf-hero-actions {
    display: grid
  }

  .vf-hero-actions .btn {
    width: 100%
  }

  .vf-impact-card {
    width: 100%
  }

  .vf-impact-grid strong {
    font-size: 22px
  }

  .vf-leak-summary {
    padding: 38px 0 22px
  }

  .vf-section-intro h2 {
    font-size: 30px
  }

  .vf-summary-metrics {
    grid-template-columns: 1fr
  }

  .vf-summary-metrics article {
    border-right: 0;
    border-bottom: 1px solid #e0e5e9 !important;
    justify-content: flex-start;
    padding: 18px 5px
  }

  .vf-summary-metrics article:last-child {
    border-bottom: 0 !important
  }

  .vf-summary-metrics svg {
    width: 44px;
    height: 44px
  }

  .vf-trusted-band .wrap>div {
    grid-template-columns: 1fr 1fr
  }

  .vf-trusted-band span {
    justify-content: flex-start
  }

  .vf-platform-section,
  .vf-calculator-section,
  .vf-proof-section,
  .vf-voice-section {
    padding: 54px 0
  }

  .vf-section-title h2 {
    font-size: 36px
  }

  .vf-platform-nav {
    grid-template-columns: 1fr
  }

  .vf-platform-nav button {
    border-right: 0
  }

  .vf-platform-copy {
    padding: 30px 22px
  }

  .vf-platform-copy h3 {
    font-size: 29px
  }

  .vf-platform-device {
    padding: 18px;
    min-height: 350px
  }

  .vf-device-stage {
    transform: scale(.78);
    transform-origin: center
  }

  .vf-calculator {
    gap: 12px
  }

  .vf-calc-input-card,
  .vf-calc-results-card {
    padding: 18px
  }

  .vf-calc-card-head {
    display: block
  }

  .vf-calc-card-head small {
    display: block;
    margin-top: 3px
  }

  .vf-calc-fields label {
    grid-template-columns: 1fr 110px;
    gap: 8px
  }

  .vf-breakdown-grid {
    grid-template-columns: 1fr
  }

  .vf-breakdown-list>div {
    grid-template-columns: 10px 1fr auto 36px
  }

  .vf-revenue-lift>div {
    grid-template-columns: 1fr
  }

  .vf-revenue-lift article {
    border-right: 0;
    border-bottom: 1px solid #e5e9ec;
    padding: 10px
  }

  .vf-revenue-lift article:last-child {
    border-bottom: 0
  }

  .vf-voice-copy h2 {
    font-size: 38px
  }

  .vf-tool-hero h1 {
    font-size: 46px
  }

  .vf-footer-main {
    grid-template-columns: 1fr 1fr
  }

  .vf-footer-brand,
  .vf-footer-cta {
    grid-column: 1/-1
  }

  .vf-footer-cta {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .16)
  }

  .vf-footer .footer-bottom {
    display: grid
  }

  .vf-footer .footer-bottom span:last-child {
    line-height: 2
  }
}

/* Exact user-selected VOXFARO hero artwork — scoped to the homepage hero only. */
.vf-hero-image img {
  object-position: 52% center
}

@media(max-width:900px) {
  .vf-hero-image img {
    object-position: 56% center
  }
}

@media(max-width:680px) {
  .vf-hero-image img {
    object-position: 59% center
  }
}