:root {
  --bg: #07111f;
  --bg-soft: #0c1a2e;
  --panel: rgba(13, 27, 47, 0.78);
  --line: rgba(173, 196, 222, 0.18);
  --text: #f5f7fb;
  --muted: #b5c3d6;
  --accent: #5dd7c2;
  --accent-2: #ffb452;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(93, 215, 194, 0.08), transparent 30%),
    linear-gradient(180deg, #091322 0%, #07111f 48%, #0a1425 100%);
  color: var(--text);
}

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

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

.site-header,
.section,
.site-footer {
  padding-left: clamp(1.2rem, 2vw, 2rem);
  padding-right: clamp(1.2rem, 2vw, 2rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: rgba(5, 12, 22, 0.62);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand img {
  width: 138px;
}

.site-nav {
  display: flex;
  gap: 1.4rem;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), #86f1df);
  color: #05131d;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  box-shadow: 0 10px 30px rgba(93, 215, 194, 0.24);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(93, 215, 194, 0.3);
}

.button-small {
  min-height: 42px;
  padding: 0.7rem 1rem;
}

.button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  overflow: clip;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 10, 20, 0.88) 0%, rgba(4, 12, 23, 0.62) 45%, rgba(3, 10, 20, 0.56) 100%),
    linear-gradient(180deg, rgba(3, 10, 20, 0.2), rgba(3, 10, 20, 0.88));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  min-height: calc(100svh - 78px);
  align-items: end;
  padding: 4rem 0 3.5rem;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow,
.service-kicker,
.plan-label {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.02;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 6.4rem);
}

h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 4.8vw, 4rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.hero-text,
.section-heading,
.service-block p,
.plan-copy,
.split-copy p,
.feature-item p,
.marketing-copy p,
.marketing-points p,
.contact-copy p,
.form-note,
.site-footer {
  color: var(--muted);
}

.hero-text {
  max-width: 56ch;
  margin: 1.35rem 0 0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-panel {
  align-self: center;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(7, 18, 33, 0.86), rgba(9, 23, 39, 0.72));
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-panel-line + .hero-panel-line,
.feature-item + .feature-item {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.hero-panel span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--accent-2);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-panel strong {
  font-size: 1rem;
  line-height: 1.5;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-heading p {
  margin-top: 0.8rem;
  max-width: 52ch;
  font-size: 1.02rem;
  line-height: 1.8;
}

.service-layout,
.plans-grid,
.marketing-grid,
.split-section {
  display: grid;
  gap: 1.4rem;
}

.service-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.2rem;
}

.service-block {
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.service-block p,
.plan-copy,
.split-copy p,
.feature-item p,
.marketing-copy p,
.marketing-points p,
.contact-copy p,
.contact-form label {
  font-size: 1rem;
  line-height: 1.8;
}

.plans-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.plan {
  min-height: 100%;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(8, 19, 34, 0.7);
}

.plan.featured {
  background:
    linear-gradient(180deg, rgba(93, 215, 194, 0.12), rgba(8, 19, 34, 0.9)),
    rgba(8, 19, 34, 0.72);
  border-color: rgba(93, 215, 194, 0.35);
  transform: translateY(-10px);
}

.plan h3 {
  margin-top: 0.3rem;
}

.plan ul {
  padding-left: 1rem;
  margin: 1.2rem 0 1.5rem;
  color: var(--text);
  line-height: 1.9;
}

.plan-link {
  font-family: "Space Grotesk", sans-serif;
  color: var(--accent);
  font-weight: 700;
}

.split-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

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

.feature-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 1rem;
}

.feature-item span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.28);
}

.marketing-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marketing-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  margin-top: 2rem;
}

.marketing-points {
  display: grid;
  gap: 1rem;
}

.marketing-points p {
  margin: 0;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.contact-section {
  padding-bottom: 7rem;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  padding: 2rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(9, 22, 38, 0.92), rgba(7, 17, 31, 0.88));
  border: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.9rem 1rem;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(245, 247, 251, 0.45);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(93, 215, 194, 0.35);
  border-color: rgba(93, 215, 194, 0.3);
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 2.5rem;
  font-size: 0.9rem;
}

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

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

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

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

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

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero-grid,
  .service-layout,
  .plans-grid,
  .split-section,
  .marketing-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: end;
    padding-top: 3rem;
  }

  .hero-panel {
    margin-top: 1rem;
  }

  .plan.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-nav {
    font-size: 0.85rem;
    gap: 0.8rem;
    overflow-x: auto;
  }

  .brand img {
    width: 112px;
  }

  .button,
  .button-small {
    width: 100%;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding-bottom: 2.5rem;
  }

  .section,
  .contact-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .contact-shell {
    padding: 1.2rem;
  }
}
