:root {
  --ink: #102326;
  --muted: #526469;
  --line: #d9e4e2;
  --paper: #f7fbfa;
  --white: #ffffff;
  --teal: #0b6f6a;
  --teal-dark: #064845;
  --aqua: #d8f1ee;
  --gold: #d29c3f;
  --gold-light: #fff2d7;
  --shadow: 0 18px 50px rgba(7, 48, 48, 0.12);
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 9px;
  background: var(--aqua);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--teal-dark);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--teal-dark);
  background: var(--aqua);
}

main {
  overflow: hidden;
}

.hero,
.page-hero,
.contact-panel,
.beats,
.how,
.plans,
.plan-notes,
.cta-band {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 96px);
  padding-top: 38px;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 6vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.page-hero h1,
.contact-panel h1 {
  max-width: 900px;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.lede {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

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

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

.button.secondary {
  color: var(--teal-dark);
  border-color: var(--line);
  background: var(--white);
}

.button.light {
  color: var(--teal-dark);
  background: var(--white);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-note,
.rate-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.brief-mockup,
.plan-card,
.faq-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.brief-mockup {
  padding: 26px;
}

.mockup-label {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 6px 10px;
  border-radius: 7px;
  color: var(--teal-dark);
  background: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 800;
}

.brief-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.brief-row span,
.focus-block span {
  color: var(--muted);
}

.brief-row strong {
  color: var(--teal-dark);
  white-space: nowrap;
}

.focus-block {
  margin-top: 24px;
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: var(--paper);
}

.focus-block p {
  margin: 8px 0 0;
  font-size: 1.08rem;
  font-weight: 800;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 28px;
}

.three-up,
.plans,
.faq-list {
  display: grid;
  gap: 20px;
}

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

.three-up article {
  padding: 26px 0;
  border-top: 2px solid var(--line);
}

.step {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--aqua);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  gap: 44px;
  align-items: start;
}

.split p,
.three-up p,
.plan-card p,
.faq-list p {
  color: var(--muted);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 0 16px 34px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 14px;
  height: 8px;
  border-bottom: 3px solid var(--teal);
  border-left: 3px solid var(--teal);
  transform: rotate(-45deg);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 48px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal-dark);
}

.cta-band p {
  margin: 0;
  color: #cfe3e0;
}

.plans {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 20px;
}

.plan-card {
  padding: 28px;
}

.plan-card.featured {
  border-color: var(--gold);
}

.plan-top {
  display: grid;
  gap: 14px;
  min-height: 132px;
}

.status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--aqua);
  font-size: 0.82rem;
  font-weight: 800;
}

.price {
  margin-bottom: 0;
  color: var(--ink) !important;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.1;
}

.plan-notes {
  padding-top: 24px;
}

.plan-notes p {
  max-width: 760px;
  color: var(--muted);
  font-weight: 700;
}

.faq-list {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 28px 72px;
}

.faq-list article {
  padding: 24px;
  box-shadow: none;
}

.faq-list h2 {
  font-size: 1.35rem;
}

.contact-panel {
  min-height: calc(100vh - 180px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header,
  .site-footer,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero,
  .split,
  .three-up,
  .plans {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
  }

  .plan-top {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .site-header,
  .site-footer,
  .hero,
  .page-hero,
  .contact-panel,
  .beats,
  .how,
  .plans,
  .plan-notes,
  .faq-list {
    padding-left: 18px;
    padding-right: 18px;
  }

  .button {
    width: 100%;
  }

  .brief-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .brief-row strong {
    white-space: normal;
  }
}
