:root {
  --black: #050505;
  --ink: #111111;
  --paper: #f6f5f2;
  --white: #ffffff;
  --soft-white: #deded9;
  --line: #d8d7d2;
  --dark-line: #2d2d2d;
  --coral: #f25b43;
  --coral-dark: #d94530;
  --ice: #91d7e8;
  --muted: #6c6c69;
  --page-pad: clamp(20px, 5vw, 72px);
  --section-space: clamp(88px, 11vw, 156px);
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--black);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 78px;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  transition:
    background-color 180ms ease,
    height 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  height: 68px;
  background: rgba(5, 5, 5, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand > span {
  font-family: "DM Sans", ui-sans-serif, sans-serif;
  transform: translateX(-2px);
}

.brand-mark {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a,
.header-cta {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  color: var(--coral);
}

.header-cta {
  justify-self: end;
  font-size: 13px;
  font-weight: 700;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: min(900px, 94svh);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/varick-telehealth-source.jpg");
  background-position: 58% center;
  background-size: cover;
  filter: saturate(0.55) contrast(1.12) brightness(0.72);
  transform: scale(1.01);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.96) 27%, rgba(5, 5, 5, 0.56) 58%, rgba(5, 5, 5, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.58) 0%, transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(900px, 94svh);
  width: min(770px, 68vw);
  padding: 96px var(--page-pad) 150px;
}

.eyebrow {
  margin-bottom: 26px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--coral-dark);
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 32px;
  font-size: clamp(60px, 6.6vw, 102px);
  font-weight: 560;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 625px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 750;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

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

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

.button-light:hover,
.button-light:focus-visible {
  background: var(--coral);
  color: var(--black);
}

.button-coral {
  width: 100%;
  background: var(--coral);
  color: var(--black);
}

.button-coral:hover,
.button-coral:focus-visible {
  background: var(--white);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--coral);
  border-color: var(--coral);
}

.hero-proof {
  position: absolute;
  right: var(--page-pad);
  bottom: 0;
  left: var(--page-pad);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 112px;
  padding: 26px 28px 24px 0;
}

.hero-proof div + div {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-proof strong {
  font-size: 19px;
  font-weight: 650;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.statement {
  padding: var(--section-space) 0;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(64px, 10vw, 160px);
  align-items: start;
}

.section-intro h2,
.section-heading h2,
.standards-copy h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 540;
  line-height: 1.02;
  letter-spacing: 0;
}

.statement-copy {
  padding-top: 44px;
}

.statement-copy p {
  font-size: 19px;
  line-height: 1.65;
}

.statement-copy .statement-accent {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  color: var(--coral-dark);
  font-weight: 700;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(80px, 10vw, 144px);
}

.capability {
  min-height: 320px;
  padding: 28px 28px 36px;
  border-top: 1px solid var(--ink);
}

.capability + .capability {
  border-left: 1px solid var(--line);
}

.capability-number {
  display: block;
  margin-bottom: 100px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
}

.capability h3 {
  margin-bottom: 16px;
  font-size: 21px;
  font-weight: 700;
}

.capability p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.care-path,
.estimator,
.launch,
.contact {
  padding: var(--section-space) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.55fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: end;
  margin-bottom: clamp(70px, 8vw, 112px);
}

.section-heading > p {
  margin: 0;
  color: #9b9b98;
  font-size: 17px;
  line-height: 1.6;
}

.path-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
  list-style: none;
}

.path-item {
  position: relative;
  min-height: 288px;
  padding: 30px;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.path-item::after {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.path-index {
  display: block;
  margin-bottom: 92px;
  color: var(--ice);
  font-size: 12px;
  font-weight: 800;
}

.path-item strong {
  display: block;
  margin-bottom: 14px;
  font-size: 20px;
}

.path-item p {
  max-width: 330px;
  margin: 0;
  color: #8f8f8c;
  font-size: 15px;
  line-height: 1.55;
}

.estimator-heading {
  margin-bottom: 72px;
}

.estimator-dark .section-heading > p {
  color: #8c8c89;
}

.drug-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}

.drug-tabs::-webkit-scrollbar {
  display: none;
}

.drug-tab {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid #393937;
  border-radius: 4px;
  background: transparent;
  color: #898986;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.drug-tab:hover,
.drug-tab:focus-visible {
  border-color: #747471;
  color: var(--white);
}

.drug-tab[aria-selected="true"] {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.single-estimator-card {
  overflow: hidden;
  border: 1px solid #373735;
  border-radius: 8px;
  background: #111110;
}

.drug-card-top {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(560px, 1.25fr);
  gap: 50px;
  align-items: start;
  min-height: 300px;
  padding: clamp(38px, 5vw, 72px);
  border-bottom: 1px solid #30302e;
}

.selected-drug {
  min-width: 0;
}

.drug-category {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 28px;
  padding: 0 14px;
  border: 1px solid rgba(242, 91, 67, 0.42);
  border-radius: 3px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selected-drug h3 {
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 400;
  line-height: 1;
}

.selected-drug p {
  margin: 0;
  color: #747471;
  font-size: 20px;
  font-style: italic;
}

.drug-stat-grid {
  display: grid;
  grid-template-columns: 0.62fr 0.85fr 1.55fr;
  gap: 14px;
}

.drug-stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 128px;
  padding: 24px;
  border: 1px solid #3d3d3b;
  border-radius: 6px;
  background: #191918;
}

.drug-stat strong {
  font-size: 22px;
  line-height: 1.35;
}

.drug-stat span {
  color: #767673;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drug-indication strong {
  font-size: 17px;
}

.patient-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(50px, 8vw, 120px);
  padding: clamp(42px, 6vw, 80px);
}

.patient-control {
  align-self: center;
}

.output-label {
  margin-bottom: 26px;
  color: #858582;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.patient-stepper {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 42px;
}

.patient-stepper button {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid #4c4c49;
  border-radius: 4px;
  background: #1a1a19;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  transition:
    background-color 140ms ease,
    color 140ms ease;
}

.patient-stepper button:hover,
.patient-stepper button:focus-visible {
  background: var(--white);
  color: var(--black);
}

.patient-stepper output {
  display: grid;
  place-items: center;
  width: 88px;
  height: 58px;
  border: 1px solid #5a5a57;
  border-radius: 4px;
  font-size: 28px;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

.patient-stepper span {
  margin-left: 4px;
  color: #747471;
  font-size: 16px;
}

input[type="range"] {
  width: 100%;
  height: 4px;
  border-radius: 0;
  outline: none;
  background: #454543;
  accent-color: var(--white);
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  border: 4px solid var(--black);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 1px var(--white);
  -webkit-appearance: none;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
}

.revenue-result {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-left: clamp(0px, 3vw, 50px);
  border-left: 1px solid #30302e;
}

.output-value {
  margin-bottom: 18px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 7vw, 112px);
  font-weight: 400;
  line-height: 0.92;
  font-variant-numeric: tabular-nums;
}

.result-context {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 42px;
  color: #777774;
  font-size: 13px;
}

.result-action {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.estimator-note {
  max-width: 1100px;
  margin: 24px 0 0;
  color: #656562;
  font-size: 11px;
  line-height: 1.6;
}

.standards {
  padding: var(--section-space) 0;
  background: var(--ice);
}

.standards-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: end;
}

.standards-copy p:last-child {
  max-width: 720px;
  margin: 38px 0 0;
  font-size: 18px;
  line-height: 1.65;
}

.standards-facts {
  border-top: 1px solid var(--ink);
}

.standards-facts div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 26px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.3);
}

.standards-facts strong {
  font-size: 19px;
}

.standards-facts span {
  font-size: 14px;
  line-height: 1.5;
}

.launch-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
}

.launch-phase {
  min-height: 340px;
  padding: 28px 28px 34px;
}

.launch-phase + .launch-phase {
  border-left: 1px solid var(--line);
}

.phase-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  min-height: 105px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.phase-top strong {
  color: var(--coral-dark);
}

.launch-phase h3 {
  margin-bottom: 16px;
  font-size: 34px;
  font-weight: 560;
}

.launch-phase p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.contact {
  border-bottom: 1px solid var(--dark-line);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.5fr);
  gap: clamp(70px, 12vw, 190px);
  align-items: end;
}

.contact-action p {
  margin-bottom: 32px;
  color: #969693;
  font-size: 17px;
  line-height: 1.6;
}

.site-footer {
  padding: 42px var(--page-pad);
  background: var(--black);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100%, calc(var(--max-width) - 2 * var(--page-pad)));
  margin: 0 auto;
}

.footer-inner p {
  margin: 0;
  color: #777773;
  font-size: 12px;
}

.footer-inner p:last-child {
  justify-self: end;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    gap: 6px;
    justify-self: end;
    width: 44px;
    height: 44px;
    padding: 13px 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    min-height: calc(100svh - 68px);
    padding: 42px var(--page-pad);
    background: var(--black);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 180ms ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 20px 0;
    border-bottom: 1px solid var(--dark-line);
    font-size: 24px;
    font-weight: 600;
  }

  .hero-inner {
    width: 76vw;
  }

  .statement-grid,
  .section-heading,
  .standards-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .statement-copy {
    max-width: 760px;
    padding-top: 0;
  }

  .capability-grid,
  .launch-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability:nth-child(3),
  .launch-phase:nth-child(3) {
    border-left: 0;
  }

  .path-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .drug-card-top,
  .patient-panel {
    grid-template-columns: 1fr;
  }

  .drug-card-top {
    min-height: 0;
  }

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

  .revenue-result {
    padding-top: 42px;
    padding-left: 0;
    border-top: 1px solid #30302e;
    border-left: 0;
  }

  .result-action {
    justify-content: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-inner p:last-child {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  :root {
    --page-pad: 20px;
    --section-space: 84px;
  }

  .site-header {
    height: 66px;
  }

  .site-header.is-scrolled,
  .site-header.is-open {
    height: 62px;
  }

  .mobile-nav {
    top: 62px;
    min-height: calc(100svh - 62px);
  }

  .hero {
    min-height: 820px;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.88) 48%, rgba(5, 5, 5, 0.38) 100%),
      linear-gradient(0deg, rgba(5, 5, 5, 0.62) 0%, transparent 45%);
  }

  .hero-inner {
    justify-content: flex-start;
    min-height: 820px;
    width: 100%;
    padding-top: 148px;
    padding-bottom: 230px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(54px, 17vw, 76px);
  }

  .hero-copy {
    max-width: 520px;
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-proof {
    right: 20px;
    left: 20px;
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    display: grid;
    grid-template-columns: minmax(120px, 0.7fr) 1fr;
    align-items: center;
    min-height: 54px;
    padding: 14px 0;
  }

  .hero-proof div + div {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .hero-proof strong {
    font-size: 14px;
  }

  .hero-proof span {
    font-size: 11px;
  }

  .section-intro h2,
  .section-heading h2,
  .standards-copy h2,
  .contact h2 {
    font-size: 42px;
  }

  .capability-grid,
  .path-list,
  .launch-track {
    grid-template-columns: 1fr;
  }

  .capability {
    min-height: 0;
    padding: 24px 0 38px;
    border-top: 1px solid var(--line);
    border-left: 0 !important;
  }

  .capability-number {
    margin-bottom: 54px;
  }

  .path-list {
    border-left: 0;
  }

  .path-item {
    min-height: 240px;
    padding: 26px 0;
    border-right: 0;
  }

  .path-item::after {
    right: 4px;
  }

  .path-index {
    margin-bottom: 64px;
  }

  .drug-tabs {
    margin-right: -20px;
    padding-bottom: 3px;
  }

  .drug-tab {
    min-height: 44px;
    padding: 0 18px;
  }

  .single-estimator-card {
    margin: 0 -4px;
  }

  .drug-card-top {
    gap: 34px;
    padding: 30px 22px;
  }

  .selected-drug h3 {
    font-size: 48px;
  }

  .drug-stat-grid {
    grid-template-columns: 1fr;
  }

  .drug-stat {
    min-height: 92px;
    padding: 18px;
  }

  .patient-panel {
    padding: 32px 22px 34px;
  }

  .patient-stepper {
    flex-wrap: wrap;
    margin-bottom: 34px;
  }

  .patient-stepper output {
    width: 74px;
  }

  .output-value {
    font-size: 58px;
  }

  .result-action .button {
    width: 100%;
  }

  .standards-facts div {
    grid-template-columns: 85px 1fr;
  }

  .launch-phase {
    min-height: 0;
    padding: 26px 0 40px;
    border-left: 0 !important;
  }

  .launch-phase + .launch-phase {
    border-top: 1px solid var(--line);
  }

  .phase-top {
    min-height: 75px;
  }

  .contact .button {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .hero h1,
  .section-intro h2,
  .section-heading h2,
  .standards-copy h2,
  .contact h2 {
    overflow-wrap: anywhere;
  }

  .button {
    width: 100%;
  }

  .output-value {
    font-size: 50px;
  }
}
