:root {
  color-scheme: dark;
  --bg: #07080c;
  --surface: #10131b;
  --surface-2: #171b25;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f6f7fb;
  --muted: #a9afbf;
  --soft: #d7dbea;
  --accent: #51f0bd;
  --accent-2: #8fb6ff;
  --danger: #ff7d8a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(81, 240, 189, 0.16), transparent 32rem),
    linear-gradient(180deg, #07080c 0%, #0a0d13 46%, #07080c 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 1.5rem, var(--max));
  min-height: 72px;
  margin: 0.75rem auto 0;
  padding: 0.7rem;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(10, 13, 19, 0.78);
  border-color: var(--line);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

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

.brand {
  gap: 0.65rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(81, 240, 189, 0.4);
  border-radius: 12px;
  background: #101e1a;
  color: var(--accent);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
}

.nav-links {
  display: none;
  gap: 1.35rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

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

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

.header-cta {
  min-height: 42px;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.section-pad {
  width: min(100% - 1.5rem, var(--max));
  margin: 0 auto;
  padding: 4.8rem 0;
}

.hero {
  display: grid;
  gap: 3rem;
  min-height: calc(100svh - 86px);
  align-items: center;
  padding-top: 3rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 1.25rem;
  font-size: 3rem;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.hero-lead,
.section-head p,
.solution-panel p,
.cta-panel p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #06100d;
  box-shadow: 0 16px 42px rgba(81, 240, 189, 0.22);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--soft);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 2.2rem 0 0;
}

.hero-stats div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-stats dt {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.browser-frame,
.code-card,
.pain-card,
.benefit-card,
.diff-card,
.testimonial,
.result-card,
.plan-card,
.offer-panel,
.about-panel,
.cta-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.browser-frame {
  overflow: hidden;
  border-radius: 22px;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--danger);
}

.window-bar span:nth-child(2) {
  background: #ffd166;
}

.window-bar span:nth-child(3) {
  background: var(--accent);
}

.window-bar strong {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.78rem;
}

.mock-layout {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  background:
    linear-gradient(135deg, rgba(143, 182, 255, 0.13), transparent 42%),
    #0d1119;
}

.mock-copy {
  min-height: 270px;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f7f8fc;
  color: #10131b;
}

.mock-pill {
  display: inline-flex;
  margin-bottom: 1.1rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: #e7fff7;
  color: #08785b;
  font-size: 0.78rem;
  font-weight: 800;
}

.mock-copy h2 {
  margin-bottom: 0.75rem;
  color: #0d1119;
  font-size: 2rem;
}

.mock-copy p {
  color: #4f586a;
}

.mock-copy button {
  min-height: 44px;
  margin-top: 1rem;
  padding: 0 1rem;
  border: 0;
  border-radius: 999px;
  background: #0d1119;
  color: white;
  font: inherit;
  font-weight: 800;
}

.mock-card {
  padding: 1.2rem;
  border-radius: 18px;
  background: #10131b;
}

.mock-card span,
.mock-card small {
  color: var(--muted);
}

.mock-card strong {
  display: block;
  color: var(--accent);
  font-size: 4.4rem;
  line-height: 1;
}

.code-card {
  position: absolute;
  right: 0.8rem;
  bottom: 0;
  width: min(92%, 360px);
  padding: 1rem;
  border-radius: 16px;
  color: #d7dbea;
  font: 600 0.9rem/1.75 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.code-card span {
  color: var(--accent);
}

.code-card .code-dim {
  color: var(--accent-2);
}

.section-head {
  max-width: 790px;
  margin-bottom: 2rem;
}

.theme-showcase {
  padding-top: 1rem;
}

.theme-showcase-head {
  max-width: 820px;
  margin-bottom: 1.5rem;
}

.theme-showcase-head p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1rem;
}

.theme-showcase-grid {
  display: grid;
  gap: 1rem;
}

.theme-showcase-frame {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(81, 240, 189, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.theme-showcase-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
}

.theme-showcase-frame figcaption {
  padding: 0.9rem 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.shopify-offer {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.offer-panel {
  display: grid;
  gap: 1.2rem;
  overflow: hidden;
  padding: 1.25rem;
  border-color: rgba(255, 106, 42, 0.32);
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 42, 0.2), transparent 28rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.offer-copy {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.offer-copy h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.offer-copy p:not(.eyebrow) {
  max-width: 670px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.offer-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: #ff5a2f;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
}

.offer-price {
  position: relative;
  display: grid;
  gap: 0.75rem;
  align-content: center;
  overflow: hidden;
  padding: 1.35rem;
  border: 1px solid rgba(255, 168, 74, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.3);
  box-shadow:
    0 18px 52px rgba(255, 106, 42, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.offer-price::before {
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 209, 128, 0.72), rgba(255, 106, 42, 0.26), rgba(81, 240, 189, 0.18));
  content: "";
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.offer-price::after {
  position: absolute;
  top: -42%;
  right: -28%;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(255, 106, 42, 0.18);
  filter: blur(28px);
  content: "";
  pointer-events: none;
}

.offer-price span {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.offer-price s {
  color: rgba(255, 255, 255, 0.45);
}

.offer-price-divider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 168, 74, 0.72), transparent);
}

.offer-price strong {
  position: relative;
  z-index: 1;
  color: #ff6a2a;
  font-size: 4.7rem;
  font-weight: 950;
  line-height: 1;
  text-shadow:
    0 0 18px rgba(255, 106, 42, 0.42),
    0 12px 34px rgba(255, 106, 42, 0.28);
}

.offer-price p {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 208, 194, 0.18);
  border-radius: 999px;
  background: rgba(255, 106, 42, 0.12);
  color: #ffd0c2;
  font-size: 0.92rem;
  font-weight: 800;
}

.offer-price p i {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ff6a2a;
  box-shadow: 0 0 0 0 rgba(255, 106, 42, 0.55);
  animation: offerPulse 1.8s ease-out infinite;
}

@keyframes offerPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 106, 42, 0.55);
  }

  70% {
    box-shadow: 0 0 0 9px rgba(255, 106, 42, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 106, 42, 0);
  }
}

.pain-grid,
.benefit-grid,
.diff-grid,
.proof-grid,
.plan-grid {
  display: grid;
  gap: 1rem;
}

.pain-card,
.benefit-card,
.diff-card,
.testimonial,
.result-card,
.plan-card {
  border-radius: 8px;
  padding: 1.25rem;
}

.pain-card span {
  display: block;
  margin-bottom: 2.6rem;
  color: var(--accent-2);
  font-weight: 800;
}

.pain-card p,
.benefit-card p,
.diff-card p,
.testimonial,
.result-card p,
.service-item p,
.timeline p,
.plan-card li,
.footer {
  color: var(--muted);
}

.solution-panel {
  display: grid;
  gap: 2rem;
  padding: clamp(1.4rem, 5vw, 3rem);
  border: 1px solid rgba(81, 240, 189, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(81, 240, 189, 0.13), rgba(143, 182, 255, 0.08));
}

.service-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  gap: 0.65rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.service-item span {
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 800;
}

.service-item p {
  margin-bottom: 0;
}

.testimonial blockquote {
  margin: 0 0 1.2rem;
  color: var(--soft);
  font-size: 1.02rem;
}

.testimonial figcaption {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
}

.result-card span,
.plan-kicker {
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.result-card strong {
  display: block;
  margin: 0.8rem 0;
  color: var(--accent);
  font-size: 4rem;
  line-height: 1;
}

.timeline {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.timeline span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #06100d;
  font-weight: 900;
}

.timeline h3,
.timeline p {
  margin-bottom: 0;
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.plan-card.featured {
  border-color: rgba(81, 240, 189, 0.52);
  background:
    linear-gradient(180deg, rgba(81, 240, 189, 0.14), rgba(255, 255, 255, 0.045));
}

.plan-card h3,
.plan-card .price,
.plan-card ul,
.plan-card p {
  margin: 0;
}

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

.plan-card ul {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 1.35rem;
}

.plan-card li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  content: "✓";
  font-weight: 900;
}

.plan-card .btn {
  margin-top: auto;
}

.about {
  padding-top: 2rem;
}

.about-panel {
  display: grid;
  gap: 1.25rem;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(81, 240, 189, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.04);
}

.about-media {
  position: relative;
  min-height: 340px;
  background: #050608;
}

.about-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: 55% 42%;
}

.about-copy {
  align-self: center;
  padding: 1.35rem;
}

.about-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.about-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.cta-panel {
  padding: clamp(1.5rem, 6vw, 4rem);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(143, 182, 255, 0.16), rgba(81, 240, 189, 0.11)),
    rgba(255, 255, 255, 0.04);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 1.5rem, var(--max));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero-lead,
  .section-head p,
  .solution-panel p,
  .cta-panel p {
    font-size: 1.12rem;
  }

  .mock-copy h2 {
    font-size: 2.7rem;
  }

  .hero-stats,
  .pain-grid,
  .benefit-grid,
  .diff-grid,
  .proof-grid,
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mock-layout {
    grid-template-columns: 1.4fr 0.75fr;
    align-items: stretch;
  }

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

  .offer-panel {
    grid-template-columns: 1fr 0.72fr;
    align-items: stretch;
    padding: 2rem;
  }

  .service-item {
    grid-template-columns: 0.45fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 900px) {
  h1 {
    font-size: 5.7rem;
  }

  h2 {
    font-size: 4rem;
  }

  .hero-lead,
  .section-head p,
  .solution-panel p,
  .cta-panel p {
    font-size: 1.22rem;
  }

  .mock-copy h2 {
    font-size: 3.3rem;
  }

  .nav-links {
    display: flex;
  }

  .hero {
    grid-template-columns: 1.05fr 0.85fr;
  }

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

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

  .proof-grid {
    grid-template-columns: 1fr 1fr 0.85fr;
  }

  .offer-panel {
    grid-template-columns: 1fr 360px;
    padding: 3rem;
  }

  .offer-copy p:not(.eyebrow) {
    font-size: 1.12rem;
  }

  .theme-showcase-head p:not(.eyebrow) {
    font-size: 1.12rem;
  }

  .about-panel {
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 520px;
  }

  .about-media,
  .about-media img {
    min-height: 520px;
  }

  .about-copy {
    padding: 3rem;
  }

  .about-copy p {
    font-size: 1.12rem;
  }

  .solution-panel {
    grid-template-columns: 0.95fr 1fr;
    align-items: end;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
