:root {
  color-scheme: dark;
  --bg: #0f0f10;
  --panel: #171719;
  --panel-strong: #202024;
  --text: #f5f5f4;
  --muted: #c8c5bf;
  --soft: #8f8b84;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.22);
  --blue: #4ea1ff;
  --amber: #f0c76a;
  --rose: #f0a0a9;
  --shadow: 0 18px 70px rgba(0, 0, 0, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(78, 161, 255, 0.17), transparent 34rem),
    radial-gradient(circle at 80% 20%, rgba(240, 199, 106, 0.13), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.site-shell {
  min-height: 100vh;
}

.site-header,
.section,
.site-footer {
  width: min(100% - 2rem, 72rem);
  margin: 0 auto;
}

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

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

.brand img {
  width: clamp(5.75rem, 12vw, 8rem);
  height: auto;
  flex: 0 0 auto;
  border-radius: 6px;
  background: white;
  object-fit: contain;
  object-position: center;
  padding: 0.125rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.site-nav a,
.primary-action,
.phone-strip a,
.cta-links a,
.form-button,
.card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.86rem;
  font-weight: 700;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.phone-strip a:hover,
.cta-links a:hover,
.team-card a:hover,
.form-button:hover,
.card-action:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line-strong);
}

.site-nav .form-link {
  border-color: rgba(78, 161, 255, 0.55);
  background: rgba(78, 161, 255, 0.13);
  color: #d9ecff;
}

.section {
  padding: 5rem 0;
}

.hero {
  padding-top: 2.6rem;
  padding-bottom: 6rem;
}

.hero-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 19rem);
  align-items: start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-logo {
  margin: 0 0 2rem;
}

.hero-logo img {
  width: min(100%, 54rem);
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: var(--panel-strong);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.hero-logo figcaption,
.section-heading p,
.hero-copy,
.team-card p,
.cta p,
.site-footer {
  color: var(--muted);
}

.hero-logo figcaption {
  margin-top: 0.8rem;
  font-size: 0.95rem;
}

.convenience-tab {
  position: relative;
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: rgba(23, 23, 25, 0.88);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.convenience-tab::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: -0.7rem;
  width: 0.7rem;
  height: 1.2rem;
  border-radius: 6px 0 0 6px;
  background: var(--blue);
}

.convenience-kicker {
  margin: 0 0 0.45rem;
  color: #b8d8ff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.convenience-tab h2 {
  font-size: 1.3rem;
}

.convenience-tab p:not(.convenience-kicker) {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 58rem;
  font-size: 3.55rem;
  font-weight: 800;
}

h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--amber), var(--rose), #9fb4ff);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  font-size: 1.18rem;
  line-height: 1.65;
}

.hero-copy + .hero-copy {
  margin-top: 0.85rem;
}

.hero-actions {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.3rem;
}

.primary-action {
  width: fit-content;
  border-color: white;
  background: white;
  color: #121214;
}

.primary-action:hover {
  background: #e9e7e2;
  transform: translateY(-1px);
}

.hero-secondary {
  margin: -0.45rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.phone-strip,
.cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.phone-strip a span,
.cta-links a span,
.team-card a span {
  margin-left: 0.45rem;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  border-bottom: 1px solid rgba(78, 161, 255, 0.75);
  color: #d9ecff;
  font-weight: 800;
}

.text-link:hover,
.faq-item a:hover {
  color: white;
}

.pricing,
.workflow,
.website-type,
.process,
.team,
.services,
.location,
.faq {
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.cta h2 {
  font-size: 2.35rem;
}

.section-heading p,
.cta p {
  margin: 1rem 0 0;
  font-size: 1.04rem;
  line-height: 1.65;
}

.price-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.price-card,
.team-card,
.service-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.price-card,
.service-card,
.faq-item {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.price-card {
  min-height: 13rem;
  justify-content: space-between;
  gap: 2rem;
}

.service-card,
.faq-item {
  min-height: 11rem;
}

.price-card h3,
.service-card h3,
.faq-item h3,
.team-card h3 {
  font-size: 1.15rem;
}

.price-card p,
.service-card p,
.faq-item p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.card-list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.6;
}

.card-list li + li {
  margin-top: 0.35rem;
}

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

.faq-item a {
  color: #d9ecff;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(78, 161, 255, 0.45);
  text-underline-offset: 0.18rem;
}

.price-card strong {
  display: block;
  font-size: 3.2rem;
  line-height: 1;
}

.card-action {
  width: fit-content;
  border-color: rgba(78, 161, 255, 0.65);
  background: rgba(78, 161, 255, 0.16);
  color: #e7f3ff;
}

.workflow-grid,
.process-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.team-card {
  display: flex;
  min-height: 23rem;
  flex-direction: column;
  padding: 1.35rem;
}

.workflow-card,
.process-card {
  min-height: 11rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  padding: 1.35rem;
}

.workflow-card h3,
.process-card h3 {
  font-size: 1.15rem;
}

.workflow-card p,
.process-card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.member-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 1.25rem;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
}

.team-card .role {
  margin: 0.45rem 0 1rem;
  color: var(--amber);
  font-size: 0.94rem;
  font-weight: 700;
}

.team-card p:not(.role) {
  margin: 0;
  line-height: 1.6;
}

.team-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.7rem;
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.7rem;
  font-weight: 800;
}

.cta {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.cta h2,
.cta p {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-links {
  justify-content: center;
  margin-top: 1.7rem;
}

.cta .form-button {
  margin-top: 1.4rem;
}

.form-note {
  max-width: 44rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top: 1px solid var(--line);
}

.form-note h2 {
  font-size: 2.1rem;
}

.form-note p:last-child {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.form-button {
  width: fit-content;
  margin-top: 1.4rem;
  border-color: rgba(78, 161, 255, 0.65);
  background: rgba(78, 161, 255, 0.16);
  color: #e7f3ff;
}

.intake-hero {
  padding-bottom: 2.5rem;
}

.intake-form {
  width: min(100% - 2rem, 72rem);
  margin: 0 auto 5rem;
}

.form-section {
  border-top: 1px solid var(--line);
  padding: 3rem 0;
}

.form-section-heading {
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.form-section-heading h2 {
  font-size: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.intake-form label,
.intake-form fieldset {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 750;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  font-weight: 500;
  padding: 0.78rem 0.85rem;
}

.intake-form input[type="file"] {
  padding: 0.7rem;
}

.intake-form select option {
  color: #111;
}

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

.intake-form fieldset {
  margin: 1rem 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
}

.intake-form legend {
  padding: 0 0.35rem;
  color: var(--text);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.checkbox-grid label,
.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.4;
}

.checkbox-grid input,
.checkbox-line input {
  width: auto;
  margin-top: 0.16rem;
}

.form-help {
  color: var(--muted);
  line-height: 1.65;
}

.form-status {
  min-height: 1.5rem;
  color: var(--muted);
  font-weight: 750;
}

.form-status[data-type="success"] {
  color: #9fe7bc;
}

.form-status[data-type="error"] {
  color: #ffb4b4;
}

.form-status[data-type="pending"] {
  color: #b8d8ff;
}

.backup-button {
  cursor: pointer;
  font: inherit;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.intake-form button.primary-action {
  cursor: pointer;
  font: inherit;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

@media (max-width: 780px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  h1 {
    font-size: 2.55rem;
  }

  .section-heading h2,
  .cta h2 {
    font-size: 1.9rem;
  }

  .price-grid,
  .service-grid,
  .workflow-grid,
  .process-grid,
  .team-grid,
  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-logo {
    margin-bottom: 0;
  }

  .convenience-tab {
    margin-top: 0;
  }

  .team-card {
    min-height: 0;
  }
}

@media (max-width: 460px) {
  .site-header,
  .section,
  .site-footer,
  .intake-form {
    width: min(100% - 1.25rem, 72rem);
  }

  .site-nav,
  .site-nav a,
  .primary-action,
  .phone-strip,
  .phone-strip a,
  .cta-links,
  .cta-links a,
  .form-button,
  .card-action {
    width: 100%;
  }

  .hero {
    padding-top: 1.4rem;
  }

  .section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  h1 {
    font-size: 2.1rem;
  }

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

  .price-card strong {
    font-size: 2.65rem;
  }

  .phone-strip a,
  .cta-links a,
  .team-card a {
    flex-direction: column;
    gap: 0.18rem;
    text-align: center;
  }

  .phone-strip a span,
  .cta-links a span,
  .team-card a span {
    margin-left: 0;
  }
}
