:root {
  color-scheme: light;
  --ink: #111816;
  --muted: #63706b;
  --paper: #f6f5f0;
  --cream: #ece7db;
  --white: #ffffff;
  --line: rgba(17, 24, 22, 0.12);
  --graphite: #17201f;
  --graphite-2: #25312f;
  --teal: #0c776e;
  --mint: #9bd7c8;
  --sage: #dce8df;
  --coral: #e76f51;
  --clay: #b96b51;
  --gold: #c7a35b;
  --blue: #5f84a2;
  --shadow: 0 28px 80px rgba(17, 24, 22, 0.16);
  --sharp: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::selection {
  color: #fff;
  background: var(--teal);
}

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

a {
  color: inherit;
}

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

.topbar {
  position: fixed;
  inset: 18px 18px auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 60px;
  padding: 0 12px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--sharp);
  color: #fff;
  background: rgba(17, 24, 22, 0.62);
  box-shadow: 0 18px 70px rgba(17, 24, 22, 0.2);
  backdrop-filter: blur(24px);
}

.brand,
nav,
.topbar-cta,
.button {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--sharp);
  color: var(--graphite);
  background: var(--mint);
}

nav {
  justify-content: center;
  gap: 24px;
}

nav a,
.topbar-cta {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

nav a:hover,
.topbar-cta:hover {
  color: #fff;
}

.topbar-cta {
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--sharp);
  color: var(--graphite);
  background: #fff;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  grid-template-rows: 1fr auto;
  gap: clamp(24px, 5vw, 72px);
  min-height: 92svh;
  padding: clamp(104px, 11vw, 138px) clamp(18px, 4vw, 58px) clamp(18px, 3vw, 30px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(120% 110% at 100% 0%, rgba(231, 111, 81, 0.78), transparent 56%),
    linear-gradient(135deg, #101817 0%, #1f2e2b 44%, #d86b53 100%);
}

.motion-field {
  position: absolute;
  inset: -12% -10%;
  z-index: -1;
  overflow: hidden;
  opacity: 0.92;
}

.motion-field::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(120deg, transparent 10%, #000 45%, transparent 92%);
}

.ribbon {
  position: absolute;
  width: 58vw;
  min-width: 640px;
  height: 118px;
  border: 2px solid rgba(255, 255, 255, 0.56);
  border-left-color: rgba(155, 215, 200, 0.82);
  border-radius: 999px;
  transform: rotate(-28deg);
  box-shadow:
    inset 0 0 42px rgba(255, 255, 255, 0.14),
    0 30px 120px rgba(231, 111, 81, 0.28);
  animation: ribbonDrift 9s ease-in-out infinite alternate;
}

.ribbon-a {
  top: 7%;
  right: -10%;
}

.ribbon-b {
  top: 23%;
  right: -6%;
  width: 66vw;
  animation-delay: -1.8s;
}

.ribbon-c {
  top: 44%;
  right: 2%;
  width: 72vw;
  border-color: rgba(255, 255, 255, 0.38);
  border-left-color: rgba(199, 163, 91, 0.72);
  animation-delay: -3.2s;
}

.ribbon-d {
  top: 65%;
  right: 12%;
  width: 52vw;
  border-color: rgba(255, 255, 255, 0.28);
  border-left-color: rgba(95, 132, 162, 0.7);
  animation-delay: -5s;
}

@keyframes ribbonDrift {
  from {
    transform: rotate(-28deg) translate3d(0, 0, 0);
  }
  to {
    transform: rotate(-25deg) translate3d(-26px, 18px, 0);
  }
}

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

.eyebrow {
  margin-bottom: 14px;
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 24px;
  max-width: 850px;
  font-size: clamp(3.7rem, 6.6vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.55rem, 6vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  line-height: 1.1;
}

.lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.58;
}

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

.button {
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--sharp);
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: var(--graphite);
  background: var(--mint);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

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

.hero-product {
  position: relative;
  align-self: center;
  min-height: min(52svh, 560px);
  perspective: 1400px;
}

.device,
.floating-card,
.studio-panel,
.studio-browser,
.lead-ticket,
.handoff-card,
.conversion-strip,
.mockup-card,
.calculator-box {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--sharp);
  box-shadow: var(--shadow);
}

.main-device {
  position: absolute;
  inset: 5% 5% auto auto;
  width: min(620px, 88%);
  min-height: 400px;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  transform: rotateY(-18deg) rotateX(8deg) rotateZ(-2deg);
  transform-origin: center;
  backdrop-filter: blur(20px);
}

.device-bar,
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
}

.device-bar span,
.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--clay);
}

.device-bar span:nth-child(2),
.browser-bar span:nth-child(2) {
  background: var(--gold);
}

.device-bar span:nth-child(3),
.browser-bar span:nth-child(3) {
  background: var(--teal);
}

.site-preview {
  padding: 18px;
}

.preview-hero {
  min-height: 220px;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(17, 24, 22, 0.1), rgba(17, 24, 22, 0.72)),
    url("assets/clinicgreet-hero.jpg") center / cover;
  border-radius: var(--sharp);
}

.preview-hero span,
.canvas-copy span,
.mockup-card span,
.handoff-card span,
.queue-pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: var(--sharp);
  color: var(--graphite);
  background: var(--mint);
  font-size: 0.75rem;
  font-weight: 900;
}

.preview-hero strong {
  display: block;
  max-width: 360px;
  margin-top: 58px;
  font-size: 2.1rem;
  line-height: 0.98;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 10px;
  margin-top: 12px;
}

.preview-grid div {
  height: 60px;
  border-radius: var(--sharp);
  background: var(--sage);
}

.preview-grid div:nth-child(2) {
  background: #f3d9ca;
}

.preview-grid div:nth-child(3) {
  background: #d8e3ea;
}

.floating-card {
  position: absolute;
  width: min(250px, 44%);
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.floating-card p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.floating-card strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.12;
}

.call-card {
  left: 0;
  top: 18%;
}

.route-card {
  right: 2%;
  bottom: 15%;
}

.value-card {
  left: 12%;
  bottom: 2%;
}

.pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(12, 119, 110, 0.38);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 14px rgba(12, 119, 110, 0);
  }
}

.hero-footer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 0.82fr);
  gap: 28px;
  align-items: end;
  margin-top: clamp(12px, 2vw, 24px);
  color: rgba(255, 255, 255, 0.78);
}

.hero-footer > span {
  max-width: 540px;
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-footer dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--sharp);
  background: rgba(255, 255, 255, 0.12);
}

.hero-footer div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-footer dt {
  color: #fff;
  font-size: 1.48rem;
  font-weight: 950;
}

.hero-footer dd {
  margin: 2px 0 0;
  font-size: 0.82rem;
}

.studio,
.scroll-story,
.calculator {
  padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 58px);
}

.section-kicker {
  max-width: 980px;
  margin-bottom: 40px;
}

.studio .eyebrow,
.scroll-story .eyebrow,
.calculator .eyebrow,
.pilot .eyebrow {
  color: var(--clay);
}

.section-kicker p:not(.eyebrow),
.studio-panel p,
.story-step p,
.dark-copy p,
.calculator-copy p,
.pilot-content p,
.footer p {
  color: var(--muted);
  line-height: 1.62;
}

.studio-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(180px, auto);
  gap: 14px;
}

.studio-panel {
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
}

.identity-panel {
  grid-column: span 2;
  background: #f5dfd0;
}

.capture-panel {
  grid-column: span 2;
  background: #d8e6de;
}

.safety-panel {
  grid-column: span 2;
  background: #d8e1e8;
}

.panel-number {
  display: block;
  margin-bottom: 56px;
  color: rgba(17, 24, 22, 0.46);
  font-weight: 950;
}

.studio-browser {
  grid-column: 1 / -1;
  overflow: hidden;
  background: var(--graphite);
}

.browser-bar {
  color: rgba(255, 255, 255, 0.64);
}

.browser-bar p {
  margin: 0 0 0 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

.browser-canvas {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.58fr);
  min-height: 470px;
}

.browser-canvas img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.canvas-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 4vw, 54px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(155, 215, 200, 0.2), transparent 45%),
    var(--graphite-2);
}

.canvas-copy strong {
  max-width: 520px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.96;
}

.scroll-story {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
  background: var(--cream);
}

.story-visual {
  position: sticky;
  top: 104px;
  min-height: calc(100svh - 132px);
  display: grid;
  place-items: center;
}

.capture-stage {
  position: relative;
  width: min(100%, 620px);
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 22, 0.12);
  border-radius: var(--sharp);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.22)),
    repeating-linear-gradient(90deg, rgba(17, 24, 22, 0.04) 0 1px, transparent 1px 70px),
    var(--sage);
  box-shadow: var(--shadow);
}

.queue-column {
  position: absolute;
  left: 26px;
  top: 26px;
  display: grid;
  gap: 12px;
  width: min(310px, calc(100% - 52px));
}

.queue-pill {
  margin-bottom: 2px;
}

.lead-ticket {
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.lead-ticket small {
  display: block;
  margin-bottom: 8px;
  color: var(--clay);
  font-weight: 900;
}

.lead-ticket strong {
  display: block;
  margin-bottom: 6px;
}

.lead-ticket p,
.handoff-card li {
  margin: 0;
  color: var(--muted);
}

.handoff-card {
  position: absolute;
  right: 24px;
  bottom: 98px;
  width: min(330px, calc(100% - 48px));
  padding: 20px;
  background: var(--graphite);
  color: #fff;
  transition: transform 0.5s ease;
}

.handoff-card strong {
  display: block;
  margin-bottom: 16px;
  font-size: 1.5rem;
  line-height: 1.05;
}

.handoff-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.conversion-strip {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 0.5fr 0.8fr 1.1fr auto;
  gap: 8px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.84);
}

.conversion-strip span {
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
}

.conversion-strip span:nth-child(2) {
  background: var(--gold);
}

.conversion-strip span:nth-child(3) {
  background: var(--coral);
}

.conversion-strip strong {
  font-size: 0.82rem;
}

.capture-stage[data-current-scene="1"] .ticket-a {
  transform: translateX(26px) scale(1.04);
}

.capture-stage[data-current-scene="1"] .ticket-b {
  transform: translateX(64px) scale(1.08);
}

.capture-stage[data-current-scene="2"] .handoff-card {
  transform: translateY(-36px) scale(1.04);
}

.capture-stage[data-current-scene="2"] .ticket-c {
  transform: translateX(48px);
}

.story-copy {
  display: grid;
  gap: 22px;
}

.story-step {
  min-height: 46svh;
  padding: clamp(24px, 3vw, 34px) 0;
  border-top: 1px solid rgba(17, 24, 22, 0.16);
  opacity: 0.54;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.story-step.is-active {
  opacity: 1;
  transform: translateX(10px);
}

.story-step span {
  display: block;
  margin-bottom: 28px;
  color: var(--clay);
  font-size: 3rem;
  font-weight: 950;
}

.story-step h3 {
  max-width: 670px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.96;
}

.story-step p {
  max-width: 620px;
  font-size: 1.05rem;
}

.dark-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  min-height: 90svh;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 58px);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(12, 119, 110, 0.24), transparent 48%),
    var(--graphite);
}

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

.dark-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.mockup-stack {
  position: relative;
  min-height: 560px;
}

.mockup-card {
  position: absolute;
  padding: clamp(20px, 3vw, 32px);
  color: var(--ink);
  background: #fff;
}

.mockup-card span {
  background: var(--sage);
}

.mockup-card strong {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  line-height: 1;
}

.mockup-card.large {
  top: 0;
  left: 0;
  width: min(460px, 82%);
  min-height: 310px;
  background: #f4dfd1;
}

.mockup-card.medium {
  right: 0;
  top: 170px;
  width: min(420px, 78%);
  min-height: 250px;
  background: #dce8df;
}

.mockup-card.small {
  left: 14%;
  bottom: 0;
  width: min(360px, 74%);
  min-height: 190px;
  background: #d9e3ea;
}

.calculator {
  background: var(--paper);
}

.calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(420px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.calculator-copy {
  max-width: 480px;
}

.calculator-copy p {
  font-size: 1.05rem;
}

.calculator-copy .button {
  margin-top: 18px;
}

.calculator-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
}

label {
  display: grid;
  gap: 9px;
  color: var(--graphite);
  font-size: 0.92rem;
  font-weight: 900;
}

input {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--sharp);
  color: var(--ink);
  background: #fff;
  font: inherit;
}

input[type="range"] {
  padding: 0;
  accent-color: var(--teal);
}

#recoveryLabel {
  color: var(--muted);
}

output {
  grid-column: 1 / -1;
  display: block;
  color: var(--teal);
  font-size: clamp(3.1rem, 7vw, 6rem);
  font-weight: 950;
  line-height: 0.9;
}

.calculator-box > p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.pilot {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 58px);
  color: #fff;
  background:
    linear-gradient(110deg, rgba(231, 111, 81, 0.8), transparent 52%),
    var(--graphite-2);
}

.pilot-marquee {
  position: absolute;
  top: 24px;
  left: 0;
  display: flex;
  gap: 34px;
  color: rgba(255, 255, 255, 0.12);
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 950;
  line-height: 0.82;
  white-space: nowrap;
  transform: translateX(var(--marquee-offset, 0));
  pointer-events: none;
}

.pilot-content {
  position: relative;
  max-width: 980px;
  padding-top: clamp(120px, 18vw, 220px);
}

.pilot-content .eyebrow {
  color: var(--mint);
}

.pilot-content p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}

.footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(18px, 4vw, 58px);
  color: rgba(255, 255, 255, 0.72);
  background: #101817;
}

.footer strong,
.footer a {
  color: #fff;
}

.footer p {
  margin: 0;
}

.footer a {
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1060px) {
  .hero,
  .hero-footer,
  .scroll-story,
  .dark-band,
  .calculator-shell,
  .browser-canvas,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-product {
    min-height: 560px;
  }

  .story-visual {
    position: relative;
    top: 0;
    min-height: 0;
  }

  .story-step {
    min-height: auto;
  }

  .studio-board {
    grid-template-columns: 1fr;
  }

  .identity-panel,
  .capture-panel,
  .safety-panel,
  .studio-browser {
    grid-column: auto;
  }

  .browser-canvas {
    min-height: 0;
  }

  .browser-canvas img {
    max-height: 420px;
  }
}

@media (max-width: 720px) {
  .topbar {
    inset: 10px 10px auto;
    grid-template-columns: 1fr auto;
    min-height: 56px;
  }

  nav {
    display: none;
  }

  .topbar-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 92px;
    min-height: 0;
  }

  h1 {
    font-size: clamp(3.45rem, 18vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.4rem, 12vw, 4.1rem);
  }

  .hero-product {
    min-height: 380px;
  }

  .main-device {
    inset: 24px auto auto 0;
    width: 94%;
    min-height: 300px;
    transform: rotateY(-8deg) rotateX(4deg) rotateZ(-1deg);
  }

  .preview-hero {
    min-height: 160px;
  }

  .preview-hero strong {
    margin-top: 46px;
    font-size: 1.22rem;
  }

  .preview-grid div {
    height: 42px;
  }

  .floating-card {
    width: min(255px, 76%);
    padding: 12px;
  }

  .call-card {
    top: 0;
  }

  .route-card {
    bottom: 4px;
  }

  .value-card {
    display: none;
  }

  .hero-footer {
    display: none;
  }

  .hero-footer dl,
  .calculator-box {
    grid-template-columns: 1fr;
  }

  .studio-panel {
    min-height: 0;
  }

  .panel-number {
    margin-bottom: 32px;
  }

  .capture-stage {
    min-height: 560px;
  }

  .handoff-card {
    right: 16px;
    bottom: 86px;
  }

  .conversion-strip {
    left: 16px;
    right: 16px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .conversion-strip strong {
    grid-column: 1 / -1;
  }

  .mockup-stack {
    min-height: 620px;
  }

  .mockup-card.large,
  .mockup-card.medium,
  .mockup-card.small {
    width: 88%;
  }

  .pilot-actions,
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
