:root {
  --bg: #07111f;
  --bg-soft: #0d1a2d;
  --panel: rgba(15, 25, 45, 0.8);
  --panel-strong: #0f1c31;
  --text: #eff5ff;
  --muted: #9caecc;
  --line: rgba(154, 176, 214, 0.16);
  --accent: #62e6ff;
  --accent-2: #8d7dff;
  --success: #63f0b2;
  --shadow: 0 20px 60px rgba(1, 10, 26, 0.45);
  --radius: 24px;
  --radius-sm: 16px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(98, 230, 255, 0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(141, 125, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #07111f 0%, #091423 100%);
  color: var(--text);
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease, border-color 180ms ease;
}

img {
  max-width: 100%;
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 20px 0 8px;
  padding: 16px 20px;
  background: rgba(8, 16, 30, 0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(20px);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand-text {
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(98, 230, 255, 0.3);
  background: rgba(98, 230, 255, 0.08);
  color: var(--text) !important;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 99px;
}

.section {
  padding: 52px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  padding-top: 70px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

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

h1 {
  font-size: clamp(2.6rem, 6vw, 5.3rem);
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 14px;
  max-width: 15ch;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.section-heading {
  width: 100%;
  max-width: none;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: none;
}

.section-heading p:last-child {
  margin: 0;
  max-width: none;
}

.section-heading p:last-child,
.hero-text,
.card p,
.footer small,
 .contact-list span {
  color: var(--muted);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #4ec4ff 45%, var(--accent-2));
  color: #06101f;
  box-shadow: 0 16px 40px rgba(98, 230, 255, 0.25);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.full-width {
  width: 100%;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-meta div,
.pill,
.engagement-tags span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
}

.hero-meta strong,
.hero-meta span {
  display: block;
}

.hero-meta span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.card {
  position: relative;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.glow::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(98, 230, 255, 0.22), transparent 65%);
  pointer-events: none;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 100%;
}

.hero-quote {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-quote p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.trust-strip {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.pill {
  color: var(--muted);
}

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

.feature-list,
.step-list {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.feature-list.columns {
  columns: 2;
  gap: 24px;
}

.feature-list li,
.step-list li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.timeline {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(7, minmax(180px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.timeline-item {
  min-width: 190px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.timeline-item span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(98, 230, 255, 0.1);
  color: var(--accent);
  font-weight: 700;
}

.service-stack,
.industry-grid {
  display: grid;
  gap: 24px;
}

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

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

.service-card {
  height: 100%;
}

.service-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.service-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(98, 230, 255, 0.12);
  color: var(--accent);
  font-weight: 800;
}

.methodology {
  position: relative;
}

.methodology::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -20px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(141, 125, 255, 0.16), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}

.profile-card {
  margin-top: 24px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

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

.stat-grid article {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.stat-value {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text);
}

.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.price {
  margin-bottom: 18px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text) !important;
}

.price span {
  display: block;
  margin-top: 6px;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--muted);
}

.engagement-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.engagement-tags span {
  color: var(--text);
}

.contact-section {
  padding-bottom: 80px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.contact-list a {
  color: var(--text);
}

.contact-list a:hover {
  color: var(--accent);
}

.contact-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.compact-steps {
  margin-bottom: 24px;
}

.footer {
  padding: 0 0 48px;
  display: grid;
  gap: 10px;
  text-align: center;
}

.footer p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

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

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

@media (max-width: 1100px) {
  .hero,
  .contact-panel,
  .service-stack,
  .industry-grid,
  .grid.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-stack > :last-child {
    grid-column: 1 / -1;
  }

  .feature-list.columns {
    columns: 1;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .topbar {
    border-radius: 26px;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(8, 16, 30, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .topbar.nav-open .nav {
    display: flex;
  }

  .hero,
  .contact-panel,
  .grid.two-col,
  .service-stack,
  .industry-grid,
  .hero-meta,
  .stat-grid,
  .stat-grid.compact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    max-width: none;
  }

  h2 {
    max-width: none;
  }

  .section {
    padding: 36px 0;
  }

  .card {
    padding: 22px;
  }
}

@media (max-width: 540px) {
  .topbar {
    padding: 14px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
