:root {
  color-scheme: dark;
  --bg: #041329;
  --bg-deep: #020611;
  --surface: rgba(8, 17, 33, 0.64);
  --surface-strong: rgba(12, 23, 42, 0.86);
  --line: rgba(204, 221, 255, 0.16);
  --text: #eef5ff;
  --muted: #aebbd0;
  --blue: #2f9dff;
  --blue-soft: #b9d8ff;
  --green: #4edea3;
  --amber: #d9b76f;
  --platinum: #eef5ff;
  --gold: #d9b76f;
  --ink: #050914;
  --shadow: 0 34px 90px rgba(1, 10, 28, 0.42);
  --radius: 8px;
  --container: 1232px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes premiumGlow {
  0%, 100% {
    box-shadow: 0 18px 35px rgba(20, 147, 255, 0.16);
  }
  50% {
    box-shadow: 0 28px 55px rgba(20, 147, 255, 0.22);
  }
}

@keyframes heroTextRise {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroTextHue {
  0%, 100% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(5deg);
  }
}

@keyframes blurTextIn {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(var(--blur-y, -42px));
  }
  58% {
    opacity: 0.56;
    filter: blur(5px);
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes orbitSweep {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.02);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes executivePulse {
  0%, 100% {
    opacity: 0.62;
    transform: translateY(0);
  }
  50% {
    opacity: 0.95;
    transform: translateY(-4px);
  }
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg-deep);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(204, 221, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(2, 7, 17, 0.9), rgba(2, 7, 17, 0.72)),
    rgba(4, 19, 41, 0.84);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(24px) saturate(140%);
  transition: background 260ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.nav-shell,
.section-inner,
.button,
.feature-card,
.price-card,
.about-panel,
.cta-card,
.contact-info-card,
.phone-preview button,
.screenshot-dialog,
.screenshot-stage img {
  will-change: transform, opacity, box-shadow;
}

.nav-shell,
.section-inner {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-soft);
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.footer-brand strong {
  color: #ffffff;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(217, 183, 111, 0.28);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 26px rgba(47, 157, 255, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: auto;
}

.nav-links a,
.site-footer a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition: color 220ms ease, transform 220ms ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4bc9ff, #5f91ff);
  border-radius: 999px;
  transition: width 220ms ease, left 220ms ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 55%;
  left: 22.5%;
}

.nav-links a {
  font-family: Montserrat, sans-serif;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--blue-soft);
}

.nav-links a.is-active {
  color: var(--blue-soft);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(17, 32, 54, 0.72);
  color: var(--text);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  overflow: hidden;
  border-radius: 8px;
  padding: 0 32px;
  color: #002a51;
  cursor: pointer;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button::before {
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%);
  content: "";
  opacity: 0.7;
  pointer-events: none;
}

.button:hover {
  transform: translateY(-1px) scale(1.01);
}

.button-primary {
  color: #ffffff;
  border-color: rgba(185, 216, 255, 0.32);
  background:
    linear-gradient(135deg, rgba(89, 180, 255, 0.98), rgba(14, 95, 216, 0.98) 54%, rgba(6, 43, 106, 0.98)),
    #0b67dc;
  box-shadow:
    0 22px 58px rgba(20, 147, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button-small {
  color: #ffffff;
}

.button-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 26px 65px rgba(20, 147, 255, 0.28);
}

.button-primary:focus-visible {
  animation: premiumGlow 2.8s ease-in-out infinite alternate;
}

.button.is-disabled {
  pointer-events: none;
  opacity: 0.62;
}

.button.is-loading {
  pointer-events: none;
  opacity: 0.76;
}

.button-primary,
.button-small {
  background:
    linear-gradient(135deg, rgba(89, 180, 255, 0.98), rgba(14, 95, 216, 0.98) 54%, rgba(6, 43, 106, 0.98)),
    #0b67dc;
  box-shadow:
    0 22px 58px rgba(20, 147, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 26px 65px rgba(20, 147, 255, 0.28);
}

.button-primary:focus-visible {
  animation: premiumGlow 2.4s ease-in-out infinite alternate;
}

.button-ghost:hover {
  transform: translateY(-1px);
}

.button-ghost {
  border-color: rgba(185, 216, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent),
    rgba(7, 18, 35, 0.64);
  color: var(--blue-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.button-ghost:hover {
  border-color: rgba(163, 201, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

.button-small {
  min-height: 42px;
  border-radius: 999px;
  padding-inline: 26px;
  font-size: 12px;
  font-weight: 700;
}

main {
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 17% 10%, rgba(47, 157, 255, 0.24), transparent 25%),
    radial-gradient(circle at 78% 13%, rgba(217, 183, 111, 0.14), transparent 22%),
    radial-gradient(circle at 70% 48%, rgba(0, 181, 148, 0.16), transparent 28%),
    linear-gradient(180deg, #050914 0%, #071b34 42%, #020611 100%);
  background-size: 96px 96px, 96px 96px, auto, auto, auto, auto;
}

.section {
  padding: 124px 0 72px;
}

.section-tight {
  padding-top: 54px;
}

.hero.section {
  position: relative;
  isolation: isolate;
  padding: 108px 0 46px;
}

.hero.section::before {
  position: absolute;
  inset: 74px 0 auto;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 183, 111, 0.42), rgba(185, 216, 255, 0.3), transparent);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 82px;
  min-height: 610px;
}

.hero-copy h1,
.section-heading h2,
.pricing-copy h2,
.about-panel h2,
.cta-card h2 {
  margin: 0;
  color: var(--text);
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.18;
}

.hero-copy h1 {
  max-width: 730px;
  font-size: clamp(42px, 5vw, 74px);
  color: #ffffff;
  letter-spacing: 0;
  line-height: 0.98;
  text-shadow:
    0 22px 50px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(47, 157, 255, 0.12);
  overflow-wrap: break-word;
  animation: heroTextRise 0.9s ease-out both;
}

.hero-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  border: 1px solid rgba(217, 183, 111, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(217, 183, 111, 0.12), rgba(47, 157, 255, 0.08)),
    rgba(7, 18, 35, 0.72);
  padding: 9px 14px;
  color: #f5dd9c;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(78, 222, 163, 0.7);
  content: "";
}

.hero-title.blur-text {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.24em;
}

.blur-text-segment {
  display: inline-block;
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 42%, #b9d8ff 100%);
  background-clip: text;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(var(--blur-y, -42px));
  -webkit-text-fill-color: transparent;
  will-change: transform, filter, opacity;
}

.blur-text.is-in-view .blur-text-segment {
  animation: blurTextIn 0.7s linear forwards;
  animation-delay: var(--blur-delay, 0ms);
}

.hero-copy > p:not(.hero-kicker) {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
  opacity: 0.95;
  transition: transform 280ms ease, opacity 280ms ease;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.hero-actions .button {
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.hero-actions .button:hover {
  filter: brightness(1.05);
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 42px;
}

.hero-proof-grid div {
  min-width: 0;
  border: 1px solid rgba(204, 221, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(7, 18, 35, 0.62);
  padding: 15px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-proof-grid strong {
  display: block;
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 21px;
  line-height: 1;
}

.hero-proof-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.hero-media {
  position: relative;
  display: flex;
  min-height: 560px;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.hero-media::after {
  position: absolute;
  z-index: 0;
  right: 5%;
  bottom: 5%;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(47, 157, 255, 0.28), transparent 58%),
    rgba(0, 165, 114, 0.12);
  content: "";
  filter: blur(90px);
}

.hero-orbit {
  position: absolute;
  z-index: 0;
  width: min(100%, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(217, 183, 111, 0.16);
  border-radius: 999px;
  background:
    conic-gradient(from 90deg, transparent, rgba(217, 183, 111, 0.38), transparent 28%, rgba(47, 157, 255, 0.34), transparent 58%),
    radial-gradient(circle, rgba(255, 255, 255, 0.055), transparent 58%);
  filter: drop-shadow(0 0 45px rgba(47, 157, 255, 0.16));
  opacity: 0.7;
  animation: orbitSweep 24s linear infinite;
}

.hero-logo-shell {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 500px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(204, 221, 255, 0.16);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at 30% 16%, rgba(217, 183, 111, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(8, 17, 33, 0.72), rgba(2, 6, 17, 0.94));
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.38),
    0 0 110px rgba(47, 157, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: rotateX(4deg) rotateY(-7deg);
  transition: transform 360ms ease, box-shadow 360ms ease;
}

.hero-logo-shell:hover {
  transform: rotateX(0deg) rotateY(0deg) translateY(-5px);
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.44),
    0 0 130px rgba(47, 157, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: 88%;
  border-radius: 26px;
  filter: drop-shadow(0 0 42px rgba(47, 157, 255, 0.38));
  animation: floatHero 10s ease-in-out infinite;
  transition: transform 260ms ease, filter 260ms ease, box-shadow 260ms ease;
}

.hero-logo:hover,
.hero-logo:focus-visible {
  transform: translateY(-6px) scale(1.03) rotate(-0.3deg);
  filter: drop-shadow(0 0 42px rgba(20, 147, 255, 0.5));
}

.hero-signal {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 38px auto;
  gap: 2px 13px;
  align-items: center;
  min-width: 208px;
  border: 1px solid rgba(217, 183, 111, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(4, 10, 24, 0.78);
  padding: 14px 16px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(22px) saturate(140%);
  animation: executivePulse 7s ease-in-out infinite;
}

.hero-signal span {
  grid-row: span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(185, 216, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.22), transparent 34%),
    rgba(47, 157, 255, 0.13);
  color: var(--blue-soft);
  font-size: 20px;
}

.hero-signal strong {
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  line-height: 1.15;
}

.hero-signal small {
  color: var(--muted);
  font-size: 12px;
}

.hero-signal-rent {
  top: 40px;
  left: -10px;
}

.hero-signal-report {
  right: -14px;
  bottom: 112px;
  animation-delay: -2.6s;
}

.hero-ledger-card {
  position: absolute;
  z-index: 2;
  left: 30px;
  bottom: 26px;
  width: min(78%, 330px);
  border: 1px solid rgba(204, 221, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(217, 183, 111, 0.1), transparent 36%),
    rgba(4, 10, 24, 0.82);
  padding: 17px 18px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
}

.hero-ledger-card span,
.hero-ledger-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.hero-ledger-card span {
  color: #f5dd9c;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-ledger-card strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
}

.hero-ledger-card small {
  margin-top: 5px;
  line-height: 1.45;
}

/* Ultra-premium product-scene hero */
.hero.section {
  min-height: min(900px, 100vh);
  overflow: hidden;
  padding: 112px 0 38px;
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.96) 0%, rgba(4, 14, 31, 0.88) 43%, rgba(2, 6, 17, 0.34) 100%),
    radial-gradient(circle at 18% 20%, rgba(47, 157, 255, 0.26), transparent 30%),
    radial-gradient(circle at 79% 34%, rgba(217, 183, 111, 0.16), transparent 25%),
    #020611;
}

.hero.section::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 210px;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 17, 0.92) 70%, #020611);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: block;
  min-height: calc(min(900px, 100vh) - 150px);
}

.hero-copy {
  width: min(100%, 760px);
  padding-top: clamp(44px, 7vh, 86px);
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(52px, 6.2vw, 94px);
  line-height: 0.92;
}

.hero-copy > p:not(.hero-kicker) {
  max-width: 650px;
  color: rgba(214, 226, 246, 0.82);
}

.hero-media {
  position: absolute;
  inset: 74px 0 0;
  z-index: 0;
  display: block;
  min-height: auto;
  overflow: hidden;
  pointer-events: none;
  perspective: 1600px;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.98) 0%, rgba(2, 6, 17, 0.82) 36%, rgba(2, 6, 17, 0.14) 62%, rgba(2, 6, 17, 0.68) 100%),
    linear-gradient(180deg, rgba(2, 6, 17, 0.18), transparent 42%, rgba(2, 6, 17, 0.58));
  content: "";
}

.hero-media::after {
  right: 10%;
  bottom: 9%;
  width: 46%;
  background:
    radial-gradient(circle, rgba(47, 157, 255, 0.34), transparent 62%),
    radial-gradient(circle, rgba(217, 183, 111, 0.16), transparent 54%);
  filter: blur(110px);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 72% 28%, rgba(47, 157, 255, 0.28), transparent 34%);
  background-size: 112px 112px, 112px 112px, auto;
  mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%);
}

.hero-device {
  position: absolute;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(204, 221, 255, 0.16);
  border-radius: 30px;
  background: rgba(4, 10, 24, 0.92);
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.5),
    0 0 90px rgba(47, 157, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-device::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(180deg, transparent 66%, rgba(2, 6, 17, 0.45));
  content: "";
  pointer-events: none;
}

.hero-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.hero-device-primary {
  top: 9%;
  right: 9%;
  width: min(34vw, 430px);
  aspect-ratio: 9 / 19.5;
  transform: rotateY(-20deg) rotateX(7deg) rotateZ(2deg);
}

.hero-device-report {
  top: 15%;
  right: 31%;
  width: min(24vw, 300px);
  aspect-ratio: 9 / 19.5;
  opacity: 0.78;
  transform: rotateY(-23deg) rotateX(9deg) rotateZ(-8deg) translateZ(-120px);
}

.hero-device-tenant {
  right: -3%;
  bottom: 10%;
  width: min(25vw, 320px);
  aspect-ratio: 9 / 19.5;
  opacity: 0.7;
  transform: rotateY(-14deg) rotateX(8deg) rotateZ(8deg) translateZ(-160px);
}

.hero-command-strip {
  position: absolute;
  right: min(6vw, 84px);
  bottom: 13%;
  z-index: 3;
  width: min(410px, 30vw);
  border: 1px solid rgba(217, 183, 111, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), transparent 36%),
    rgba(2, 8, 21, 0.78);
  padding: 18px 20px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(22px);
}

.hero-command-strip span,
.hero-command-strip small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.hero-command-strip span {
  color: #f5dd9c;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-command-strip strong {
  display: block;
  margin-top: 7px;
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
}

.hero-command-strip small {
  margin-top: 4px;
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 62px;
  text-align: center;
}

.section-heading h2,
.pricing-copy h2,
.about-panel h2,
.cta-card h2 {
  font-size: clamp(30px, 3.4vw, 46px);
}

.section-heading p,
.pricing-copy p,
.about-panel p,
.cta-card p,
.price-note {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.feature-card,
.price-card,
.about-panel,
.cta-card,
.contact-info-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(204, 221, 255, 0.13);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.012) 42%),
    rgba(7, 18, 35, 0.68);
  backdrop-filter: blur(18px) saturate(135%);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.feature-card {
  min-height: 246px;
  border-radius: var(--radius);
  padding: 34px;
}

.feature-card::before,
.price-card::before,
.about-panel::before,
.cta-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(217, 183, 111, 0.16), transparent 32%, rgba(47, 157, 255, 0.12) 72%, transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.feature-card::after {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(217, 183, 111, 0.12), transparent 62%),
    rgba(163, 201, 255, 0.05);
  content: "";
  filter: blur(32px);
  transition: background 180ms ease, transform 400ms ease, opacity 400ms ease;
}

.feature-card:hover::after {
  background:
    radial-gradient(circle, rgba(217, 183, 111, 0.2), transparent 62%),
    rgba(163, 201, 255, 0.14);
  transform: scale(1.08);
  opacity: 0.95;
}

.feature-card:hover,
.price-card:hover,
.about-panel:hover,
.cta-card:hover,
.contact-info-card:hover,
.phone-preview button:hover {
  transform: translateY(-4px);
  box-shadow:
    0 34px 95px rgba(0, 0, 0, 0.28),
    0 0 70px rgba(47, 157, 255, 0.12);
  border-color: rgba(217, 183, 111, 0.26);
}

.feature-card:hover::before,
.price-card:hover::before,
.about-panel:hover::before,
.cta-card:hover::before {
  opacity: 1;
}

.feature-wide {
  grid-column: span 2;
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(204, 221, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 255, 255, 0.18), transparent 32%),
    rgba(14, 28, 52, 0.88);
  font-size: 25px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.icon-box.blue {
  color: var(--blue-soft);
}

.icon-box.green {
  color: var(--green);
}

.icon-box.amber {
  color: var(--amber);
}

.image-icon {
  border-color: rgba(37, 211, 102, 0.34);
  background: rgba(37, 211, 102, 0.12);
}

.image-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.feature-card h3,
.price-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: var(--text);
  font-family: Montserrat, sans-serif;
  font-size: 21px;
  letter-spacing: 0;
}

.feature-card p {
  position: relative;
  z-index: 1;
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.screenshot-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 32px;
  align-items: center;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(10, 25, 47, 0.5);
  padding: 34px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.screenshot-copy h3 {
  margin: 0;
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.2;
}

.screenshot-copy p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 18px;
}

@media (max-width: 980px) {
  .screenshot-gallery {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
}

@media (max-width: 680px) {
  .screenshot-gallery {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}

.screenshot-gallery:not(.is-expanded) .phone-preview:nth-child(n+4) {
  display: none;
}

.screenshot-toggle {
  width: fit-content;
  min-height: 46px;
  margin: 24px auto 0;
  padding-inline: 26px;
  color: var(--blue-soft);
  font-size: 14px;
}

.phone-preview {
  min-width: 0;
  text-align: center;
}

.phone-preview button {
  display: grid;
  width: 100%;
  aspect-ratio: 9 / 16;
  min-height: 240px;
  padding: 0;
  border: none;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(1, 14, 36, 0.95);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.phone-preview button:hover,
.phone-preview button:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.28);
  background: rgba(8, 26, 52, 0.98);
}

.phone-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #010e24;
  transition: transform 220ms ease;
}

.phone-preview button:hover img {
  transform: scale(1.02);
}

.phone-preview h4 {
  margin: 14px 0 0;
  color: var(--text);
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.phone-frame {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  min-height: 320px;
  overflow: hidden;
  place-items: center;
  border: 7px solid #071225;
  border-radius: 30px;
  background:
    radial-gradient(circle at 25% 10%, rgba(20, 147, 255, 0.28), transparent 34%),
    linear-gradient(180deg, #0d1c32, #010e24);
  box-shadow:
    inset 0 0 0 1px rgba(163, 201, 255, 0.12),
    0 18px 36px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font: inherit;
  padding: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.phone-frame:hover,
.phone-frame:focus-visible {
  border-color: rgba(163, 201, 255, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(163, 201, 255, 0.18),
    0 22px 42px rgba(20, 147, 255, 0.18);
  transform: translateY(-2px);
}

.phone-frame:focus-visible {
  outline: 3px solid rgba(163, 201, 255, 0.34);
  outline-offset: 4px;
}

.phone-frame::before {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 50%;
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: rgba(214, 227, 255, 0.24);
  content: "";
  transform: translateX(-50%);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
  background: #010e24;
}

.phone-frame.is-missing img {
  display: none;
}

.screenshot-fallback {
  display: none;
  gap: 12px;
  justify-items: center;
  padding: 24px;
  color: var(--blue-soft);
}

.phone-frame.is-missing .screenshot-fallback {
  display: grid;
}

.screenshot-fallback span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(163, 201, 255, 0.18);
  border-radius: 16px;
  background: rgba(17, 32, 54, 0.82);
  font-size: 28px;
}

.screenshot-fallback strong {
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-screen {
  position: relative;
  display: flex;
  min-height: 292px;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  border: 7px solid #071225;
  border-radius: 30px;
  background:
    radial-gradient(circle at 25% 10%, rgba(20, 147, 255, 0.28), transparent 34%),
    linear-gradient(180deg, #0d1c32, #010e24);
  padding: 16px 12px 14px;
  box-shadow:
    inset 0 0 0 1px rgba(163, 201, 255, 0.12),
    0 18px 36px rgba(0, 0, 0, 0.28);
}

.phone-screen::before {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: rgba(214, 227, 255, 0.18);
  content: "";
  transform: translateX(-50%);
}

.phone-status {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: rgba(214, 227, 255, 0.78);
  font-family: Montserrat, sans-serif;
  font-size: 9px;
  font-weight: 800;
}

.app-total,
.room-row,
.wa-banner,
.message-preview,
.receipt-card,
.mini-card,
.report-line {
  border: 1px solid rgba(163, 201, 255, 0.12);
  border-radius: 14px;
  background: rgba(17, 32, 54, 0.74);
}

.app-total {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  padding: 16px 12px;
  text-align: left;
}

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

.app-total strong {
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
}

.app-chip-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.app-chip-row span,
.send-pill {
  border-radius: 999px;
  background: rgba(78, 222, 163, 0.12);
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  padding: 9px 8px;
}

.app-chip-row span:last-child {
  background: rgba(255, 185, 95, 0.12);
  color: var(--amber);
}

.mini-card {
  height: 46px;
}

.mini-card.short {
  width: 72%;
  height: 38px;
}

.room-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 10px;
  text-align: left;
}

.room-row strong {
  color: #ffffff;
  font-size: 12px;
}

.room-row span {
  border-radius: 999px;
  background: rgba(78, 222, 163, 0.12);
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  padding: 5px 8px;
}

.room-row.pending span {
  background: rgba(255, 185, 95, 0.12);
  color: var(--amber);
}

.room-row.muted-row span {
  background: rgba(163, 201, 255, 0.1);
  color: var(--blue-soft);
}

.wa-banner {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-top: 10px;
  padding: 18px 10px;
}

.wa-banner img {
  width: 38px;
  height: 38px;
}

.wa-banner strong,
.receipt-card {
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
}

.message-preview {
  height: 82px;
  background:
    linear-gradient(rgba(192, 199, 213, 0.22) 0 0) 14px 16px / 70% 6px no-repeat,
    linear-gradient(rgba(192, 199, 213, 0.14) 0 0) 14px 32px / 86% 6px no-repeat,
    linear-gradient(rgba(192, 199, 213, 0.14) 0 0) 14px 48px / 58% 6px no-repeat,
    rgba(17, 32, 54, 0.74);
}

.send-pill {
  background: var(--blue);
  color: #002a51;
}

.chart-bars {
  display: flex;
  height: 92px;
  align-items: end;
  gap: 8px;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(163, 201, 255, 0.12);
  border-radius: 14px;
  background: rgba(17, 32, 54, 0.74);
}

.chart-bars span {
  flex: 1;
  border-radius: 999px 999px 3px 3px;
  background: linear-gradient(180deg, var(--blue-soft), var(--blue));
}

.chart-bars span:nth-child(1) {
  height: 44%;
}

.chart-bars span:nth-child(2) {
  height: 72%;
}

.chart-bars span:nth-child(3) {
  height: 54%;
}

.chart-bars span:nth-child(4) {
  height: 86%;
}

.report-line {
  height: 16px;
}

.report-line.short {
  width: 62%;
}

.receipt-card {
  margin-top: auto;
  padding: 13px 10px;
}

.bottom-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: auto;
}

.bottom-tabs span {
  height: 4px;
  border-radius: 999px;
  background: rgba(163, 201, 255, 0.22);
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(260px, 0.8fr));
  gap: 24px;
  align-items: stretch;
}

.new-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.new-copy,
.new-trust-card,
.new-feature-strip {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 32%),
    linear-gradient(145deg, rgba(8, 17, 33, 0.94), rgba(2, 9, 22, 0.82)),
    radial-gradient(circle at 18% 10%, rgba(47, 157, 255, 0.2), transparent 34%);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(22px) saturate(135%);
  font-family: "Noto Sans Devanagari", Inter, sans-serif;
}

.new-copy,
.new-trust-card {
  min-height: 520px;
  border-radius: var(--radius);
  padding: 42px;
}

.new-copy::after,
.new-trust-card::after {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(163, 201, 255, 0.1);
  content: "";
  filter: blur(8px);
  pointer-events: none;
}

.new-copy::after {
  right: -120px;
  bottom: -110px;
}

.new-trust-card::after {
  top: -120px;
  right: -96px;
}

.new-copy h2,
.new-trust-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  line-height: 1.08;
}

.new-copy h2 {
  max-width: 620px;
  font-size: clamp(30px, 3.4vw, 48px);
  letter-spacing: 0;
}

.new-trust-card h3 {
  margin-top: 22px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.new-copy p,
.new-trust-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.new-lead {
  margin-top: 24px;
  color: #eaf2ff;
  font-size: 20px;
}

.new-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.new-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(78, 222, 163, 0.28);
  border-radius: 999px;
  padding: 10px 16px;
  color: #dfffee;
  background: rgba(78, 222, 163, 0.08);
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.new-badge .material-symbols-outlined {
  color: var(--green);
  font-size: 20px;
}

.trust-points {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.trust-points div {
  min-width: 0;
  border: 1px solid rgba(163, 201, 255, 0.12);
  border-radius: 14px;
  padding: 18px;
  background: rgba(4, 19, 41, 0.58);
}

.trust-points .material-symbols-outlined {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(20, 147, 255, 0.95), rgba(11, 103, 220, 0.95));
}

.trust-points strong {
  display: block;
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
}

.trust-points p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

.new-feature-strip {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  border-radius: var(--radius);
  padding: 18px;
}

.new-feature-strip span {
  border: 1px solid rgba(163, 201, 255, 0.14);
  border-radius: 999px;
  padding: 10px 15px;
  color: #edf5ff;
  background: rgba(255, 255, 255, 0.04);
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.pricing-copy {
  align-self: center;
}

.eyebrow,
.plan-name {
  margin: 0 0 10px;
  color: var(--blue-soft);
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  padding: 30px;
}

.price-card.highlighted {
  border-color: rgba(20, 147, 255, 0.38);
  box-shadow: var(--shadow);
}

.price {
  margin: 6px 0;
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.price-card li::before {
  margin-right: 9px;
  color: var(--green);
  content: "\2713";
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
  border-radius: 24px;
  padding: 48px;
}

.about-intro {
  min-width: 0;
}

.about-intro > p {
  max-width: 590px;
}

.founder-profile {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-width: 0;
  padding-left: 34px;
  border-left: 1px solid rgba(204, 221, 255, 0.12);
}

.founder-visual {
  display: grid;
  gap: 16px;
  justify-items: center;
  min-width: 0;
}

.founder-photo {
  display: block;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(204, 221, 255, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(47, 157, 255, 0.18), rgba(217, 183, 111, 0.08)),
    rgba(3, 11, 27, 0.78);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.24),
    0 0 36px rgba(47, 157, 255, 0.12);
  object-fit: cover;
  object-position: 50% 28%;
}

.founder-logo {
  width: 94px;
  height: 94px;
  object-fit: contain;
  border-radius: 22px;
  filter: drop-shadow(0 14px 26px rgba(47, 157, 255, 0.18));
}

.founder-copy {
  min-width: 0;
}

.about-panel .founder-role {
  margin: 0 0 8px;
  color: var(--blue-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-copy h3 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.05;
}

.about-panel .founder-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.about-panel .founder-copy p + p {
  margin-top: 12px;
}

.founder-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.founder-contact-grid a,
.founder-contact-grid span {
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(204, 221, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.founder-contact-grid a:hover {
  border-color: rgba(47, 157, 255, 0.42);
  color: var(--blue-soft);
}

.cta-card {
  max-width: 850px;
  margin-inline: auto;
  border-color: rgba(163, 201, 255, 0.2);
  border-radius: 24px;
  padding: 56px 32px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-card .button {
  margin-top: 18px;
}

.download-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 32px;
  align-items: center;
  margin-top: 22px;
  text-align: left;
}

.download-copy {
  min-width: 0;
}

.app-update-panel {
  display: grid;
  max-width: 620px;
  gap: 8px;
  margin: 0 0 18px;
}

.download-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(163, 201, 255, 0.16);
  border-radius: 8px;
  background: rgba(163, 201, 255, 0.16);
}

.download-meta div {
  min-width: 0;
  padding: 16px;
  background: rgba(7, 23, 47, 0.82);
}

.download-meta dt {
  margin: 0 0 8px;
  color: var(--muted);
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.download-meta dd {
  margin: 0;
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.safe-install-note {
  display: flex;
  max-width: 660px;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.safe-install-note .material-symbols-outlined {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 22px;
  line-height: 1.35;
}

.download-qr {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 0;
  text-align: center;
}

.download-qr img {
  width: 180px;
  height: 180px;
  border: 1px solid rgba(163, 201, 255, 0.22);
  border-radius: 8px;
  background: #f8fbff;
  padding: 10px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.download-qr figcaption {
  max-width: 210px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.version-line,
.release-notes,
.maintenance-message {
  margin: 0;
}

.version-line {
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.release-notes {
  color: var(--muted);
  font-size: 15px;
}

.maintenance-message {
  color: var(--amber);
  font-size: 15px;
}

.version-skeleton {
  display: none;
  width: min(100%, 280px);
  height: 16px;
  margin: 0 auto 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(163, 201, 255, 0.08), rgba(163, 201, 255, 0.2), rgba(163, 201, 255, 0.08));
  background-size: 220% 100%;
  animation: skeleton-pulse 1.2s ease-in-out infinite;
}

.app-update-panel.is-loading .version-skeleton {
  display: block;
}

@keyframes skeleton-pulse {
  from {
    background-position: 100% 0;
  }

  to {
    background-position: -100% 0;
  }
}

.site-footer {
  border-top: 1px solid rgba(64, 71, 83, 0.18);
  background: var(--bg-deep);
  padding: 48px 0 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 1fr 1fr;
  gap: 48px;
}

.site-footer p {
  max-width: 360px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.site-footer a:not(.footer-brand) {
  display: block;
  margin-top: 12px;
}

.footer-admin-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  border: 1px solid rgba(163, 201, 255, 0.16);
  border-radius: 999px;
  background: rgba(17, 32, 54, 0.62);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  padding: 0 12px;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-admin-link:hover,
.footer-admin-link:focus-visible {
  border-color: rgba(163, 201, 255, 0.34);
  background: rgba(20, 147, 255, 0.12);
  color: var(--blue-soft);
  transform: translateY(-1px);
}

.footer-admin-link .material-symbols-outlined {
  font-size: 17px;
}

.footer-admin-link.is-loading {
  pointer-events: none;
  opacity: 0.72;
}

.footer-admin-status {
  min-height: 18px;
  margin: 8px 0 0 !important;
  color: var(--amber) !important;
  font-size: 12px !important;
}

.footer-admin-status.is-success {
  color: var(--green) !important;
}

.footer-grid-wide {
  grid-template-columns: minmax(0, 1.7fr) repeat(2, minmax(150px, 1fr));
}

.copyright {
  margin-top: 32px;
}

.contact-main {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 8%, rgba(20, 147, 255, 0.15), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(78, 222, 163, 0.11), transparent 24%),
    linear-gradient(180deg, #07172f 0%, var(--bg) 48%, var(--bg-deep) 100%);
}

.contact-hero {
  padding-bottom: 78px;
}

.contact-intro {
  max-width: 790px;
  margin-bottom: 46px;
}

.contact-intro h1 {
  max-width: 980px;
  margin: 0;
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  overflow-wrap: break-word;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.contact-intro h1 span {
  color: var(--blue-soft);
}

.contact-intro > p:last-child {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.88fr);
  gap: 16px;
  align-items: stretch;
}

.contact-sidebar {
  display: grid;
  gap: 16px;
  align-content: start;
}

.contact-info-card,
.contact-form-panel,
.contact-map {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 25, 47, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 145, 255, 0.05);
}

.contact-info-card {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.contact-info-card .icon-box {
  flex: 0 0 auto;
  margin: 0;
}

.contact-label,
.field span,
.contact-trust p {
  margin: 0 0 8px;
  color: var(--muted);
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-info-card a,
.contact-info-card span:not(.material-symbols-outlined) {
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.contact-info-card a {
  overflow-wrap: anywhere;
}

.contact-map {
  position: relative;
  min-height: 424px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(1, 14, 36, 0.25), rgba(1, 14, 36, 0.86)),
    radial-gradient(circle at 45% 52%, rgba(163, 201, 255, 0.19), transparent 10%),
    radial-gradient(circle at 20% 22%, rgba(20, 147, 255, 0.14), transparent 18%),
    #08182f;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(1.05) saturate(0.65);
  opacity: 0.72;
}

.contact-map::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 14, 36, 0.12), rgba(1, 14, 36, 0.42)),
    linear-gradient(0deg, rgba(4, 19, 41, 0.45), transparent 44%);
  content: "";
  pointer-events: none;
}

.map-grid {
  position: absolute;
  inset: -18%;
  opacity: 0.5;
  background:
    linear-gradient(35deg, transparent 48%, rgba(163, 201, 255, 0.15) 49%, transparent 50%),
    linear-gradient(100deg, transparent 48%, rgba(163, 201, 255, 0.1) 49%, transparent 50%),
    linear-gradient(rgba(163, 201, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163, 201, 255, 0.06) 1px, transparent 1px);
  background-size: 140px 140px, 170px 170px, 28px 28px, 28px 28px;
  transform: rotate(-12deg) scale(1.08);
}

.map-grid::after {
  position: absolute;
  inset: 34% 26%;
  border: 1px solid rgba(163, 201, 255, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(163, 201, 255, 0.035),
    0 0 0 64px rgba(163, 201, 255, 0.025),
    0 0 70px rgba(20, 147, 255, 0.22);
  content: "";
}

.map-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  box-shadow: 0 0 24px currentColor;
}

.map-node.primary {
  top: 42%;
  left: 46%;
  background: var(--blue-soft);
  color: var(--blue-soft);
}

.map-node.secondary {
  top: 31%;
  left: 66%;
  background: var(--green);
  color: var(--green);
}

.map-node.amber {
  top: 62%;
  left: 28%;
  background: var(--amber);
  color: var(--amber);
}

.contact-map span {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 24px;
  border-radius: 6px;
  background: var(--blue-soft);
  color: #002a51;
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  padding: 7px 13px;
  text-transform: uppercase;
}

.contact-form-panel {
  min-height: 100%;
  border-color: rgba(163, 201, 255, 0.18);
  background: rgba(28, 42, 65, 0.42);
  padding: 40px;
}

.contact-form-heading {
  margin-bottom: 24px;
}

.contact-form-heading h2 {
  margin: 0;
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  line-height: 1.25;
}

.contact-form {
  display: grid;
  gap: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.field {
  display: grid;
  gap: 10px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(64, 71, 83, 0.42);
  border-radius: 8px;
  background: rgba(1, 14, 36, 0.86);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  outline: 0;
  padding: 16px 18px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field input,
.field select {
  min-height: 60px;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(192, 199, 213, 0.62);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(163, 201, 255, 0.9);
  background: rgba(1, 14, 36, 0.95);
  box-shadow: 0 0 0 4px rgba(163, 201, 255, 0.1);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
}

.form-actions .button {
  min-width: 300px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--blue), #8bbfff);
}

.contact-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
  opacity: 0.5;
  text-align: center;
}

.contact-trust div {
  padding: 24px 12px;
}

.contact-trust strong {
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.privacy-main {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 8%, rgba(20, 147, 255, 0.16), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(78, 222, 163, 0.1), transparent 24%),
    linear-gradient(180deg, #07172f 0%, var(--bg) 46%, var(--bg-deep) 100%);
}

.privacy-hero {
  padding-bottom: 78px;
}

.privacy-intro {
  max-width: 860px;
  margin-bottom: 38px;
}

.privacy-intro h1 {
  max-width: 980px;
  margin: 0;
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.12;
}

.privacy-intro > p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.policy-date {
  display: inline-flex;
  margin-top: 22px;
  border: 1px solid rgba(163, 201, 255, 0.16);
  border-radius: 999px;
  background: rgba(17, 32, 54, 0.72);
  color: var(--blue-soft);
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 9px 14px;
  text-transform: uppercase;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 20px;
  align-items: start;
}

.privacy-summary,
.policy-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(10, 25, 47, 0.58);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 145, 255, 0.05);
}

.privacy-summary {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 28px;
  padding: 28px;
}

.privacy-summary h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  line-height: 1.25;
}

.privacy-summary p {
  margin: 0;
  color: var(--muted);
}

.privacy-summary .icon-box {
  margin-bottom: 24px;
}

.privacy-summary .button {
  width: 100%;
}

.policy-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.policy-panel article {
  padding: 28px;
  border-bottom: 1px solid rgba(163, 201, 255, 0.1);
}

.policy-panel article:last-child {
  border-bottom: 0;
}

.policy-panel h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
}

.policy-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.policy-panel p + p {
  margin-top: 12px;
}

.policy-panel a {
  color: var(--blue-soft);
  font-weight: 700;
}

.demo-dialog {
  width: min(calc(100% - 32px), 520px);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px;
  background: #071a35;
  color: var(--text);
  box-shadow: var(--shadow);
}

.demo-dialog::backdrop {
  background: rgba(0, 8, 20, 0.72);
  backdrop-filter: blur(8px);
}

.screenshot-dialog {
  position: relative;
  width: min(calc(100% - 28px), 1180px);
  max-height: calc(100vh - 28px);
  overflow: hidden;
  border: 1px solid rgba(163, 201, 255, 0.24);
  border-radius: 20px;
  padding: 52px 18px 18px;
  background: rgba(1, 14, 36, 0.96);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: scale(0.96) translateY(18px);
  transition: transform 220ms ease, opacity 220ms ease;
}

.screenshot-dialog.is-open {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.screenshot-dialog::backdrop {
  background: rgba(0, 8, 20, 0.82);
  backdrop-filter: blur(10px);
}

.screenshot-dialog::backdrop {
  background: rgba(0, 8, 20, 0.82);
  backdrop-filter: blur(10px);
}

.screenshot-stage {
  display: grid;
  width: 100%;
  max-height: calc(100vh - 220px);
  min-height: 320px;
  overflow: auto;
  place-items: center;
  border: 1px solid rgba(163, 201, 255, 0.1);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(20, 147, 255, 0.14), transparent 35%),
    rgba(4, 19, 41, 0.65);
  touch-action: pan-y pinch-zoom;
}

.screenshot-stage img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  margin-inline: auto;
  object-fit: contain;
  transform-origin: center;
  transition: transform 220ms ease, width 220ms ease, height 220ms ease, opacity 220ms ease;
}

.screenshot-stage.is-zoomed {
  place-items: start center;
}

.screenshot-stage.is-zoomed img {
  max-width: none;
  max-height: none;
}

.screenshot-nav,
.screenshot-controls button {
  display: grid;
  place-items: center;
  border: 1px solid rgba(163, 201, 255, 0.18);
  background: rgba(17, 32, 54, 0.92);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.screenshot-nav:hover,
.screenshot-controls button:hover {
  border-color: rgba(163, 201, 255, 0.4);
  background: rgba(20, 147, 255, 0.2);
}

.screenshot-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 48px;
  height: 64px;
  border-radius: 14px;
  transform: translateY(-50%);
}

.screenshot-nav-prev {
  left: 28px;
}

.screenshot-nav-next {
  right: 28px;
}

.screenshot-nav span {
  font-size: 34px;
}

.screenshot-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.screenshot-controls button {
  min-width: 46px;
  min-height: 40px;
  border-radius: 12px;
  padding: 0 14px;
  color: var(--blue-soft);
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.demo-dialog h2 {
  margin: 0 0 10px;
  font-family: Montserrat, sans-serif;
}

.demo-dialog p {
  color: var(--muted);
}

.request-demo-dialog {
  width: min(calc(100% - 32px), 560px);
}

.request-demo-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.request-demo-form .field textarea {
  min-height: 118px;
}

.request-demo-form .button {
  width: 100%;
  margin-top: 6px;
}

.whatsapp-submit {
  background: linear-gradient(90deg, #25d366, var(--green));
  color: #002113;
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.2);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.97);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.section-heading,
.hero-copy,
.feature-card,
.contact-info-card,
.cta-card,
.price-card {
  transition: transform 280ms ease, opacity 280ms ease;
}

.section-heading.is-visible,
.hero-copy.is-visible,
.feature-card.is-visible,
.contact-info-card.is-visible {
  transform: none;
}

@media (max-width: 920px) {
  .nav-download {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 74px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(4, 19, 41, 0.96);
    padding: 10px;
    backdrop-filter: blur(18px);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 16px;
  }

  .hero-grid,
  .new-section,
  .pricing-grid,
  .about-panel,
  .footer-grid,
  .footer-grid-wide,
  .contact-layout,
  .screenshot-showcase,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-summary {
    position: relative;
    top: auto;
  }

  .founder-profile {
    padding-top: 30px;
    padding-left: 0;
    border-top: 1px solid rgba(204, 221, 255, 0.12);
    border-left: 0;
  }

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

  .screenshot-gallery {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }

  .hero-grid {
    min-height: 0;
    gap: 52px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-wide {
    grid-column: span 1;
  }

  .hero-media {
    justify-content: center;
    min-height: 500px;
  }

  .hero-logo-shell {
    width: min(100%, 460px);
    transform: none;
  }

  .hero-logo {
    width: 88%;
  }

  .hero-signal-rent {
    left: 0;
  }

  .hero-signal-report {
    right: 0;
    bottom: 96px;
  }

  .hero-ledger-card {
    left: 14px;
    bottom: 18px;
  }

  .download-content {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .download-copy {
    width: 100%;
  }

  .new-copy,
  .new-trust-card {
    min-height: 0;
  }

  .new-actions {
    justify-content: center;
  }

  .app-update-panel,
  .safe-install-note {
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .nav-shell,
  .section-inner {
    width: calc(100vw - 32px);
    max-width: var(--container);
  }

  .brand {
    font-size: 18px;
  }

  .section {
    padding: 110px 0 52px;
  }

  .hero.section {
    padding: 110px 0 34px;
  }

  .section-tight {
    padding-top: 34px;
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: 38px;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero-copy > p:not(.hero-kicker),
  .section-heading p,
  .pricing-copy p,
  .about-panel p,
  .cta-card p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .download-meta {
    grid-template-columns: 1fr;
  }

  .trust-points {
    grid-template-columns: 1fr;
  }

  .new-feature-strip {
    justify-content: flex-start;
  }

  .safe-install-note {
    text-align: left;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 30px;
  }

  .hero-kicker {
    max-width: 100%;
    font-size: 11px;
    line-height: 1.3;
  }

  .hero-media {
    min-height: 410px;
  }

  .hero-orbit {
    width: min(100%, 380px);
  }

  .hero-logo-shell {
    width: min(100%, 360px);
    border-radius: 28px;
  }

  .hero-signal,
  .hero-ledger-card {
    display: none;
  }

  .feature-card,
  .new-copy,
  .new-trust-card,
  .price-card,
  .about-panel,
  .cta-card,
  .contact-form-panel,
  .screenshot-showcase {
    padding: 24px;
  }

  .founder-profile {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .founder-copy h3 {
    font-size: 30px;
  }

  .founder-contact-grid {
    justify-content: center;
  }

  .screenshot-gallery {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .phone-preview {
    min-width: 184px;
    scroll-snap-align: start;
  }

  .phone-screen,
  .phone-frame,
  .phone-frame img {
    min-height: 300px;
  }

  .contact-intro h1 {
    font-size: 34px;
  }

  .contact-intro > p:last-child,
  .privacy-intro > p {
    font-size: 16px;
  }

  .privacy-intro h1 {
    font-size: 34px;
  }

  .privacy-summary,
  .policy-panel article {
    padding: 24px;
  }

  .contact-info-card {
    align-items: flex-start;
  }

  .contact-info-card a,
  .contact-info-card span:not(.material-symbols-outlined) {
    font-size: 17px;
  }

  .contact-map {
    min-height: 300px;
  }

  .form-grid,
  .contact-trust {
    grid-template-columns: 1fr;
  }

  .form-actions .button {
    min-width: 0;
  }

}

@media (max-width: 920px) {
  .hero.section {
    min-height: auto;
    padding-bottom: 46px;
  }

  .hero-grid {
    min-height: 760px;
  }

  .hero-copy {
    width: min(100%, 680px);
    padding-top: 36px;
  }

  .hero-media {
    inset: 74px 0 0;
    min-height: auto;
  }

  .hero-media::before {
    background:
      linear-gradient(180deg, rgba(2, 6, 17, 0.92) 0%, rgba(2, 6, 17, 0.62) 52%, rgba(2, 6, 17, 0.92) 100%),
      linear-gradient(90deg, rgba(2, 6, 17, 0.96), rgba(2, 6, 17, 0.34));
  }

  .hero-device-primary {
    top: 33%;
    right: 4%;
    width: min(42vw, 330px);
    opacity: 0.54;
  }

  .hero-device-report {
    top: 43%;
    right: 42%;
    width: min(31vw, 240px);
    opacity: 0.34;
  }

  .hero-device-tenant,
  .hero-command-strip {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero.section {
    min-height: auto;
    padding-bottom: 36px;
  }

  .hero-grid {
    min-height: 780px;
  }

  .hero-copy {
    padding-top: 22px;
  }

  .hero-copy h1 {
    max-width: 10ch;
    font-size: 42px;
    line-height: 0.96;
  }

  .hero-copy > p:not(.hero-kicker) {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-proof-grid {
    margin-top: 32px;
  }

  .hero-device-primary {
    top: auto;
    right: -18%;
    bottom: 3%;
    width: 70vw;
    opacity: 0.32;
    transform: rotateY(-18deg) rotateX(8deg) rotateZ(6deg);
  }

  .hero-device-report {
    display: none;
  }

  .hero-atmosphere {
    mask-image: linear-gradient(180deg, #000, #000);
  }
}

/* World-class refinement layer */
.section:not(.hero) {
  position: relative;
  isolation: isolate;
}

section[id] {
  scroll-margin-top: 96px;
}

.section:not(.hero)::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 0%, rgba(47, 157, 255, 0.11), transparent 34%),
    radial-gradient(circle at 82% 20%, rgba(217, 183, 111, 0.08), transparent 28%);
  content: "";
  pointer-events: none;
}

.section-heading {
  position: relative;
}

.section-heading::before,
.pricing-copy::before,
.about-panel .eyebrow::before,
.cta-card::before {
  display: block;
  width: 72px;
  height: 1px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, transparent, rgba(217, 183, 111, 0.88), transparent);
  content: "";
}

.feature-grid {
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
}

.feature-card {
  min-height: 278px;
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018) 45%),
    radial-gradient(circle at 18% 0%, rgba(47, 157, 255, 0.16), transparent 34%),
    rgba(5, 13, 28, 0.74);
}

.feature-card h3 {
  font-size: clamp(21px, 2vw, 28px);
}

.feature-wide:first-child {
  min-height: 330px;
}

.screenshot-showcase {
  grid-template-columns: minmax(260px, 0.54fr) minmax(0, 1.46fr);
  align-items: start;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), transparent 30%),
    radial-gradient(circle at 72% 12%, rgba(47, 157, 255, 0.2), transparent 30%),
    rgba(3, 9, 22, 0.82);
  padding: clamp(24px, 3vw, 44px);
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.screenshot-copy {
  position: sticky;
  top: 108px;
}

.screenshot-copy h3 {
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 0.98;
}

.screenshot-gallery {
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 22px;
}

.phone-preview button,
.phone-frame {
  border: 1px solid rgba(204, 221, 255, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), transparent 26%),
    #030918;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.phone-preview h4 {
  color: rgba(238, 245, 255, 0.92);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.new-section {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 18px;
}

.new-copy,
.new-trust-card,
.new-feature-strip {
  border-color: rgba(217, 183, 111, 0.18);
}

.new-copy,
.new-trust-card {
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(217, 183, 111, 0.1), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(47, 157, 255, 0.15), transparent 30%),
    rgba(3, 9, 22, 0.86);
}

.premium-copy h2,
.new-copy h2 {
  max-width: 700px;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 0.98;
}

.premium-copy + .new-actions {
  margin-top: 34px;
}

.trust-points div {
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 40%),
    rgba(4, 13, 28, 0.72);
}

.new-feature-strip {
  justify-content: space-between;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(47, 157, 255, 0.1), rgba(217, 183, 111, 0.08)),
    rgba(3, 9, 22, 0.84);
}

.pricing-grid {
  grid-template-columns: minmax(0, 0.9fr) repeat(2, minmax(280px, 1fr));
  gap: 18px;
}

.pricing-copy {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(204, 221, 255, 0.12);
  border-radius: 12px;
  background:
    radial-gradient(circle at 20% 0%, rgba(47, 157, 255, 0.18), transparent 38%),
    rgba(3, 9, 22, 0.74);
  padding: 34px;
}

.pricing-copy::before {
  margin-inline: 0;
}

.price-card {
  min-height: 420px;
  border-radius: 12px;
  padding: 34px;
}

.price-card.highlighted {
  border-color: rgba(217, 183, 111, 0.42);
  background:
    linear-gradient(145deg, rgba(217, 183, 111, 0.14), transparent 34%),
    radial-gradient(circle at 80% 12%, rgba(47, 157, 255, 0.18), transparent 30%),
    rgba(5, 13, 28, 0.84);
}

.price {
  font-size: clamp(38px, 3.4vw, 50px);
  white-space: nowrap;
}

.about-panel {
  border-radius: 12px;
  background:
    linear-gradient(110deg, rgba(217, 183, 111, 0.12), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(47, 157, 255, 0.18), transparent 34%),
    rgba(3, 9, 22, 0.84);
}

.about-panel h2 {
  max-width: 560px;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 0.98;
}

.about-panel > p {
  max-width: 620px;
  font-size: 20px;
  line-height: 1.8;
}

.cta-card {
  max-width: 1040px;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 32%),
    radial-gradient(circle at 18% 0%, rgba(47, 157, 255, 0.22), transparent 36%),
    radial-gradient(circle at 86% 24%, rgba(217, 183, 111, 0.14), transparent 30%),
    rgba(3, 9, 22, 0.9);
  padding: clamp(34px, 5vw, 64px);
}

.cta-card h2 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.96;
}

.download-content {
  grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
}

.download-qr {
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 38%),
    rgba(4, 13, 28, 0.84);
}

.site-footer {
  border-top: 1px solid rgba(217, 183, 111, 0.16);
  background:
    linear-gradient(180deg, rgba(2, 6, 17, 0.86), #020611),
    radial-gradient(circle at 16% 0%, rgba(47, 157, 255, 0.14), transparent 30%);
}

.footer-grid {
  border: 1px solid rgba(204, 221, 255, 0.1);
  border-radius: 12px;
  background: rgba(3, 9, 22, 0.54);
  padding: 28px;
}

@media (max-width: 920px) {
  .feature-grid,
  .screenshot-showcase,
  .new-section,
  .pricing-grid,
  .about-panel,
  .download-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-copy {
    position: static;
  }

  .pricing-copy,
  .price-card {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  section[id] {
    scroll-margin-top: 78px;
  }

  .premium-copy h2,
  .new-copy h2,
  .about-panel h2,
  .cta-card h2 {
    font-size: 34px;
    line-height: 1.04;
  }

  .screenshot-gallery {
    gap: 14px;
  }
}

/* Hyper-premium density and scale pass */
body {
  background:
    radial-gradient(circle at 50% -12%, rgba(47, 157, 255, 0.14), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(217, 183, 111, 0.09), transparent 28%),
    linear-gradient(180deg, #020611 0%, #041226 42%, #020611 100%);
}

.site-header {
  border-bottom-color: rgba(217, 183, 111, 0.14);
  background:
    linear-gradient(180deg, rgba(2, 6, 17, 0.94), rgba(2, 6, 17, 0.76)),
    rgba(2, 8, 21, 0.86);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.26);
}

.nav-shell {
  min-height: 74px;
}

.brand {
  font-size: 22px;
}

.nav-links {
  gap: 28px;
}

.nav-links a {
  font-size: 13px;
}

.button {
  min-height: 52px;
  border-radius: 9px;
  font-size: 15px;
}

.button-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 45%),
    linear-gradient(90deg, #62b8ff, #0756c9);
  box-shadow:
    0 20px 44px rgba(47, 157, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.button-ghost {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 54%),
    rgba(10, 22, 42, 0.74);
}

.hero.section {
  min-height: min(840px, 100vh);
  padding-top: 104px;
}

.hero-grid {
  min-height: calc(min(840px, 100vh) - 142px);
}

.hero-copy {
  width: min(100%, 650px);
  padding-top: clamp(34px, 6vh, 70px);
}

.hero-copy h1 {
  max-width: 650px;
  font-size: clamp(38px, 4.15vw, 60px);
  line-height: 1.02;
  text-shadow:
    0 22px 54px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(47, 157, 255, 0.1);
}

.hero-copy > p:not(.hero-kicker) {
  max-width: 570px;
  margin-top: 24px;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.65;
}

.hero-kicker {
  margin-bottom: 20px;
  border-color: rgba(217, 183, 111, 0.34);
  background:
    linear-gradient(90deg, rgba(217, 183, 111, 0.16), rgba(47, 157, 255, 0.08)),
    rgba(3, 10, 24, 0.82);
  font-size: 11px;
}

.hero-actions {
  gap: 12px;
  margin-top: 30px;
}

.hero-proof-grid {
  max-width: 630px;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof-grid div {
  min-height: 76px;
  border-color: rgba(204, 221, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 38%),
    rgba(8, 18, 35, 0.66);
}

.hero-proof-grid strong {
  font-size: 21px;
}

.hero-proof-grid span {
  font-size: 12px;
  line-height: 1.35;
}

.hero-device {
  border-radius: 24px;
  border-color: rgba(217, 183, 111, 0.18);
  box-shadow:
    0 48px 130px rgba(0, 0, 0, 0.58),
    0 0 90px rgba(47, 157, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.hero-device-primary {
  top: 10%;
  right: 8%;
  width: min(31vw, 390px);
}

.hero-device-report {
  top: 20%;
  right: 30%;
  width: min(22vw, 270px);
}

.hero-device-tenant {
  right: -2%;
  width: min(22vw, 285px);
}

.hero-command-strip {
  right: min(5vw, 70px);
  bottom: 12%;
  width: min(370px, 29vw);
  border-color: rgba(217, 183, 111, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 34%),
    rgba(2, 8, 21, 0.84);
}

.hero-command-strip strong {
  font-size: 21px;
}

.section {
  padding-block: 104px 64px;
}

.section-tight {
  padding-top: 42px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading h2,
.pricing-copy h2,
.about-panel h2,
.cta-card h2 {
  font-size: clamp(26px, 2.55vw, 36px);
  line-height: 1.08;
}

.section-heading p,
.pricing-copy p,
.about-panel p,
.cta-card p,
.price-note {
  font-size: 16px;
  line-height: 1.68;
}

.section-heading::before,
.pricing-copy::before,
.about-panel .eyebrow::before,
.cta-card::before {
  width: 88px;
  background: linear-gradient(90deg, transparent, rgba(217, 183, 111, 0.95), rgba(185, 216, 255, 0.64), transparent);
}

.feature-grid {
  gap: 18px;
}

.feature-card {
  min-height: 244px;
  padding: 30px;
  border-color: rgba(204, 221, 255, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018) 45%),
    radial-gradient(circle at 16% 0%, rgba(47, 157, 255, 0.14), transparent 32%),
    rgba(4, 12, 27, 0.8);
}

.feature-wide:first-child {
  min-height: 292px;
}

.feature-card h3 {
  max-width: 450px;
  font-size: clamp(20px, 1.65vw, 24px);
  line-height: 1.18;
}

.feature-card p {
  max-width: 500px;
  font-size: 14.5px;
}

.icon-box {
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
}

.screenshot-showcase {
  gap: 28px;
  border-color: rgba(217, 183, 111, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 72% 8%, rgba(47, 157, 255, 0.18), transparent 29%),
    radial-gradient(circle at 12% 96%, rgba(217, 183, 111, 0.1), transparent 28%),
    rgba(3, 9, 22, 0.88);
}

.screenshot-copy h3 {
  max-width: 440px;
  font-size: clamp(26px, 2.55vw, 38px);
  line-height: 1.02;
}

.screenshot-copy p:last-child {
  max-width: 420px;
  font-size: 15px;
}

.phone-preview button,
.phone-frame {
  border-radius: 18px;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.new-copy,
.new-trust-card {
  min-height: 480px;
  padding: clamp(30px, 3vw, 40px);
}

.premium-copy h2,
.new-copy h2 {
  max-width: 620px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
}

.new-trust-card h3 {
  font-size: clamp(23px, 2.1vw, 31px);
  line-height: 1.05;
}

.new-copy p,
.new-trust-card p {
  font-size: 16px;
}

.trust-points {
  gap: 12px;
}

.trust-points div {
  padding: 17px;
}

.pricing-copy,
.price-card {
  min-height: 386px;
  padding: 30px;
}

.price {
  font-size: clamp(34px, 3vw, 44px);
}

.price-card ul {
  font-size: 15px;
}

.about-panel {
  gap: 36px;
  padding: clamp(30px, 4vw, 44px);
}

.about-panel h2 {
  max-width: 520px;
}

.about-panel > p {
  max-width: 580px;
  font-size: 17px;
}

.cta-card {
  max-width: 960px;
}

.cta-card h2 {
  font-size: clamp(30px, 3.45vw, 48px);
}

.download-meta dd {
  font-size: 16px;
}

.footer-grid {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (max-width: 920px) {
  .nav-links {
    gap: 0;
  }

  .hero.section {
    padding-top: 94px;
  }

  .hero-grid {
    min-height: 710px;
  }

  .hero-copy h1 {
    max-width: 560px;
    font-size: clamp(36px, 7vw, 52px);
  }

  .hero-device-primary {
    width: min(40vw, 300px);
  }

  .hero-device-report {
    width: min(30vw, 220px);
  }
}

@media (max-width: 620px) {
  .brand {
    font-size: 17px;
  }

  .hero-grid {
    min-height: 708px;
  }

  .hero-copy h1 {
    max-width: 11ch;
    font-size: 31px;
    line-height: 1.02;
  }

  .hero-copy > p:not(.hero-kicker) {
    margin-top: 18px;
    font-size: 15.5px;
    line-height: 1.62;
  }

  .hero-kicker {
    max-width: 100%;
    font-size: 10px;
  }

  .hero-actions,
  .hero-proof-grid {
    margin-top: 24px;
  }

  .hero-device-primary {
    right: -16%;
    bottom: 5%;
    width: 62vw;
  }

  .section {
    padding-block: 84px 46px;
  }

  .section-heading h2,
  .premium-copy h2,
  .new-copy h2,
  .about-panel h2,
  .cta-card h2 {
    font-size: 27px;
    line-height: 1.08;
  }

  .screenshot-copy h3,
  .new-trust-card h3 {
    font-size: 26px;
    line-height: 1.08;
  }

  .feature-card,
  .new-copy,
  .new-trust-card,
  .price-card,
  .about-panel,
  .cta-card,
  .contact-form-panel,
  .screenshot-showcase {
    padding: 22px;
  }

  .pricing-copy {
    padding: 24px;
  }

  .price {
    font-size: 33px;
  }
}

/* High-refresh performance pass */
@keyframes smoothTextIn {
  0% {
    opacity: 0;
    transform: translate3d(0, var(--blur-y, -26px), 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

:root {
  --smooth-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.nav-shell,
.section-inner,
.button,
.feature-card,
.price-card,
.about-panel,
.cta-card,
.contact-info-card,
.phone-preview button,
.screenshot-dialog,
.screenshot-stage img {
  will-change: auto;
}

.site-header,
.button,
.hero-device,
.hero-command-strip,
.hero-logo,
.hero-orbit,
.hero-signal,
.feature-card,
.price-card,
.about-panel,
.cta-card,
.new-copy,
.new-trust-card,
.phone-preview button,
.screenshot-dialog,
.screenshot-stage img {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.feature-card,
.price-card,
.about-panel,
.cta-card,
.contact-info-card,
.new-copy,
.new-trust-card,
.new-feature-strip,
.download-qr,
.app-update-panel {
  contain: layout paint style;
}

.reveal {
  transform: translate3d(0, 18px, 0) scale(0.985);
  transition:
    opacity 480ms var(--smooth-ease),
    transform 480ms var(--smooth-ease);
}

.reveal:not(.is-visible) {
  will-change: transform, opacity;
}

.reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

.blur-text-segment {
  filter: none;
  transform: translate3d(0, var(--blur-y, -26px), 0);
  will-change: transform, opacity;
}

.blur-text.is-in-view .blur-text-segment {
  animation: smoothTextIn 520ms var(--smooth-ease) forwards;
  animation-delay: var(--blur-delay, 0ms);
}

.hero-media::after {
  filter: blur(70px);
  transform: translateZ(0);
}

.hero-logo,
.hero-orbit,
.hero-signal,
.hero-command-strip {
  will-change: transform;
}

.hero-logo {
  animation-duration: 13s;
}

.hero-orbit {
  animation-duration: 34s;
}

.hero-signal {
  animation-duration: 9s;
}

.hero-actions .button,
.feature-card,
.price-card,
.about-panel,
.cta-card,
.contact-info-card,
.phone-preview button {
  transition-timing-function: var(--smooth-ease);
}

@supports (content-visibility: auto) {
  .feature-card,
  .price-card,
  .about-panel,
  .cta-card,
  .contact-info-card,
  .new-copy,
  .new-trust-card {
    content-visibility: auto;
    contain-intrinsic-size: auto 420px;
  }
}

@media (max-width: 920px) {
  .site-header,
  .hero-signal,
  .screenshot-dialog {
    backdrop-filter: blur(14px) saturate(125%);
  }
}

@media (hover: none) {
  .feature-card:hover,
  .price-card:hover,
  .about-panel:hover,
  .cta-card:hover,
  .contact-info-card:hover,
  .phone-preview button:hover {
    transform: translateZ(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

  .blur-text-segment {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}
