:root {
  color-scheme: dark;
  --bg: #050507;
  --bg-2: #0b0d12;
  --panel: #11141b;
  --panel-2: #171b24;
  --ink: #ffffff;
  --muted: #aeb4c0;
  --soft: #d7dbe3;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.22);
  --accent: #d7ff3f;
  --accent-2: #81f7c2;
  --danger: #ff6b6b;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 8%, rgba(215, 255, 63, 0.12), transparent 28%),
    linear-gradient(180deg, #090b0f 0%, var(--bg) 42%, #07080b 100%);
  font-family: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

.hidden {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(5, 5, 7, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 850;
  white-space: nowrap;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--accent);
}

nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

nav a,
.header-cta,
.primary-button,
.secondary-button,
.submit-button,
footer > a:last-child {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.services-menu {
  position: relative;
  justify-self: end;
}

.services-menu summary {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.9rem;
  font-weight: 860;
  list-style: none;
  cursor: pointer;
}

.services-menu summary::-webkit-details-marker {
  display: none;
}

.services-menu summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.services-menu[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.services-menu div {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 30;
  display: grid;
  width: min(310px, calc(100vw - 32px));
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(8, 10, 14, 0.98);
  box-shadow: var(--shadow);
}

.services-menu a {
  padding: 13px 14px;
  border-radius: 6px;
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 760;
}

.services-menu a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
}

.header-cta,
.primary-button,
.secondary-button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 880;
  text-align: center;
  cursor: pointer;
}

.header-cta,
.primary-button,
.submit-button {
  color: #050507;
  background: var(--accent);
  box-shadow: 0 14px 34px rgba(215, 255, 63, 0.18);
}

.header-cta:hover,
.primary-button:hover,
.submit-button:hover {
  background: #f0ff7a;
  transform: translateY(-1px);
}

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

.secondary-button:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(860px, calc(100vh - 72px));
  padding: clamp(90px, 12vw, 150px) clamp(22px, 6vw, 92px) clamp(74px, 9vw, 120px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 7, 0.24), rgba(5, 5, 7, 0.98)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 34%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1180px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 920;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.qualification {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 22px;
  padding: 9px 15px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7.6vw, 7.4rem);
  line-height: 0.9;
  font-weight: 930;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5.3vw, 5.8rem);
  line-height: 0.94;
  font-weight: 920;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.15;
  font-weight: 860;
}

.hero-lede {
  max-width: 860px;
  margin: 0 auto;
  color: var(--soft);
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
  line-height: 1.58;
  text-wrap: pretty;
}

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

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.proof-strip span {
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.84rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.proof-strip span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(76px, 10vw, 140px) clamp(22px, 6vw, 92px);
}

.split-section,
.method {
  background: var(--bg);
}

.section-copy {
  max-width: 1060px;
  margin-bottom: 38px;
}

.section-copy p {
  max-width: 760px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.section-copy.narrow {
  max-width: 1180px;
}

.compact-section {
  padding-bottom: clamp(64px, 8vw, 104px);
}

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

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

.numbered-grid article,
.timeline article {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.numbered-grid span,
.deliverable-list span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 920;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.numbered-grid p,
.timeline p,
.deliverable-list li,
.analysis-copy p,
details p,
footer p {
  color: var(--muted);
  line-height: 1.62;
}

.deliverables {
  background:
    linear-gradient(180deg, rgba(215, 255, 63, 0.06), transparent 18%),
    var(--bg-2);
}

.services {
  background:
    linear-gradient(180deg, rgba(215, 255, 63, 0.06), transparent 18%),
    var(--bg-2);
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card-grid article {
  display: grid;
  align-content: start;
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.service-card-grid span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 920;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.service-card-grid a {
  align-self: end;
  width: fit-content;
  margin-top: 24px;
  color: var(--accent);
  font-weight: 860;
}

.service-card-grid a:hover {
  color: #f0ff7a;
}

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

.deliverable-list article {
  display: grid;
  grid-template-columns: minmax(240px, 0.46fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.deliverable-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.deliverable-list li {
  position: relative;
  padding-left: 20px;
}

.deliverable-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

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

.timeline span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: #050507;
  background: var(--accent);
  border-radius: 6px;
  font-weight: 950;
}

.analysis-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 560px);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
  padding: clamp(76px, 10vw, 140px) clamp(22px, 6vw, 92px);
  background:
    radial-gradient(circle at 100% 0%, rgba(215, 255, 63, 0.11), transparent 26%),
    #090b0f;
}

.analysis-copy {
  position: sticky;
  top: 110px;
}

.analysis-copy p {
  max-width: 730px;
  margin-top: 22px;
  font-size: 1.08rem;
}

.analysis-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.analysis-notes span {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 760;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
  scroll-margin-top: 112px;
}

.form-title {
  display: grid;
  gap: 8px;
  margin-bottom: 4px;
}

.form-title span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 920;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-title strong {
  font-size: 1.45rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--ink);
  background: #080a0e;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font: inherit;
  font-size: 1rem;
}

input[type="checkbox"] {
  width: 20px;
  min-height: 20px;
  height: 20px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--accent);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #777f8d;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(215, 255, 63, 0.24);
  border-color: var(--accent);
}

.consent-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.submit-button {
  width: 100%;
  margin-top: 4px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.76;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--accent-2);
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.45;
}

.faq {
  background: var(--bg);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 1040px;
}

details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
}

summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  color: var(--ink);
  font-weight: 860;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px clamp(22px, 6vw, 92px);
  border-top: 1px solid var(--line);
  background: #030304;
}

footer p {
  margin: 0;
}

footer > a:last-child {
  color: var(--accent);
  font-weight: 860;
}

footer > a:last-child:hover {
  color: #f0ff7a;
}

.detail-page {
  background: var(--bg);
}

.detail-hero {
  padding: clamp(90px, 12vw, 150px) clamp(22px, 6vw, 92px) clamp(70px, 9vw, 110px);
  background:
    radial-gradient(circle at 78% 8%, rgba(215, 255, 63, 0.12), transparent 30%),
    linear-gradient(180deg, #090b0f 0%, var(--bg) 100%);
}

.detail-hero h1 {
  max-width: 1040px;
  margin-bottom: 24px;
}

.detail-hero p:not(.qualification) {
  max-width: 760px;
  color: var(--soft);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.58;
}

.detail-hero .primary-button {
  margin-top: 26px;
}

.detail-section {
  background: var(--bg-2);
}

.booking-band {
  display: grid;
  justify-items: center;
  padding: clamp(70px, 9vw, 120px) clamp(22px, 6vw, 92px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 255, 63, 0.12), transparent 32%),
    #050507;
  text-align: center;
}

.booking-band h2 {
  max-width: 900px;
}

.booking-band p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--soft);
  font-size: 1.08rem;
  line-height: 1.62;
}

.booking-band .primary-button {
  margin-top: 30px;
}

@media (max-width: 1100px) {
  .numbered-grid,
  .timeline,
  .service-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .analysis-section {
    grid-template-columns: 1fr;
  }

  .analysis-copy {
    position: static;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  nav {
    display: none;
  }

  .proof-strip,
  .deliverable-list article,
  .deliverable-list ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    font-size: 0.9rem;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .services-menu summary {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
    padding: 76px 20px 64px;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-actions,
  footer {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .proof-strip span {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip span:last-child {
    border-bottom: 0;
  }

  .section,
  .analysis-section {
    padding: 64px 20px;
  }

  .numbered-grid,
  .timeline,
  .analysis-notes,
  .form-grid,
  .compact-grid,
  .service-card-grid {
    grid-template-columns: 1fr;
  }

  .numbered-grid article,
  .timeline article,
  .deliverable-list article,
  .lead-form {
    padding: 22px;
  }
}
