:root {
  --ink: #10201b;
  --muted: #5d6c66;
  --paper: #f7faf8;
  --surface: #ffffff;
  --line: #dce7e1;
  --green: #0f6b57;
  --green-dark: #073a31;
  --green-soft: #e8f3ee;
  --coral: #ef5b4f;
  --gold: #d5a230;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 32, 27, 0.14);
  --soft-shadow: 0 16px 40px rgba(16, 32, 27, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1180px, calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  color: var(--white);
  transform: translateX(-50%);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border: 1px solid rgba(220, 231, 225, 0.8);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-right: 10px;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--coral);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(239, 91, 79, 0.32);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  border-radius: 8px;
  padding: 10px 13px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
  background: var(--green-soft);
}

.nav-cta {
  margin-left: 8px;
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(239, 91, 79, 0.28);
}

.nav-cta:hover {
  background: #e34e43;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 28, 23, 0.9) 0%, rgba(7, 28, 23, 0.68) 44%, rgba(7, 28, 23, 0.42) 100%),
    rgba(7, 28, 23, 0.24);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 880px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  padding: 132px 0 96px;
}

.hero-text {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffbe70;
}

h1,
h2,
h3,
p,
li,
span {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: Sora, Manrope, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.25rem, 5.1vw, 5.05rem);
  line-height: 1.03;
}

h2 {
  max-width: 820px;
  font-size: clamp(2.15rem, 4.2vw, 3.65rem);
}

h3 {
  margin: 0 0 10px;
  font-family: Sora, Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.2vw, 1.15rem);
  font-weight: 500;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(239, 91, 79, 0.28);
}

.button-primary:hover {
  background: #e34e43;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero-showcase {
  position: relative;
  min-height: 520px;
}

.dashboard-card,
.floating-card {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.dashboard-card {
  position: absolute;
  right: 0;
  top: 50%;
  width: min(480px, 100%);
  padding: 22px;
  transform: translateY(-50%);
}

.dashboard-top,
.dashboard-progress,
.dashboard-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-top strong,
.dashboard-top span,
.dashboard-list span,
.dashboard-list strong,
.floating-card strong,
.floating-card span {
  display: block;
}

.dashboard-top strong {
  font-family: Sora, Manrope, sans-serif;
  font-size: 1.16rem;
}

.dashboard-top span,
.dashboard-list span,
.dashboard-progress span,
.floating-card span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.status-pill {
  border-radius: 8px;
  padding: 8px 10px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.dashboard-stats div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 12px;
  background: var(--paper);
}

.dashboard-stats strong {
  display: block;
  color: var(--green-dark);
  font-family: Sora, Manrope, sans-serif;
  font-size: 1.55rem;
  line-height: 1;
}

.dashboard-stats span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.dashboard-progress {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 16px;
  background: var(--green-dark);
  color: var(--white);
}

.dashboard-progress span {
  color: rgba(255, 255, 255, 0.78);
}

.dashboard-progress strong {
  font-family: Sora, Manrope, sans-serif;
}

.dashboard-progress i {
  position: absolute;
  right: 16px;
  bottom: 0;
  left: 16px;
  height: 4px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--coral) 0 84%, rgba(255, 255, 255, 0.18) 84% 100%);
}

.dashboard-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.dashboard-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--surface);
}

.dashboard-list strong {
  color: var(--green-dark);
  font-size: 0.88rem;
}

.floating-card {
  position: absolute;
  width: 188px;
  padding: 16px;
}

.floating-card strong {
  color: var(--coral);
  font-family: Sora, Manrope, sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

.floating-card-top {
  top: 60px;
  left: 0;
}

.floating-card-bottom {
  right: 38px;
  bottom: 42px;
}

.section,
.intro-band,
.demo-section,
.contact-section {
  padding: clamp(72px, 9vw, 126px) clamp(20px, 5vw, 64px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-band {
  background: var(--green-dark);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr 0.95fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.intro-grid h2 {
  max-width: 760px;
}

.intro-grid p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
  font-weight: 500;
}

.section-heading {
  display: grid;
  max-width: 900px;
  gap: 10px;
  margin: 0 auto 44px;
  text-align: center;
}

.section p,
.contact-section p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.02rem;
}

.benefit-grid,
.program-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card,
.program-card,
.testimonial,
.price-card,
.contact-form,
.stats div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.benefit-card {
  min-height: 300px;
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover,
.testimonial:hover,
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefit-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
}

.benefit-card h3 {
  margin-top: 28px;
}

.benefit-card p,
.program-card p,
.method-panel p {
  margin-bottom: 0;
}

.demo-section {
  overflow: hidden;
  background: var(--green-soft);
}

.demo-grid,
.pricing-grid,
.features-grid,
.results-grid,
.contact-grid,
.split {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 86px);
  align-items: center;
}

.phone-stage {
  position: relative;
  min-height: 560px;
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 10px solid #10201b;
  border-radius: 8px;
  background: #10201b;
  box-shadow: var(--shadow);
}

.phone-main {
  top: 0;
  left: 8%;
  width: min(310px, 68vw);
  height: 560px;
}

.phone-side {
  right: 2%;
  bottom: 24px;
  width: 230px;
  height: 420px;
}

.phone-top {
  width: 86px;
  height: 20px;
  margin: 0 auto;
  border-radius: 0 0 8px 8px;
  background: #10201b;
}

.app-screen {
  display: grid;
  height: calc(100% - 20px);
  gap: 14px;
  align-content: start;
  padding: 22px;
  border-radius: 8px;
  background: var(--paper);
}

.app-screen.alt,
.app-row,
.grade-line,
.app-note {
  background: var(--surface);
}

.app-header,
.app-row,
.grade-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.app-header span,
.app-row span,
.grade-line span,
.app-note span {
  color: var(--muted);
}

.app-stat,
.app-row,
.grade-line,
.app-note {
  border-radius: 8px;
  padding: 14px;
}

.app-stat {
  padding: 22px;
  color: var(--white);
}

.app-stat-green {
  background: var(--green);
}

.app-stat span,
.app-stat strong,
.app-note span,
.app-note strong {
  display: block;
}

.app-stat strong {
  margin-top: 6px;
  font-family: Sora, Manrope, sans-serif;
  font-size: 2.6rem;
  line-height: 1;
}

.app-row,
.grade-line,
.app-note {
  border: 1px solid var(--line);
}

.pricing-section {
  background: var(--paper);
}

.pricing-grid {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
}

.price-card {
  padding: clamp(28px, 4vw, 42px);
}

.price-label {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  display: grid;
  gap: 4px;
  margin: 12px 0 28px;
}

.price span {
  color: var(--green-dark);
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(3.2rem, 7vw, 5.1rem);
  font-weight: 800;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.price-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--coral);
  content: "";
}

.testimonials-section {
  background: #f6faf7;
}

.testimonial {
  padding: 26px;
}

.testimonial p {
  margin-top: 0;
}

.testimonial strong {
  color: var(--green-dark);
}

.image-band {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: var(--white);
}

.image-band img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.image-band::after {
  position: absolute;
  inset: 0;
  background: rgba(7, 58, 49, 0.68);
  content: "";
}

.image-band-text {
  position: absolute;
  inset: auto clamp(20px, 7vw, 88px) 58px;
  z-index: 1;
  max-width: 820px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-list span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px;
  background: var(--surface);
  color: var(--green-dark);
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(16, 32, 27, 0.06);
}

.faq-section {
  background: var(--green-soft);
}

.faq-list {
  display: grid;
  max-width: 940px;
  gap: 12px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(16, 32, 27, 0.08);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px;
  color: var(--green-dark);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.stats {
  display: grid;
  gap: 14px;
}

.stats div {
  padding: 24px;
}

.stats strong {
  display: block;
  color: var(--green-dark);
  font-family: Sora, Manrope, sans-serif;
  font-size: 1.35rem;
  line-height: 1.15;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.contact-section {
  background: var(--ink);
  color: var(--white);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-note {
  display: grid;
  gap: 6px;
  max-width: 430px;
  margin-top: 34px;
  border-left: 4px solid var(--coral);
  padding-left: 18px;
}

.contact-note span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 64px);
  background: #0b1714;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.legal-page {
  background: var(--paper);
}

.legal-page .site-header {
  position: sticky;
  top: 16px;
  left: auto;
  width: min(1180px, calc(100% - 40px));
  margin: 16px auto;
  border: 1px solid rgba(220, 231, 225, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--soft-shadow);
  transform: none;
  backdrop-filter: blur(18px);
}

.legal-nav {
  display: flex;
}

.legal-hero {
  margin-top: 18px;
  padding: 86px clamp(20px, 5vw, 64px) 74px;
  background: var(--green-dark);
  color: var(--white);
}

.legal-hero h1 {
  max-width: 920px;
  font-size: clamp(2.65rem, 5vw, 4.45rem);
  line-height: 1.06;
}

.legal-hero p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.legal-section {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 64px);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.32fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.legal-summary strong {
  color: var(--green-dark);
  font-family: Sora, Manrope, sans-serif;
}

.legal-summary a {
  color: var(--coral);
  font-weight: 900;
}

.legal-summary span {
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-content article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(16, 32, 27, 0.06);
}

.legal-content h2 {
  max-width: none;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.16;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content p {
  margin: 14px 0 0;
}

.legal-content strong {
  color: var(--ink);
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.legal-content a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 126px;
  }

  .hero-showcase {
    min-height: 430px;
  }

  .dashboard-card {
    left: 0;
    right: auto;
    width: min(520px, 100%);
  }

  .floating-card-top {
    left: auto;
    right: 0;
  }

  .intro-grid,
  .demo-grid,
  .pricing-grid,
  .features-grid,
  .results-grid,
  .contact-grid,
  .split,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: static;
  }
}

@media (max-width: 860px) {
  .site-header {
    top: 14px;
    width: min(100% - 28px, 1180px);
  }

  .legal-page .site-header {
    position: relative;
    top: auto;
    width: min(100% - 28px, 1180px);
    margin: 14px auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .legal-nav a {
    padding: 9px 10px;
  }

  .legal-hero {
    margin-top: 0;
    padding-top: 58px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 18px;
  }

  .site-nav .nav-cta {
    margin: 10px;
    text-align: center;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    width: min(100% - 36px, 1180px);
    padding-bottom: 68px;
  }

  h1 {
    font-size: clamp(2.45rem, 8.4vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 7vw, 2.8rem);
  }

  .section-heading {
    text-align: left;
  }

  .benefit-grid,
  .program-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: 500px;
  }

  .phone-main {
    left: 0;
  }

  .phone-side {
    right: 0;
    width: 190px;
  }

  .feature-list,
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: min(100% - 32px, 1180px);
    padding: 112px 0 58px;
  }

  h1 {
    font-size: clamp(2.18rem, 10.2vw, 3.1rem);
  }

  .hero-showcase {
    min-height: auto;
  }

  .dashboard-card {
    position: relative;
    top: auto;
    transform: none;
  }

  .floating-card {
    position: relative;
    width: 100%;
    margin-top: 12px;
  }

  .floating-card-top,
  .floating-card-bottom {
    inset: auto;
  }

  .site-header {
    padding: 10px;
  }

  .legal-page .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-nav {
    width: 100%;
  }

  .legal-nav .nav-cta {
    margin-left: 0;
  }

  .legal-hero h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .brand {
    font-size: 0.98rem;
  }

  .phone-stage {
    min-height: 450px;
  }

  .phone-main {
    width: 255px;
    height: 450px;
  }

  .phone-side {
    display: none;
  }

  .app-screen,
  .contact-form {
    padding: 18px;
  }
}
