:root {
  --bg: #070916;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.14);
  --text: #f8fbff;
  --muted: #a9b4c7;
  --cyan: #4de8ff;
  --blue: #6d7cff;
  --violet: #b65cff;
  --lime: #b8ff6a;
  --card-border: rgba(255, 255, 255, 0.18);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(77, 232, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 82% 8%, rgba(182, 92, 255, 0.22), transparent 32rem),
    linear-gradient(135deg, #050613 0%, #0b1027 48%, #150821 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

.page-shell {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 34px;
}

.orb {
  position: fixed;
  z-index: -1;
  width: 20rem;
  height: 20rem;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.45;
  animation: floatOrb 12s ease-in-out infinite;
}

.orb-one {
  top: 12%;
  left: -8rem;
  background: rgba(77, 232, 255, 0.38);
}

.orb-two {
  right: -7rem;
  top: 22%;
  background: rgba(182, 92, 255, 0.36);
  animation-delay: -4s;
}

.orb-three {
  right: 18%;
  bottom: 4rem;
  background: rgba(184, 255, 106, 0.2);
  animation-delay: -8s;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 16px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: rgba(7, 9, 22, 0.68);
  backdrop-filter: blur(22px);
  box-shadow: 0 16px 55px rgba(0, 0, 0, 0.22);
}

.brand,
.nav-links,
.header-cta,
.store-button,
.trust-row,
.banner-button {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: transparent;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  white-space: nowrap;
}

.nav-links {
  gap: 26px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a {
  transition: color 180ms ease;
}

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

.header-cta,
.banner-button {
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #07101d;
  font-size: 0.92rem;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 54px;
  align-items: center;
  min-height: 730px;
  padding: 78px 0 54px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 8vw, 6.7rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.26rem;
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 600px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.store-button {
  min-width: 190px;
  gap: 13px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(214, 229, 255, 0.86));
  color: #07101d;
  font-size: 1.05rem;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(77, 232, 255, 0.18);
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(77, 232, 255, 0.28);
}

.store-button-soon {
  cursor: default;
  opacity: 0.78;
}

.store-button-soon:hover {
  transform: none;
  box-shadow: 0 18px 44px rgba(77, 232, 255, 0.18);
}

.store-button small {
  display: block;
  color: rgba(7, 16, 29, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.1;
}

.store-button-dark {
  background: linear-gradient(145deg, #151927, #040610);
  color: var(--text);
  box-shadow: 0 18px 44px rgba(182, 92, 255, 0.18);
}

.store-button-dark small {
  color: rgba(248, 251, 255, 0.72);
}

.store-icon {
  font-size: 2rem;
  line-height: 1;
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 24px solid var(--lime);
  filter: drop-shadow(0 0 12px rgba(184, 255, 106, 0.55));
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-visual {
  min-height: 590px;
  overflow: visible;
  perspective: 1200px;
}

.phone-scene {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
  transform-style: preserve-3d;
  transition: transform 220ms ease-out;
}

.bot-head {
  position: absolute;
  top: -12px;
  right: -42px;
  z-index: 5;
  width: min(250px, 44vw);
  filter: drop-shadow(0 30px 38px rgba(77, 232, 255, 0.2));
  transform: translateZ(180px) rotateY(-18deg) rotateZ(8deg);
  animation: floatBot 5s ease-in-out infinite;
}

.phone {
  position: relative;
  width: min(330px, 82vw);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 48px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    #0c1022;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.48),
    inset 0 0 0 2px rgba(255, 255, 255, 0.04);
  transform: rotateX(8deg) rotateY(-16deg) rotateZ(4deg) translateZ(40px);
  transform-style: preserve-3d;
}

.phone::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.phone-top {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  width: 104px;
  height: 28px;
  border-radius: 0 0 18px 18px;
  background: #070916;
  transform: translateX(-50%);
}

.screen {
  overflow: hidden;
  padding: 0;
  border-radius: 36px;
  background: #070b14;
}

.screen-ui {
  display: block;
  width: 100%;
  height: auto;
}

.app-header,
.pipeline-header,
.task-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-header {
  margin-bottom: 22px;
}

.app-header span,
.metric-card span,
.pipeline-card span,
.phone-card span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.app-header strong {
  display: block;
  margin-top: 4px;
  font-size: 1.55rem;
  letter-spacing: -0.06em;
}

.avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #07101d;
  font-size: 0.8rem;
  font-weight: 900;
}

.metric-card,
.pipeline-card,
.task-list {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.metric-card {
  padding: 20px;
  margin-bottom: 14px;
}

.metric-card strong {
  display: block;
  margin: 7px 0 22px;
  font-size: 2.1rem;
  letter-spacing: -0.06em;
}

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

.mini-chart i {
  flex: 1;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  box-shadow: 0 0 22px rgba(77, 232, 255, 0.28);
}

.pipeline-card {
  padding: 18px;
  margin-bottom: 14px;
}

.pipeline-header {
  margin-bottom: 14px;
}

.pipeline-header strong {
  font-size: 1.4rem;
}

.progress-track {
  height: 12px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.progress-track span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime), var(--cyan));
}

.task-list {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.task-item {
  justify-content: flex-start;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  color: #dfe8f8;
  font-weight: 700;
}

.task-item b {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(184, 255, 106, 0.65);
}

.phone-card {
  position: absolute;
  z-index: 4;
  min-width: 150px;
  padding: 18px;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.phone-card strong {
  display: block;
  margin-top: 8px;
  font-size: 2.1rem;
  letter-spacing: -0.06em;
}

.card-leads {
  top: 90px;
  left: 8px;
  transform: translateZ(130px) rotateY(-12deg);
}

.card-revenue {
  right: -4px;
  bottom: 120px;
  transform: translateZ(150px) rotateY(14deg);
}

.stats-panel,
.feature-grid {
  display: grid;
  gap: 18px;
}

.stats-panel {
  grid-template-columns: repeat(3, 1fr);
  padding: 20px;
  border: 1px solid var(--card-border);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.stats-panel article {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.stats-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: -0.07em;
}

.stats-panel span {
  color: var(--muted);
  font-weight: 700;
}

.features,
.faq {
  padding: 110px 0 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.feature-card,
.download-banner,
.faq details {
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.feature-card {
  min-height: 260px;
  padding: 28px;
  border-radius: 32px;
  transform: translateY(0);
  transition: transform 180ms ease, background 180ms ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 52px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(77, 232, 255, 0.24), rgba(182, 92, 255, 0.28));
  color: var(--cyan);
  font-weight: 900;
}

.feature-card p,
.download-banner p,
.faq p {
  color: var(--muted);
  line-height: 1.7;
}

.download-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 110px;
  padding: 38px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 14% 20%, rgba(77, 232, 255, 0.24), transparent 22rem),
    radial-gradient(circle at 84% 50%, rgba(182, 92, 255, 0.26), transparent 24rem),
    rgba(255, 255, 255, 0.08);
}

.download-banner h2 {
  margin-bottom: 10px;
}

.download-banner p {
  max-width: 560px;
  margin-bottom: 0;
}

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

.faq details {
  padding: 22px 24px;
  border-radius: 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 14px 0 0;
}

.install {
  padding: 110px 0 0;
}

.install-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.install-card {
  padding: 28px;
  border: 1px solid var(--card-border);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.install-card .feature-icon {
  width: auto;
  padding: 0 14px;
  margin-bottom: 28px;
}

.install-steps {
  margin: 0 0 24px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.75;
}

.install-steps li + li {
  margin-top: 10px;
}

.install-card p {
  color: var(--muted);
  line-height: 1.7;
}

.install-card .banner-button {
  display: inline-flex;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 70px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(20px, -26px, 0) scale(1.08);
  }
}

@keyframes floatBot {
  0%,
  100% {
    transform: translateZ(180px) translateY(0) rotateY(-18deg) rotateZ(8deg);
  }

  50% {
    transform: translateZ(180px) translateY(-16px) rotateY(-10deg) rotateZ(4deg);
  }
}

@media (max-width: 920px) {
  .page-shell {
    width: min(100% - 28px, 720px);
  }

  .site-header {
    top: 10px;
    flex-wrap: wrap;
    gap: 12px 16px;
    border-radius: 28px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-name {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    padding: 2px 4px 0;
  }

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

  .hero-visual {
    min-height: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
  }

  .phone-scene {
    width: min(100%, 520px);
    min-height: 520px;
    padding: 36px 28px 28px;
    transform: none;
    transform-style: preserve-3d;
  }

  .phone {
    width: min(280px, 58vw);
    transform: rotateX(8deg) rotateY(-16deg) rotateZ(4deg) translateZ(40px);
  }

  .bot-head {
    top: -18px;
    right: 8px;
    width: min(190px, 34vw);
    transform: translateZ(180px) rotateY(-18deg) rotateZ(8deg);
  }

  .card-leads {
    left: 12px;
    transform: translateZ(130px) rotateY(-12deg);
  }

  .card-revenue {
    right: 8px;
    transform: translateZ(150px) rotateY(14deg);
  }

  .stats-panel,
  .feature-grid,
  .install-grid {
    grid-template-columns: 1fr;
  }

  .download-banner {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 22px, 420px);
    padding-top: 12px;
  }

  .site-header {
    border-radius: 22px;
    padding: 10px 12px;
  }

  .brand-name {
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .nav-links {
    font-size: 0.82rem;
    gap: 8px;
  }

  .hero {
    padding-top: 46px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.4rem);
  }

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

  .store-button {
    justify-content: center;
  }

  .hero-visual {
    min-height: 0;
    overflow: hidden;
  }

  .phone-scene {
    width: 100%;
    min-height: 430px;
    padding: 48px 12px 28px;
    transform: none;
    transform-style: preserve-3d;
  }

  .phone {
    width: min(220px, 58vw);
    transform: rotateX(8deg) rotateY(-16deg) rotateZ(4deg) translateZ(40px);
  }

  .bot-head {
    top: 8px;
    right: 4px;
    width: min(120px, 32vw);
    transform: translateZ(180px) rotateY(-18deg) rotateZ(8deg);
  }

  .phone-card {
    min-width: 104px;
    padding: 12px 14px;
  }

  .phone-card strong {
    font-size: 1.45rem;
  }

  .card-leads {
    top: 72px;
    left: 4px;
    transform: translateZ(130px) rotateY(-12deg);
  }

  .card-revenue {
    right: 0;
    bottom: 88px;
    transform: translateZ(150px) rotateY(14deg);
  }

  .stats-panel,
  .download-banner {
    padding: 14px;
    border-radius: 26px;
  }

  .stats-panel article,
  .feature-card,
  .install-card {
    padding: 22px;
  }

  .features,
  .faq,
  .install {
    padding-top: 74px;
  }

  .download-banner {
    margin-top: 74px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 400px) {
  .brand-name {
    max-width: 10rem;
  }

  .phone-scene {
    min-height: 390px;
    padding: 40px 8px 20px;
  }

  .phone {
    width: min(196px, 56vw);
    transform: rotateX(8deg) rotateY(-16deg) rotateZ(4deg) translateZ(40px);
  }

  .bot-head {
    width: min(102px, 30vw);
    transform: translateZ(160px) rotateY(-18deg) rotateZ(8deg);
  }

  .card-leads,
  .card-revenue {
    min-width: 96px;
    padding: 10px 12px;
  }
}
