: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;
  overflow-x: hidden;
}

@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;
}

main,
.site-header,
.site-footer {
  max-width: 100%;
  overflow-x: hidden;
}

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: 1000;
  overflow: visible;
  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;
  position: relative;
  z-index: 32;
  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);
  cursor: pointer;
  touch-action: manipulation;
}

.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-youtube {
  color: #ffffff;
  border-color: rgba(255, 84, 84, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 48%),
    linear-gradient(135deg, rgba(255, 38, 38, 0.96), rgba(173, 15, 28, 0.96) 54%, rgba(69, 7, 16, 0.96));
  box-shadow:
    0 22px 58px rgba(255, 0, 48, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button-youtube:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(255, 146, 146, 0.46);
  box-shadow:
    0 28px 66px rgba(255, 0, 48, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button-instagram {
  color: #ffffff;
  border-color: rgba(255, 142, 191, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 48%),
    linear-gradient(135deg, #f9ce34 0%, #ee2a7b 44%, #6228d7 100%);
  box-shadow:
    0 22px 58px rgba(238, 42, 123, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.button-instagram:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(255, 204, 224, 0.5);
  box-shadow:
    0 28px 66px rgba(238, 42, 123, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.youtube-logo {
  width: 28px;
  height: 20px;
  flex: 0 0 auto;
  filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.18));
}

.youtube-logo rect {
  fill: #ffffff;
}

.youtube-logo path {
  fill: #d90f1d;
}

.instagram-logo {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  overflow: visible;
  filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.18));
}

.instagram-logo rect,
.instagram-logo circle {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.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 {
  padding-inline: clamp(20px, 2vw, 26px);
  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 picture,
.hero-device img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-device img {
  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 picture,
.phone-preview img {
  display: block;
  width: 100%;
  height: 100%;
}

.phone-preview img {
  object-fit: cover;
  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 picture,
.phone-frame img {
  display: block;
  width: 100%;
  height: 100%;
}

.phone-frame img {
  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";
}

.pricing-comparison {
  grid-column: 1 / -1;
  min-width: 0;
  border: 1px solid rgba(204, 221, 255, 0.13);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), transparent 32%),
    radial-gradient(circle at 88% 0%, rgba(78, 222, 163, 0.12), transparent 28%),
    rgba(3, 9, 22, 0.84);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: clamp(24px, 3vw, 34px);
}

.comparison-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.comparison-heading h3 {
  max-width: 620px;
  margin: 0;
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.16;
}

.comparison-table-wrap {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(204, 221, 255, 0.1);
  border-radius: 10px;
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: var(--muted);
  font-size: 15px;
}

.pricing-grid,
.new-section,
.screenshot-showcase,
.about-panel,
.download-content,
.footer-grid,
.contact-layout,
.privacy-layout,
.proof-panel {
  min-width: 0;
}

.pricing-grid > *,
.new-section > *,
.screenshot-showcase > *,
.about-panel > *,
.download-content > *,
.footer-grid > *,
.contact-layout > *,
.privacy-layout > *,
.proof-panel > * {
  min-width: 0;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(204, 221, 255, 0.09);
  text-align: left;
  vertical-align: top;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table thead th {
  color: #ffffff;
  background: rgba(17, 32, 54, 0.74);
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table tbody th {
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
}

.comparison-table td:nth-child(3) {
  color: #dfffee;
  background: rgba(78, 222, 163, 0.055);
}

.comparison-table strong {
  color: #ffffff;
}

.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);
}

.about-follow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
  margin-top: 8px;
  padding-top: 34px;
  border-top: 1px solid rgba(204, 221, 255, 0.12);
}

.about-follow-copy {
  min-width: 0;
}

.about-follow-copy h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.1;
}

.about-panel .about-follow-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.about-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
}

.about-social-link {
  position: relative;
  display: grid;
  gap: 14px;
  justify-items: center;
  align-items: start;
  min-width: 0;
  border: 1px solid rgba(204, 221, 255, 0.13);
  border-radius: 12px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(7, 18, 35, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 18px 42px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.about-social-link::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.12), transparent 36%);
  content: "";
  opacity: 0.8;
  pointer-events: none;
}

.about-social-link:hover,
.about-social-link:focus-visible {
  transform: translate3d(0, -4px, 0);
  border-color: rgba(185, 216, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 54px rgba(0, 0, 0, 0.24);
}

.about-social-link:focus-visible {
  outline: 2px solid rgba(185, 216, 255, 0.56);
  outline-offset: 4px;
}

.about-social-qr,
.about-social-meta {
  position: relative;
  z-index: 1;
}

.about-social-qr {
  display: grid;
  width: 136px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 10px;
  background: #ffffff;
  padding: 8px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.about-social-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-social-meta {
  display: grid;
  gap: 5px;
  justify-items: center;
  min-width: 0;
  text-align: center;
}

.about-social-meta span {
  color: rgba(225, 235, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-social-meta strong {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.about-social-youtube {
  border-color: rgba(255, 84, 84, 0.25);
}

.about-social-youtube:hover,
.about-social-youtube:focus-visible {
  border-color: rgba(255, 146, 146, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 54px rgba(255, 0, 48, 0.16);
}

.about-social-instagram {
  border-color: rgba(255, 142, 191, 0.25);
}

.about-social-instagram:hover,
.about-social-instagram:focus-visible {
  border-color: rgba(255, 204, 224, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 54px rgba(238, 42, 123, 0.18);
}

.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;
}

.testimonial-hero {
  padding-bottom: 78px;
}

.proof-metrics,
.testimonial-grid {
  display: grid;
  gap: 16px;
}

.proof-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}

.proof-metrics div,
.testimonial-card,
.proof-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 34%),
    rgba(10, 25, 47, 0.58);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.proof-metrics div {
  padding: 24px;
}

.proof-metrics .material-symbols-outlined {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(185, 216, 255, 0.16);
  border-radius: 10px;
  color: var(--blue-soft);
  background: rgba(47, 157, 255, 0.1);
}

.proof-metrics strong,
.testimonial-card strong,
.proof-panel h2 {
  color: #ffffff;
  font-family: Montserrat, sans-serif;
}

.proof-metrics strong {
  display: block;
  font-size: 20px;
}

.proof-metrics p,
.testimonial-card p,
.proof-list p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  display: grid;
  align-content: space-between;
  min-height: 300px;
  padding: 28px;
}

.testimonial-rating {
  color: var(--amber);
  font-size: 18px;
  letter-spacing: 0.06em;
}

.testimonial-card > p {
  color: #dce8fb;
  font-size: 17px;
}

.testimonial-card footer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(204, 221, 255, 0.1);
}

.testimonial-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 30px;
  align-items: center;
  margin-top: 22px;
  padding: clamp(24px, 3vw, 34px);
}

.proof-panel h2 {
  margin: 0;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.08;
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list p {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0;
  color: #dce8fb;
}

.proof-list .material-symbols-outlined {
  color: var(--green);
}

.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;
    z-index: 1001;
    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);
    pointer-events: auto;
  }

  .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,
  .proof-metrics,
  .testimonial-grid,
  .proof-panel,
  .about-panel,
  .download-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-copy {
    position: static;
  }

  .pricing-copy,
  .price-card {
    min-height: 0;
  }

  .comparison-heading {
    display: block;
  }

  .proof-panel {
    gap: 20px;
  }
}

@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 .section-inner {
    width: calc(100vw - 40px);
  }

  .hero-grid {
    min-height: 708px;
  }

  .hero-copy h1 {
    max-width: 11ch;
    font-size: 31px;
    line-height: 1.02;
  }

  .hero-copy > p:not(.hero-kicker) {
    max-width: 34ch;
    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,
  .pricing-comparison,
  .testimonial-card,
  .proof-panel,
  .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: visible;
  }
}

/* Render content immediately on mobile and slow networks. */
.reveal,
.reveal:not(.is-visible),
.reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.blur-text-segment {
  opacity: 1;
  transform: none;
}

@media (max-width: 620px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero.section {
    padding-top: 88px;
  }

  .hero-grid {
    min-height: auto;
    padding-bottom: 280px;
  }

  .hero-copy {
    padding-top: 20px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-device-primary {
    right: -22%;
    bottom: 1%;
    width: 74vw;
    opacity: 0.24;
  }

  .screenshot-gallery:not(.is-expanded) .phone-preview:nth-child(n+4) {
    display: block;
  }

  .screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    scroll-snap-type: none;
  }

  .phone-preview {
    min-width: 0;
    scroll-snap-align: unset;
  }

  .screenshot-toggle {
    display: none;
  }

  .comparison-table {
    min-width: 0;
    table-layout: fixed;
    font-size: 13px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px 12px;
    overflow-wrap: anywhere;
  }

  .price {
    white-space: normal;
  }
}

@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;
  }
}

/* Ultra-premium hero motion layer */
@keyframes heroAmbientSweep {
  0% {
    transform: translate3d(-8%, -3%, 0) scale(1);
    opacity: 0.64;
  }
  50% {
    transform: translate3d(4%, 2%, 0) scale(1.04);
    opacity: 0.9;
  }
  100% {
    transform: translate3d(-8%, -3%, 0) scale(1);
    opacity: 0.64;
  }
}

@keyframes heroWordRevealPremium {
  0% {
    opacity: 0;
    filter: blur(14px);
    transform: translate3d(0, 34px, 0) scale(0.96);
  }
  65% {
    opacity: 1;
    filter: blur(2px);
    transform: translate3d(0, -3px, 0) scale(1.01);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroCopyRisePremium {
  0% {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroButtonSheen {
  0% {
    transform: translateX(-130%) skewX(-18deg);
    opacity: 0;
  }
  18% {
    opacity: 0.75;
  }
  42%, 100% {
    transform: translateX(150%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes heroPrimaryDeviceFloat {
  0%, 100% {
    transform: rotateY(-20deg) rotateX(7deg) rotateZ(2deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotateY(-16deg) rotateX(5deg) rotateZ(1deg) translate3d(-8px, -16px, 0);
  }
}

@keyframes heroReportDeviceFloat {
  0%, 100% {
    transform: rotateY(-23deg) rotateX(9deg) rotateZ(-8deg) translate3d(0, 0, -120px);
  }
  50% {
    transform: rotateY(-19deg) rotateX(7deg) rotateZ(-6deg) translate3d(-12px, 13px, -120px);
  }
}

@keyframes heroTenantDeviceFloat {
  0%, 100% {
    transform: rotateY(-14deg) rotateX(8deg) rotateZ(8deg) translate3d(0, 0, -160px);
  }
  50% {
    transform: rotateY(-11deg) rotateX(6deg) rotateZ(6deg) translate3d(10px, -12px, -160px);
  }
}

@keyframes heroCommandPulse {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44), 0 0 0 rgba(47, 157, 255, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
    box-shadow: 0 42px 110px rgba(0, 0, 0, 0.5), 0 0 54px rgba(47, 157, 255, 0.16);
  }
}

@keyframes heroProofPop {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.hero-atmosphere {
  animation: heroAmbientSweep 14s ease-in-out infinite;
}

.hero-title.blur-text .blur-text-segment {
  opacity: 0;
  filter: blur(14px);
  transform: translate3d(0, 34px, 0) scale(0.96);
}

.hero-title.blur-text.is-in-view .blur-text-segment {
  animation: heroWordRevealPremium 780ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--blur-delay, 0ms) + 120ms);
}

.hero-kicker,
.hero-copy > p:not(.hero-kicker),
.hero-actions,
.hero-proof-grid {
  opacity: 0;
  animation: heroCopyRisePremium 760ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-kicker {
  animation-delay: 80ms;
}

.hero-copy > p:not(.hero-kicker) {
  animation-delay: 560ms;
}

.hero-actions {
  animation-delay: 760ms;
}

.hero-proof-grid {
  animation-delay: 940ms;
}

.hero-actions .button {
  isolation: isolate;
}

.hero-actions .button::after,
.nav-download::after {
  position: absolute;
  inset: -35% auto -35% -42%;
  z-index: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.44), transparent);
  content: "";
  pointer-events: none;
  transform: translateX(-130%) skewX(-18deg);
  animation: heroButtonSheen 4.8s ease-in-out infinite;
}

.hero-actions .button > *,
.nav-download > * {
  position: relative;
  z-index: 1;
}

.hero-actions .button:nth-child(2)::after {
  animation-delay: 0.75s;
}

.hero-actions .button:nth-child(3)::after {
  animation-delay: 1.3s;
}

.hero-device-primary {
  animation: heroPrimaryDeviceFloat 8.5s ease-in-out infinite;
}

.hero-device-report {
  animation: heroReportDeviceFloat 9.8s ease-in-out infinite;
  animation-delay: -1.4s;
}

.hero-device-tenant {
  animation: heroTenantDeviceFloat 10.4s ease-in-out infinite;
  animation-delay: -2.1s;
}

.hero-command-strip {
  animation: heroCommandPulse 7.5s ease-in-out infinite;
}

.hero-proof-grid div {
  opacity: 0;
  animation: heroProofPop 620ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-proof-grid div:nth-child(1) {
  animation-delay: 1.02s;
}

.hero-proof-grid div:nth-child(2) {
  animation-delay: 1.14s;
}

.hero-proof-grid div:nth-child(3) {
  animation-delay: 1.26s;
}

@media (max-width: 620px) {
  .hero-title.blur-text .blur-text-segment {
    filter: blur(8px);
    transform: translate3d(0, 20px, 0) scale(0.98);
  }

  .hero-title.blur-text.is-in-view .blur-text-segment {
    animation-duration: 560ms;
    animation-delay: calc(var(--blur-delay, 0ms) + 60ms);
  }

  .hero-device-primary {
    animation: heroPrimaryDeviceFloat 11s ease-in-out infinite;
  }

  .hero-command-strip,
  .hero-device-report,
  .hero-device-tenant {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-atmosphere,
  .hero-title.blur-text.is-in-view .blur-text-segment,
  .hero-kicker,
  .hero-copy > p:not(.hero-kicker),
  .hero-actions,
  .hero-proof-grid,
  .hero-actions .button::after,
  .nav-download::after,
  .hero-device-primary,
  .hero-device-report,
  .hero-device-tenant,
  .hero-command-strip,
  .hero-proof-grid div {
    animation: none !important;
  }

  .hero-title.blur-text .blur-text-segment,
  .hero-kicker,
  .hero-copy > p:not(.hero-kicker),
  .hero-actions,
  .hero-proof-grid,
  .hero-proof-grid div {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* Mobile app screenshot slider */
@media (max-width: 620px) {
  .screenshot-showcase {
    overflow: hidden;
  }

  .screenshot-copy {
    position: static;
  }

  .screenshot-gallery:not(.is-expanded) .phone-preview:nth-child(n+4) {
    display: block;
  }

  .screenshot-gallery {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding: 2px 18px 14px 2px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 2px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .screenshot-gallery::-webkit-scrollbar {
    display: none;
  }

  .phone-preview {
    flex: 0 0 clamp(188px, 72vw, 250px);
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .phone-preview button,
  .phone-frame {
    min-height: 0;
    aspect-ratio: 9 / 16;
  }

  .phone-preview h4 {
    min-height: 18px;
    margin-top: 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  .screenshot-toggle {
    display: none;
  }
}

/* Original hero animation boost */
.hero.section {
  --hero-parallax-x: 0px;
  --hero-parallax-y: 0px;
  --hero-parallax-soft-x: 0px;
  --hero-parallax-soft-y: 0px;
  --hero-light-x: 72%;
  --hero-light-y: 30%;
}

.hero.section::before {
  animation: originalHeroTopLine 5.8s ease-in-out infinite;
}

.hero-atmosphere {
  animation: originalHeroAtmosphere 16s ease-in-out infinite;
}

.hero-media {
  transition: transform 260ms ease-out;
}

.hero-copy h1 {
  animation: originalHeroTitlePresence 4.8s ease-in-out infinite;
}

.hero-title.blur-text.is-in-view .blur-text-segment {
  animation-name: originalHeroWordIn;
  animation-duration: 820ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-kicker::before {
  animation: originalHeroDotPulse 1.8s ease-in-out infinite;
}

.hero-actions .button {
  transform: translateZ(0);
}

.hero-actions .button::after,
.nav-download::after {
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  animation-duration: 3.8s;
}

.hero-proof-grid div {
  position: relative;
  overflow: hidden;
}

.hero-proof-grid div::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 15%, rgba(185, 216, 255, 0.13), transparent 72%);
  content: "";
  opacity: 0;
  transform: translateX(-85%);
  animation: originalHeroCardSheen 5.8s ease-in-out infinite;
}

.hero-proof-grid div:nth-child(2)::after {
  animation-delay: 0.7s;
}

.hero-proof-grid div:nth-child(3)::after {
  animation-delay: 1.35s;
}

.hero-command-strip {
  overflow: hidden;
}

.hero-command-strip::after {
  position: absolute;
  inset: auto 18px 13px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(217, 183, 111, 0.95), rgba(47, 157, 255, 0.95), rgba(78, 222, 163, 0.7));
  content: "";
  transform-origin: left center;
  animation: originalHeroCommandScan 2.7s ease-in-out infinite;
}

.hero-device {
  transform-style: preserve-3d;
}

.hero-device::before {
  animation: originalHeroGlassSweep 4.6s ease-in-out infinite;
}

@media (hover: hover) and (pointer: fine) {
  .hero-media {
    transform: translate3d(var(--hero-parallax-soft-x), var(--hero-parallax-soft-y), 0);
  }
}

@keyframes originalHeroTopLine {
  0%, 100% {
    opacity: 0.55;
    filter: drop-shadow(0 0 0 rgba(47, 157, 255, 0));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 14px rgba(47, 157, 255, 0.34));
  }
}

@keyframes originalHeroAtmosphere {
  0%, 100% {
    transform: translate3d(-2%, -1%, 0) scale(1);
    opacity: 0.68;
  }
  50% {
    transform: translate3d(2%, 1%, 0) scale(1.03);
    opacity: 0.94;
  }
}

@keyframes originalHeroTitlePresence {
  0%, 100% {
    text-shadow: 0 22px 54px rgba(0, 0, 0, 0.38), 0 0 28px rgba(47, 157, 255, 0.1);
  }
  50% {
    text-shadow: 0 26px 62px rgba(0, 0, 0, 0.44), 0 0 42px rgba(47, 157, 255, 0.24);
  }
}

@keyframes originalHeroWordIn {
  0% {
    opacity: 0;
    filter: blur(16px);
    transform: translate3d(0, 34px, 0) scale(0.96);
  }
  62% {
    opacity: 1;
    filter: blur(2px);
    transform: translate3d(0, -3px, 0) scale(1.01);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes originalHeroDotPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 18px rgba(78, 222, 163, 0.7);
  }
  50% {
    transform: scale(1.45);
    box-shadow: 0 0 28px rgba(78, 222, 163, 0.95);
  }
}

@keyframes originalHeroCardSheen {
  0%, 55%, 100% {
    opacity: 0;
    transform: translateX(-85%);
  }
  72% {
    opacity: 1;
  }
  88% {
    opacity: 0;
    transform: translateX(100%);
  }
}

@keyframes originalHeroCommandScan {
  0%, 100% {
    opacity: 0.45;
    transform: scaleX(0.34);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes originalHeroGlassSweep {
  0%, 58%, 100% {
    opacity: 0.78;
    transform: translateX(-8%);
  }
  76% {
    opacity: 1;
    transform: translateX(8%);
  }
}

@keyframes heroPrimaryDeviceFloat {
  0%, 100% {
    transform: rotateY(-20deg) rotateX(7deg) rotateZ(2deg) translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0);
  }
  50% {
    transform: rotateY(-16deg) rotateX(5deg) rotateZ(1deg) translate3d(calc(var(--hero-parallax-x) - 10px), calc(var(--hero-parallax-y) - 18px), 0);
  }
}

@keyframes heroReportDeviceFloat {
  0%, 100% {
    transform: rotateY(-23deg) rotateX(9deg) rotateZ(-8deg) translate3d(var(--hero-parallax-soft-x), var(--hero-parallax-soft-y), -120px);
  }
  50% {
    transform: rotateY(-19deg) rotateX(7deg) rotateZ(-6deg) translate3d(calc(var(--hero-parallax-soft-x) - 14px), calc(var(--hero-parallax-soft-y) + 14px), -120px);
  }
}

@keyframes heroTenantDeviceFloat {
  0%, 100% {
    transform: rotateY(-14deg) rotateX(8deg) rotateZ(8deg) translate3d(var(--hero-parallax-soft-x), var(--hero-parallax-y), -160px);
  }
  50% {
    transform: rotateY(-11deg) rotateX(6deg) rotateZ(6deg) translate3d(calc(var(--hero-parallax-soft-x) + 12px), calc(var(--hero-parallax-y) - 14px), -160px);
  }
}

@media (max-width: 620px) {
  .hero-copy h1 {
    animation-duration: 6s;
  }

  .hero-command-strip::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero.section::before,
  .hero-atmosphere,
  .hero-copy h1,
  .hero-title.blur-text.is-in-view .blur-text-segment,
  .hero-kicker::before,
  .hero-actions .button::after,
  .nav-download::after,
  .hero-proof-grid div::after,
  .hero-command-strip::after,
  .hero-device::before {
    animation: none !important;
  }

  .hero-media {
    transform: none !important;
  }
}

/* More animated original hero pass */
.hero.section {
  animation: heroCinematicLight 9s ease-in-out infinite;
}

.hero-atmosphere {
  overflow: hidden;
}

.hero-atmosphere::before,
.hero-atmosphere::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero-atmosphere::before {
  top: 4%;
  right: 2%;
  width: min(62vw, 820px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, transparent, rgba(47, 157, 255, 0.42), transparent 28%, rgba(217, 183, 111, 0.34), transparent 58%, rgba(78, 222, 163, 0.24), transparent),
    radial-gradient(circle, rgba(47, 157, 255, 0.12), transparent 58%);
  opacity: 0.32;
  transform: translate3d(var(--hero-parallax-soft-x), var(--hero-parallax-soft-y), 0);
  animation: heroOrbitHalo 18s linear infinite;
  mask-image: radial-gradient(circle, transparent 0 44%, #000 45% 48%, transparent 50% 100%);
}

.hero-atmosphere::after {
  inset: 0;
  background:
    linear-gradient(108deg, transparent 0 39%, rgba(255, 255, 255, 0.16) 45%, transparent 52%),
    repeating-linear-gradient(90deg, transparent 0 120px, rgba(73, 194, 255, 0.055) 121px 122px);
  opacity: 0;
  mix-blend-mode: screen;
  transform: translateX(-42%);
  animation: heroWideSweep 6.4s ease-in-out infinite;
}

.hero-copy {
  animation: heroCopyMicroLift 7s ease-in-out infinite;
}

.hero-copy h1 {
  animation: heroTitleDifferentGlow 5.2s ease-in-out infinite;
}

.hero-title.blur-text .blur-text-segment {
  transform-origin: left bottom;
}

.hero-title.blur-text.is-in-view .blur-text-segment {
  animation-name: heroWordFlipIn;
  animation-duration: 920ms;
}

.hero-actions .button-primary .material-symbols-outlined {
  animation: heroArrowKick 1.45s ease-in-out infinite;
}

.hero-actions .button-ghost .material-symbols-outlined {
  animation: heroSupportRing 2.2s ease-in-out infinite;
}

.button-youtube .youtube-logo {
  animation: heroYoutubeBeat 2s ease-in-out infinite;
}

.hero-proof-grid div {
  opacity: 1;
  animation: heroProofWave 4.8s ease-in-out infinite;
}

.hero-proof-grid {
  opacity: 1;
}

.hero-proof-grid div:nth-child(2) {
  animation-delay: 0.18s;
}

.hero-proof-grid div:nth-child(3) {
  animation-delay: 0.36s;
}

.hero-proof-grid strong {
  animation: heroNumberGlow 3.8s ease-in-out infinite;
}

.hero-device {
  transition: filter 260ms ease;
}

.hero-device img {
  animation: heroScreenBreath 7.4s ease-in-out infinite;
  transform-origin: center;
}

.hero-device-report img {
  animation-delay: -1.5s;
}

.hero-device-tenant img {
  animation-delay: -2.7s;
}

.hero-device-primary {
  animation: heroPrimaryDeviceFloat 6.6s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.hero-device-report {
  animation: heroReportDeviceFloat 7.4s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  animation-delay: -1.3s;
}

.hero-device-tenant {
  animation: heroTenantDeviceFloat 8.2s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  animation-delay: -2.1s;
}

.hero-command-strip {
  animation: heroCommandDifferent 4.8s ease-in-out infinite;
}

.hero-command-strip strong {
  animation: heroCommandTextGlow 3.4s ease-in-out infinite;
}

@keyframes heroCinematicLight {
  0%, 100% {
    filter: saturate(1) brightness(1);
  }
  45% {
    filter: saturate(1.16) brightness(1.05);
  }
  72% {
    filter: saturate(1.08) brightness(0.98);
  }
}

@keyframes heroOrbitHalo {
  0% {
    transform: translate3d(var(--hero-parallax-soft-x), var(--hero-parallax-soft-y), 0) rotate(0deg) scale(0.98);
  }
  50% {
    transform: translate3d(calc(var(--hero-parallax-soft-x) - 12px), calc(var(--hero-parallax-soft-y) + 10px), 0) rotate(180deg) scale(1.04);
  }
  100% {
    transform: translate3d(var(--hero-parallax-soft-x), var(--hero-parallax-soft-y), 0) rotate(360deg) scale(0.98);
  }
}

@keyframes heroWideSweep {
  0%, 48%, 100% {
    opacity: 0;
    transform: translateX(-42%);
  }
  62% {
    opacity: 0.44;
  }
  82% {
    opacity: 0;
    transform: translateX(36%);
  }
}

@keyframes heroCopyMicroLift {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -5px, 0);
  }
}

@keyframes heroTitleDifferentGlow {
  0%, 100% {
    text-shadow: 0 22px 54px rgba(0, 0, 0, 0.38), 0 0 26px rgba(47, 157, 255, 0.11);
  }
  35% {
    text-shadow: 0 28px 70px rgba(0, 0, 0, 0.48), 0 0 54px rgba(47, 157, 255, 0.3), 0 0 16px rgba(217, 183, 111, 0.16);
  }
  70% {
    text-shadow: 0 24px 62px rgba(0, 0, 0, 0.42), 0 0 34px rgba(78, 222, 163, 0.12);
  }
}

@keyframes heroWordFlipIn {
  0% {
    opacity: 0;
    filter: blur(16px);
    transform: perspective(700px) rotateX(48deg) translate3d(0, 36px, 0) scale(0.94);
  }
  64% {
    opacity: 1;
    filter: blur(2px);
    transform: perspective(700px) rotateX(-6deg) translate3d(0, -4px, 0) scale(1.015);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: perspective(700px) rotateX(0) translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroArrowKick {
  0%, 100% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(7px);
  }
}

@keyframes heroSupportRing {
  0%, 100% {
    transform: rotate(0deg) scale(1);
    filter: drop-shadow(0 0 0 rgba(185, 216, 255, 0));
  }
  50% {
    transform: rotate(-10deg) scale(1.08);
    filter: drop-shadow(0 0 12px rgba(185, 216, 255, 0.42));
  }
}

@keyframes heroYoutubeBeat {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
  45% {
    transform: scale(1.12);
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.38));
  }
}

@keyframes heroProofWave {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    border-color: rgba(204, 221, 255, 0.14);
  }
  50% {
    transform: translate3d(0, -7px, 0);
    border-color: rgba(185, 216, 255, 0.3);
  }
}

@keyframes heroNumberGlow {
  0%, 100% {
    color: #ffffff;
    text-shadow: none;
  }
  50% {
    color: #d8ecff;
    text-shadow: 0 0 18px rgba(47, 157, 255, 0.36);
  }
}

@keyframes heroScreenBreath {
  0%, 100% {
    transform: scale(1) translate3d(0, 0, 0);
    filter: brightness(0.96) saturate(1);
  }
  50% {
    transform: scale(1.035) translate3d(0, -5px, 0);
    filter: brightness(1.08) saturate(1.12);
  }
}

@keyframes heroCommandDifferent {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    border-color: rgba(217, 183, 111, 0.28);
  }
  44% {
    transform: translate3d(-8px, -12px, 0) scale(1.02);
    border-color: rgba(47, 157, 255, 0.36);
  }
  72% {
    transform: translate3d(5px, -5px, 0) scale(1);
  }
}

@keyframes heroCommandTextGlow {
  0%, 100% {
    text-shadow: none;
  }
  50% {
    text-shadow: 0 0 18px rgba(185, 216, 255, 0.36);
  }
}

@keyframes heroPrimaryDeviceFloat {
  0%, 100% {
    transform: rotateY(-21deg) rotateX(7deg) rotateZ(2deg) translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0);
    filter: drop-shadow(0 0 0 rgba(47, 157, 255, 0));
  }
  36% {
    transform: rotateY(-13deg) rotateX(4deg) rotateZ(-1deg) translate3d(calc(var(--hero-parallax-x) - 18px), calc(var(--hero-parallax-y) - 24px), 0);
    filter: drop-shadow(0 0 24px rgba(47, 157, 255, 0.18));
  }
  68% {
    transform: rotateY(-24deg) rotateX(8deg) rotateZ(3deg) translate3d(calc(var(--hero-parallax-x) + 9px), calc(var(--hero-parallax-y) - 8px), 0);
  }
}

@keyframes heroReportDeviceFloat {
  0%, 100% {
    transform: rotateY(-24deg) rotateX(9deg) rotateZ(-8deg) translate3d(var(--hero-parallax-soft-x), var(--hero-parallax-soft-y), -120px);
  }
  42% {
    transform: rotateY(-16deg) rotateX(5deg) rotateZ(-12deg) translate3d(calc(var(--hero-parallax-soft-x) - 22px), calc(var(--hero-parallax-soft-y) + 18px), -120px);
  }
  74% {
    transform: rotateY(-26deg) rotateX(10deg) rotateZ(-5deg) translate3d(calc(var(--hero-parallax-soft-x) + 6px), calc(var(--hero-parallax-soft-y) - 10px), -120px);
  }
}

@keyframes heroTenantDeviceFloat {
  0%, 100% {
    transform: rotateY(-14deg) rotateX(8deg) rotateZ(8deg) translate3d(var(--hero-parallax-soft-x), var(--hero-parallax-y), -160px);
  }
  48% {
    transform: rotateY(-7deg) rotateX(5deg) rotateZ(12deg) translate3d(calc(var(--hero-parallax-soft-x) + 20px), calc(var(--hero-parallax-y) - 18px), -160px);
  }
  78% {
    transform: rotateY(-18deg) rotateX(9deg) rotateZ(5deg) translate3d(calc(var(--hero-parallax-soft-x) - 8px), calc(var(--hero-parallax-y) + 8px), -160px);
  }
}

@media (max-width: 620px) {
  .hero.section {
    animation-duration: 11s;
  }

  .hero-atmosphere::before,
  .hero-atmosphere::after {
    opacity: 0.18;
  }

  .hero-copy {
    animation: none;
  }

  .hero-proof-grid div {
    animation-duration: 5.8s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero.section,
  .hero-atmosphere::before,
  .hero-atmosphere::after,
  .hero-copy,
  .hero-actions .button-primary .material-symbols-outlined,
  .hero-actions .button-ghost .material-symbols-outlined,
  .button-youtube .youtube-logo,
  .hero-proof-grid div,
  .hero-proof-grid strong,
  .hero-device img,
  .hero-command-strip,
  .hero-command-strip strong {
    animation: none !important;
  }
}

/* Smooth hero motion and premium button animation pass */
.hero.section,
.hero-atmosphere,
.hero-atmosphere::before,
.hero-atmosphere::after,
.hero-copy,
.hero-copy h1,
.hero-device,
.hero-device img,
.hero-command-strip,
.hero-proof-grid div {
  animation-timing-function: cubic-bezier(0.42, 0, 0.18, 1);
}

.hero.section {
  animation-duration: 12s;
}

.hero-atmosphere {
  animation-duration: 22s;
}

.hero-atmosphere::before {
  animation-duration: 26s;
  opacity: 0.28;
}

.hero-atmosphere::after {
  animation-duration: 9.5s;
}

.hero-copy {
  animation-duration: 9.5s;
}

.hero-copy h1 {
  animation-duration: 7.5s;
}

.hero-device-primary {
  animation-duration: 9.8s;
}

.hero-device-report {
  animation-duration: 10.8s;
}

.hero-device-tenant {
  animation-duration: 11.6s;
}

.hero-device img {
  animation-duration: 10.2s;
}

.hero-command-strip {
  animation-duration: 7.6s;
}

.hero-proof-grid div {
  animation-duration: 6.8s;
}

.hero-actions {
  perspective: 900px;
}

.hero-actions .button {
  min-width: 0;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition:
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 360ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 360ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-actions .button:hover,
.hero-actions .button:focus-visible {
  transform: translate3d(0, -4px, 0) rotateX(3deg) scale(1.018);
  filter: brightness(1.08) saturate(1.08);
}

.hero-actions .button:active {
  transform: translate3d(0, -1px, 0) scale(0.99);
  transition-duration: 120ms;
}

.hero-actions .button::before {
  inset: 1px;
  opacity: 0.78;
  transform: translate3d(0, 0, 0);
  animation: heroButtonInnerGlow 5.8s cubic-bezier(0.42, 0, 0.18, 1) infinite;
}

.hero-actions .button::after,
.nav-download::after {
  width: 44%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68), transparent);
  animation: heroButtonSilkSheen 4.4s cubic-bezier(0.42, 0, 0.18, 1) infinite;
}

.hero-actions .button:nth-child(2)::after {
  animation-delay: 0.9s;
}

.hero-actions .button:nth-child(3)::after {
  animation-delay: 1.65s;
}

.hero-actions .button-primary {
  background-size: 180% 180%;
  animation:
    heroPrimaryButtonFlow 6.4s cubic-bezier(0.42, 0, 0.18, 1) infinite,
    heroPrimaryButtonAura 3.9s cubic-bezier(0.42, 0, 0.18, 1) infinite;
}

.hero-actions .button-primary:hover,
.hero-actions .button-primary:focus-visible {
  box-shadow:
    0 34px 86px rgba(20, 147, 255, 0.36),
    0 0 0 1px rgba(185, 216, 255, 0.32),
    0 0 42px rgba(47, 157, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.hero-actions .button-ghost {
  animation: heroGhostButtonPulse 4.8s cubic-bezier(0.42, 0, 0.18, 1) infinite;
}

.hero-actions .button-ghost:hover,
.hero-actions .button-ghost:focus-visible {
  border-color: rgba(185, 216, 255, 0.5);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.34),
    0 0 30px rgba(185, 216, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hero-actions .button-youtube {
  animation: heroYoutubeButtonPulse 4.2s cubic-bezier(0.42, 0, 0.18, 1) infinite;
}

.hero-actions .button-youtube:hover,
.hero-actions .button-youtube:focus-visible {
  box-shadow:
    0 28px 74px rgba(255, 33, 50, 0.32),
    0 0 34px rgba(255, 78, 88, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.hero-actions .button .material-symbols-outlined,
.hero-actions .button .youtube-logo {
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), filter 300ms ease;
}

.hero-actions .button-primary .material-symbols-outlined {
  animation: heroArrowSmoothSlide 2.15s cubic-bezier(0.42, 0, 0.18, 1) infinite;
}

.hero-actions .button-primary:hover .material-symbols-outlined,
.hero-actions .button-primary:focus-visible .material-symbols-outlined {
  transform: translateX(8px);
}

.hero-actions .button-ghost .material-symbols-outlined {
  animation: heroSupportSmoothOrbit 3.2s cubic-bezier(0.42, 0, 0.18, 1) infinite;
}

.hero-actions .button-ghost:hover .material-symbols-outlined,
.hero-actions .button-ghost:focus-visible .material-symbols-outlined {
  filter: drop-shadow(0 0 12px rgba(185, 216, 255, 0.58));
}

.hero-actions .button-youtube .youtube-logo {
  animation: heroYoutubeSmoothPop 2.8s cubic-bezier(0.42, 0, 0.18, 1) infinite;
}

.hero-actions .button-youtube:hover .youtube-logo,
.hero-actions .button-youtube:focus-visible .youtube-logo {
  transform: scale(1.14);
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.44));
}

@keyframes heroButtonInnerGlow {
  0%, 100% {
    opacity: 0.48;
    transform: translate3d(-2%, 0, 0);
  }
  50% {
    opacity: 0.92;
    transform: translate3d(2%, 0, 0);
  }
}

@keyframes heroButtonSilkSheen {
  0%, 38%, 100% {
    opacity: 0;
    transform: translateX(-150%) skewX(-18deg);
  }
  52% {
    opacity: 0.82;
  }
  74% {
    opacity: 0;
    transform: translateX(185%) skewX(-18deg);
  }
}

@keyframes heroPrimaryButtonFlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes heroPrimaryButtonAura {
  0%, 100% {
    box-shadow:
      0 22px 58px rgba(20, 147, 255, 0.28),
      0 0 0 rgba(47, 157, 255, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }
  50% {
    box-shadow:
      0 30px 78px rgba(20, 147, 255, 0.36),
      0 0 36px rgba(47, 157, 255, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.32);
  }
}

@keyframes heroGhostButtonPulse {
  0%, 100% {
    border-color: rgba(185, 216, 255, 0.16);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
  50% {
    border-color: rgba(185, 216, 255, 0.34);
    box-shadow: 0 24px 62px rgba(0, 0, 0, 0.3), 0 0 26px rgba(185, 216, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  }
}

@keyframes heroYoutubeButtonPulse {
  0%, 100% {
    box-shadow: 0 20px 48px rgba(210, 12, 28, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }
  50% {
    box-shadow: 0 28px 72px rgba(255, 33, 50, 0.32), 0 0 28px rgba(255, 67, 77, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  }
}

@keyframes heroArrowSmoothSlide {
  0%, 100% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(8px);
  }
  70% {
    transform: translateX(3px);
  }
}

@keyframes heroSupportSmoothOrbit {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  35% {
    transform: rotate(-9deg) scale(1.08);
  }
  70% {
    transform: rotate(6deg) scale(1.03);
  }
}

@keyframes heroYoutubeSmoothPop {
  0%, 100% {
    transform: scale(1);
  }
  48% {
    transform: scale(1.13);
  }
  72% {
    transform: scale(1.04);
  }
}

@media (max-width: 620px) {
  .hero-actions .button {
    min-width: 0;
  }

  .hero-actions .button:hover,
  .hero-actions .button:focus-visible {
    transform: translate3d(0, -2px, 0) scale(1.006);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-actions .button,
  .hero-actions .button::before,
  .hero-actions .button::after,
  .nav-download::after,
  .hero-actions .button .material-symbols-outlined,
  .hero-actions .button .youtube-logo {
    animation: none !important;
  }
}

/* Hero button alignment and upgraded motion */
.hero-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr) minmax(0, 0.78fr);
  align-items: stretch;
  gap: 12px;
  width: min(100%, 630px);
}

.hero-actions .button {
  width: 100%;
  min-height: 56px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1;
  white-space: nowrap;
  transform-origin: center bottom;
}

.hero-actions .button span:not(.material-symbols-outlined) {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.hero-actions .button .material-symbols-outlined {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
}

.hero-actions .button-youtube .youtube-logo {
  flex: 0 0 auto;
  width: 28px;
  height: 20px;
}

.hero-actions .button::before {
  background:
    radial-gradient(circle at 25% 12%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%);
}

.hero-actions .button::after {
  inset: -42% auto -42% -48%;
  width: 38%;
}

.hero-actions .button:hover,
.hero-actions .button:focus-visible {
  transform: translate3d(0, -5px, 0) scale(1.018);
}

.hero-actions .button:focus-visible {
  outline: 2px solid rgba(185, 216, 255, 0.56);
  outline-offset: 4px;
}

.hero-actions .button-primary {
  animation:
    heroPrimaryButtonFlow 7s cubic-bezier(0.42, 0, 0.18, 1) infinite,
    heroPrimaryButtonAura 4.8s cubic-bezier(0.42, 0, 0.18, 1) infinite,
    heroButtonBreath 5.6s cubic-bezier(0.42, 0, 0.18, 1) infinite;
}

.hero-actions .button-ghost {
  animation:
    heroGhostButtonPulse 5.6s cubic-bezier(0.42, 0, 0.18, 1) infinite,
    heroButtonBreath 6.2s cubic-bezier(0.42, 0, 0.18, 1) infinite;
}

.hero-actions .button-youtube {
  animation:
    heroYoutubeButtonPulse 5.2s cubic-bezier(0.42, 0, 0.18, 1) infinite,
    heroButtonBreath 6.8s cubic-bezier(0.42, 0, 0.18, 1) infinite;
}

.hero-actions .button-primary:hover,
.hero-actions .button-primary:focus-visible {
  transform: translate3d(0, -5px, 0) scale(1.02);
}

.hero-actions .button-ghost:hover,
.hero-actions .button-ghost:focus-visible,
.hero-actions .button-youtube:hover,
.hero-actions .button-youtube:focus-visible {
  transform: translate3d(0, -5px, 0) scale(1.016);
}

.hero-actions .button-primary .material-symbols-outlined {
  animation: heroArrowPremiumSlide 2.4s cubic-bezier(0.42, 0, 0.18, 1) infinite;
}

.hero-actions .button-ghost .material-symbols-outlined {
  animation: heroSupportPremiumFloat 3.6s cubic-bezier(0.42, 0, 0.18, 1) infinite;
}

.hero-actions .button-youtube .youtube-logo {
  animation: heroYoutubePremiumPulse 3.2s cubic-bezier(0.42, 0, 0.18, 1) infinite;
}

@keyframes heroButtonBreath {
  0%, 100% {
    letter-spacing: 0;
  }
  50% {
    letter-spacing: 0.01em;
  }
}

@keyframes heroArrowPremiumSlide {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
  42% {
    transform: translate3d(7px, 0, 0);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.42));
  }
  70% {
    transform: translate3d(3px, 0, 0);
  }
}

@keyframes heroSupportPremiumFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  40% {
    transform: translate3d(0, -2px, 0) rotate(-8deg) scale(1.08);
  }
  72% {
    transform: translate3d(0, 1px, 0) rotate(5deg) scale(1.03);
  }
}

@keyframes heroYoutubePremiumPulse {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
  45% {
    transform: translate3d(0, -1px, 0) scale(1.12);
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.42));
  }
  74% {
    transform: translate3d(0, 0, 0) scale(1.04);
  }
}

@media (max-width: 760px) {
  .hero-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .button {
    min-height: 54px;
  }
}

@media (max-width: 620px) {
  .hero-actions {
    gap: 14px;
  }

  .hero-actions .button {
    justify-content: center;
    padding-inline: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-actions .button-primary,
  .hero-actions .button-ghost,
  .hero-actions .button-youtube,
  .hero-actions .button-primary .material-symbols-outlined,
  .hero-actions .button-ghost .material-symbols-outlined,
  .hero-actions .button-youtube .youtube-logo {
    animation: none !important;
  }
}

/* Futuristic 3D hero layer */
.hero-3d-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.68;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: saturate(1.12) contrast(1.04) brightness(0.96);
  mask-image:
    radial-gradient(ellipse at 73% 44%, #000 0 40%, rgba(0, 0, 0, 0.82) 54%, transparent 78%),
    linear-gradient(90deg, transparent 0%, #000 42%, #000 100%);
}

.hero-3d-canvas.is-3d-unavailable {
  display: none;
}

.hero-device,
.hero-command-strip {
  z-index: 3;
}

.hero-media::before {
  z-index: 2;
  pointer-events: none;
}

.hero-atmosphere {
  z-index: 0;
}

.hero-media::after {
  z-index: 1;
}

.hero.section::after {
  z-index: 4;
}

@media (max-width: 920px) {
  .hero-3d-canvas {
    opacity: 0.54;
    mask-image:
      radial-gradient(ellipse at 78% 54%, #000 0 36%, rgba(0, 0, 0, 0.66) 52%, transparent 76%),
      linear-gradient(90deg, transparent 0%, #000 42%, #000 100%);
  }
}

@media (max-width: 620px) {
  .hero-3d-canvas {
    opacity: 0.28;
    filter: saturate(1.04) contrast(1) brightness(0.92);
    mask-image:
      radial-gradient(ellipse at 86% 58%, #000 0 34%, rgba(0, 0, 0, 0.48) 50%, transparent 74%),
      linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-3d-canvas {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero-3d-canvas {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero.section,
  .hero-atmosphere,
  .hero-atmosphere::before,
  .hero-atmosphere::after,
  .hero-copy h1,
  .hero-device,
  .hero-device::before,
  .hero-device img,
  .hero-command-strip,
  .hero-proof-grid div,
  .hero-proof-grid strong {
    animation: none !important;
  }

  .hero-media::after {
    filter: blur(36px);
  }
}

/* Android and touch-device performance layer */
@media (hover: none), (pointer: coarse), (max-width: 760px) {
  html {
    scroll-behavior: auto;
  }

  .hero.section,
  .hero.section::before,
  .hero-atmosphere,
  .hero-atmosphere::before,
  .hero-atmosphere::after,
  .hero-copy,
  .hero-copy h1,
  .hero-title.blur-text.is-in-view .blur-text-segment,
  .hero-kicker::before,
  .hero-actions,
  .hero-actions .button,
  .hero-actions .button::before,
  .hero-actions .button::after,
  .hero-actions .button .material-symbols-outlined,
  .hero-actions .button .youtube-logo,
  .nav-download::after,
  .hero-device,
  .hero-device::before,
  .hero-device img,
  .hero-command-strip,
  .hero-command-strip::after,
  .hero-command-strip strong,
  .hero-proof-grid,
  .hero-proof-grid div,
  .hero-proof-grid div::after,
  .hero-proof-grid strong,
  .version-skeleton {
    animation: none !important;
  }

  .hero-copy,
  .hero-copy h1,
  .hero-title.blur-text .blur-text-segment,
  .hero-kicker,
  .hero-copy > p:not(.hero-kicker),
  .hero-actions,
  .hero-proof-grid,
  .hero-proof-grid div {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .hero-atmosphere::before,
  .hero-atmosphere::after {
    display: none;
  }

  .hero-media::after {
    opacity: 0.38;
    filter: blur(22px);
  }

  .hero-device {
    box-shadow:
      0 18px 42px rgba(0, 0, 0, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .hero-device-primary {
    will-change: auto;
  }

  .site-header,
  .nav-links,
  .feature-card,
  .price-card,
  .about-panel,
  .cta-card,
  .contact-info-card,
  .screenshot-showcase,
  .pricing-comparison,
  .hero-command-strip {
    backdrop-filter: none !important;
  }

  .site-header {
    background: rgba(4, 19, 41, 0.94);
  }

  .nav-links,
  .feature-card,
  .price-card,
  .about-panel,
  .cta-card,
  .contact-info-card,
  .screenshot-showcase,
  .pricing-comparison {
    background-color: rgba(7, 18, 35, 0.92);
  }

  .feature-card:hover,
  .price-card:hover,
  .about-panel:hover,
  .cta-card:hover,
  .contact-info-card:hover,
  .phone-preview button:hover {
    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: none;
  }
}

@media (max-width: 620px) {
  .hero-grid {
    padding-bottom: 220px;
  }

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

  .hero-device-primary {
    right: -13%;
    bottom: 3%;
    width: 56vw;
    opacity: 0.26;
  }

  .screenshot-showcase,
  .feature-card,
  .price-card,
  .about-panel,
  .cta-card {
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  }

  .phone-preview button,
  .phone-frame {
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  }
}

/* Stop long-running hero paints on every device; keep interaction transitions. */
.hero.section,
.hero.section::before,
.hero-atmosphere,
.hero-atmosphere::before,
.hero-atmosphere::after,
.hero-copy,
.hero-copy h1,
.hero-kicker::before,
.hero-actions .button-primary,
.hero-actions .button-ghost,
.hero-actions .button-youtube,
.hero-actions .button::before,
.hero-actions .button::after,
.nav-download::after,
.hero-proof-grid div,
.hero-proof-grid div::after,
.hero-proof-grid strong,
.hero-device img,
.hero-command-strip,
.hero-command-strip::after,
.hero-command-strip strong {
  animation: none !important;
}

.hero-actions .button::after,
.nav-download::after,
.hero-proof-grid div::after,
.hero-command-strip::after {
  display: none;
}

/* Hero social follow row */
.hero-actions {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
  width: min(100%, 520px);
}

.hero-social-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100%, 520px);
  margin-top: 14px;
}

.hero-social-label {
  flex: 0 0 auto;
  border: 1px solid rgba(185, 216, 255, 0.14);
  border-radius: 999px;
  background: rgba(7, 18, 35, 0.58);
  padding: 0 14px;
  color: rgba(225, 235, 255, 0.78);
  font-size: 11px;
  font-weight: 800;
  line-height: 38px;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-social-actions .button {
  flex: 1 1 0;
  min-width: 0;
  min-height: 48px;
  padding: 0 17px;
  justify-content: center;
  gap: 10px;
  line-height: 1;
  white-space: nowrap;
}

.hero-social-actions .button span {
  min-width: 0;
}

.hero-social-actions .youtube-logo {
  width: 28px;
  height: 20px;
}

.hero-social-actions .instagram-logo {
  width: 23px;
  height: 23px;
}

.hero-social-actions .button:hover,
.hero-social-actions .button:focus-visible {
  transform: translate3d(0, -3px, 0) scale(1.014);
}

.hero-social-actions .button:focus-visible {
  outline: 2px solid rgba(185, 216, 255, 0.56);
  outline-offset: 4px;
}

@media (max-width: 760px) {
  .hero-actions {
    grid-template-columns: 1fr;
    width: calc(100vw - 54px);
    max-width: 420px;
    margin-inline: auto;
  }

  .hero-social-actions {
    width: calc(100vw - 54px);
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .hero-social-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .hero-social-label {
    grid-column: 1 / -1;
    justify-self: center;
    padding-inline: 12px;
    font-size: 10px;
    line-height: 30px;
  }

  .hero-social-actions .button {
    gap: 7px;
    min-height: 42px;
    padding-inline: 8px;
    border-radius: 8px;
    font-size: 13px;
  }

  .hero-social-actions .youtube-logo {
    width: 23px;
    height: 17px;
  }

  .hero-social-actions .instagram-logo {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 360px) {
  .hero-social-actions .button {
    gap: 6px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-social-actions .button,
  .hero-social-actions .button::before,
  .hero-social-actions .button::after,
  .hero-social-actions .youtube-logo,
  .hero-social-actions .instagram-logo {
    animation: none !important;
  }
}


/* ==========================================================================
   TENANT PORTAL MODAL & DASHBOARD STYLES
   ========================================================================== */
.nav-tenant-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(47, 157, 255, 0.12);
  border: 1px solid rgba(47, 157, 255, 0.35);
  color: var(--blue-soft);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.nav-tenant-btn:hover {
  background: rgba(47, 157, 255, 0.25);
  border-color: var(--blue);
  color: #ffffff;
  transform: translateY(-1px);
}

body.modal-open {
  overflow: hidden;
}

/* Modal Overlay */
.tp-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(2, 6, 17, 0.82);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tp-modal-overlay.is-active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Modal Window */
.tp-modal-window {
  position: relative;
  width: min(100%, 720px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tp-modal-overlay.is-active .tp-modal-window {
  transform: scale(1);
}

.tp-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-strong);
}

.tp-modal-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.tp-modal-close {
  background: transparent;
  border: none;
  color: var(--muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.tp-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.tp-modal-body {
  padding: 28px;
  overflow-y: auto;
  flex: 1;
}

/* Entry Screen */
.tp-entry-box {
  max-width: 440px;
  margin: 12px auto;
  text-align: center;
}

.tp-icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(47, 157, 255, 0.2), rgba(78, 222, 163, 0.1));
  border: 1px solid rgba(47, 157, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-soft);
}

.tp-icon-wrapper .material-symbols-outlined {
  font-size: 32px;
}

.tp-entry-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}

.tp-entry-sub {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 28px;
}

.tp-input-group {
  margin-bottom: 20px;
  text-align: left;
}

.tp-input-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tp-phone-wrapper {
  display: flex;
  align-items: center;
  background: rgba(8, 17, 33, 0.8);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tp-phone-wrapper:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 157, 255, 0.2);
}

.tp-prefix {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--blue-soft);
  font-weight: 600;
  font-size: 16px;
  border-right: 1px solid var(--line);
}

.tp-input {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  outline: none;
}

.tp-btn-primary {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--blue), #1e7bd6);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tp-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(47, 157, 255, 0.35);
}

.tp-error-msg {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  font-size: 14px;
}

/* Multi-Account Selector */
.tp-selector-card {
  width: 100%;
  padding: 16px 20px;
  margin-bottom: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.tp-selector-card:hover {
  background: var(--surface-strong);
  border-color: var(--blue);
}

.tp-selector-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(47, 157, 255, 0.15);
  color: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tp-selector-info {
  flex: 1;
}

.tp-selector-room {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.tp-selector-name {
  margin: 2px 0 0;
  font-size: 14px;
  color: var(--muted);
}

/* Dashboard UI Components */
.tp-header-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}

.tp-profile-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tp-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tp-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tp-avatar-text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.tp-profile-info {
  flex: 1;
}

.tp-profile-title {
  display: flex;
  align-items: center;
  gap: 10px;

}

.tp-profile-title h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.tp-profile-sub {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.tp-profile-sub .material-symbols-outlined {
  font-size: 16px;
}

.tp-property-address {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--blue-soft);
  display: flex;
  align-items: center;
  gap: 4px;
}

.tp-badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.tp-badge-success {
  background: rgba(78, 222, 163, 0.15);
  color: var(--green);
}

.tp-badge-warning {
  background: rgba(217, 183, 111, 0.15);
  color: var(--amber);
}

.tp-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.tp-stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.tp-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-soft);
}

.tp-stat-primary .tp-stat-icon {
  background: rgba(47, 157, 255, 0.18);
  color: var(--blue-soft);
}

.tp-stat-good .tp-stat-icon {
  background: rgba(78, 222, 163, 0.18);
  color: var(--green);
}

.tp-stat-alert .tp-stat-icon {
  background: rgba(239, 68, 68, 0.18);
  color: #f87171;
}

.tp-stat-body {
  display: flex;
  flex-direction: column;
}

.tp-stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.tp-stat-value {
  margin: 2px 0;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.tp-stat-sub {
  font-size: 12px;
  color: var(--muted);
}

.tp-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}

.tp-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.tp-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tp-card-title h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.tp-icon-amber { color: var(--amber); }
.tp-icon-blue { color: var(--blue); }
.tp-icon-green { color: var(--green); }

.tp-elec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tp-elec-item {
  display: flex;
  flex-direction: column;
}

.tp-elec-label {
  font-size: 12px;
  color: var(--muted);
}

.tp-elec-val {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-top: 2px;
}

.tp-text-blue { color: var(--blue-soft); }
.tp-text-green { color: var(--green); }

.tp-payments-list, .tp-receipts-list, .tp-docs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tp-payment-row, .tp-receipt-row, .tp-doc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

.tp-payment-info {
  display: flex;
  flex-direction: column;
}

.tp-payment-amount {
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}

.tp-payment-date {
  font-size: 12px;
  color: var(--muted);
}

.tp-btn-outline-small {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  color: var(--blue-soft);
  background: transparent;
  transition: background 0.2s ease;
}

.tp-btn-outline-small:hover {
  background: rgba(47, 157, 255, 0.15);
  color: #fff;
}

.tp-btn-text {
  background: transparent;
  border: none;
  color: var(--blue-soft);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.tp-btn-text:hover {
  text-decoration: underline;
}

.tp-empty-state {
  text-align: center;
  padding: 24px;
  color: var(--muted);
}

.tp-empty-state .material-symbols-outlined {
  font-size: 36px;
  margin-bottom: 8px;
  opacity: 0.5;
}

.tp-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: tpSpin 0.8s linear infinite;
}

.tp-spinner-large {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(47,157,255,0.2);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: tpSpin 0.8s linear infinite;
  margin: 30px auto 16px;
}

.tp-loading-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
}

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

/* ==========================================================================
   SIMPLE PERSONAL TENANT PORTAL STYLES
   ========================================================================== */

.tp-fullscreen-app {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  background: #090d16 !important;
  color: var(--text);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.tp-fullscreen-app.is-active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  display: flex !important;
}

/* Header */
.tp-topbar {
  height: 60px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  flex-shrink: 0;
}

.tp-topbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tp-topbar-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.tp-topbar-title {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.tp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.tp-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* App Main Viewport (Single Page Container) */
.tp-app-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 16px 40px;
}

.tp-container-narrow {
  max-width: 640px;
  margin: 0 auto;
}

/* Soft Cards */
.tp-card-soft {
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
}

.tp-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tp-value-hero {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 4px 0 2px;
}

/* Simple List Rows */
.tp-row-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 8px;
}

.tp-row-simple:last-child {
  margin-bottom: 0;
}

/* Deduplicated Landlord Group Card */
.tp-landlord-group {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.tp-landlord-group:hover {
  border-color: var(--blue);
  background: rgba(30, 41, 59, 0.85);
}

.tp-room-option {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.tp-room-option:hover {
  background: rgba(47, 157, 255, 0.15);
  border-color: var(--blue);
}

/* Premium Hero & Financial Cards */
.tp-card-hero {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.85));
  border: 1px solid rgba(47, 157, 255, 0.25);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.tp-profile-compact {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.9);
}

.tp-profile-compact h2 {
  margin: 8px 0 4px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.tp-profile-compact p,
.tp-profile-compact small {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.tp-brand-mark img {
  width: 104px;
  height: auto;
  display: block;
}

.tp-rent-grid,
.tp-electric-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  gap: 22px;
  align-items: end;
}

.tp-label,
.tp-mini-metrics span,
.tp-detail-grid span,
.tp-timeline span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

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

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

.tp-mini-metrics div,
.tp-detail-grid div {
  min-width: 0;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tp-mini-metrics strong,
.tp-detail-grid strong,
.tp-timeline strong {
  display: block;
  color: #fff;
  font-size: 15px;
  overflow-wrap: anywhere;
}

.tp-electric-hero strong {
  display: block;
  color: var(--blue-soft);
  font-size: 30px;
  line-height: 1.05;
}

.tp-electric-amount {
  justify-self: end;
  color: var(--green);
  font-size: 26px;
  font-weight: 800;
  text-align: right;
}

.tp-timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tp-timeline .tp-row-simple {
  align-items: flex-start;
  gap: 16px;
}

.tp-timeline .tp-row-simple > div:last-child {
  text-align: right;
}

.tp-row-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tp-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.tp-status-paid {
  background: rgba(78, 222, 163, 0.18);
  color: var(--green);
  border: 1px solid rgba(78, 222, 163, 0.3);
}

.tp-status-pending {
  background: rgba(239, 68, 68, 0.18);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.tp-status-partial {
  background: rgba(217, 183, 111, 0.18);
  color: var(--amber);
  border: 1px solid rgba(217, 183, 111, 0.3);
}

.tp-unit-badge {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue-soft);
  background: rgba(47, 157, 255, 0.12);
  padding: 6px 14px;
  border-radius: 12px;
  display: inline-block;
  border: 1px solid rgba(47, 157, 255, 0.25);
}

/* Modal Receipt Backdrop */
.tp-receipt-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10005;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.tp-receipt-modal-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

.tp-receipt-modal-content {
  background: #fff;
  color: #0f172a;
  border-radius: 16px;
  width: min(100%, 900px);
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  position: relative;
}

.tp-receipt-frame {
  width: 100%;
  height: min(72vh, 780px);
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
}

@media (max-width: 720px) {
  .tp-profile-compact,
  .tp-rent-grid,
  .tp-electric-hero {
    grid-template-columns: 1fr;
  }

  .tp-profile-compact,
  .tp-rent-grid {
    align-items: start;
  }

  .tp-mini-metrics,
  .tp-detail-grid {
    grid-template-columns: 1fr;
  }

  .tp-electric-amount,
  .tp-timeline .tp-row-simple > div:last-child {
    justify-self: start;
    text-align: left;
  }

  .tp-row-actions {
    width: 100%;
  }
}

