:root {
  color-scheme: dark;
  --bg: #0b0d12;
  --bg-soft: #121722;
  --bg-elevated: #171d29;
  --surface: rgba(255, 255, 255, 0.03);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(106, 163, 255, 0.42);
  --text: #f4f7fb;
  --muted: #a9b2c0;
  --accent: #6aa3ff;
  --accent-strong: #8cb6ff;
  --accent-soft: rgba(106, 163, 255, 0.16);
  --success: #9cf5bf;
  --warning: #ffd27d;
  --danger: #ff9c9c;
  --shadow: 0 2rem 4rem rgba(0, 0, 0, 0.28);
  --radius-s: 0.8rem;
  --radius-m: 1.2rem;
  --radius-l: 1.6rem;
  --max: 74rem;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 5rem;
  --border: 0.0625rem solid var(--line);
  --font-sans: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top right, rgba(106, 163, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 18%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: var(--text);
}

a:hover {
  color: var(--accent-strong);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #000;
  border-radius: 0.5rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  backdrop-filter: blur(1rem);
  background: rgba(11, 13, 18, 0.8);
  border-bottom: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1rem;
  padding: 0.9rem 0;
}

.brand {
  text-decoration: none;
  min-width: 0;
}

.brand:hover,
.brand:focus-visible {
  color: inherit;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-icon {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.brand-mark {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.brand-subtitle {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 0.0625rem solid transparent;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-0.0625rem);
}

.button-primary {
  background: var(--accent);
  color: #081120;
  box-shadow: 0 0.875rem 2rem rgba(106, 163, 255, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-strong);
  color: #081120;
}

.button-primary:disabled,
.button-primary[aria-busy="true"] {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.05);
}

.button-full {
  width: 100%;
}

.header-cta {
  display: none;
}

.hero {
  padding: 4.25rem 0 3.25rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.4rem, 8vw, 4.8rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(1.9rem, 6vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

.lead,
.section-heading p,
.about-copy p,
.contact-lead,
.scope-note,
.audience-card p,
.service-card p,
.faq-list p,
.footer-copy,
.footer-bottom p,
.microcopy {
  color: var(--muted);
}

.lead {
  margin: 1rem 0 0;
  max-width: 39rem;
  font-size: 1.08rem;
}

.hero-points,
.process-list,
.service-card ul,
.contact-points,
.trust-chips,
.footer-proof {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-points li,
.contact-points li,
.service-card li {
  position: relative;
  padding-left: 1.4rem;
}

.hero-points li::before,
.contact-points li::before,
.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0.25rem rgba(106, 163, 255, 0.14);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.trust-chips li,
.footer-proof li {
  padding: 0.55rem 0.85rem;
  border: var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.microcopy {
  margin: 1rem 0 0;
  max-width: 44rem;
  font-size: 0.95rem;
}

.hero-panel,
.service-card,
.audience-card,
.contact-form,
.about-image-wrap,
.venture-link,
.faq-list details {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: var(--border);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.5rem;
}

.hero-panel h2 {
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.process-list {
  display: grid;
  gap: 1rem;
}

.process-list li {
  padding: 1rem;
  border-radius: var(--radius-m);
  border: var(--border);
  background: var(--surface);
}

.process-list strong {
  display: block;
  font-size: 1rem;
}

.process-list span {
  display: block;
  color: var(--muted);
  margin-top: 0.25rem;
}

.section {
  padding: 3.75rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: var(--border);
  border-bottom: var(--border);
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  max-width: 14ch;
}

.section-heading.narrow h2 {
  max-width: 20ch;
}

.card-grid,
.audience-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
}

.service-card.featured {
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(106, 163, 255, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
}

.card-price {
  margin: 0 0 0.75rem;
  color: var(--accent-strong);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 0.8rem;
}

.service-card p {
  margin: 0 0 1rem;
}

.service-card ul {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}

.service-card li {
  color: var(--text);
}

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

.scope-note {
  margin: 1.15rem 0 0;
  max-width: 60rem;
}

.audience-card {
  padding: 1.3rem;
}

.audience-card h3 {
  margin-bottom: 0.65rem;
}

.about-grid,
.contact-grid {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

.about-image-wrap {
  padding: 0.75rem;
  max-width: 28rem;
}

.about-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius-l) - 0.25rem);
  filter: grayscale(100%);
}

.about-copy p {
  margin: 0.95rem 0 0;
  max-width: 38rem;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}

.text-link {
  color: var(--accent-strong);
  font-weight: 700;
  text-underline-offset: 0.18em;
}

.faq-wrap {
  display: grid;
  gap: 1.5rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  padding: 1rem 1rem 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0.75rem 0 0;
  max-width: 44rem;
}

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

.contact-form {
  padding: 1.4rem;
}

.field-group {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.field-group label {
  font-weight: 700;
}

.field-group label span {
  color: var(--muted);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  border: var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #8e99aa;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 0.1875rem solid var(--accent-strong);
  outline-offset: 0.125rem;
}

.form-note,
.form-status {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-warning {
  color: var(--warning);
}

.form-status.is-error {
  color: var(--danger);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  border-top: var(--border);
  padding: 1.5rem 0 6rem;
  background: rgba(255, 255, 255, 0.015);
}

.footer-top,
.footer-bottom {
  display: grid;
  gap: 1.1rem;
}

.footer-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.footer-copy {
  margin: 0.55rem 0 0;
  max-width: 36rem;
}

.footer-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.venture-link {
  padding: 1rem;
  text-decoration: none;
}

.venture-link:hover,
.venture-link:focus-visible {
  color: inherit;
}

.footer-logo {
  width: min(100%, 18rem);
  height: auto;
}

.venture-link span {
  display: block;
  margin-top: 0.8rem;
  color: var(--muted);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

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

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

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(11, 13, 18, 0), rgba(11, 13, 18, 0.95) 35%);
  z-index: 60;
}

.mobile-cta .button {
  min-height: 3.25rem;
}

@media (min-width: 36em) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

@media (min-width: 48em) {
  html {
    font-size: 106.25%;
  }

  .site-nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero {
    padding: 5rem 0 4rem;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-top,
  .footer-bottom {
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.95fr);
  }

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

  .faq-wrap {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  }

  .mobile-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 64em) {
  html {
    font-size: 112.5%;
  }

  .shell {
    width: min(calc(100% - 3rem), var(--max));
  }

  .section {
    padding: 4.5rem 0;
  }

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

@media (min-width: 80em) {
  html {
    font-size: 118.75%;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
