@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");

:root {
  --ink: #1a1a1a;
  --lime: #b0ef40;
  --paper: #f0f0ea;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.16);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  overflow-x: hidden;
  overflow-x: clip;
}

main {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 78px;
  padding: 10px clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: rgba(26, 26, 26, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: 0.02em;
}

.brand-lockup {
  display: block;
  width: clamp(150px, 14vw, 188px);
  height: auto;
}

.brand-lockup-footer {
  width: 198px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header nav a {
  transition: color 180ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--lime);
}

.button {
  min-height: 54px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--lime);
  color: var(--ink);
  border: 2px solid var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  background: var(--white);
  border-color: var(--white);
}

.button-small {
  flex-shrink: 0;
  min-height: 42px;
  padding: 0 20px;
  font-size: 11px;
  white-space: nowrap;
}

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

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.hero {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: calc(100svh - 78px);
  padding: clamp(58px, 7vw, 112px) clamp(20px, 4vw, 64px)
    clamp(70px, 8vw, 120px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: clamp(42px, 7vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 84% 20%,
      rgba(176, 239, 64, 0.12),
      transparent 26%
    ),
    linear-gradient(145deg, #131313 0%, #1a1a1a 56%, #202020 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 44vw;
  height: 44vw;
  min-width: 460px;
  min-height: 460px;
  right: -18vw;
  top: -18vw;
  border: 80px solid rgba(176, 239, 64, 0.09);
  transform: rotate(32deg);
}

.hero-watermark {
  position: absolute;
  left: -1vw;
  bottom: -7vw;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--display);
  font-size: 42vw;
  line-height: 0.72;
  letter-spacing: -0.05em;
  pointer-events: none;
}

.hero-copy,
.trial-card {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 36px;
  height: 4px;
  background: currentColor;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 930px;
  color: var(--white);
  font-family: "Anton", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(70px, 10.5vw, 168px);
  line-height: 0.94;
  
}

.hero h1 em {
  color: var(--lime);
  font-style: normal;
}

.hero-intro {
  max-width: 590px;
  margin: 36px 0 0;
  color: #c6c6c0;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
}

.trial-card {
  align-self: center;
  background: var(--lime);
  color: var(--ink);
  transform: rotate(1.5deg);
  box-shadow: 22px 22px 0 rgba(0, 0, 0, 0.28);
}

.trial-card-top {
  min-height: 220px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--white);
}

.trial-card-top img {
  width: 150px;
  height: 138px;
  object-fit: contain;
}

.stamp {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.trial-card-content {
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trial-card-content p {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trial-card-content strong {
  margin: 2px 0 12px;
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 78px);
  line-height: 0.95;
  text-transform: uppercase;
}

.trial-card-content > span {
  max-width: 320px;
  margin-bottom: 26px;
  font-size: 14px;
  line-height: 1.45;
}

.ticker {
  padding: 17px 0;
  overflow: hidden;
  background: var(--lime);
  color: var(--ink);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.ticker > div {
  width: max-content;
  min-width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 28px;
  padding: 0 30px;
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 42px);
  text-transform: uppercase;
}

.ticker i {
  font-family: var(--body);
  font-style: normal;
}

.section {
  width: 100%;
  min-width: 0;
  padding: clamp(84px, 10vw, 150px) clamp(20px, 6vw, 96px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: clamp(40px, 7vw, 110px);
}

.section-heading > *,
.community-copy,
.location-copy {
  min-width: 0;
}

.section-heading h2,
.community-copy h2,
.location-copy h2 {
  max-width: 880px;
  color: var(--white);
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.88;
  letter-spacing: -0.025em;
}

.section-heading > p,
.community-copy > p {
  color: #aaa9a3;
  font-size: 18px;
  line-height: 1.6;
}

.program-grid {
  margin-top: clamp(55px, 7vw, 100px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.program-card {
  min-height: 270px;
  padding: clamp(25px, 3vw, 44px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 26px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease, color 200ms ease;
}

.program-card:hover {
  background: var(--lime);
  color: var(--ink);
}

.program-number {
  color: var(--lime);
  font-family: var(--display);
  font-size: 18px;
}

.program-card:hover .program-number {
  color: var(--ink);
}

.program-card h3 {
  margin: 42px 0 16px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.9;
  text-transform: uppercase;
}

.program-card:hover h3 {
  color: var(--ink);
}

.program-card p {
  max-width: 420px;
  margin: 0;
  color: #aaa9a3;
  font-size: 15px;
  line-height: 1.55;
}

.program-card:hover p {
  color: var(--ink);
}

.community {
  min-height: auto;
  background: var(--paper);
  color: var(--ink);
}

.community-copy {
  width: min(100%, 940px);
  margin: 0 auto;
}

.community-copy .eyebrow,
.location-copy .eyebrow {
  color: var(--ink);
}

.community-copy h2,
.location-copy h2 {
  color: var(--ink);
}

.community-copy > p {
  max-width: 620px;
  margin: 30px 0 50px;
  color: #494944;
}

.community-points {
  border-top: 1px solid rgba(26, 26, 26, 0.2);
}

.community-points > div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.community-points strong {
  color: #777770;
}

.schedule {
  background: #101010;
}

.schedule-heading > p {
  margin-bottom: 0;
}

.schedule-wrap {
  width: 100%;
  max-width: 100%;
  margin-top: clamp(55px, 7vw, 92px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
}

.schedule table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  table-layout: fixed;
}

.schedule th,
.schedule td {
  padding: 16px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.schedule thead th {
  height: 58px;
  background: var(--lime);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.schedule th:first-child {
  width: 82px;
}

.schedule tbody th {
  color: var(--lime);
  font-family: var(--display);
  font-size: 22px;
}

.schedule tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.025);
}

.schedule td {
  height: 84px;
}

.class-tag {
  display: block;
  width: max-content;
  margin: 3px 0;
  padding: 5px 7px;
  background: var(--white);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.class-tag + .class-tag {
  background: var(--lime);
}

.empty {
  color: #555;
}

.schedule-button {
  margin-top: 34px;
}

.booking {
  background: var(--lime);
  color: var(--ink);
}

.booking-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: clamp(40px, 7vw, 110px);
}

.booking-heading > * {
  min-width: 0;
}

.booking .eyebrow {
  color: var(--ink);
}

.booking h2 {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.88;
  letter-spacing: -0.025em;
}

.booking-heading > p {
  margin: 0;
  color: #363631;
  font-size: 18px;
  line-height: 1.6;
}

.booking-options {
  margin-top: clamp(52px, 7vw, 92px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.booking-option {
  min-width: 0;
  min-height: 300px;
  padding: clamp(24px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 54px;
  background: var(--paper);
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.booking-option:hover,
.booking-option:focus-visible {
  position: relative;
  z-index: 2;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-6px);
  outline: none;
}

.booking-platform {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--lime);
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.04em;
}

.booking-option:hover .booking-platform,
.booking-option:focus-visible .booking-platform {
  background: var(--lime);
  color: var(--ink);
}

.booking-option-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.booking-option-copy small {
  margin-bottom: 8px;
  color: #696962;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-option:hover small,
.booking-option:focus-visible small {
  color: var(--lime);
}

.booking-option-copy strong {
  max-width: 330px;
  font-family: var(--display);
  font-size: clamp(34px, 3.3vw, 54px);
  line-height: 0.92;
  text-transform: uppercase;
}

.booking-option-copy > span {
  margin-top: 14px;
  color: #696962;
  font-size: 13px;
  line-height: 1.4;
}

.booking-option:hover .booking-option-copy > span,
.booking-option:focus-visible .booking-option-copy > span {
  color: #c9c9c3;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  background: var(--paper);
  color: var(--ink);
}

.location > * {
  min-width: 0;
}

.location-copy address {
  margin: 42px 0 34px;
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 58px);
  font-style: normal;
  line-height: 1;
  text-transform: uppercase;
}

.location-copy address span {
  display: block;
  margin-top: 9px;
  color: #75756f;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-links a {
  padding: 14px 17px;
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.location-poster {
  position: relative;
  min-height: 620px;
  padding: clamp(28px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.street-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(
      28deg,
      transparent 44%,
      var(--lime) 45%,
      var(--lime) 47%,
      transparent 48%
    ),
    linear-gradient(
      104deg,
      transparent 45%,
      var(--white) 46%,
      var(--white) 47%,
      transparent 48%
    );
  background-size: 180px 170px, 240px 220px;
  transform: scale(1.25) rotate(-6deg);
}

.map-pin {
  position: absolute;
  right: 14%;
  top: 14%;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  background: var(--lime);
  border: 10px solid var(--white);
  border-radius: 50%;
  box-shadow: 14px 14px 0 rgba(176, 239, 64, 0.28);
}

.map-pin::after {
  content: "";
  width: 28px;
  height: 28px;
  background: var(--ink);
  border: 8px solid var(--white);
  border-radius: 50%;
}

.location-poster p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--lime);
  font-family: var(--display);
  font-size: clamp(54px, 7vw, 112px);
  line-height: 0.82;
}

.location-poster > span {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.final-cta {
  width: 100%;
  min-width: 0;
  padding: clamp(82px, 9vw, 140px) clamp(20px, 6vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: clamp(50px, 8vw, 130px);
  background: var(--lime);
  color: var(--ink);
}

.final-cta .eyebrow {
  color: var(--ink);
}

.final-cta h2 {
  font-size: clamp(70px, 10vw, 156px);
  line-height: 0.8;
}

.final-cta > div:last-child p {
  max-width: 440px;
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.55;
}

footer {
  width: 100%;
  min-width: 0;
  padding: 54px clamp(20px, 4vw, 64px) 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  border-top: 1px solid var(--line);
  background: #0e0e0e;
}

.brand-footer {
  font-size: 46px;
}

footer > p {
  grid-column: 1;
  margin: 0;
  color: #888881;
  font-size: 14px;
  text-transform: uppercase;
}

footer > div {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

footer > div a:hover,
footer > div a:focus-visible {
  color: var(--lime);
}

footer small {
  grid-column: 1 / -1;
  padding-top: 26px;
  color: #666660;
  border-top: 1px solid var(--line);
  font-size: 11px;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  min-height: 58px;
  padding: 7px 8px 7px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease;
  max-width: calc(100vw - 32px);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-4px);
}

.whatsapp-float strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--lime);
  border-radius: 50%;
  font-size: 12px;
}

@media (max-width: 980px) {
  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero h1 {
    font-size: clamp(68px, 17vw, 138px);
  }

  .trial-card {
    width: min(100%, 520px);
    justify-self: end;
  }

  .section-heading,
  .booking-heading,
  .location,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .location-copy {
    max-width: 700px;
  }

  .final-cta > div:last-child {
    max-width: 520px;
  }

  .booking-options {
    grid-template-columns: 1fr;
  }

  .booking-option {
    min-height: 230px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding: 8px 16px;
    gap: 12px;
  }

  .brand {
    gap: 8px;
    font-size: 25px;
  }

  .brand-lockup {
    width: 122px;
  }

  .button-small {
    min-height: 40px;
    padding: 0 14px;
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    padding: 52px 20px 72px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(56px, 19vw, 86px);
    line-height: 0.94;
  }

  .hero-intro {
    margin-top: 28px;
  }

  .trial-card {
    width: calc(100% - 10px);
    justify-self: start;
    transform: none;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.3);
  }

  .trial-card-top {
    min-height: 170px;
    padding: 22px;
  }

  .trial-card-top img {
    width: 118px;
    height: 109px;
  }

  .stamp {
    width: 76px;
    height: 76px;
    font-size: 9px;
  }

  .trial-card-content {
    padding: 28px 22px;
  }

  .ticker > div {
    justify-content: flex-start;
  }

  .ticker > div span:nth-of-type(n + 4),
  .ticker > div i:nth-of-type(n + 4) {
    display: none;
  }

  .section {
    padding: 80px 20px;
  }

  .section-heading h2,
  .booking h2,
  .community-copy h2,
  .location-copy h2 {
    max-width: 100%;
    font-size: clamp(44px, 13vw, 72px);
    overflow-wrap: anywhere;
  }

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

  .program-card {
    min-height: auto;
    padding: 28px 24px 34px;
    gap: 20px;
  }

  .program-card h3 {
    margin-top: 30px;
    font-size: clamp(42px, 14vw, 62px);
  }

  .schedule-wrap {
    margin-right: 0;
  }

  .schedule table {
    min-width: 880px;
  }

  .booking-option {
    min-height: 210px;
    padding: 26px 24px;
    gap: 42px;
  }

  .booking-platform {
    width: 62px;
    height: 62px;
    font-size: 19px;
  }

  .booking-option-copy strong {
    font-size: clamp(38px, 12vw, 54px);
  }

  .schedule th,
  .schedule td {
    padding: 13px 10px;
  }

  .location-poster {
    min-height: 500px;
    padding: 28px;
  }

  .map-pin {
    width: 86px;
    height: 86px;
    border-width: 8px;
    right: 12%;
  }

  .map-pin::after {
    width: 20px;
    height: 20px;
    border-width: 6px;
  }

  .location-poster p {
    font-size: clamp(52px, 18vw, 78px);
  }

  .final-cta {
    padding: 80px 20px;
  }

  .final-cta h2 {
    max-width: 100%;
    font-size: clamp(56px, 17vw, 88px);
  }

  footer {
    grid-template-columns: 1fr;
    padding-bottom: 110px;
  }

  footer > div,
  footer > p,
  footer small {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    min-height: 54px;
    padding: 5px;
    box-shadow: 5px 5px 0 var(--lime);
  }
}

@media (max-width: 380px) {
  .site-header {
    padding-inline: 12px;
    gap: 10px;
  }

  .brand-lockup {
    width: 108px;
  }

  .button-small {
    min-height: 38px;
    padding-inline: 11px;
    font-size: 9px;
  }

  .hero,
  .section,
  .final-cta {
    padding-inline: 16px;
  }

  .hero .eyebrow {
    gap: 8px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .hero .eyebrow > span {
    width: 24px;
  }

  .trial-card-top {
    padding-inline: 18px;
  }

  .whatsapp-float {
    min-height: 48px;
  }

  .whatsapp-float strong {
    width: 38px;
    height: 38px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
