:root {
  --ink: #131319;
  --ink-2: #181c22;
  --panel: #232830;
  --panel-deep: #1a1e24;
  --line: #393d42;
  --muted: #abb1b9;
  --soft: #6b7280;
  --mint: #4dbf8a;
  --mint-strong: #5cd99d;
  --amber: #f59e0b;
  --sky: #7ab7ff;
  --white: #fafafa;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid rgba(77, 191, 138, 0.28);
  background: rgba(19, 19, 25, 0.86);
  backdrop-filter: blur(16px);
}

.brand,
.site-footer > div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.brand img,
.site-footer img {
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #d9dee5;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 6px;
  padding: 0 12px;
}

.nav-links a:hover {
  background: rgba(77, 191, 138, 0.12);
  color: var(--white);
}

.header-cta {
  gap: 8px;
  border: 1px solid rgba(77, 191, 138, 0.55);
  background: var(--mint);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.header-cta:hover,
.button.primary:hover {
  background: var(--mint-strong);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(18px, 6vw, 80px) 58px;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(19, 19, 25, 0.96) 0%, rgba(19, 19, 25, 0.74) 46%, rgba(19, 19, 25, 0.2) 100%),
    linear-gradient(180deg, rgba(19, 19, 25, 0.15) 0%, rgba(19, 19, 25, 0.82) 100%);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mint-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.8rem, 8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.hero-lede,
.section-heading p,
.performance-grid p,
.platform-grid p,
.service-card p {
  color: #e1e6ec;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border-radius: 6px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 900;
}

.button.primary {
  background: var(--mint);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(35, 40, 48, 0.78);
  color: var(--white);
}

.button.secondary:hover {
  border-color: rgba(77, 191, 138, 0.65);
  background: rgba(77, 191, 138, 0.12);
}

.button.full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 36px 0 0;
}

.hero-stats div {
  min-height: 84px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px;
  background: rgba(19, 19, 25, 0.62);
}

.hero-stats dt {
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
}

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

.section {
  padding: 86px clamp(18px, 6vw, 80px);
  background: var(--ink);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.performance-band,
.services-band,
.final-cta {
  background: var(--ink-2);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.performance-grid,
.platform-grid,
.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.performance-panel,
.panel-preview {
  border: 1px solid rgba(77, 191, 138, 0.28);
  border-radius: 8px;
  background: #20252d;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.34);
}

.performance-panel {
  padding: 18px;
}

.spec-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.spec-line:last-child {
  border-bottom: 0;
}

.spec-line span {
  color: var(--muted);
}

.spec-line strong {
  text-align: right;
}

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

.section-heading.narrow {
  max-width: 690px;
}

.plans-grid,
.services-grid,
.reviews-grid,
.faq-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.plan-card,
.service-card,
figure,
.faq-item,
.related-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--panel);
}

.plan-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.featured-plan {
  border-color: rgba(77, 191, 138, 0.68);
  box-shadow: inset 0 0 0 1px rgba(77, 191, 138, 0.24), 0 18px 48px rgba(77, 191, 138, 0.1);
}

.plan-kicker {
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-price {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 2.7rem;
  font-weight: 950;
  line-height: 1;
}

.plan-price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: #d9dee5;
}

.plan-card li,
.platform-list span {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

.service-card {
  overflow: hidden;
}

.service-card img,
.website-showcase {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.service-copy {
  padding: 22px;
}

.website-showcase {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(77, 191, 138, 0.18), transparent 38%),
    #171c23;
  overflow: hidden;
}

.browser-bar {
  display: flex;
  gap: 7px;
}

.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(92, 217, 157, 0.9);
}

.mock-nav {
  height: 12px;
  width: 44%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.mock-hero {
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 76px;
  border: 1px solid rgba(77, 191, 138, 0.28);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(90deg, rgba(92, 217, 157, 0.22), rgba(245, 181, 85, 0.16)),
    #20252d;
}

.mock-hero span,
.mock-hero strong,
.mock-grid span {
  display: block;
  border-radius: 999px;
}

.mock-hero span {
  width: 68%;
  height: 11px;
  background: rgba(255, 255, 255, 0.22);
}

.mock-hero strong {
  width: 42%;
  height: 17px;
  background: var(--mint);
}

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

.mock-grid span {
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.service-card svg,
.plan-card svg,
.platform-list svg,
.button svg,
.header-cta svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.service-card > div > svg {
  width: 28px;
  height: 28px;
  color: var(--mint);
  margin-bottom: 14px;
}

.platform-section {
  background: #151920;
}

.related-section {
  background: var(--ink);
}

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

.related-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 190px;
  padding: 22px;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.related-card:hover {
  border-color: rgba(77, 191, 138, 0.62);
  background: #29313a;
  transform: translateY(-2px);
}

.related-card span {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 900;
}

.related-card p {
  margin: 0;
  color: #d9dee5;
  line-height: 1.6;
}

.panel-preview {
  padding: 16px;
}

.preview-topbar {
  display: flex;
  gap: 7px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.preview-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--mint);
}

.preview-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
  border-radius: 6px;
  padding: 14px;
  background: var(--panel-deep);
  color: var(--muted);
}

.preview-row.strong {
  border: 1px solid rgba(77, 191, 138, 0.36);
}

.preview-row b {
  color: var(--white);
}

.preview-meter {
  height: 10px;
  margin-top: 16px;
  border-radius: 999px;
  background: #11141a;
  overflow: hidden;
}

.preview-meter span {
  display: block;
  height: 100%;
  background: var(--mint);
}

.platform-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: #e1e6ec;
  font-weight: 800;
}

figure {
  margin: 0;
  padding: 24px;
}

figure div {
  color: var(--amber);
  font-size: 1rem;
  letter-spacing: 0;
}

blockquote {
  margin: 16px 0;
  color: #f0f3f6;
  font-size: 1.08rem;
  line-height: 1.55;
}

figcaption {
  color: var(--muted);
  font-weight: 800;
}

.faq-section {
  background: #151920;
}

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

.faq-item {
  padding: 22px;
}

.faq-item p {
  color: #d9dee5;
  line-height: 1.65;
}

.final-cta {
  padding: 72px clamp(18px, 6vw, 80px);
}

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

.final-grid h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 6vw, 80px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a:hover {
  color: var(--mint-strong);
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 96vh;
    padding-top: 150px;
  }

  .hero-stats,
  .plans-grid,
  .services-grid,
  .reviews-grid,
  .faq-grid,
  .related-grid,
  .performance-grid,
  .platform-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .final-actions {
    width: 100%;
  }

  .final-actions .button {
    width: 100%;
  }

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

@media (max-width: 560px) {
  .header-cta {
    width: 100%;
  }

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

  .hero-stats {
    display: flex;
    flex-direction: column;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}