:root {
  --bg: #03070b;
  --panel: #09131b;
  --panel-2: #0e1b24;
  --text: #f4f8fb;
  --muted: #9caab5;
  --line: rgba(255, 255, 255, 0.11);
  --blue: #168cff;
  --green: #27e777;
  --gold: #d8a94d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 16% 8%, rgba(22, 140, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 86% 2%, rgba(39, 231, 119, 0.18), transparent 24rem),
    linear-gradient(180deg, #020508 0%, var(--bg) 45%, #05090d 100%);
  color: var(--text);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(3, 7, 11, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 150px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

nav {
  display: flex;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 5vw, 84px);
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 76px) 48px;
}

.review-hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 76px) 64px;
}

.review-hero-copy {
  max-width: 820px;
}

.review-scorecard {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(39, 231, 119, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 12%, rgba(39, 231, 119, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(14, 27, 36, 0.94), rgba(7, 15, 22, 0.92));
  box-shadow: var(--shadow);
}

.review-scorecard::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.28;
}

.scorecard-top,
.score-row,
.score-note {
  position: relative;
}

.scorecard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.scorecard-top span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.scorecard-top strong {
  font-size: 28px;
}

.score-row {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.score-row span {
  color: #cbd9df;
  font-size: 18px;
  font-weight: 800;
}

.score-row b {
  min-width: 92px;
  padding: 9px 12px;
  border-radius: 6px;
  color: #031008;
  background: linear-gradient(90deg, var(--blue), var(--green));
  text-align: center;
}

.score-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6.4vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.hero-lede,
.section-heading p + h2 + p,
.contact-section p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  font-weight: 800;
  border-radius: 6px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.button.primary {
  color: #031008;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border: 0;
}

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

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.signal-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #dbe7ee;
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.screen-card,
.flow-card,
.service-grid article,
.package,
.work-grid figure,
.proof-strip div {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(14, 27, 36, 0.92), rgba(7, 15, 22, 0.88));
  box-shadow: var(--shadow);
  border-radius: 8px;
}

.main-screen {
  position: absolute;
  inset: 26px 0 auto auto;
  width: min(100%, 520px);
  min-height: 420px;
  padding: 24px;
  overflow: hidden;
}

.main-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.5;
}

.screen-top {
  position: relative;
  height: 42px;
  border-bottom: 1px solid var(--line);
  margin: -8px -8px 28px;
}

.screen-top::before {
  content: "";
  display: block;
  width: 72px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.dashboard-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dashboard-grid div {
  padding: 16px;
  min-height: 104px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dashboard-grid strong,
.dashboard-grid span {
  display: block;
}

.dashboard-grid strong {
  color: var(--muted);
  font-size: 13px;
}

.dashboard-grid span {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 900;
}

.chart {
  position: relative;
  display: flex;
  align-items: end;
  gap: 14px;
  height: 180px;
  margin-top: 36px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.chart i {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--green), var(--blue));
}

.flow-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 250px;
  padding: 18px;
  display: grid;
  gap: 8px;
}

.flow-card span,
.flow-card b {
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
}

.flow-card span {
  color: var(--muted);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 clamp(18px, 5vw, 76px) 52px;
}

.proof-strip div {
  padding: 20px;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: 78px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
}

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

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.service-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-grid article,
.review-grid article {
  padding: 24px;
  min-height: 250px;
}

.service-grid p,
.review-grid p,
.package li,
.work-grid figcaption,
.process-list span {
  color: var(--muted);
  line-height: 1.5;
}

.review-fit-section {
  padding-top: 0;
}

.fit-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(22, 140, 255, 0.1), rgba(39, 231, 119, 0.1)),
    rgba(255, 255, 255, 0.035);
}

.fit-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #d8e2e9;
  background: rgba(255, 255, 255, 0.055);
  line-height: 1.45;
}

.review-process {
  padding-top: 42px;
}

.faq-section {
  padding-top: 42px;
  background: rgba(255, 255, 255, 0.02);
}

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

.faq-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(14, 27, 36, 0.92), rgba(7, 15, 22, 0.88));
}

.faq-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid rgba(39, 231, 119, 0.38);
  border-radius: 6px;
  color: var(--green);
  font-weight: 900;
}

.work-section {
  background: rgba(255, 255, 255, 0.025);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.work-grid figure {
  margin: 0;
  overflow: hidden;
}

.work-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #05090d;
}

.work-grid figcaption {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.work-grid figcaption strong {
  color: var(--text);
  font-size: 18px;
}

.work-grid figcaption span {
  display: block;
}

.work-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.work-link:hover {
  color: var(--text);
}

.work-card {
  transition: transform 180ms ease, border-color 180ms ease;
}

.work-card:hover {
  transform: translateY(-3px);
  border-color: rgba(39, 231, 119, 0.36);
}

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

.package {
  padding: 26px;
}

.package.featured {
  border-color: rgba(39, 231, 119, 0.55);
  box-shadow: 0 28px 90px rgba(39, 231, 119, 0.12);
}

.package-label {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
}

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

.package-summary {
  min-height: 72px;
  color: #c9d6de;
  line-height: 1.5;
}

.package ul {
  min-height: 244px;
  padding-left: 18px;
}

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

.retainer-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.retainer-row article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.retainer-row .price {
  margin-bottom: 12px;
  font-size: 28px;
}

.retainer-row p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}

.process-list li {
  min-height: 168px;
  padding: 22px;
  border-left: 2px solid var(--green);
  background: rgba(255, 255, 255, 0.045);
}

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

.process-list strong {
  margin-bottom: 12px;
  font-size: 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 84px);
  padding: 84px clamp(18px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(22, 140, 255, 0.12), rgba(39, 231, 119, 0.12)),
    #071018;
  border-top: 1px solid var(--line);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(3, 7, 11, 0.6);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #d8e2e9;
  font-size: 14px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.lead-form textarea {
  min-height: 118px;
  padding: 12px;
  resize: vertical;
}

.full-field {
  grid-column: 1 / -1;
}

.lead-form .button,
.form-status,
.form-note {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  color: var(--green);
  font-weight: 800;
  line-height: 1.45;
}

.form-status.error {
  color: #ffb4b4;
}

.lead-form.is-sent {
  display: block;
}

.success-panel {
  padding: 10px;
}

.success-panel h3 {
  font-size: clamp(28px, 3.4vw, 42px);
}

.success-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.success-panel .button {
  margin-top: 18px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 76px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  color: var(--text);
}

.site-footer nav {
  align-items: center;
}

.legal-main {
  min-height: calc(100vh - 156px);
  padding: 78px clamp(18px, 5vw, 76px);
}

.legal-panel {
  max-width: 920px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(14, 27, 36, 0.92), rgba(7, 15, 22, 0.88));
  box-shadow: var(--shadow);
}

.legal-panel h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.legal-panel h2 {
  margin-top: 34px;
  font-size: 26px;
}

.legal-panel p,
.legal-panel li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.legal-panel a {
  color: var(--green);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero,
  .review-hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .main-screen {
    left: 0;
    right: auto;
  }

  .service-grid,
  .review-grid,
  .faq-grid,
  .work-grid,
  .package-grid,
  .retainer-row,
  .process-list,
  .proof-strip,
  .fit-panel {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 36px;
  }

  .review-hero {
    padding-top: 36px;
  }

  .review-scorecard {
    display: grid;
    gap: 10px;
    padding: 16px;
    background:
      radial-gradient(circle at 82% 0%, rgba(39, 231, 119, 0.2), transparent 12rem),
      linear-gradient(180deg, rgba(14, 27, 36, 0.98), rgba(7, 15, 22, 0.94));
  }

  .scorecard-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 14px;
    margin-bottom: 0;
  }

  .scorecard-top strong {
    font-size: 26px;
    line-height: 1.05;
  }

  .score-row {
    min-height: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
  }

  .score-row::before {
    content: "";
    width: 5px;
    align-self: stretch;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--blue), var(--green));
    flex: 0 0 auto;
  }

  .score-row span {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    line-height: 1.25;
  }

  .score-row b {
    min-width: 72px;
    padding: 8px 9px;
    font-size: 13px;
  }

  .score-note {
    margin-top: 2px;
    padding: 12px;
    border: 1px solid rgba(39, 231, 119, 0.2);
    border-radius: 8px;
    background: rgba(39, 231, 119, 0.06);
    font-size: 15px;
  }

  h1 {
    font-size: 42px;
  }

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

  .hero-visual {
    min-height: 620px;
  }

  .main-screen {
    width: 100%;
    min-height: 440px;
  }

  .dashboard-grid,
  .service-grid,
    .review-grid,
    .faq-grid,
    .work-grid,
    .package-grid,
    .retainer-row,
    .process-list,
    .proof-strip,
    .fit-panel,
    .lead-form {
    grid-template-columns: 1fr;
  }

  .flow-card {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .package ul {
    min-height: 0;
  }
}
