:root {
  --brand: #e31d1a;
  --brand-hover: #c41816;
  --brand-dark: #b51815;
  --black: #111111;
  --gray-900: #1a1a1a;
  --gray-800: #2a2a2a;
  --gray-700: #444444;
  --gray-600: #666666;
  --gray-400: #999999;
  --gray-200: #e5e5e5;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --nav-h: 92px;
  --font-heading: "Raleway", sans-serif;
  --font-body: "Roboto", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-nav .nav-link,
.btn-brand,
.btn-outline-light-brand {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  margin: 0 0 0.75rem;
}

h4 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1.25rem;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--brand-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container-site {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* —— Nav —— */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(17, 17, 17, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-nav .nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1280px, calc(100% - 2rem));
}

.site-nav .brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.site-nav .brand img {
  height: 36px;
  width: auto;
}

.site-nav .nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  width: 42px;
  height: 42px;
  cursor: pointer;
  padding: 0;
}

.site-nav .nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.site-nav .nav-panel {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.75rem;
  margin-left: auto;
}

.site-nav .nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav .nav-link {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.4rem 0.45rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--white);
  border-bottom-color: var(--brand);
}

.site-nav .nav-actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.4rem;
  flex-shrink: 0;
}

.btn-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: var(--white) !important;
  border: 1px solid var(--brand);
  padding: 0.6rem 1.1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-brand:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  color: var(--white) !important;
}

.btn-brand-lg {
  padding: 0.9rem 1.75rem;
  font-size: 0.95rem;
}

.btn-outline-light-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.55rem 0.85rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.btn-outline-light-brand:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white) !important;
}

.btn-dark-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white) !important;
  border: 1px solid var(--black);
  padding: 0.85rem 1.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s ease;
}

.btn-dark-solid:hover {
  background: var(--gray-800);
  color: var(--white) !important;
}

.btn-light-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--black) !important;
  border: 1px solid var(--white);
  padding: 0.85rem 1.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-light-solid:hover {
  background: var(--gray-100);
  color: var(--black) !important;
}

/* —— Skip link & back to top —— */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1100;
  background: var(--brand);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.25rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
  color: var(--white) !important;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 999;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease, background 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--brand-hover);
  color: var(--white) !important;
}

.back-to-top:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  margin-top: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 2.75rem clamp(1.5rem, 4vw, 3rem) 3rem;
  background:
    linear-gradient(105deg,
      rgba(17, 17, 17, 0.88) 0%,
      rgba(17, 17, 17, 0.72) 42%,
      rgba(17, 17, 17, 0.58) 100%),
    url("../img/pod-gear.jpg") 50% center / cover no-repeat;
  background-attachment: fixed;
  color: var(--white);
  overflow: hidden;
}

@supports (-webkit-touch-callout: none) {
  .hero {
    background-attachment: scroll;
  }
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--brand);
}

.hero .container-site {
  width: min(1080px, 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  width: 100%;
}

.hero-form .hs-form-frame {
  display: block;
  margin: -32px -12px -12px -8px;
  padding: 0;
}

.hero-copy .eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.hero-copy h1 {
  color: var(--white);
  max-width: 16ch;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  max-width: 38ch;
  margin-bottom: 1.75rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.hero-copy .hero-about-link {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
  text-shadow: none;
}

.hero-copy .hero-about-link:hover,
.hero-copy .hero-about-link:focus-visible {
  color: rgba(255, 255, 255, 0.92);
}

.hero-copy .hero-about-link:visited {
  color: rgba(255, 255, 255, 0.92);
}

.hero-toon-wrap {
  width: min(100%, 240px);
  will-change: transform, opacity;
}

.hero-toon-enter {
  animation: toon-enter 0.85s ease 0.15s both;
}

.hero-toon-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.hero-toon-link:hover,
.hero-toon-link:focus-visible {
  color: inherit;
  text-decoration: none;
}

.hero-toon-link:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

.hero-toon {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0.25rem;
  margin-inline: 0;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
  animation: float-y 3.6s ease-in-out 1s infinite;
}

@keyframes toon-enter {
  from {
    opacity: 0;
    transform: translateX(-140px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float-y {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-form {
  background: var(--white);
  color: var(--gray-700);
  padding: 0;
  margin: 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  animation: rise-in 0.7s ease both;
  overflow: hidden;
}

.hero-copy {
  animation: fade-up 0.7s ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-phone {
  margin-top: 1rem;
  text-align: center;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.hero-phone a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-phone a:hover {
  color: #ffd2d1;
  border-bottom-color: #ffd2d1;
}

/* —— Sections —— */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--gray-100);
}

.section-alt .section-label {
  color: var(--brand-dark);
}

.section-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.section h2,
.section h3 {
  color: var(--black);
}

.section h2+p,
.lead {
  font-size: 1.08rem;
}

.accent-rule {
  width: 48px;
  height: 3px;
  background: var(--brand);
  margin: 0 0 1.5rem;
  border: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.split img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

#dental-network.section {
  padding-bottom: 4.5rem;
}

.info-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.info-stack-copy {
  position: sticky;
  top: calc(var(--nav-h) + 1.75rem);
  padding-bottom: 1rem;
}

.info-stack-copy h2 {
  max-width: none;
}

.info-stack-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 0;
}

.info-card {
  position: sticky;
  top: calc(var(--nav-h) + 1.75rem);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--brand);
  padding: 2rem 1.65rem 1.75rem;
  min-height: min(58vh, 340px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.info-card:nth-child(1) {
  z-index: 1;
}

.info-card:nth-child(2) {
  z-index: 2;
  top: calc(var(--nav-h) + 2.35rem);
}

.info-card:nth-child(3) {
  z-index: 3;
  top: calc(var(--nav-h) + 2.95rem);
}

.info-card:nth-child(4) {
  z-index: 4;
  top: calc(var(--nav-h) + 3.55rem);
}

.info-card-num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.info-card h3 {
  color: var(--black);
  font-size: 1.35rem;
  margin: 0 0 0.85rem;
}

.info-card p {
  margin: 0 0 0.75rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--gray-700);
}

.info-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-card li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.35rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--gray-700);
}

.info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
}

/* Partnership */
.benefit-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  margin: 1.5rem 0 2rem;
}

.benefit-lists ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-lists li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.35rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}

.benefit-lists li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
}

.products-intro {
  margin-bottom: 2.5rem;
}

.videos-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.35fr);
  gap: 2rem 2.25rem;
  align-items: center;
}

.videos-copy .videos-intro {
  max-width: none;
  margin-bottom: 0;
}

.video-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "prev viewport next"
    "dots dots dots";
  align-items: center;
  gap: 0.5rem 0.35rem;
  width: 100%;
  max-width: 640px;
  justify-self: stretch;
}

.video-carousel-viewport {
  grid-area: viewport;
  overflow: hidden;
}

.video-carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.video-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0;
}

.video-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--black);
  overflow: hidden;
}

.video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-thumb {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: var(--black);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.92;
  transition: transform 0.2s ease, background 0.2s ease;
}

.video-thumb .video-play {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  margin: 0;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #fff;
  transform: translate(calc(-50% + 2px), -50%);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.video-thumb:hover::after {
  transform: scale(1.06);
  background: var(--brand-hover);
}

.video-title {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--black);
  min-height: 2.7em;
}

.video-carousel-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--black);
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.video-carousel-prev {
  grid-area: prev;
}

.video-carousel-next {
  grid-area: next;
}

.video-carousel-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.video-carousel-dots {
  grid-area: dots;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.25rem;
}

.video-carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--gray-400);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-carousel-dot.is-active {
  background: var(--brand);
  transform: scale(1.15);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.2s ease;
}

.product-card.reveal.visible:hover {
  transform: translateY(-4px);
  border-color: var(--gray-400);
}

.product-card .icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card .icon-wrap img {
  width: 52px;
  height: 52px;
  object-fit: cover;
}

.product-card h3 {
  color: var(--black);
  margin-bottom: 1rem;
}

.product-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.product-card strong {
  color: var(--black);
}

.about {
  background: var(--gray-900);
  color: var(--white);
  padding: 5rem 0;
  border-top: 4px solid var(--brand);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 2.75rem;
  align-items: center;
}

.about img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  filter: grayscale(0.2);
  border: 4px solid rgba(255, 255, 255, 0.15);
}

.about .section-label {
  color: #ff6b68;
}

.about h2 {
  color: var(--white);
}

.about p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.75rem;
}

.about .accent-rule {
  background: var(--brand);
}

/* Footer */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.92);
  padding: 2.75rem 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-learn {
  margin: 0 0 1rem;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
  margin-bottom: 1.25rem;
}

.footer-logos a {
  display: block;
  color: inherit;
  text-decoration: none;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}

.footer-logos a:hover,
.footer-logos a:focus-visible {
  opacity: 1;
}

.footer-logos a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 6px;
}

.footer-logos img {
  height: 32px;
  width: auto;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: calc(var(--d, 0) * 0.07s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-toon {
    animation: none;
  }

  .hero-toon-enter {
    animation: none;
  }

  .hero-toon-wrap {
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 992px) {

  .hero-grid,
  .split,
  .about-grid,
  .videos-split,
  .info-stack {
    grid-template-columns: 1fr;
  }

  .info-stack-copy,
  .info-card,
  .info-card:nth-child(n) {
    position: static;
    top: auto;
  }

  .info-stack-copy h2 {
    max-width: none;
  }

  .info-card {
    min-height: 0;
  }

  .hero {
    min-height: auto;
    padding: 3rem clamp(1.25rem, 4vw, 2rem) 2.5rem;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-toon-wrap {
    width: min(100%, 200px);
    margin-inline: auto;
  }

  .hero-toon {
    margin-inline: auto;
  }

  .hero-phone {
    white-space: normal;
    font-size: 0.9rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about img {
    max-width: 320px;
    margin-inline: auto;
  }

  .video-carousel {
    max-width: 560px;
    justify-self: center;
  }

  .site-nav .nav-toggle {
    display: block;
  }

  .site-nav .nav-panel {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--gray-900);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 0.75rem;
  }

  .site-nav .nav-panel.open {
    display: flex;
  }

  .site-nav .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav .nav-link {
    padding: 0.7rem 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav .nav-actions .btn-brand,
  .site-nav .nav-actions .btn-outline-light-brand {
    width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-h: 76px;
  }

  .site-nav .brand img {
    height: 28px;
  }

  .benefit-lists,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }

  .footer-logos {
    flex-direction: column;
    gap: 1rem;
  }

  .video-carousel {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "viewport viewport"
      "prev next"
      "dots dots";
  }

  .video-carousel-btn {
    justify-self: center;
  }
}