:root {
  --bg: #07111f;
  --bg-soft: rgba(9, 22, 38, 0.78);
  --panel: rgba(10, 21, 34, 0.86);
  --panel-strong: rgba(14, 27, 43, 0.95);
  --line: rgba(173, 198, 226, 0.14);
  --text: #edf4ff;
  --muted: #9aaec8;
  --accent: #8de4c7;
  --accent-strong: #d4ff8d;
  --warm: #f6b77d;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(141, 228, 199, 0.18), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(246, 183, 125, 0.18), transparent 24%),
    linear-gradient(160deg, #030913 0%, #07111f 38%, #0b1524 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 92%);
  pointer-events: none;
}

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

.page-shell {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 48px;
}

.section {
  padding: 40px 0;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 16px auto 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #062616;
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-lockup strong {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.brand-lockup span {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

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

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  min-height: calc(100vh - 170px);
  align-items: center;
}

.hero-copy,
.hero-panel,
.service-card,
.showcase-card,
.about-card,
.faq-card,
.value-strip,
.process-card,
.insight-panel,
.domain-panel,
.contact-card,
.stat-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16, 31, 49, 0.74), rgba(7, 17, 31, 0.88));
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel {
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px);
}

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

.hero h1,
.section-heading h2,
.insight h2,
.contact h2,
.value-strip h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(2.6rem, 6vw, 4.9rem);
}

.hero h1 span {
  color: var(--accent-strong);
}

.hero-text,
.section-heading p,
.service-card p,
.showcase-card p,
.process-card p,
.insight-panel p,
.domain-panel p,
.contact-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #062616;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
}

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

.hero-panel {
  display: grid;
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(141, 228, 199, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(16, 31, 49, 0.85), rgba(7, 17, 31, 0.95));
}

.hero-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.hero-card p,
.hero-card h2,
.hero-card h3,
.hero-card ul {
  margin: 0;
}

.hero-card p {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-card h2,
.hero-card h3 {
  margin-top: 12px;
  font-family: "Manrope", sans-serif;
  line-height: 1.18;
}

.hero-card h2 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
}

.hero-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

.hero-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin-top: 18px;
  list-style: none;
  color: var(--muted);
}

.hero-card li::before,
.showcase-card li::before,
.domain-panel li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--warm));
}

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

.stat-card {
  padding: 26px 22px;
  border-radius: var(--radius-lg);
}

.stat-value {
  display: block;
  margin-bottom: 8px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  font-weight: 800;
}

.stat-label {
  color: var(--muted);
  line-height: 1.6;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading h2,
.insight h2,
.contact h2,
.value-strip h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.services-grid,
.showcase-grid,
.process-grid,
.insight,
.about-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

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

.service-card,
.showcase-card,
.process-card,
.about-card,
.faq-card,
.insight-panel,
.domain-panel,
.contact-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.service-card span,
.about-card span,
.process-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3,
.showcase-card h3 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
  line-height: 1.25;
}

.showcase-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -45% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 228, 199, 0.18), transparent 64%);
}

.showcase-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  color: #062616;
  font-size: 0.78rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--warm), #ffd1a8);
}

.showcase-card ul,
.domain-panel ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.9;
}

.value-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.value-points {
  display: grid;
  gap: 12px;
}

.value-points p {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
}

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

.process-card {
  min-height: 190px;
}

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

.faq-card h3 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  line-height: 1.3;
}

.faq-card p,
.about-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.insight {
  grid-template-columns: 1.05fr 0.95fr;
}

.domain-note {
  margin-top: 18px;
  font-size: 0.92rem;
}

.contact-card {
  display: grid;
  gap: 20px;
  background:
    radial-gradient(circle at right top, rgba(246, 183, 125, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(16, 31, 49, 0.84), rgba(7, 17, 31, 0.98));
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text);
  font-weight: 700;
}

.contact-meta a {
  color: var(--accent-strong);
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

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

.site-footer {
  padding: 12px 0 8px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1080px) {
  .hero,
  .value-strip,
  .insight,
  .about-grid,
  .faq-grid,
  .showcase-grid,
  .services-grid,
  .process-grid,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-card:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100vw - 24px, 100%);
  }

  .site-header {
    top: 10px;
    padding: 12px 14px;
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(7, 17, 31, 0.95);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  .hero,
  .value-strip,
  .insight,
  .about-grid,
  .faq-grid,
  .showcase-grid,
  .services-grid,
  .process-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .showcase-card:first-child {
    grid-column: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  .hero-copy,
  .hero-panel,
  .service-card,
  .showcase-card,
  .about-card,
  .faq-card,
  .process-card,
  .insight-panel,
  .domain-panel,
  .contact-card,
  .stat-card {
    padding: 22px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .contact-meta {
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js-ready .reveal,
  .js-ready .reveal.is-visible,
  .button {
    transition: none;
    transform: none;
  }
}
