:root {
  color-scheme: light;
  --ink: #101820;
  --ink-soft: #2d3742;
  --paper: #ffffff;
  --mist: #f4f7f8;
  --line: #dce4e7;
  --teal: #0e7c7b;
  --teal-dark: #07595a;
  --amber: #d9892b;
  --rose: #b84a62;
  --shadow: 0 20px 60px rgba(16, 24, 32, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 32px;
  color: #ffffff;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 36px rgba(16, 24, 32, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-weight: 800;
  font-size: 1rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 7px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle svg {
  width: 21px;
  height: 21px;
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--ink);
  padding: 112px 32px 64px;
}

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

.hero-media {
  background-image: url("assets/starbug-hero.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.9) 0%, rgba(16, 24, 32, 0.72) 44%, rgba(16, 24, 32, 0.22) 100%),
    linear-gradient(0deg, rgba(16, 24, 32, 0.25), rgba(16, 24, 32, 0.05));
}

.hero-content {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 4.5rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-primary {
  color: #ffffff;
  background: var(--teal);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
}

.button-full {
  width: 100%;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  min-height: 104px;
  padding: 22px 28px;
  background: #ffffff;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: 1.05rem;
}

.proof-strip span {
  margin-top: 4px;
  color: #52606d;
  font-size: 0.93rem;
}

.section {
  padding: 90px 32px;
}

.section-light {
  background: var(--mist);
}

.section-white {
  background: #ffffff;
}

.section-muted {
  background: #eef4f2;
}

.section-ink {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(14, 124, 123, 0.22), rgba(184, 74, 98, 0.1)),
    var(--ink);
}

.section-contact {
  background: #ffffff;
  border-top: 1px solid var(--line);
}

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

.two-column,
.pricing-layout,
.scope-grid,
.fit-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

h2 {
  margin: 0;
  max-width: 760px;
  font-size: 2.65rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  letter-spacing: 0;
}

.lead-copy p,
.pricing-copy p,
.section-contact p {
  margin: 0 0 18px;
  color: #4d5a64;
  font-size: 1.05rem;
}

.section-ink .pricing-copy p {
  color: rgba(255, 255, 255, 0.8);
}

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

.feature-card,
.steps article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.feature-card {
  min-height: 214px;
  padding: 26px;
}

.feature-card svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
  margin-bottom: 28px;
}

.feature-card p,
.steps p {
  margin: 12px 0 0;
  color: #5b6873;
  font-size: 0.96rem;
}

.pricing-card {
  max-width: 460px;
  margin-left: auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.price {
  font-size: 4rem;
  line-height: 0.9;
  font-weight: 900;
}

.term {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  font-weight: 800;
}

.contract {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.88);
}

.check-list svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: #7fd0c9;
  flex: 0 0 auto;
}

.scope-list {
  display: grid;
  gap: 14px;
}

.scope-list div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.scope-list div:first-child {
  border-top: 1px solid var(--line);
}

.scope-list strong {
  color: var(--teal-dark);
  font-size: 1rem;
}

.scope-list span {
  color: #52606d;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

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

.steps article {
  min-height: 228px;
  padding: 24px;
}

.steps span {
  display: block;
  margin-bottom: 38px;
  color: var(--rose);
  font-size: 0.86rem;
  font-weight: 900;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #b9cac6;
  border-radius: 7px;
  background: #ffffff;
  color: #34414a;
  font-weight: 750;
  font-size: 0.94rem;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--teal-dark);
  font-weight: 850;
}

.email-link svg {
  width: 18px;
  height: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: #3f4c55;
  font-size: 0.9rem;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #bdc9ce;
  border-radius: 7px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
}

.contact-form input {
  min-height: 46px;
  padding: 0 12px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 128px;
  padding: 12px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 124, 123, 0.16);
}

.form-note {
  margin: 0;
  color: #69757e;
  font-size: 0.88rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 20px 32px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--ink);
}

.site-footer a {
  color: #ffffff;
  font-weight: 750;
}

@media (max-width: 980px) {
  .hero h1 {
    font-size: 3.4rem;
  }

  .proof-strip,
  .card-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-column,
  .pricing-layout,
  .scope-grid,
  .fit-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pricing-card {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
    padding: 0 18px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    padding: 14px 18px 22px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(16, 24, 32, 0.16);
  }

  .site-header.is-open .site-nav {
    display: grid;
    gap: 6px;
  }

  .site-nav a {
    min-height: 44px;
  }

  .hero {
    min-height: 82svh;
    padding: 96px 20px 52px;
  }

  .hero-media {
    background-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(16, 24, 32, 0.92), rgba(16, 24, 32, 0.72)),
      linear-gradient(0deg, rgba(16, 24, 32, 0.2), rgba(16, 24, 32, 0.05));
  }

  .hero h1 {
    max-width: 520px;
    font-size: 2.75rem;
    line-height: 1;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section {
    padding: 66px 20px;
  }

  h2 {
    font-size: 2rem;
  }

  .proof-strip,
  .card-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: 88px;
    padding: 18px 20px;
  }

  .scope-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .price {
    font-size: 3.2rem;
  }

  .site-footer {
    display: grid;
    justify-items: start;
    padding: 24px 20px;
  }
}

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