:root {
  --ink: #111111;
  --paper: #fffdf8;
  --muted: #66635f;
  --blue: #13aede;
  --deep-blue: #0868c7;
  --yellow: #f2bd2f;
  --green: #0d8b5a;
  --rose: #f04f74;
  --cream: #f7efe1;
  --line: rgba(17, 17, 17, 0.13);
}

* {
  box-sizing: border-box;
}

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

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

a {
  color: inherit;
}

.switcher {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.switcher a {
  min-height: 38px;
  padding: 11px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.switcher a[aria-current="page"] {
  background: #fff;
  color: #000;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #54d6dd, #0868c7);
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

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

.button.light {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}

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

.section {
  padding: 72px 24px;
}

.section.compact {
  padding-top: 36px;
}

.wrap {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 22px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.section-head {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: normal;
  hyphens: none;
}

.section-head p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.text-panel {
  padding: 34px;
}

.text-panel h2,
.text-panel h3 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.98;
  text-wrap: balance;
  word-break: normal;
  hyphens: none;
}

.text-panel p,
.text-panel li,
.faq-item p,
.contact-panel p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.text-panel ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding-left: 20px;
}

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

.signal {
  padding: 26px;
}

.signal strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.05;
}

.signal p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.testimonial {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  background: #111;
  color: white;
}

.testimonial blockquote {
  margin: 0;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 900;
  line-height: 0.98;
}

.testimonial p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.6;
}

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

.faq-item {
  padding: 26px;
}

.faq-item h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.08;
}

.faq-item p {
  margin: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 30px;
  align-items: center;
  padding: 40px;
  border-radius: 8px;
  background: #111;
  color: white;
}

.contact-panel h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: normal;
  hyphens: none;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.75);
}

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

.contact-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.ai-note {
  border-left: 6px solid var(--blue);
  background: rgba(19, 174, 222, 0.09);
}

.image-panel {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #111;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.wide-image {
  margin-top: 28px;
  max-height: 420px;
}

.focus-lower img {
  object-position: center 72%;
}

.stat {
  display: grid;
  gap: 4px;
}

.stat strong {
  font-size: clamp(30px, 5vw, 58px);
  line-height: 0.9;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-shot {
  overflow: hidden;
  border: 10px solid #111;
  border-radius: 34px;
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.24);
  background: #111;
}

.phone-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile {
  min-height: 260px;
  padding: 22px;
  border-radius: 8px;
  color: white;
  background: #111;
}

.tile strong {
  display: block;
  max-width: none;
  font-size: clamp(30px, 3.65vw, 52px);
  line-height: 0.91;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  word-break: normal;
  hyphens: none;
}

.tile p {
  max-width: 28ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.42;
}

.footer-band {
  padding: 36px 24px;
  background: #111;
  color: white;
}

.footer-band .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}

.design-one {
  background: #f6f7f3;
}

.one-hero {
  min-height: calc(100vh - 58px);
  padding: 44px 24px 34px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18)),
    url("hpbkgrnd.jpg") center / cover;
  color: white;
}

.one-nav,
.two-nav,
.three-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.one-nav .brand-row,
.three-nav .brand-row {
  font-weight: 900;
}

.one-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 34px;
  align-items: end;
  width: min(1160px, 100%);
  min-height: calc(100vh - 160px);
  margin: 0 auto;
  padding-top: 64px;
}

.one-hero-grid > *,
.two-hero-grid > *,
.three-hero-grid > * {
  min-width: 0;
}

.one-hero h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(56px, 10vw, 124px);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  word-break: normal;
  hyphens: none;
}

.one-hero h1 span {
  color: var(--yellow);
}

.one-hero-copy {
  max-width: 600px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.35;
  font-weight: 700;
}

.one-stack {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: 16px;
  align-items: end;
}

.one-stack > * {
  min-width: 0;
}

.one-stack .tile:nth-child(1) {
  background: #0c0f12;
}

.one-stack .tile:nth-child(2) {
  background: var(--green);
}

.one-stack .tile:nth-child(3) {
  grid-column: 1 / -1;
  min-height: 190px;
  background: var(--rose);
}

.one-stats {
  grid-template-columns: repeat(4, 1fr);
}

.one-stats .card {
  padding: 24px;
}

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

.program {
  padding: 28px;
}

.program h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.program p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.design-two {
  background: #f6f8fb;
}

.two-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 24px 76px;
  background:
    radial-gradient(circle at 78% 16%, rgba(19, 174, 222, 0.24), transparent 26%),
    radial-gradient(circle at 18% 78%, rgba(8, 104, 199, 0.16), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.two-hero::before {
  content: "";
  position: absolute;
  inset: auto -16vw -28vw 32vw;
  height: 44vw;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(19, 174, 222, 0.2), rgba(8, 104, 199, 0.1));
  transform: rotate(-8deg);
  pointer-events: none;
}

.two-nav,
.two-hero-grid {
  position: relative;
  z-index: 1;
}

.two-nav {
  color: #102033;
}

.two-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 48px;
  align-items: center;
  width: min(1160px, 100%);
  margin: 70px auto 0;
}

.two-hero h1 {
  max-width: 11ch;
  margin: 0;
  color: #111827;
  font-size: clamp(46px, 5.8vw, 74px);
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: normal;
  hyphens: none;
}

.two-hero p {
  max-width: 580px;
  color: #4b5563;
  font-size: 20px;
  line-height: 1.55;
}

.receipt {
  padding: 28px;
  border: 1px solid rgba(23, 62, 53, 0.18);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 24px 60px rgba(23, 62, 53, 0.13);
}

.two-dashboard {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(8, 104, 199, 0.14);
  box-shadow: 0 30px 80px rgba(31, 41, 55, 0.16);
  backdrop-filter: blur(16px);
}

.two-dashboard h2 {
  color: #111827;
  font-size: clamp(38px, 4.7vw, 62px);
  letter-spacing: -0.01em;
}

.two-dashboard .receipt-line {
  color: #1f2937;
}

.receipt-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 2px dashed rgba(23, 62, 53, 0.22);
  color: #173e35;
  font-weight: 900;
  text-transform: uppercase;
}

.receipt h2 {
  margin: 26px 0;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.9;
  text-transform: uppercase;
}

.receipt-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(23, 62, 53, 0.12);
  color: #31534b;
  font-weight: 800;
}

.two-practices {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.practice-card {
  min-height: 360px;
  padding: 34px;
  color: #111827;
  background: #fff;
}

.practice-card:nth-child(2) {
  background: #eef6ff;
}

.practice-card h3 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.95;
}

.practice-card p {
  max-width: 44ch;
  margin-top: 22px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.55;
}

.two-social {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.two-social-copy h2,
.three-section-title h2 {
  margin: 0;
  font-size: clamp(40px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: normal;
  hyphens: none;
}

.two-social-copy p,
.three-section-title p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.design-two .text-panel,
.design-two .signal,
.design-two .faq-item {
  color: #111827;
}

.design-two .testimonial,
.design-two .contact-panel {
  background:
    radial-gradient(circle at 85% 12%, rgba(19, 174, 222, 0.34), transparent 24%),
    #0b1020;
}

.design-two .ai-note {
  border-left-color: var(--blue);
  background: #eef6ff;
}

.design-two .section:not(.compact),
.design-two .section.compact {
  background: #f6f8fb;
}

.design-two .card {
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.design-two .image-panel {
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
}

.design-three {
  background: #101620;
  color: #111;
}

.three-hero {
  position: relative;
  overflow: hidden;
  padding: 30px 24px 56px;
  background:
    radial-gradient(circle at 82% 20%, rgba(242, 189, 47, 0.46), transparent 24%),
    linear-gradient(112deg, rgba(7, 10, 22, 0.94) 0%, rgba(12, 42, 64, 0.82) 45%, rgba(240, 79, 116, 0.46) 100%),
    url("reboot-assets/charage-mountain-sunrise.png") center / cover;
  color: white;
}

.three-hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -16vw;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: rgba(19, 174, 222, 0.28);
  pointer-events: none;
}

.three-nav,
.three-hero-grid {
  position: relative;
  z-index: 1;
}

.three-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.78fr);
  gap: 48px;
  align-items: center;
  width: min(1160px, 100%);
  margin: 38px auto 0;
}

.three-hero h1 {
  max-width: 9.4ch;
  margin: 0;
  font-size: clamp(52px, 6.2vw, 80px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  word-break: normal;
  hyphens: none;
}

.three-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 21px;
  line-height: 1.5;
  font-weight: 650;
}

.three-hero .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.three-hero .button.light {
  background: rgba(255, 255, 255, 0.92);
}

.three-hero-art {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 16px;
  align-items: end;
}

.art-main {
  width: 100%;
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.art-scorecard {
  transform: none;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.art-scorecard.diagnostic {
  padding: 22px;
}

.diagnostic {
  padding: 26px;
  background: #111;
  color: white;
}

.diagnostic h2 {
  margin: 12px 0 20px;
  font-size: 34px;
  line-height: 1;
}

.meter {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.meter span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
}

.diagnostic-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

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

.offer {
  padding: 30px;
  background: white;
}

.offer small {
  color: var(--deep-blue);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer h3 {
  margin: 16px 0 12px;
  font-size: 28px;
  line-height: 1;
}

.offer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.three-proof {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.quote-panel {
  padding: 36px;
  background: #10212c;
  color: white;
}

.quote-panel blockquote {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  font-weight: 900;
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.three-about-band {
  background: #f3f7e8;
}

.three-about-band .text-panel {
  box-shadow: 10px 10px 0 rgba(13, 139, 90, 0.18);
}

.three-offer-band {
  background: #f2bd2f;
}

.three-offer-band .three-section-title h2,
.three-offer-band .three-section-title p,
.three-offer-band .eyebrow {
  color: #111;
}

.three-offer-band .offer {
  border-color: rgba(17, 17, 17, 0.2);
  box-shadow: 10px 10px 0 rgba(17, 17, 17, 0.18);
}

.three-experience-band {
  background: #0d2535;
  color: white;
}

.three-experience-band .section-head p,
.three-experience-band .signal p {
  color: rgba(255, 255, 255, 0.72);
}

.three-experience-band .signal {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: white;
}

.three-experience-band .wide-image {
  border-color: rgba(255, 255, 255, 0.18);
}

.three-proof-band {
  background: #f04f74;
}

.three-proof-band .quote-panel {
  background: #111;
  box-shadow: 10px 10px 0 rgba(255, 255, 255, 0.22);
}

.art-gallery {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 16px;
}

.art-gallery img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.three-testimonial-band {
  background: #101620;
}

.three-faq-band {
  background: #e6f7fb;
}

.three-contact-band {
  background:
    linear-gradient(90deg, rgba(16, 22, 32, 0.82), rgba(16, 22, 32, 0.36)),
    url("reboot-assets/charage-eagle-valley.png") center / cover;
}

.design-three .testimonial,
.design-three .contact-panel {
  background: #10212c;
}

.design-three .ai-note {
  border-left-color: var(--deep-blue);
}

.preview-page main,
.preview-page .section {
  background: #f6f8fb;
  color: var(--ink);
}

.preview-page .section-head h2,
.preview-page .section-head p,
.preview-page .text-panel h2,
.preview-page .text-panel h3,
.preview-page .text-panel p,
.preview-page .offer h3,
.preview-page .offer p {
  color: var(--ink);
}

.preview-page .section-head p,
.preview-page .text-panel p,
.preview-page .offer p {
  color: #4d5766;
}

.preview-page .ai-note {
  background: #eef8fc;
  border-left-color: var(--blue);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
}

.preview-page .testimonial {
  background: #10212c;
  color: white;
}

@media (max-width: 860px) {
  .switcher {
    flex-wrap: nowrap;
    justify-content: center;
    overflow-x: hidden;
    gap: 5px;
    padding-inline: 8px;
    font-size: 12px;
    letter-spacing: 0;
  }

  .switcher a {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 6px;
    text-align: center;
    white-space: nowrap;
  }

  .one-nav,
  .two-nav,
  .three-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .one-hero-grid,
  .two-hero-grid,
  .three-hero-grid,
  .two-social,
  .three-proof,
  .three-hero-art,
  .split,
  .testimonial,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .one-stack,
  .one-stats,
  .one-programs,
  .two-practices,
  .three-offers,
  .signal-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .one-hero,
  .one-hero-grid {
    min-height: auto;
  }

  .three-hero-grid {
    margin-top: 44px;
  }

  .art-main {
    min-height: 360px;
  }

  .art-scorecard {
    transform: none;
  }

  .art-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, minmax(240px, 1fr));
  }
}

@media (max-width: 520px) {
  .switcher {
    gap: 3px;
    padding: 8px 6px;
    font-size: 10px;
  }

  .switcher a {
    min-height: 34px;
    padding: 9px 2px;
  }

  .one-hero h1,
  .three-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .three-hero p {
    font-size: 18px;
  }

  .section {
    padding: 54px 18px;
  }

  .one-hero,
  .two-hero,
  .three-hero {
    padding-inline: 18px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 10px;
  }

  .tile,
  .practice-card,
  .quote-panel,
  .receipt,
  .diagnostic,
  .offer,
  .program,
  .text-panel,
  .signal,
  .testimonial,
  .faq-item,
  .contact-panel {
    padding: 22px;
  }
}
