:root {
  --pale-blue-gray: #e8eef1;
  --pale-light-gray: #e3eaee;
  --pale-low-gray: #dfe5e8;
  --ink: #111214;
  --ink-muted: #3d444a;
  --copper: #b67955;
  --copper-deep: #9d6448;
  --seal-red: #bd201c;
  --navy: #06141b;
  --navy-soft: #0b1d27;
  --cyan: #7edfff;
  --shell-border: rgba(255, 255, 255, 0.62);
  --inner-border: rgba(16, 24, 30, 0.055);
  --shell-shadow: 0 26px 84px rgba(35, 51, 60, 0.14);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--pale-blue-gray);
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 16px 0 28px;
  background:
    radial-gradient(circle at 50% 8%, rgba(246, 250, 251, 0.48), transparent 36rem),
    linear-gradient(90deg, var(--pale-blue-gray), var(--pale-light-gray) 46%, var(--pale-blue-gray));
}

.page-shell {
  width: min(920px, calc(100% - 32px));
  min-height: 2860px;
  margin: 0 auto;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--shell-border);
  border-radius: 30px;
  background:
    linear-gradient(105deg, rgba(246, 250, 251, 0.42), rgba(227, 234, 238, 0.9) 56%, rgba(232, 238, 241, 0.72)),
    var(--pale-light-gray);
  box-shadow: var(--shell-shadow);
}

.site-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 54px;
  margin-bottom: 8px;
  color: var(--ink);
}

.brand,
.site-nav,
.header-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 9px;
  text-decoration: none;
}

.brand-icon {
  position: relative;
  width: 38px;
  height: 40px;
  color: var(--ink);
}

.cat-ear,
.cat-face {
  position: absolute;
  border: 1.4px solid currentColor;
}

.cat-ear {
  top: 2px;
  width: 13px;
  height: 14px;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.cat-ear-left {
  left: 8px;
  transform: rotate(-25deg);
}

.cat-ear-right {
  right: 8px;
  transform: rotate(25deg);
}

.cat-face {
  left: 5px;
  top: 9px;
  width: 28px;
  height: 28px;
  border-radius: 45% 45% 42% 42%;
}

.cat-eye,
.cat-mark {
  position: absolute;
  background: currentColor;
}

.cat-eye {
  top: 9px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
}

.cat-eye-left {
  left: 8px;
}

.cat-eye-right {
  right: 8px;
}

.cat-mark {
  left: 12px;
  top: 15px;
  width: 5px;
  height: 1.4px;
  border-radius: 2px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.brand-accent {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 42%, rgba(246, 250, 251, 0.94) 0 3px, transparent 3.5px),
    linear-gradient(135deg, var(--copper), var(--copper-deep));
  box-shadow: inset 0 -3px 8px rgba(80, 34, 20, 0.18);
}

.site-nav {
  justify-content: flex-end;
  gap: 18px;
}

.site-nav a {
  color: var(--ink-muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta {
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff5ee;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(180deg, var(--copper), var(--copper-deep));
}

.hero {
  position: relative;
  min-height: 640px;
  padding: 62px 0 34px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  left: 0;
  top: 58px;
  z-index: 2;
  width: 660px;
  height: 410px;
  border-radius: 24px 0 30px 0;
  background:
    linear-gradient(112deg, rgba(232, 238, 241, 0.99), rgba(227, 234, 238, 0.985) 62%, rgba(223, 229, 232, 0.94)),
    var(--pale-blue-gray);
  box-shadow: 30px 30px 58px rgba(4, 12, 18, 0.08);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 560px;
  padding-top: 76px;
}

.hero-copy h1 {
  position: relative;
  z-index: 3;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(48px, 6.4vw, 76px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy p {
  position: relative;
  z-index: 3;
  width: min(322px, 100%);
  margin: 28px 0 0;
  color: #262c31;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.48;
}

.hero-actions {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}

.hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 21px;
  border-radius: 999px;
  color: #f4f6f7;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(180deg, #162330, #070d13);
  box-shadow: 0 13px 26px rgba(6, 20, 27, 0.25);
}

.hero-secondary {
  color: #333a40;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.cat-watermark {
  position: absolute;
  left: 360px;
  top: 244px;
  z-index: 3;
  width: 190px;
  height: 158px;
  opacity: 0.045;
  transform: rotate(-12deg);
  pointer-events: none;
}

.watermark-ear,
.watermark-head,
.watermark-paw {
  position: absolute;
  border: 3px solid var(--ink);
}

.watermark-ear {
  top: 2px;
  width: 52px;
  height: 62px;
  border-bottom: 0;
  border-radius: 34px 34px 0 0;
}

.watermark-ear-left {
  left: 44px;
  transform: rotate(-24deg);
}

.watermark-ear-right {
  right: 44px;
  transform: rotate(24deg);
}

.watermark-head {
  left: 32px;
  top: 32px;
  width: 126px;
  height: 108px;
  border-radius: 48% 48% 44% 44%;
}

.watermark-head::before,
.watermark-head::after {
  position: absolute;
  top: 39px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.watermark-head::before {
  left: 31px;
}

.watermark-head::after {
  right: 31px;
}

.watermark-paw {
  right: 9px;
  bottom: 6px;
  width: 50px;
  height: 70px;
  border-radius: 24px;
}

.hero-visual {
  position: absolute;
  inset: 106px 0 28px 360px;
  z-index: 1;
  overflow: hidden;
  border-radius: 0 30px 30px 28px;
  background: var(--pale-light-gray);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 48%;
  filter: saturate(1.08) contrast(1.04);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(232, 238, 241, 0.04), transparent 22%, rgba(4, 10, 15, 0.38)),
    linear-gradient(180deg, rgba(6, 14, 20, 0.08), transparent 42%, rgba(6, 14, 20, 0.3));
}

.brush-calligraphy {
  position: absolute;
  left: 164px;
  top: 20px;
  z-index: 3;
  color: #030405;
  font-family: var(--serif);
  font-size: 106px;
  font-weight: 700;
  line-height: 0.86;
  transform: rotate(-9deg);
  filter: blur(0.15px);
}

.vertical-japanese {
  position: absolute;
  top: 26px;
  right: 21px;
  z-index: 3;
  color: rgba(236, 243, 245, 0.82);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.55;
  writing-mode: vertical-rl;
}

.hero-seal {
  position: absolute;
  right: 9px;
  bottom: 24px;
  z-index: 3;
  display: grid;
  width: 27px;
  height: 36px;
  place-items: center;
  border: 2px solid var(--seal-red);
  color: var(--seal-red);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.strategy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 32px;
  align-items: start;
  margin-top: 18px;
  padding: 22px 18px 24px;
  border: 1px solid rgba(16, 24, 30, 0.065);
  border-radius: 23px 21px 25px 21px;
  background:
    linear-gradient(112deg, rgba(232, 238, 241, 0.38), rgba(227, 234, 238, 0.68) 58%, rgba(223, 229, 232, 0.24)),
    rgba(232, 238, 241, 0.26);
}

.section-label {
  margin: 0 0 14px;
  color: var(--copper);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.strategy-copy {
  padding: 10px 0 0 4px;
}

.strategy-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
}

.strategy-copy > p:not(.section-label) {
  max-width: 310px;
  margin: 20px 0 0;
  color: #465057;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.52;
}

.strategy-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  align-items: stretch;
}

.strategy-card {
  position: relative;
  min-height: 178px;
  border: 1px solid rgba(16, 24, 30, 0.09);
  background:
    linear-gradient(145deg, rgba(246, 250, 251, 0.5), rgba(227, 234, 238, 0.66)),
    var(--pale-blue-gray);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 15px 34px rgba(35, 51, 60, 0.07);
}

.card-one {
  padding: 24px 20px 20px;
  border-radius: 22px 17px 20px 18px;
}

.card-two {
  min-height: 166px;
  margin-top: 13px;
  padding: 20px 18px 22px;
  border-radius: 17px 23px 17px 22px;
}

.card-three {
  padding: 27px 19px 18px;
  border-radius: 19px 18px 25px 17px;
}

.card-number {
  position: absolute;
  top: 15px;
  right: 16px;
  color: rgba(145, 93, 67, 0.72);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
}

.card-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  color: var(--copper);
}

.target-icon {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.target-icon::before,
.target-icon::after,
.target-icon span {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.target-icon::before {
  inset: 8px;
  border: 2px solid currentColor;
}

.target-icon::after {
  inset: 17px;
  background: currentColor;
}

.target-icon span {
  right: -5px;
  top: -5px;
  width: 18px;
  height: 2px;
  background: currentColor;
  transform: rotate(-42deg);
  transform-origin: left center;
}

.shield-icon {
  width: 38px;
  height: 44px;
  border: 2px solid currentColor;
  border-radius: 18px 18px 16px 16px;
  clip-path: polygon(50% 0, 96% 15%, 88% 72%, 50% 100%, 12% 72%, 4% 15%);
}

.shield-icon span {
  position: absolute;
  left: 11px;
  top: 17px;
  width: 15px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.growth-icon span {
  position: absolute;
  bottom: 4px;
  width: 7px;
  border-radius: 4px 4px 0 0;
  background: currentColor;
}

.growth-icon span:nth-child(1) {
  left: 5px;
  height: 16px;
}

.growth-icon span:nth-child(2) {
  left: 18px;
  height: 25px;
}

.growth-icon span:nth-child(3) {
  left: 31px;
  height: 35px;
}

.growth-icon::before {
  position: absolute;
  left: 5px;
  top: 4px;
  width: 34px;
  height: 23px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: skewY(-25deg);
}

.strategy-card h3 {
  margin: 36px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.card-two h3 {
  margin-top: 28px;
}

.card-three h3 {
  margin-top: 33px;
}

.audit-panel {
  --step-glow: 0;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(240px, 1.08fr) minmax(0, 0.88fr);
  gap: 22px;
  min-height: 520px;
  margin-top: 14px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(182, 121, 85, 0.22);
  border-radius: 25px 21px 27px 22px;
  color: #eaf4f7;
  background:
    radial-gradient(circle at 50% 48%, rgba(126, 223, 255, 0.16), transparent 18rem),
    radial-gradient(circle at 18% 18%, rgba(182, 121, 85, 0.08), transparent 15rem),
    linear-gradient(135deg, #051018, #071821 48%, #040d13);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(182, 121, 85, 0.08),
    0 20px 48px rgba(4, 16, 22, 0.22);
}

.audit-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.34;
  background:
    linear-gradient(90deg, transparent 0 27%, rgba(182, 121, 85, 0.38) 27% 27.3%, transparent 27.3% 72%, rgba(182, 121, 85, 0.32) 72% 72.3%, transparent 72.3%),
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(126, 223, 255, 0.07) 31px 32px);
  pointer-events: none;
}

.audit-inputs,
.cat-stage,
.audit-results {
  position: relative;
  z-index: 2;
}

.audit-label {
  margin: 0 0 12px;
  color: #b88664;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
}

.audit-inputs h2 {
  max-width: 250px;
  margin: 0 0 18px;
  color: #f1f7f8;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 0.97;
}

.input-stack {
  display: grid;
  gap: 9px;
}

.audit-field {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 9px 11px;
  border: 1px solid rgba(182, 121, 85, 0.28);
  border-radius: 10px;
  background: rgba(8, 27, 36, 0.72);
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.audit-field:hover {
  border-color: rgba(182, 121, 85, 0.56);
  background: rgba(10, 34, 45, 0.78);
  box-shadow:
    inset 0 0 16px rgba(182, 121, 85, 0.055),
    0 0 18px rgba(182, 121, 85, 0.08);
}

.field-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1;
}

.audit-field span:not(.field-icon):not(.budget-slider) {
  display: block;
  color: #92a3aa;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
}

.audit-field strong {
  display: block;
  margin-top: 3px;
  color: #edf6f8;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.24;
}

.demo-calculator .audit-field {
  min-height: 72px;
  align-items: center;
}

.demo-calculator .audit-field span:not(.field-icon):not(.budget-slider) {
  display: none;
}

.demo-calculator .audit-field strong {
  max-width: 100%;
  margin-top: 0;
  color: #c48661;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

.demo-calculator .budget-field strong {
  font-size: 22px;
}

.audit-field i {
  color: #c09170;
  font-style: normal;
  font-size: 14px;
}

.budget-field {
  grid-template-columns: 30px 1fr;
}

.budget-slider {
  position: relative;
  display: block;
  height: 4px;
  margin-top: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(222, 235, 238, 0.16);
}

.budget-slider span {
  position: absolute;
  inset: 0 34% 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #b67955, #e0a274);
}

.cat-stage {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 455px;
  padding-bottom: 84px;
}

.cat-stage img {
  position: relative;
  z-index: 3;
  width: min(265px, 92%);
  height: auto;
  filter: drop-shadow(0 0 12px rgba(126, 223, 255, 0.7)) drop-shadow(0 0 28px rgba(126, 223, 255, 0.34));
  animation: catPulse 4.8s ease-in-out infinite;
  will-change: filter, transform;
}

.cat-glow,
.copper-schematic,
.pedestal-glow {
  position: absolute;
  pointer-events: none;
}

.cat-glow {
  z-index: 1;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 223, 255, 0.18), rgba(126, 223, 255, 0.06) 42%, transparent 68%);
  opacity: calc(0.66 + (var(--step-glow) * 0.045));
  animation: glowPulse 4.8s ease-in-out infinite;
  will-change: opacity, transform;
}

.copper-schematic {
  z-index: 1;
  inset: 24px -70px 62px;
  opacity: 0.86;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 46%, rgba(0, 0, 0, 0.82) 62%, rgba(0, 0, 0, 0.28) 78%, transparent 94%);
  mask-image: radial-gradient(ellipse at center, #000 0 46%, rgba(0, 0, 0, 0.82) 62%, rgba(0, 0, 0, 0.28) 78%, transparent 94%);
}

.copper-schematic::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.32;
  background:
    repeating-linear-gradient(32deg, transparent 0 30px, rgba(126, 223, 255, 0.055) 31px 32px),
    repeating-linear-gradient(148deg, transparent 0 38px, rgba(182, 121, 85, 0.055) 39px 40px);
}

.copper-schematic span {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(182, 121, 85, 0.22), rgba(234, 192, 157, 0.72), rgba(182, 121, 85, 0.26), transparent);
  filter: drop-shadow(0 0 5px rgba(234, 192, 157, 0.26));
  animation: circuitGlow 5.8s ease-in-out infinite;
}

.copper-schematic span::before,
.copper-schematic span::after {
  position: absolute;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #eac09d;
  box-shadow: 0 0 11px rgba(234, 192, 157, 0.74);
  content: "";
}

.copper-schematic span::before {
  left: 0;
}

.copper-schematic span::after {
  right: 0;
}

.copper-schematic span:nth-child(1) { left: 0; top: 18%; width: 36%; transform: rotate(0deg); animation-delay: 0.1s; }
.copper-schematic span:nth-child(2) { left: 5%; top: 32%; width: 35%; transform: rotate(-18deg); animation-delay: 0.8s; }
.copper-schematic span:nth-child(3) { left: 3%; top: 52%; width: 37%; transform: rotate(16deg); animation-delay: 1.4s; }
.copper-schematic span:nth-child(4) { left: 1%; top: 72%; width: 42%; transform: rotate(-30deg); animation-delay: 2s; }
.copper-schematic span:nth-child(5) { right: 0; top: 20%; width: 36%; transform: rotate(0deg); animation-delay: 0.4s; }
.copper-schematic span:nth-child(6) { right: 5%; top: 36%; width: 35%; transform: rotate(18deg); animation-delay: 1.1s; }
.copper-schematic span:nth-child(7) { right: 2%; top: 55%; width: 38%; transform: rotate(-17deg); animation-delay: 1.8s; }
.copper-schematic span:nth-child(8) { right: 1%; top: 74%; width: 42%; transform: rotate(30deg); animation-delay: 2.6s; }
.copper-schematic span:nth-child(9) { left: 26%; bottom: 12%; width: 20%; transform: rotate(0deg); animation-delay: 3.1s; }
.copper-schematic span:nth-child(10) { right: 26%; bottom: 12%; width: 20%; transform: rotate(0deg); animation-delay: 3.5s; }

.copper-schematic span:nth-child(2)::before,
.copper-schematic span:nth-child(4)::before,
.copper-schematic span:nth-child(6)::after,
.copper-schematic span:nth-child(8)::after {
  background: #7edfff;
  box-shadow: 0 0 11px rgba(126, 223, 255, 0.65);
}

.scan-ring {
  display: none;
}

.pedestal-glow {
  z-index: 2;
  bottom: 78px;
  width: 190px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(234, 192, 157, 0.22), rgba(126, 223, 255, 0.08) 46%, transparent 70%);
  filter: blur(1px);
  animation: pedestalPulse 5.4s ease-in-out infinite;
  will-change: opacity, transform;
}

.process-line-audit {
  position: absolute;
  left: 50%;
  bottom: 25px;
  z-index: 4;
  width: max-content;
  max-width: 100%;
  transform: translateX(-50%);
  color: #becbd0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.process-line-audit span {
  color: var(--copper);
  padding: 0 8px;
}

.circuit-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.circuit-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182, 121, 85, 0.26), rgba(126, 223, 255, 0.18), rgba(182, 121, 85, 0.48), transparent);
  background-size: 210% 100%;
  animation: circuitFlow 6.8s ease-in-out infinite;
  will-change: background-position, opacity;
}

.line-left-one {
  left: 26%;
  top: 38%;
  width: 22%;
  transform: rotate(12deg);
}

.line-left-two {
  left: 27%;
  top: 57%;
  width: 21%;
  transform: rotate(-16deg);
}

.line-right-one {
  right: 24%;
  top: 35%;
  width: 22%;
  transform: rotate(-14deg);
}

.line-right-two {
  right: 25%;
  top: 60%;
  width: 22%;
  transform: rotate(16deg);
}

.node,
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(126, 223, 255, 0.62);
  animation: nodeBlink 3.6s ease-in-out infinite;
}

.node {
  width: 5px;
  height: 5px;
}

.node-one { left: 34%; top: 36%; }
.node-two { left: 35%; top: 62%; animation-delay: 0.8s; }
.node-three { right: 34%; top: 34%; animation-delay: 1.4s; }
.node-four { right: 35%; top: 63%; animation-delay: 2s; }

.particle {
  width: 3px;
  height: 3px;
  opacity: 0.76;
}

.particle-one { left: 47%; top: 30%; animation-delay: 0.5s; }
.particle-two { left: 55%; top: 39%; animation-delay: 1.3s; }
.particle-three { left: 43%; top: 58%; animation-delay: 2.1s; }
.particle-four { left: 58%; top: 61%; animation-delay: 2.8s; }

.audit-results {
  display: grid;
  align-content: start;
  gap: 10px;
}

.result-card,
.mini-result,
.recommendation-box {
  border: 1px solid rgba(126, 223, 255, 0.17);
  border-radius: 11px;
  background: rgba(8, 27, 36, 0.72);
}

.demo-calculator .audit-results {
  gap: 9px;
}

.demo-calculator .result-card {
  padding: 13px;
}

.leak-card strong,
.gain-card strong {
  color: #f2f7f8;
  font-size: 15px;
  line-height: 1.22;
}

.gain-card strong {
  color: #eac09d;
}

.demo-cta-block {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 5;
  display: grid;
  width: min(330px, 92%);
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.demo-cta-block p {
  margin: 0;
  color: #cbd8dc;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.demo-calculator.show-demo-cta .demo-cta-block {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.demo-cta-block .audit-cta {
  min-height: 40px;
  width: 100%;
  margin: 0;
}

.demo-step-row {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: -10px;
  padding-top: 14px;
  border-top: 1px solid rgba(126, 223, 255, 0.11);
}

.demo-step-row button {
  min-height: 42px;
  padding: 8px 9px;
  border: 1px solid rgba(126, 223, 255, 0.14);
  border-radius: 10px;
  color: #9baab0;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  text-align: left;
  background: rgba(8, 27, 36, 0.55);
  cursor: pointer;
  transition: border-color 220ms ease, color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.demo-step-row button span {
  display: block;
  margin-bottom: 3px;
  color: rgba(182, 121, 85, 0.72);
  font-size: 9px;
}

.demo-step-row button.is-active {
  border-color: rgba(182, 121, 85, 0.62);
  color: #f2f7f8;
  background: rgba(18, 38, 47, 0.76);
  box-shadow: inset 0 0 16px rgba(182, 121, 85, 0.055), 0 0 16px rgba(182, 121, 85, 0.07);
}

.demo-step-row button.is-active span {
  color: #e0a274;
}

.demo-step-row p {
  grid-column: 1 / -1;
  margin: 3px 0 0;
  color: #becbd0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.demo-step-row p span {
  color: var(--copper);
  padding: 0 8px;
}

.result-card {
  padding: 14px;
}

.potential-card {
  display: grid;
  grid-template-columns: 1fr 94px;
  gap: 12px;
  align-items: end;
}

.result-card span,
.mini-result span,
.recommendation-box span {
  display: block;
  color: #9baab0;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
}

.result-card strong,
.mini-result strong {
  display: block;
  margin-top: 7px;
  color: #f3f8f9;
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.result-card strong small {
  color: #b9c7cc;
  font-size: 13px;
}

.result-card em {
  display: block;
  margin-top: 7px;
  color: #e0a274;
  font-family: var(--sans);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.gauge {
  width: 94px;
  height: 58px;
}

.gauge path {
  fill: none;
  stroke-linecap: round;
  stroke-width: 10;
}

.gauge-track {
  stroke: rgba(232, 246, 250, 0.16);
}

.gauge-value {
  stroke: #f0b07e;
  stroke-dasharray: 118;
  stroke-dashoffset: 118;
}

.gauge circle {
  fill: #f0b07e;
}

.line-chart {
  display: block;
  width: 100%;
  height: 44px;
  margin-top: 9px;
}

.line-chart polyline {
  fill: none;
  stroke: #e0a274;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
}

.audit-panel.is-visible .gauge-value {
  animation: gaugeFill 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

.audit-panel.is-visible .line-chart polyline {
  animation: chartDraw 1.7s cubic-bezier(0.22, 1, 0.36, 1) 0.34s forwards;
}

.mini-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-result {
  padding: 13px;
}

.mini-result strong {
  color: #eac09d;
  font-size: 16px;
}

.recommendation-box {
  padding: 14px;
}

.recommendation-box p {
  margin: 7px 0 0;
  color: #d7e1e4;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.42;
}

.audit-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 2px;
  overflow: hidden;
  position: relative;
  border-radius: 999px;
  color: #fff5ee;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(180deg, var(--copper), var(--copper-deep));
}

.audit-cta::after {
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 42%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 245, 238, 0.28), transparent);
  transform: skewX(-18deg);
  transition: left 480ms ease;
}

.audit-cta:hover::after {
  left: 112%;
}

.audit-seal {
  position: absolute;
  right: 13px;
  bottom: 13px;
  z-index: 3;
  display: grid;
  width: 34px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--seal-red);
  color: var(--seal-red);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.dashboard-preview {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  margin-top: 14px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(126, 223, 255, 0.14);
  border-radius: 22px 24px 20px 24px;
  color: #eaf4f7;
  background:
    radial-gradient(circle at 72% 42%, rgba(126, 223, 255, 0.12), transparent 15rem),
    linear-gradient(135deg, #06131b, #071a22 48%, #041017);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 42px rgba(4, 16, 22, 0.18);
}

.dashboard-preview::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.22;
  background:
    linear-gradient(90deg, transparent 0 44%, rgba(182, 121, 85, 0.36) 44% 44.3%, transparent 44.3%),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(126, 223, 255, 0.06) 29px 30px);
  pointer-events: none;
}

.dashboard-copy,
.dashboard-metrics {
  position: relative;
  z-index: 1;
}

.dashboard-copy h2 {
  max-width: 350px;
  margin: 0;
  color: #f1f7f8;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  line-height: 0.98;
}

.dashboard-copy ul {
  display: grid;
  gap: 9px;
  margin: 21px 0 23px;
  padding: 0;
  list-style: none;
}

.dashboard-copy li {
  position: relative;
  padding-left: 18px;
  color: #bccbd0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
}

.dashboard-copy li::before {
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  content: "";
}

.dashboard-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff5ee;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(180deg, var(--copper), var(--copper-deep));
}

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

.dashboard-metric,
.dashboard-chart {
  border: 1px solid rgba(126, 223, 255, 0.15);
  border-radius: 11px;
  background: rgba(8, 27, 36, 0.72);
}

.dashboard-metric {
  min-height: 88px;
  padding: 14px;
}

.dashboard-metric span,
.dashboard-chart > span {
  display: block;
  color: #9baab0;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
}

.dashboard-metric strong {
  display: block;
  margin-top: 11px;
  color: #f2f7f8;
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.dashboard-metric.revenue {
  grid-column: span 2;
  min-height: 142px;
}

.dashboard-metric.revenue strong {
  color: #eac09d;
  font-size: 27px;
}

.dashboard-metric.revenue svg {
  display: block;
  width: 100%;
  height: 68px;
  margin-top: 12px;
}

.dashboard-metric.revenue polyline {
  fill: none;
  stroke: #e0a274;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dashboard-chart {
  min-height: 142px;
  padding: 14px;
}

.donut-wrap {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.donut-wrap svg {
  width: 84px;
  height: 84px;
  transform: rotate(-90deg);
}

.donut-wrap circle {
  fill: none;
  stroke-width: 13;
}

.donut-base {
  stroke: rgba(232, 246, 250, 0.12);
}

.donut-copper {
  stroke: #e0a274;
  stroke-dasharray: 82 176;
}

.donut-cyan {
  stroke: #7edfff;
  stroke-dasharray: 54 176;
  stroke-dashoffset: -82;
}

.donut-muted {
  stroke: rgba(232, 246, 250, 0.34);
  stroke-dasharray: 40 176;
  stroke-dashoffset: -136;
}

.legend {
  display: grid;
  gap: 7px;
}

.legend span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #bccbd0;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
}

.legend i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e0a274;
}

.legend span:nth-child(2) i {
  background: #7edfff;
}

.legend span:nth-child(3) i {
  background: rgba(232, 246, 250, 0.54);
}

.process-section,
.infrastructure-section,
.industries-section {
  margin-top: 14px;
  border: 1px solid rgba(16, 24, 30, 0.065);
  background:
    linear-gradient(112deg, rgba(232, 238, 241, 0.38), rgba(227, 234, 238, 0.68) 58%, rgba(223, 229, 232, 0.24)),
    rgba(232, 238, 241, 0.26);
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: center;
  padding: 22px 18px 24px;
  border-radius: 23px 20px 25px 22px;
}

.light-section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 41px;
  font-weight: 700;
  line-height: 0.96;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 9px;
  align-items: center;
}

.process-steps article {
  display: grid;
  min-height: 124px;
  align-content: center;
  justify-items: center;
  padding: 15px 10px;
  border: 1px solid rgba(16, 24, 30, 0.09);
  border-radius: 18px 21px 17px 19px;
  background:
    linear-gradient(145deg, rgba(246, 250, 251, 0.46), rgba(227, 234, 238, 0.62)),
    var(--pale-blue-gray);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    0 13px 28px rgba(35, 51, 60, 0.055);
}

.process-steps article:nth-of-type(2) {
  border-radius: 16px 23px 19px 17px;
  transform: translateY(6px);
}

.process-steps article:nth-of-type(4) {
  border-radius: 21px 17px 22px 18px;
  transform: translateY(5px);
}

.process-steps i {
  color: var(--ink-muted);
  font-family: var(--sans);
  font-style: normal;
  font-weight: 800;
}

.process-steps strong {
  margin-top: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
  text-align: center;
}

.process-icon {
  position: relative;
  width: 34px;
  height: 30px;
  color: var(--copper);
}

.eye-icon {
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 50% / 64% 64% 36% 36%;
  transform: rotate(45deg);
}

.eye-icon::after {
  position: absolute;
  inset: 9px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.trust-icon {
  border: 2px solid currentColor;
  border-radius: 18px;
  clip-path: polygon(50% 0, 96% 17%, 87% 74%, 50% 100%, 13% 74%, 4% 17%);
}

.demand-icon::before,
.demand-icon::after,
.sale-icon::before,
.sale-icon::after,
.rise-icon::before,
.rise-icon::after {
  position: absolute;
  content: "";
}

.demand-icon::before {
  inset: 4px 5px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.demand-icon::after {
  right: 2px;
  bottom: 2px;
  width: 13px;
  height: 2px;
  background: currentColor;
  transform: rotate(42deg);
}

.sale-icon::before {
  left: 5px;
  top: 7px;
  width: 24px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.sale-icon::after {
  left: 10px;
  top: 13px;
  width: 14px;
  height: 2px;
  background: currentColor;
}

.rise-icon::before {
  left: 4px;
  bottom: 5px;
  width: 27px;
  height: 20px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: skewY(-24deg);
}

.rise-icon::after {
  right: 3px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.infrastructure-section {
  padding: 20px 18px 22px;
  border-radius: 22px 24px 21px 23px;
}

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

.infrastructure-grid article {
  min-height: 112px;
  padding: 14px 12px;
  border: 1px solid rgba(16, 24, 30, 0.085);
  border-radius: 15px 18px 15px 17px;
  background:
    linear-gradient(145deg, rgba(246, 250, 251, 0.42), rgba(227, 234, 238, 0.58)),
    var(--pale-blue-gray);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 11px 24px rgba(35, 51, 60, 0.045);
}

.infrastructure-grid article:nth-child(2),
.infrastructure-grid article:nth-child(5) {
  border-radius: 18px 14px 19px 15px;
}

.infrastructure-grid span {
  display: block;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1;
}

.infrastructure-grid strong {
  display: block;
  margin-top: 15px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.industries-section {
  padding: 18px;
  border-radius: 20px 22px 20px 22px;
}

.industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.industry-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 15px;
  border: 1px solid rgba(16, 24, 30, 0.11);
  border-radius: 999px;
  color: #475158;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  background: rgba(232, 238, 241, 0.54);
}

.team-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(0, 1.44fr);
  gap: 22px;
  margin-top: 14px;
  padding: 22px 18px 24px;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 30, 0.065);
  border-radius: 23px 21px 24px 22px;
  background:
    linear-gradient(112deg, rgba(232, 238, 241, 0.38), rgba(227, 234, 238, 0.68) 58%, rgba(223, 229, 232, 0.24)),
    rgba(232, 238, 241, 0.26);
}

.team-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  line-height: 0.96;
}

.team-system {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.system-card {
  position: relative;
  display: grid;
  min-height: 256px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(16, 24, 30, 0.085);
  border-radius: 20px 16px 22px 18px;
  background:
    linear-gradient(145deg, rgba(246, 250, 251, 0.44), rgba(227, 234, 238, 0.62)),
    var(--pale-blue-gray);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 13px 28px rgba(35, 51, 60, 0.055);
}

.attention-card {
  border-radius: 16px 21px 18px 22px;
}

.system-kicker {
  color: var(--copper);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
}

.jp-word {
  position: absolute;
  right: 16px;
  top: 14px;
  color: rgba(16, 17, 20, 0.1);
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 700;
}

.system-card h3 {
  margin: 19px 0 2px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 35px;
  line-height: 1;
}

.system-card p {
  margin: 0 0 14px;
  color: #4a5359;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
}

.system-card ul {
  columns: 2;
  column-gap: 18px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.system-card li {
  position: relative;
  break-inside: avoid;
  padding-left: 9px;
  color: #586168;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.55;
}

.system-card li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.system-card strong {
  align-self: end;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
}

.demand-equation {
  display: grid;
  min-width: 96px;
  place-items: center;
  align-content: center;
  color: var(--ink);
  text-align: center;
}

.demand-equation span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.demand-equation strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 700;
  line-height: 0.95;
}

.team-seal {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 28px;
  height: 38px;
  place-items: center;
  border: 2px solid var(--seal-red);
  color: var(--seal-red);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}

.final-cta {
  position: relative;
  min-height: 250px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(126, 223, 255, 0.13);
  border-radius: 28px 22px 29px 23px;
  color: #eef6f8;
  background:
    linear-gradient(90deg, rgba(4, 12, 18, 0.94) 0 43%, rgba(4, 12, 18, 0.44) 62%, rgba(4, 12, 18, 0.18)),
    url("./assets/hero-city.png") right center / 56% 100% no-repeat,
    #06131b;
  box-shadow: 0 18px 42px rgba(4, 16, 22, 0.18);
}

.final-cta-copy {
  position: relative;
  z-index: 2;
  max-width: 405px;
  padding: 34px 40px;
}

.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  line-height: 0.96;
}

.final-cta p {
  max-width: 330px;
  margin: 17px 0 0;
  color: #c4d0d4;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.48;
}

.final-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.final-cta-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff5ee;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(180deg, var(--copper), var(--copper-deep));
}

.final-cta-row small {
  color: #b8c8ce;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
}

.cta-watermark {
  position: absolute;
  left: 314px;
  top: 46px;
  z-index: 1;
  width: 142px;
  height: 142px;
  border: 3px solid rgba(232, 246, 250, 0.08);
  border-radius: 48% 48% 42% 42%;
}

.cta-watermark::before,
.cta-watermark::after {
  position: absolute;
  content: "";
}

.cta-watermark::before {
  left: 30px;
  top: -26px;
  width: 78px;
  height: 54px;
  border-top: 3px solid rgba(232, 246, 250, 0.08);
  border-left: 3px solid rgba(232, 246, 250, 0.08);
  border-right: 3px solid rgba(232, 246, 250, 0.08);
  border-radius: 45px 45px 0 0;
}

.cta-watermark::after {
  right: -34px;
  top: 45px;
  width: 44px;
  height: 58px;
  border: 3px solid rgba(232, 246, 250, 0.08);
  border-radius: 24px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 14px;
  padding: 18px 12px 0;
  border-top: 1px solid rgba(16, 24, 30, 0.08);
}

.footer-brand .brand-icon {
  width: 32px;
  height: 34px;
}

.footer-brand .brand-name {
  font-size: 23px;
}

.footer-brand .brand-accent {
  width: 15px;
  height: 15px;
}

.footer-nav,
.footer-meta,
.socials {
  display: flex;
  align-items: center;
}

.footer-nav {
  justify-content: center;
  gap: 24px;
}

.footer-meta {
  gap: 13px;
}

.footer-nav a,
.footer-meta a {
  color: #475158;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.socials {
  gap: 7px;
}

.socials a {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(16, 24, 30, 0.12);
  border-radius: 50%;
  color: var(--copper);
  font-size: 10px;
  background: rgba(232, 238, 241, 0.5);
}

@keyframes catPulse {
  0%, 100% {
    filter: drop-shadow(0 0 12px rgba(126, 223, 255, 0.62)) drop-shadow(0 0 28px rgba(126, 223, 255, 0.28));
    transform: translateY(0);
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(126, 223, 255, 0.86)) drop-shadow(0 0 38px rgba(126, 223, 255, 0.4));
    transform: translateY(-2px);
  }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.72; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes pedestalPulse {
  0%, 100% { opacity: 0.58; transform: scaleX(0.96); }
  50% { opacity: 0.88; transform: scaleX(1.04); }
}

@keyframes scanRotate {
  to { transform: rotate(360deg); }
}

@keyframes circuitGlow {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.95; }
}

@keyframes circuitFlow {
  0%, 100% { background-position: 0% 50%; opacity: 0.58; }
  50% { background-position: 100% 50%; opacity: 0.9; }
}

@keyframes nodeBlink {
  0%, 100% { opacity: 0.28; transform: scale(0.82); }
  45% { opacity: 1; transform: scale(1.14); }
}

@keyframes gaugeFill {
  to { stroke-dashoffset: 21; }
}

@keyframes chartDraw {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .cat-stage img,
  .cat-glow,
  .copper-schematic span,
  .pedestal-glow,
  .circuit-line,
  .node,
  .particle,
  .gauge-value,
  .line-chart polyline {
    animation: none;
  }

  .gauge-value,
  .line-chart polyline {
    stroke-dashoffset: 0;
  }

  .demo-cta-block {
    transition: none;
  }
}

@media (max-width: 760px) {
  body {
    padding: 9px 0 18px;
  }

  .page-shell {
    width: calc(100% - 18px);
    min-height: 4120px;
    padding: 18px;
    border-radius: 24px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
    margin-bottom: 15px;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .site-nav a {
    font-size: 11px;
  }

  .brand-name {
    font-size: 25px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 15px;
    font-size: 11px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 28px;
  }

  .hero-copy {
    max-width: none;
    padding-top: 0;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .cat-watermark {
    left: auto;
    right: -34px;
    top: 140px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .pale-hero-overlay {
    width: 170px;
  }

  .brush-calligraphy {
    left: 40px;
    font-size: 86px;
  }

  .strategy-section {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 12px;
    padding: 20px 14px;
  }

  .strategy-copy {
    padding-left: 0;
  }

  .strategy-copy h2 {
    font-size: 39px;
  }

  .strategy-cards {
    grid-template-columns: 1fr;
  }

  .card-two {
    margin-top: 0;
  }

  .audit-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 14px;
  }

  .audit-inputs h2 {
    max-width: none;
  }

  .cat-stage {
    min-height: 460px;
  }

  .cat-stage img {
    width: min(245px, 86%);
  }

  .process-line-audit {
    white-space: normal;
    text-align: center;
  }

  .potential-card,
  .mini-results {
    grid-template-columns: 1fr;
  }

  .demo-step-row {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .gauge {
    width: 120px;
  }

  .line-left-one,
  .line-left-two,
  .line-right-one,
  .line-right-two {
    display: none;
  }

  .dashboard-preview {
    grid-template-columns: 1fr;
    padding: 20px 14px;
  }

  .dashboard-copy h2 {
    font-size: 32px;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .dashboard-metric.revenue {
    grid-column: auto;
  }

  .donut-wrap {
    grid-template-columns: 84px 1fr;
  }

  .process-section {
    grid-template-columns: 1fr;
    padding: 20px 14px;
  }

  .light-section-heading h2 {
    font-size: 36px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps i {
    display: none;
  }

  .process-steps article,
  .process-steps article:nth-of-type(2),
  .process-steps article:nth-of-type(4) {
    transform: none;
  }

  .infrastructure-section,
  .industries-section {
    padding: 18px 14px;
  }

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

  .team-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .team-section {
    padding: 20px 14px;
  }

  .team-heading h2 {
    font-size: 36px;
  }

  .team-system {
    grid-template-columns: 1fr;
  }

  .demand-equation {
    min-height: 86px;
  }

  .system-card ul {
    columns: 1;
  }

  .final-cta {
    background:
      linear-gradient(180deg, rgba(4, 12, 18, 0.96) 0 56%, rgba(4, 12, 18, 0.42)),
      url("./assets/hero-city.png") center bottom / 100% 48% no-repeat,
      #06131b;
  }

  .final-cta-copy {
    padding: 30px 24px 150px;
  }

  .final-cta h2 {
    font-size: 40px;
  }

  .cta-watermark {
    left: auto;
    right: -18px;
    top: 76px;
  }

  .footer-nav,
  .footer-meta {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
