:root {
  color-scheme: dark;
  --accent: #35ffe0;
  --bg: #050808;
  --line: rgba(255, 255, 255, 0.12);
  --muted: #a7bdbc;
  --pink: #ff4cd2;
  --surface: #111818;
  --text: #f7faf5;
  --warm: #ffcc66;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 62% 18%, rgba(53, 255, 224, 0.16), transparent 30%),
    linear-gradient(180deg, #071010, #050808 54%, #020303);
  font-family: Inter, Segoe UI, Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 74px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 9px);
  opacity: 0.6;
}

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

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 8, 0.82);
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #06110f;
  background: linear-gradient(135deg, var(--accent), var(--warm));
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small,
.muted,
.site-footer,
.cookie-consent {
  color: var(--muted);
}

nav,
.site-footer div:last-child {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

nav a {
  color: var(--muted);
  font-size: 14px;
}

nav a:hover {
  color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 70px);
}

.compact-hero {
  min-height: 76vh;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1;
}

h3 {
  font-size: 20px;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: fit-content;
  border-radius: 8px;
  padding: 0 18px;
  border: 1px solid var(--line);
  font-weight: 900;
}

.button.primary {
  color: #06110f;
  background: var(--accent);
  border-color: var(--accent);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-row span {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(53, 255, 224, 0.18);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 800;
}

.product-screen {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(53, 255, 224, 0.28);
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 9px),
    radial-gradient(circle at 50% 35%, rgba(53, 255, 224, 0.24), transparent 38%),
    #040707;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.5);
}

.screen-card {
  position: absolute;
  left: 9%;
  right: 9%;
  top: 18%;
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(53, 255, 224, 0.28);
  border-radius: 8px;
  background: rgba(5, 12, 12, 0.78);
}

.hero-stage-card {
  left: 7%;
  right: 7%;
  top: 15%;
}

.screen-card strong {
  font-size: clamp(28px, 4vw, 48px);
}

.screen-bars {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 16%;
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  align-items: end;
  gap: 8px;
  height: 92px;
}

.screen-bars i {
  min-height: 12px;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, var(--accent), var(--pink), var(--warm));
  box-shadow: 0 0 24px rgba(53, 255, 224, 0.28);
  animation: bars 1.5s ease-in-out infinite alternate;
}

.screen-bars i:nth-child(3n) { height: 80%; }
.screen-bars i:nth-child(3n+1) { height: 46%; }
.screen-bars i:nth-child(3n+2) { height: 64%; }

.screen-queue {
  position: absolute;
  right: 9%;
  bottom: 8%;
  display: grid;
  gap: 4px;
  min-width: 240px;
  padding: 16px;
  border: 1px solid rgba(255, 204, 102, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 204, 102, 0.13), transparent 42%),
    rgba(5, 12, 12, 0.82);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.34);
}

.screen-queue b {
  color: var(--warm);
  text-transform: uppercase;
}

.screen-queue span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  display: grid;
  gap: 28px;
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 70px);
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.split-section {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
}

.screenshot-section {
  padding-top: clamp(28px, 5vw, 66px);
}

.app-shot {
  display: block;
  width: min(100%, 1440px);
  border: 1px solid rgba(53, 255, 224, 0.22);
  border-radius: 8px;
  background: #050808;
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.42),
    0 0 52px rgba(53, 255, 224, 0.08);
}

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

.capture-card {
  display: grid;
  gap: 10px;
}

.capture-card img {
  width: 100%;
  border: 1px solid rgba(53, 255, 224, 0.22);
  border-radius: 8px;
  background: #050808;
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.36);
}

.capture-card strong {
  color: var(--text);
  font-size: 18px;
}

.capture-card span {
  color: var(--muted);
  font-size: 14px;
}

.grid-3,
.grid-2,
.pricing-grid {
  display: grid;
  gap: 16px;
}

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

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

.card,
.price-card,
.form-card,
.admin-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(53, 255, 224, 0.08), transparent 36%),
    rgba(17, 24, 24, 0.84);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.24);
}

.card,
.price-card,
.form-card,
.admin-card {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.highlight-card {
  border-color: rgba(255, 204, 102, 0.3);
  background:
    linear-gradient(135deg, rgba(255, 204, 102, 0.14), transparent 36%),
    rgba(17, 24, 24, 0.88);
}

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

.roi-panel article {
  display: grid;
  gap: 7px;
  min-height: 130px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(53, 255, 224, 0.09), transparent 40%),
    rgba(17, 24, 24, 0.8);
}

.roi-panel strong {
  color: var(--text);
  font-size: 22px;
}

.roi-panel span {
  color: var(--muted);
  line-height: 1.5;
}

.ad-preview {
  position: relative;
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 460px;
  padding: clamp(28px, 5vw, 62px);
  overflow: hidden;
  border: 1px solid rgba(53, 255, 224, 0.3);
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 204, 102, 0.15), transparent 28%),
    linear-gradient(135deg, rgba(53, 255, 224, 0.16), transparent 38%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 9px),
    #030707;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.52);
}

.ad-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(53, 255, 224, 0.14), transparent);
  transform: translateX(-100%);
  animation: shine 4.4s ease-in-out infinite;
}

.ad-preview > * {
  position: relative;
  z-index: 1;
}

.ad-preview span,
.ad-preview-footer {
  color: rgba(143, 255, 240, 0.82);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.ad-preview strong {
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.95;
  text-shadow:
    0 4px 0 #000,
    0 0 34px rgba(53, 255, 224, 0.28);
}

.ad-preview p {
  max-width: 560px;
  color: var(--accent);
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.08;
}

.ad-preview-footer {
  margin-top: 24px;
}

.download-panel {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 430px;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid rgba(53, 255, 224, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 204, 102, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(53, 255, 224, 0.14), transparent 40%),
    rgba(17, 24, 24, 0.86);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
}

.download-panel span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.download-panel strong {
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.95;
}

.download-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.smart-help-hero {
  align-items: stretch;
}

.smart-help-panel strong {
  font-size: clamp(30px, 4.2vw, 58px);
}

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

.help-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(53, 255, 224, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(53, 255, 224, 0.08), transparent 42%),
    rgba(17, 24, 24, 0.82);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.24);
}

.help-step > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(53, 255, 224, 0.28);
  border-radius: 8px;
  color: var(--accent);
  background: rgba(53, 255, 224, 0.08);
  font-weight: 900;
}

.help-step div {
  display: grid;
  gap: 9px;
}

.warning-panel {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(255, 204, 102, 0.32);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 204, 102, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 204, 102, 0.1), transparent 42%),
    rgba(17, 24, 24, 0.88);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.warning-panel h3 {
  color: var(--warm);
}

.warning-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.landing-screen {
  min-height: 380px;
}

.qr-landing-preview {
  position: relative;
  min-height: 460px;
  border: 1px solid rgba(53, 255, 224, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 26% 18%, rgba(53, 255, 224, 0.2), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(255, 76, 210, 0.12), transparent 30%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 9px),
    #030707;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.52);
}

.qr-phone,
.qr-board {
  position: absolute;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(53, 255, 224, 0.28);
  border-radius: 18px;
  background: rgba(5, 13, 12, 0.88);
  box-shadow:
    0 24px 78px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.qr-phone {
  left: 8%;
  top: 10%;
  width: min(300px, 60%);
  min-height: 360px;
  padding: 24px;
}

.qr-phone span,
.qr-board span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.qr-phone strong {
  font-size: 36px;
  line-height: 0.98;
}

.qr-phone i,
.qr-phone b {
  display: block;
  border-radius: 8px;
  padding: 13px;
  font-style: normal;
}

.qr-phone i {
  color: var(--muted);
  border: 1px solid var(--line);
  background: #071111;
}

.qr-phone b {
  color: var(--text);
  border: 1px solid rgba(53, 255, 224, 0.22);
  background: rgba(53, 255, 224, 0.08);
}

.qr-phone em {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 8px;
  color: #06110f;
  background: var(--accent);
  font-style: normal;
  font-weight: 900;
}

.qr-board {
  right: 7%;
  bottom: 12%;
  width: min(360px, 62%);
  padding: 22px;
}

.qr-board strong {
  font-size: 26px;
}

.feature-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 17px;
}

.card ul,
.price-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

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

.price {
  color: var(--text);
  font-size: 42px;
  font-weight: 900;
}

.price small {
  color: var(--muted);
  font-size: 14px;
}

form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

input,
select,
textarea {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: #060a0a;
  font: inherit;
  padding: 0 11px;
}

textarea {
  min-height: 120px;
  padding: 11px;
}

table {
  width: 100%;
  border-collapse: collapse;
  color: var(--muted);
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 10px;
  text-align: left;
}

th {
  color: var(--text);
}

.cta-band {
  margin: clamp(36px, 7vw, 90px) clamp(18px, 5vw, 70px);
  padding: clamp(30px, 6vw, 72px);
  border: 1px solid rgba(53, 255, 224, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 76, 210, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(53, 255, 224, 0.14), transparent 42%),
    #081010;
}

.site-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.cookie-consent {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 13, 13, 0.94);
}

.cookie-consent button {
  min-height: 34px;
  border: 0;
  border-radius: 7px;
  color: #06110f;
  background: var(--accent);
  padding: 0 12px;
  font-weight: 900;
}

.admin-layout {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.request-page {
  min-height: 100vh;
}

.request-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px 16px;
}

.request-card {
  display: grid;
  gap: 16px;
  width: min(720px, 100%);
  padding: clamp(22px, 6vw, 42px);
  border: 1px solid rgba(53, 255, 224, 0.24);
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 8%, rgba(53, 255, 224, 0.13), transparent 32%),
    rgba(11, 18, 18, 0.88);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
}

.request-card h1 {
  font-size: clamp(42px, 12vw, 86px);
}

.request-active {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(53, 255, 224, 0.34);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(53, 255, 224, 0.12), transparent 42%),
    rgba(4, 14, 13, 0.86);
}

.request-active strong {
  overflow-wrap: anywhere;
  font-size: clamp(24px, 7vw, 38px);
  line-height: 1.05;
}

.request-active small {
  color: var(--muted);
}

.request-pill {
  width: fit-content;
  min-height: 28px;
  border-radius: 999px;
  color: #06110f;
  background: var(--accent);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.request-card label {
  font-size: 14px;
  font-weight: 900;
}

.request-card input {
  min-height: 54px;
  font-size: 18px;
}

.request-results {
  display: grid;
  gap: 10px;
}

.request-result {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(53, 255, 224, 0.16);
  border-radius: 8px;
  color: var(--text);
  text-align: left;
  background: rgba(10, 24, 22, 0.9);
  cursor: pointer;
}

.request-result:hover {
  border-color: var(--accent);
}

.request-result strong {
  overflow-wrap: anywhere;
  font-size: 18px;
}

.request-result small,
.request-selected {
  color: var(--muted);
}

.request-selected {
  padding: 13px;
  border: 1px solid rgba(53, 255, 224, 0.2);
  border-radius: 8px;
  background: rgba(53, 255, 224, 0.06);
}

.request-send {
  width: 100%;
}

@media (max-width: 560px) {
  .request-actions {
    grid-template-columns: 1fr;
  }
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-nav a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

@keyframes bars {
  from {
    transform: scaleY(0.65);
    filter: brightness(0.82);
  }

  to {
    transform: scaleY(1.08);
    filter: brightness(1.18);
  }
}

@keyframes shine {
  0%,
  45% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 900px) {
  .hero,
  .grid-2,
  .grid-3,
  .capture-grid,
  .help-steps,
  .split-section,
  .roi-panel,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .qr-phone,
  .qr-board {
    position: relative;
    inset: auto;
    width: auto;
    margin: 18px;
  }
}
