:root {
  color-scheme: dark;
  --ink: #061017;
  --ink-2: #0a1620;
  --panel: rgba(8, 20, 32, 0.88);
  --white: #ffffff;
  --muted: #c5d7e1;
  --line: rgba(87, 255, 27, 0.32);
  --green: #39ff14;
  --green-2: #c8ff2f;
  --cyan: #00e5ff;
  --blue: #0066ff;
  --magenta: #b000ff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 6%, rgba(0, 229, 255, 0.26), transparent 30rem),
    radial-gradient(circle at 90% 12%, rgba(57, 255, 20, 0.22), transparent 28rem),
    radial-gradient(circle at 48% 0%, rgba(176, 0, 255, 0.16), transparent 30rem),
    #061017;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 16, 23, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0;
  font-weight: 900;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 178px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(183, 255, 75, 0.45);
  border-radius: 8px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 34px rgba(57, 255, 20, 0.58), 0 0 52px rgba(0, 229, 255, 0.18);
}

.brand-mark small {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav {
  gap: 24px;
  font-size: 1.14rem;
  font-weight: 700;
}

.nav a {
  color: rgba(255, 255, 255, 0.78);
}

.nav a:hover {
  color: var(--green-2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.header-social {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(circle at 28% 108%, #feda75 0 18%, transparent 32%),
    radial-gradient(circle at 18% 88%, #fa7e1e 0 22%, transparent 38%),
    radial-gradient(circle at 78% 8%, #8134af 0 24%, transparent 42%),
    linear-gradient(135deg, #feda75, #f58529 24%, #dd2a7b 58%, #8134af);
  box-shadow: 0 0 30px rgba(221, 42, 123, 0.48), 0 0 22px rgba(129, 52, 175, 0.3);
}

.header-cta {
  color: var(--ink);
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 0 34px rgba(57, 255, 20, 0.52);
}

.hero {
  position: relative;
  min-height: 790px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 44%, rgba(57, 255, 20, 0.22), transparent 42rem),
    radial-gradient(circle at 58% 35%, rgba(0, 229, 255, 0.14), transparent 28rem),
    linear-gradient(135deg, #041018, #071520 52%, #0b1d2b);
}

.hero-image,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 78% center;
  height: calc(100% + 44px);
  transform: translateY(-28px);
  filter: saturate(1.02) contrast(1.16) brightness(1.1);
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 42%, rgba(57, 255, 20, 0.16), transparent 32rem),
    radial-gradient(circle at 56% 36%, rgba(0, 229, 255, 0.1), transparent 24rem),
    linear-gradient(90deg, rgba(2, 7, 12, 0.58) 0%, rgba(2, 7, 12, 0.4) 32%, rgba(3, 10, 16, 0.12) 58%, rgba(3, 10, 16, 0.02) 82%),
    linear-gradient(180deg, rgba(6, 16, 23, 0.04), rgba(6, 16, 23, 0.28));
}

.hero-grid {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.26) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(660px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 80px);
  margin-top: 78px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-content > * {
  position: relative;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green-2);
  text-shadow: 0 0 18px rgba(57, 255, 20, 0.44);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-block;
  transform: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 1.17rem;
  letter-spacing: 0.08em;
  margin-bottom: 54px;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-size: clamp(2.1rem, 4.47vw, 4.29rem);
  line-height: 1;
  transform: none;
  text-shadow: 0 0 26px rgba(0, 229, 255, 0.18), 0 8px 24px rgba(0, 0, 0, 0.58);
}

.hero-copy {
  max-width: 650px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(2.06rem, 4.11vw, 2.46rem);
  line-height: 1.24;
}

.hero-copy strong {
  color: var(--white);
  font-weight: 900;
}

.hero-actions,
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 26px;
}

.button.primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--green), var(--green-2) 52%, var(--cyan));
  box-shadow: 0 18px 56px rgba(57, 255, 20, 0.44), 0 0 34px rgba(0, 229, 255, 0.24);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(0, 229, 255, 0.38);
  background: rgba(0, 229, 255, 0.12);
  box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.08);
}

.button.instagram {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 28% 108%, #feda75 0 16%, transparent 30%),
    radial-gradient(circle at 18% 88%, #fa7e1e 0 22%, transparent 38%),
    radial-gradient(circle at 78% 8%, #8134af 0 24%, transparent 42%),
    linear-gradient(135deg, #feda75, #f58529 24%, #dd2a7b 58%, #8134af);
  box-shadow: 0 18px 48px rgba(221, 42, 123, 0.4), 0 0 28px rgba(129, 52, 175, 0.28);
}

.instagram-link,
.button.instagram {
  gap: 10px;
}

.ig-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.ig-icon::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 50%;
  left: 50%;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ig-icon::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  top: 4px;
  right: 4px;
  border-radius: 50%;
  background: currentColor;
}

.proof-row {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.74);
}

.proof-row span {
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 16, 23, 0.72);
  box-shadow: inset 0 0 20px rgba(57, 255, 20, 0.08), 0 0 22px rgba(0, 229, 255, 0.08);
  backdrop-filter: blur(12px);
}

.proof-row strong {
  color: var(--green-2);
}

.stats-strip {
  width: min(1180px, calc(100% - 36px));
  margin: 34px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(57, 255, 20, 0.14), rgba(0, 229, 255, 0.1)),
    rgba(7, 16, 26, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.stats-strip div {
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-strip div:last-child {
  border-right: 0;
}

.stats-strip strong {
  display: block;
  color: var(--green-2);
  text-shadow: 0 0 24px rgba(57, 255, 20, 0.44);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.stats-strip .stat-phrase {
  font-size: clamp(1.55rem, 2.8vw, 2.75rem);
  line-height: 1.06;
}

.stats-strip span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.24;
}

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

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.section h2,
.feature-band h2,
.cta-panel h2,
.reviews h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
}

.intro p:last-child,
.solution-card p,
.feature-band p,
.steps span,
.reviews p,
.cta-panel p,
.faq p,
.gallery figcaption {
  color: var(--muted);
  line-height: 1.7;
}

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

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.solution-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(57, 255, 20, 0.16), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25), inset 0 0 26px rgba(0, 229, 255, 0.04);
}

.solution-card span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--green-2);
  font-weight: 900;
}

.solution-card h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.feature-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: center;
  padding: 86px clamp(18px, 6vw, 80px);
  background:
    radial-gradient(circle at 12% 16%, rgba(57, 255, 20, 0.32), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(0, 229, 255, 0.24), transparent 24rem),
    linear-gradient(135deg, #071520, #0b1d2b);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-pills {
  display: grid;
  gap: 12px;
}

.feature-pills span {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 0 22px rgba(57, 255, 20, 0.08);
  font-weight: 800;
}

.feature-pills span::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(57, 255, 20, 0.22);
  border-radius: 8px;
  background: var(--ink-2);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28), 0 0 24px rgba(0, 229, 255, 0.08);
}

.gallery-item.wide {
  grid-column: auto;
}

.gallery-item.tall {
  grid-row: auto;
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.15) contrast(1.08);
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery figcaption {
  position: static;
  padding: 16px 18px 18px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(6, 16, 23, 0.88);
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  min-height: 235px;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 22px rgba(57, 255, 20, 0.06);
  counter-increment: steps;
}

.steps li::before {
  content: "0" counter(steps);
  display: block;
  margin-bottom: 42px;
  color: var(--green-2);
  font-weight: 900;
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.cta-panel {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(57, 255, 20, 0.2), rgba(0, 229, 255, 0.15)),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.reviews {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: start;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(57, 255, 20, 0.2), rgba(0, 229, 255, 0.15)),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.reviews-copy {
  display: grid;
  justify-items: start;
}

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

.review-card {
  padding: 20px;
  border: 1px solid rgba(183, 255, 75, 0.16);
  border-radius: 8px;
  background: rgba(6, 16, 23, 0.5);
}

.review-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--green-2);
  letter-spacing: 0.08em;
}

.review-card p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.review-card strong {
  color: var(--white);
  font-size: 0.92rem;
}

.cta-panel {
  margin-bottom: 24px;
}

.reviews h2,
.cta-panel h2 {
  max-width: 780px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

summary {
  cursor: pointer;
  padding: 24px 26px;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 26px 24px;
  font-size: 1.05rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: #03090d;
}

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

.footer span {
  color: rgba(255, 255, 255, 0.66);
}

.footer-links {
  gap: 18px;
  font-weight: 800;
}

@media (max-width: 1060px) {
  .solution-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 16, 23, 0.62), rgba(6, 16, 23, 0.18)),
      linear-gradient(180deg, rgba(6, 16, 23, 0.12), rgba(6, 16, 23, 0.42));
  }

  .stats-strip,
  .intro,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    margin-top: 24px;
  }

  .stats-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stats-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  .cta-panel,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .reviews {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .header-social {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
  }

  h1 {
    font-size: clamp(2.18rem, 10.9vw, 3.07rem);
  }

  .hero-copy {
    font-size: 1.07rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .proof-row {
    margin-top: 20px;
  }

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

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

  .solution-grid,
  .steps,
  .gallery,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .solution-card,
  .reviews,
  .cta-panel {
    padding: 24px;
  }

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