:root {
  --lime: #c8ff24;
  --lime-soft: rgba(200, 255, 36, 0.16);
  --ink: #070a09;
  --panel: #171c1f;
  --panel-2: #101415;
  --line: #2b3033;
  --text: #f4f6f7;
  --muted: #9aa3a8;
  --danger: #ff6548;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(200, 255, 36, 0.18), transparent 28rem),
    radial-gradient(circle at 0% 45%, rgba(255, 96, 72, 0.1), transparent 22rem),
    var(--ink);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 75%);
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand img,
.footer img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(16, 20, 21, 0.78);
}

.nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
}

.nav-cta,
.button.primary {
  background: var(--lime);
  color: #050705;
  box-shadow: 0 22px 70px rgba(200, 255, 36, 0.18);
}

.button.ghost {
  border: 1px solid var(--line);
  background: rgba(23, 28, 31, 0.78);
  color: var(--text);
}

.hero,
.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 58px;
  min-height: calc(100vh - 84px);
  padding: 44px 0 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--lime);
  font-family: "Space Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow .dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
}

.rotating-eyebrow {
  align-items: center;
}

.rotator {
  position: relative;
  display: inline-grid;
  width: 20ch;
  height: 1.45em;
  overflow: hidden;
}

.rotator span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(0.8em);
  animation: rotateWords 10s infinite;
  white-space: nowrap;
}

.rotator span:nth-child(2) {
  animation-delay: 2s;
}

.rotator span:nth-child(3) {
  animation-delay: 4s;
}

.rotator span:nth-child(4) {
  animation-delay: 6s;
}

.rotator span:nth-child(5) {
  animation-delay: 8s;
}

@keyframes rotateWords {
  0%,
  5% {
    opacity: 0;
    transform: translateY(0.8em);
  }

  10%,
  18% {
    opacity: 1;
    transform: translateY(0);
  }

  23%,
  100% {
    opacity: 0;
    transform: translateY(-0.8em);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rotator span {
    animation: none;
  }

  .rotator span:first-child {
    opacity: 1;
    transform: none;
  }
}

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

h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.lead,
.split p,
.admin-copy > p,
.pricing-card p,
.cards p {
  color: #c2c9cd;
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}

.metrics div,
.strip-item,
.cards article,
.pricing-card,
.feature-list div {
  border: 1px solid var(--line);
  background: rgba(23, 28, 31, 0.82);
}

.metrics div {
  padding: 18px;
  border-radius: 20px;
}

.metrics strong {
  display: block;
  color: var(--lime);
  font-family: "Space Mono", monospace;
  font-size: 21px;
}

.metrics span,
.strip-item span,
.feature-list span,
.footer span {
  color: var(--muted);
}

.phone-stage {
  position: relative;
  min-height: 680px;
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 42px;
  background: #050606;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
}

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

.phone-main {
  right: 0;
  top: 0;
  width: min(360px, 74vw);
}

.phone-back {
  left: 0;
  bottom: 12px;
  width: min(310px, 60vw);
  opacity: 0.72;
  transform: rotate(-7deg);
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 22px 0 96px;
}

.strip-item {
  min-height: 110px;
  padding: 22px;
  border-radius: 24px;
}

.strip-item strong {
  display: block;
  margin-top: 14px;
  font-size: 19px;
}

.section {
  padding: 86px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 54px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.screen-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  max-height: 420px;
}

.screen-card.tall {
  grid-row: span 2;
  max-height: 640px;
}

.screen-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.admin-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.feature-list div {
  padding: 20px;
  border-radius: 22px;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  margin-bottom: 6px;
  font-size: 18px;
}

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

.admin-screens img {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

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

.cards article {
  padding: 28px;
  border-radius: 28px;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: var(--lime-soft);
  color: var(--lime);
  font-family: "Space Mono", monospace;
  font-size: 22px;
  font-weight: 700;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: center;
}

.pricing-card {
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(200, 255, 36, 0.17), transparent 34rem),
    var(--panel);
}

.badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 24px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--lime);
  color: #080a08;
  font-weight: 900;
}

.pricing h2 {
  color: var(--lime);
  font-size: clamp(72px, 12vw, 132px);
}

.pricing h2 span {
  color: var(--muted);
  font-size: 28px;
}

.pricing ul {
  display: grid;
  gap: 14px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.pricing li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 19px;
  font-weight: 800;
}

.pricing li::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lime-soft);
  color: var(--lime);
  font-family: "Space Mono", monospace;
}

.price-phone {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  max-height: 650px;
}

.price-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.footer {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer div {
  display: grid;
  gap: 3px;
  margin-right: auto;
}

.footer a {
  color: var(--lime);
  font-weight: 800;
}

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

  .hero,
  .split,
  .admin-panel,
  .pricing {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 24px;
    min-height: auto;
  }

  .phone-stage {
    min-height: 580px;
  }

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

  .pricing {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  body {
    background:
      radial-gradient(circle at 78% 8%, rgba(200, 255, 36, 0.16), transparent 19rem),
      radial-gradient(circle at 0% 30%, rgba(255, 96, 72, 0.08), transparent 16rem),
      var(--ink);
  }

  body::before {
    background-size: 46px 46px;
  }

  .topbar,
  .hero,
  .section,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    padding: 14px 0;
  }

  .brand img,
  .footer img {
    width: 34px;
    height: 34px;
  }

  .brand span {
    display: none;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
  }

  .hero {
    gap: 30px;
    padding: 24px 0 48px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(40px, 14vw, 64px);
    line-height: 0.92;
  }

  h2 {
    font-size: clamp(31px, 10vw, 46px);
    line-height: 1;
  }

  h3 {
    font-size: 21px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1.35;
  }

  .lead,
  .split p,
  .admin-copy > p,
  .pricing-card p,
  .cards p {
    font-size: 17px;
    line-height: 1.48;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 26px 0;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding: 0 20px;
  }

  .metrics,
  .strip,
  .cards,
  .screen-grid,
  .admin-screens {
    grid-template-columns: 1fr;
  }

  .metrics {
    gap: 10px;
  }

  .metrics div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 70px;
    padding: 16px 18px;
  }

  .metrics strong {
    font-size: 20px;
    white-space: nowrap;
  }

  .metrics span {
    text-align: right;
  }

  .phone-stage {
    display: grid;
    place-items: center;
    min-height: 0;
    padding: 4px 0 18px;
  }

  .phone {
    position: relative;
    border-radius: 32px;
  }

  .phone-main {
    right: auto;
    top: auto;
    z-index: 2;
    width: min(82vw, 310px);
  }

  .phone-back {
    position: absolute;
    left: -2px;
    bottom: 0;
    width: min(48vw, 190px);
    opacity: 0.55;
    transform: rotate(-8deg) translateY(10px);
  }

  .strip {
    gap: 10px;
    padding: 8px 0 44px;
  }

  .strip-item {
    min-height: auto;
    padding: 18px;
    border-radius: 20px;
  }

  .strip-item strong {
    margin-top: 8px;
    font-size: 17px;
  }

  .section {
    padding: 54px 0;
  }

  .split,
  .admin-panel,
  .pricing {
    gap: 28px;
  }

  .screen-grid,
  .admin-screens,
  .cards,
  .feature-list {
    gap: 12px;
  }

  .screen-card,
  .screen-card.tall,
  .admin-screens img,
  .price-phone {
    border-radius: 24px;
  }

  .screen-card,
  .screen-card.tall {
    max-height: 560px;
  }

  .cards article {
    padding: 22px;
    border-radius: 22px;
  }

  .icon {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 16px;
  }

  .pricing-card {
    padding: 24px;
    border-radius: 26px;
  }

  .pricing h2 {
    margin-bottom: 8px;
    font-size: clamp(64px, 24vw, 96px);
  }

  .pricing h2 span {
    display: inline-block;
    font-size: 21px;
  }

  .pricing ul {
    gap: 12px;
    margin: 26px 0;
  }

  .pricing li {
    align-items: flex-start;
    font-size: 16px;
    line-height: 1.35;
  }

  .pricing li::before {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
  }

  .price-phone {
    max-height: 560px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 28px 0 36px;
    font-size: 15px;
  }
}

@media (max-width: 430px) {
  .topbar,
  .hero,
  .section,
  .footer {
    width: min(100% - 22px, 1180px);
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  h1 {
    font-size: clamp(38px, 13.4vw, 54px);
  }

  .phone-main {
    width: min(88vw, 292px);
  }

  .phone-back {
    display: none;
  }

  .metrics div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .metrics span {
    text-align: left;
  }

  .screen-card,
  .screen-card.tall {
    max-height: 500px;
  }
}
