/* =====================================================================
   FONTS
   ---------------------------------------------------------------------
   The design uses three typefaces:
     • The Acres Sans  (uppercase display — hero headline, section labels)
     • Neue Grand 53 Regular Wide (body copy, headlines, buttons)
     • Geist            (nav menu, "Play video" label)

   Geist is loaded from Google Fonts. "The Acres Sans" and "Neue Grand"
   are licensed commercial fonts loaded locally from /fonts via the
   @font-face blocks below (Archivo remains as a fallback in the stacks).
   ===================================================================== */

@font-face {
  font-family: "The Acres Sans";
  src: url("fonts/TheAcresSans.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neue Grand";
  src: url("fonts/NeueGrand-Wide-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #081014;
  --ink-70: rgba(8, 16, 20, 0.7);
  --ink-12: rgba(8, 16, 20, 0.12);
  --ink-1e: #1e1e1e;
  --gray-bg: #f2f3f5;
  --gray-999: #999999;
  --white: #ffffff;
  --muted: #707070;
  --c8: #c8c8c8;
  --video-bg: #121214;

  /* Font stacks — real commercial fonts first, free stand-in second */
  --font-acres: "The Acres Sans", "Archivo", system-ui, sans-serif;
  --font-neue: "Neue Grand", "Archivo", system-ui, sans-serif;
  --font-geist: "Geist", system-ui, -apple-system, sans-serif;

  /* Design canvas reference: 1920px frame, 220px / 217px side padding */
  --pad-l: 220px;
  --pad-r: 217px;
  --content-max: 1479px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-neue);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

/* Full-width section + exact Figma side padding */
.section-pad {
  padding-left: var(--pad-l);
  padding-right: var(--pad-r);
}

.container {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad-l);
  padding-right: var(--pad-r);
}

/* ---------- Scroll / load reveal animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  /* Hero "lights up": the background photo starts dark + zoomed and brightens into place */
  .hero__bg img {
    filter: brightness(0.16) saturate(0.85);
    transform: scale(1.12);
    transition: filter 1.9s ease, transform 2.1s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .hero.is-loaded .hero__bg img {
    filter: brightness(1) saturate(1);
    transform: scale(1);
  }
  /* Content eases up gently while the photo brightens */
  .hero__content {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 1.1s ease 0.25s, transform 1.1s ease 0.25s;
  }
  .hero.is-loaded .hero__content {
    opacity: 1;
    transform: none;
  }
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
  .reveal--d1 {
    transition-delay: 0.1s;
  }
  .reveal--d2 {
    transition-delay: 0.2s;
  }
  .reveal--d3 {
    transition-delay: 0.3s;
  }

  /* Word-by-word blur reveal: plays once when scrolled into view */
  .text-reveal:not(.tr-ready) {
    opacity: 0;
  }
  .tr-word {
    filter: blur(12px);
    opacity: 0.12;
    transition: filter 0.6s ease, opacity 0.6s ease;
  }
  .text-reveal.is-revealed .tr-word {
    filter: none;
    opacity: 1;
  }
}

.tr-word {
  display: inline-block;
  will-change: filter, opacity;
}

/* ---------- Shared "Link - Main Button" (Neue Grand) ---------- */
.link-button {
  display: inline-flex;
  align-items: flex-end;
  gap: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 14px 20px;
  font-family: var(--font-neue);
  font-size: 16px;
  line-height: 22.4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.link-button__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- Section label (logo + The Acres Sans text) ---------- */
.label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  line-height: 1;
}

.label__logo {
  width: 23px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}

.label span {
  font-family: var(--font-acres);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 21.6px;
  text-transform: uppercase;
  color: var(--ink);
}

.label .tr-word {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  /* Design frame is 1920 x 1200 (= 62.5% of width) */
  min-height: min(1200px, 62.5vw);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 16, 20, 0) 33%, var(--ink) 100%);
}

/* ---------- Nav ---------- */
.nav {
  position: relative;
  z-index: 3;
}

.nav__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 27px 20px;
  height: 117px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: linear-gradient(100.06deg, rgba(255, 255, 255, 0.06) 61%, rgba(37, 84, 216, 0.024) 194%);
  cursor: pointer;
  flex-shrink: 0;
}

.nav__toggle-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.nav__brand {
  flex-shrink: 0;
  line-height: 0;
}

.nav__brand img {
  display: block;
  width: 182.696px;
  height: 23.088px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 13px;
}

.nav__link {
  font-family: var(--font-neue);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.32px;
  color: var(--white);
  height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 20px 16px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.nav__link:first-child {
  padding-inline: 10px;
}

.nav__link:hover,
.nav__link:focus-visible {
  border-bottom-color: rgba(255, 255, 255, 0.48);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-geist);
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  height: 50.41px;
  padding: 15px 16px 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn--ghost {
  background: transparent;
  color: var(--white);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

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

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

/* ---------- Hero content (Figma 860:2531 — top 635px, left 221px, gap 27px) ---------- */
.hero__content {
  position: absolute;
  top: 52.917%;
  left: max(12px, calc((100% - var(--content-max)) / 2));
  width: min(var(--content-max), calc(100% - 24px));
  z-index: 2;
  margin: 0;
  padding: 0;
}

.hero__title {
  font-family: var(--font-neue);
  font-weight: 400;
  text-transform: capitalize;
  font-size: 60px;
  line-height: 67px;
  max-width: 1033px;
  background: linear-gradient(208.415deg, rgb(255, 255, 255) 53.366%, rgba(255, 255, 255, 0) 151.13%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__content .link-button {
  margin-top: 27px;
}

/* ---------- Backed By partners bar (Figma 860:2542 — top 1065px) ---------- */
.hero__backed {
  position: absolute;
  top: 88.75%;
  left: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  padding: 29px 12px;
  min-height: 130px;
  background: transparent;
}

.hero__backed-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 100%;
}

.hero__backed-label {
  flex-shrink: 0;
  width: 147px;
  height: 30px;
  margin: 0;
  font-family: var(--font-geist);
  font-size: 18px;
  font-weight: 500;
  line-height: 24.96px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}

.hero__partners-marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.hero__partners-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.hero__partners-track.is-animated {
  animation: partners-marquee 38s linear infinite;
}

.hero__partners-track.is-animated:hover {
  animation-play-state: paused;
}

@keyframes partners-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__partners-track {
    animation: none !important;
  }
}

.hero__partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 71px;
  width: 1321px;
  max-width: 100%;
  flex-shrink: 0;
}

/* Desktop — looping carousel in the same 1321px footprint */
@media (min-width: 1281px) {
  .hero__partners-marquee {
    flex: 0 1 1321px;
    width: 1321px;
    max-width: calc(100% - 197px);
    overflow: hidden;
  }

  .hero__partners {
    width: max-content;
    max-width: none;
    justify-content: flex-start;
    padding-right: 71px;
  }
}

.hero__partner-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
  box-sizing: border-box;
}

.hero__partner-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__partner-slot--google {
  width: 122px;
  height: 40px;
  padding: 0;
}

.hero__partner-slot--github {
  width: 153px;
  height: 52px;
}

.hero__partner-slot--github img {
  object-position: center bottom;
}

.hero__partner-slot--azure {
  width: 159px;
  height: 52px;
}

.hero__partner-slot--bachi {
  width: 150px;
  height: 52px;
}

.hero__partner-slot--bachi img {
  width: 124px;
  height: 39px;
}

.hero__partner-slot--difc {
  width: 189px;
  height: 52px;
  padding: 0;
}

.hero__partner-slot--difc img {
  object-fit: contain;
}

.hero__partner-slot--aws {
  width: 78px;
  height: 52px;
}

.hero__partner-slot--aws img {
  width: 56px;
  height: 36px;
  object-position: center bottom;
}

/* ===================== ABOUT ===================== */
.about {
  background: var(--white);
  padding-top: 230px;
  padding-bottom: 230px;
}

.about__grid {
  display: flex;
  gap: 35px;
  align-items: flex-start;
}

.about__left {
  flex: 0 0 732px;
  display: flex;
  flex-direction: column;
  gap: 31px;
}

.about__headline {
  font-family: var(--font-neue);
  font-weight: 400;
  font-size: 30px;
  line-height: 50.4px;
  letter-spacing: -1.26px;
  max-width: 725px;
  color: var(--ink);
}

.about__right {
  flex: 0 1 716px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about__right p {
  font-family: var(--font-neue);
  font-size: 18px;
  line-height: 27px;
  color: var(--ink-70);
}

.about__brand {
  text-transform: uppercase;
}

/* ===================== THE SENTINALY OS ===================== */
/* Pinned scroll track: each module gets ~1 viewport of scroll.
   The panel keeps its Figma size (760px) and is centered while pinned. */
.os-scroll {
  position: relative;
  height: 500vh;
  background: var(--white);
}

.os {
  position: sticky;
  top: max(0px, calc((100vh - 760px) / 2));
  height: 760px;
  background: var(--gray-bg);
  padding: 38px var(--pad-r) 38px var(--pad-l);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.os__grid {
  display: flex;
  gap: 194px;
  align-items: flex-start;
  width: 1479px;
  max-width: 100%;
  margin: 0 auto;
}

.os__left {
  flex: 0 0 417px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.os__headline {
  font-family: var(--font-neue);
  font-weight: 400;
  font-size: 30px;
  line-height: 50.4px;
  color: var(--ink);
}

.os__right {
  display: flex;
  gap: 218px;
  align-items: center;
}

/* iOS picker-wheel: items sit on a 3D cylinder, JS rotates the drum on scroll */
.os__list {
  list-style: none;
  position: relative;
  width: 446px;
  height: 420px;
  perspective: 1000px;
  perspective-origin: 50% 50%;
}

.os__item {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 66px;
  margin-top: -33px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--font-neue);
  font-weight: 400;
  font-size: 60px;
  line-height: 66px;
  letter-spacing: -1.8px;
  color: var(--gray-999);
  cursor: pointer;
  opacity: 0.45;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transition: color 0.25s ease;
}

.os__item--active {
  color: var(--ink);
  opacity: 1;
}

.os__explore {
  flex-shrink: 0;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  background: var(--white);
  padding-top: 38px;
  padding-bottom: 38px;
  min-height: 884px;
  display: flex;
  align-items: center;
}

.testimonials .container {
  width: 100%;
}

.testimonials__marquee {
  margin-top: 118px;
  width: 100%;
}

.testimonials__marquee.is-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x;
  container-type: inline-size;
  -webkit-mask-image: none;
  mask-image: none;
}

.testimonials__marquee.is-carousel:active {
  cursor: grabbing;
}

.testimonials__marquee.is-carousel::-webkit-scrollbar {
  display: none;
}

.testimonials__track {
  display: flex;
  width: max-content;
}

.testimonials__marquee .testimonials__row {
  margin-top: 0;
}

.testimonials__marquee.is-carousel .tcard {
  flex: 0 0 100cqw;
  width: 100cqw;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.testimonials__marquee.is-carousel .testimonials__row {
  gap: 0;
  padding-right: 0;
}

@media (min-width: 1281px) {
  .testimonials__track {
    width: 100%;
  }

  .testimonials__marquee {
    overflow: visible;
  }
}

.testimonials__row {
  margin-top: 118px;
  margin-left: 75px;
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.tcard {
  position: relative;
  width: 430px;
  min-height: 500px;
  flex: 0 0 430px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.tcard__avatar {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.tcard__quote {
  margin-top: 53px;
  margin-bottom: auto;
  font-family: var(--font-neue);
  font-size: 24px;
  line-height: 26.4px;
  color: var(--ink);
  max-width: 366px;
}

.tcard__meta {
  margin-top: 40px;
  padding-left: 20px;
  border-left: 1px solid var(--ink);
  font-family: var(--font-neue);
  font-size: 12px;
  line-height: 16.8px;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  color: var(--ink);
  min-height: 38px;
  display: flex;
  align-items: center;
}

/* Video card */
.tcard--video {
  background: var(--video-bg);
  color: var(--white);
}

.tcard__videobg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tcard__videooverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18, 18, 20, 0) 24.587%, var(--video-bg) 100%);
}

.tcard__play {
  position: absolute;
  top: calc(50% - 28.8px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 100px;
  background: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.tcard__play:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

.tcard__play img {
  width: 14px;
  height: 14px;
}

.tcard__playtext {
  position: absolute;
  top: calc(50% + 40px);
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tcard__playlabel {
  font-family: var(--font-geist);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
}

.tcard__playtime {
  font-family: var(--font-geist);
  font-weight: 400;
  font-size: 14px;
  line-height: 19.6px;
  color: var(--c8);
}

.tcard__meta--light {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 31.99px;
  border-left-color: var(--white);
  color: var(--white);
}

/* ===================== SECURITY & TRUST ===================== */
.security {
  background: var(--white);
  padding-top: 38px;
  padding-bottom: 120px;
}

.security__features {
  margin-top: 87px;
  margin-left: 162px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 257px;
  flex-shrink: 0;
}

.feature__icon {
  width: 30px;
  height: 30px;
}

.feature__title {
  font-family: var(--font-geist);
  font-weight: 600;
  font-size: 17px;
  line-height: 23px;
  letter-spacing: -0.4px;
  color: var(--ink-1e);
}

.feature__text {
  font-family: var(--font-geist);
  font-weight: 400;
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: -0.2px;
  color: var(--ink-1e);
  opacity: 0.8;
}

.security__badges {
  margin-top: 80px;
  margin-left: 349px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 127px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  text-align: center;
}

.badge--soc,
.badge--iso,
.badge--enc {
  width: 200px;
}

.badge__seal-wrap {
  position: relative;
  width: 114px;
  height: 114px;
}

/* SOC 2 seal lives in a wide source image; crop to its circular seal */
.badge__soc {
  position: relative;
  z-index: 1;
  width: 114px;
  height: 114px;
  overflow: hidden;
}

.badge__soc img {
  position: absolute;
  width: 270.27%;
  height: 128.93%;
  left: -85.3%;
  top: -8.46%;
  max-width: none;
}

.badge__ring {
  position: absolute;
  top: 3px;
  left: 3.6px;
  width: 106.8px;
  height: 106.8px;
  z-index: 0;
}

.badge__img--iso {
  position: relative;
  z-index: 1;
  width: 114px;
  height: 114px;
  object-fit: cover;
}

.badge__img--enc {
  width: 114px;
  height: 114px;
  object-fit: cover;
}

.badge__caption {
  font-family: var(--font-neue);
  font-size: 15px;
  line-height: 23px;
  letter-spacing: -0.4px;
  color: var(--ink-1e);
}

/* ===================== FOOTER ===================== */
.footer {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  min-height: 865px;
}

.footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 67px 360px 40px;
}

.footer__head {
  display: flex;
  flex-direction: column;
  gap: 13px;
  max-width: 402px;
}

.footer__eyebrow {
  font-family: var(--font-acres);
  font-size: 14px;
  line-height: 19.6px;
  letter-spacing: 0.84px;
  text-transform: uppercase;
  color: var(--white);
}

.footer__title {
  font-family: var(--font-neue);
  font-weight: 400;
  font-size: 35px;
  line-height: 49px;
  color: var(--white);
}

/* Newsletter */
.footer__signup {
  margin-top: 56px;
  display: flex;
  gap: 10px;
  align-items: stretch;
  max-width: 1200px;
}

.newsletter {
  background: var(--gray-bg);
  color: var(--ink);
  padding: 0 32px;
  height: 120.59px;
  flex: 1 1 954px;
  display: grid;
  grid-template-columns: 167px 1fr;
  align-items: center;
  gap: 0 44px;
}

.newsletter__label {
  font-family: var(--font-neue);
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: var(--ink);
  grid-row: 1;
}

.newsletter__form {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  position: relative;
  height: 61px;
  background: var(--white);
}

.newsletter__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 20px;
  font-family: var(--font-neue);
  font-size: 16px;
  color: var(--ink);
}

.newsletter__input::placeholder {
  color: var(--muted);
}

.newsletter__btn {
  background: var(--ink);
  color: var(--white);
  border: none;
  width: 120px;
  margin: 5px;
  font-family: var(--font-neue);
  font-size: 16px;
  line-height: 16px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.newsletter__btn:hover {
  opacity: 0.85;
}

.newsletter__terms {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  margin-top: 8px;
  font-family: var(--font-neue);
  font-size: 13px;
  line-height: 19.6px;
  color: var(--muted);
}

.newsletter__terms a {
  text-decoration: underline;
}

.newsletter__cta {
  position: relative;
  flex: 0 0 236px;
  background: var(--white);
  color: var(--ink);
  padding: 12px;
  display: flex;
  align-items: flex-end;
  font-family: var(--font-neue);
  font-size: 16px;
  line-height: 22.4px;
  transition: background 0.2s ease;
}

.newsletter__cta span {
  margin-top: auto;
}

.newsletter__cta .link-button__arrow {
  position: absolute;
  top: 12px;
  right: 12px;
}

.newsletter__cta:hover {
  background: #f2f3f5;
}

/* Footer links */
.footer__links {
  margin-top: 10px;
  background: var(--white);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1200px;
}

.footer__col {
  padding: 32px 45px;
}

.footer__col--legal {
  border-left: 1px solid var(--ink-12);
  padding-left: 337px;
  padding-right: 93px;
}

.footer__coltitle {
  font-family: var(--font-neue);
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 24px;
}

.footer__muted {
  font-family: var(--font-neue);
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 245px;
  margin-bottom: 18px;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.footer__social img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__list a {
  font-family: var(--font-neue);
  font-size: 16px;
  line-height: 16px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer__list a:hover {
  color: var(--ink);
}

/* Footer bottom bar */
.footer__bottom {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer__copy {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.footer__copy span {
  font-family: var(--font-neue);
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
}

.footer__wordmark {
  height: 10px;
  width: 112.308px;
}

.footer__powered {
  font-family: var(--font-neue);
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  text-align: right;
}

.footer__powered a {
  color: var(--white);
  text-decoration: underline;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1700px) {
  :root {
    --pad-l: 120px;
    --pad-r: 120px;
  }
  .os__grid {
    gap: 100px;
  }
  .os__right {
    gap: 80px;
  }
  .security__features {
    margin-left: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  .security__badges {
    margin-left: 0;
  }
  .testimonials__row {
    margin-left: 0;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 1280px) {
  :root {
    --pad-l: 64px;
    --pad-r: 64px;
  }
  .about {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .about__left,
  .about__right {
    flex: 1 1 auto;
  }
  .about__grid,
  .os__grid {
    flex-direction: column;
    gap: 48px;
  }
  .about__left,
  .os__left {
    flex-basis: auto;
  }
  .os__right {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
  }
  .footer__inner {
    padding-left: 64px;
    padding-right: 64px;
  }
  .footer__col--legal {
    padding-left: 45px;
    padding-right: 45px;
  }
  .footer {
    min-height: auto;
  }
  .testimonials__marquee {
    margin-top: 48px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }
  .testimonials__marquee .testimonials__row {
    margin-left: 0;
    flex-wrap: nowrap;
    padding-right: 20px;
  }
  .tcard {
    flex: 0 0 min(340px, 72vw);
    width: min(340px, 72vw);
    min-height: 420px;
  }
}

/* Tablet / short landscape — prevent hero CTA overlapping partner bar */
@media (min-width: 1001px) and (max-width: 1280px),
       (min-width: 1001px) and (max-height: 860px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-bottom: 48px;
    display: flex;
    flex-direction: column;
  }

  .hero__content {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    padding: 24px 64px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .hero__title {
    font-size: 44px;
    line-height: 1.15;
    max-width: 900px;
  }

  .hero__backed {
    position: relative;
    top: auto;
    flex-shrink: 0;
    margin-top: auto;
    min-height: auto;
    padding: 20px 32px 16px;
  }

  .hero__backed-inner {
    flex-wrap: nowrap;
    align-items: center;
    gap: 32px;
    max-width: none;
    padding: 0;
  }

  .hero__partners-marquee {
    flex: 1;
    min-width: 0;
  }

  .hero__partners {
    gap: 40px;
    padding-right: 40px;
  }
}

/* iPad / tablet landscape only — carousel position & even logo spacing */
@media (min-width: 1001px) and (max-width: 1280px) and (orientation: landscape) {
  .hero {
    padding-bottom: 32px;
  }

  .hero__backed {
    padding: 4px 70px 0;
    transform: translateY(16px);
  }

  .hero__partners {
    width: max-content;
    max-width: none;
    justify-content: flex-start;
    gap: 40px;
    padding-right: 40px;
  }

  .about {
    padding-top: 80px;
    padding-bottom: 64px;
    position: relative;
    z-index: 2;
  }

  .os-scroll {
    height: auto;
  }

  .os {
    position: static;
    height: auto;
    padding: 56px var(--pad-l);
    overflow: visible;
  }

  .os__grid {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    text-align: left;
    width: 100%;
    max-width: none;
  }

  .os__left {
    align-items: flex-start;
    gap: 24px;
    flex: 0 0 340px;
    max-width: 420px;
  }

  .os__headline {
    font-size: 26px;
    line-height: 1.4;
  }

  .os__right {
    flex: 1;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    width: auto;
  }

  .os__list {
    height: auto;
    perspective: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: auto;
    max-width: none;
    align-items: center;
    margin: 0 auto;
  }

  .os__item {
    position: static;
    height: auto;
    margin-top: 0;
    font-size: 40px;
    line-height: 1.15;
    white-space: nowrap;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    justify-content: center;
    text-align: center;
    color: var(--gray-999);
  }

  .os__item:hover {
    color: var(--ink);
  }

  .os__explore {
    align-self: center;
    flex-shrink: 0;
  }

  .testimonials {
    min-height: auto;
    padding-top: 32px;
    padding-bottom: 20px;
  }

  .testimonials__marquee {
    margin-top: 28px;
  }

  .testimonials__marquee.is-carousel {
    overflow: visible;
    padding-inline: 0;
    scroll-snap-type: none;
  }

  .testimonials__marquee.is-carousel .testimonials__track {
    width: 100%;
  }

  .testimonials__marquee.is-carousel .testimonials__track > [aria-hidden="true"] {
    display: none;
  }

  .testimonials__marquee.is-carousel .testimonials__row {
    gap: 16px;
    width: 100%;
  }

  .testimonials__controls {
    display: none !important;
  }

  .testimonials__marquee.is-carousel .tcard {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 0;
    padding: 28px 24px;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
  }

  .testimonials__marquee.is-carousel .tcard__avatar {
    width: 64px;
    height: 64px;
    margin: 0 auto;
  }

  .testimonials__marquee.is-carousel .tcard__quote {
    margin-top: 18px;
    margin-bottom: 0;
    max-width: 100%;
    font-size: 17px;
    line-height: 1.45;
    text-align: center;
  }

  .testimonials__marquee.is-carousel .tcard__meta {
    margin-top: auto;
    padding-left: 0;
    padding-top: 14px;
    border-left: none;
    border-top: 1px solid var(--ink);
    min-height: 0;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
  }

  .tcard {
    min-height: 400px;
  }

  .security {
    padding-top: 20px;
    padding-bottom: 64px;
  }

  .security__features {
    margin-left: 0;
    margin-top: 36px;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
  }

  .security__features .feature {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    max-width: 280px;
  }

  .security__badges {
    margin-left: 0;
    margin-right: 0;
    margin-top: 40px;
    justify-content: center;
    width: 100%;
    gap: 48px;
  }
}

/* Tablet / mobile nav — Figma iPad horizontal header + dropdown panel */
@media (max-width: 1280px) {
  .nav {
    background: linear-gradient(95.4deg, rgba(255, 254, 254, 0.1) 64.72%, rgba(255, 255, 255, 0.1) 110.15%);
  }

  .nav__inner {
    position: relative;
    max-width: none;
    padding: 27px 70px;
    height: auto;
    min-height: 94px;
  }

  .nav__cta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
  }

  .nav__toggle {
    display: flex;
    margin-left: 12px;
    position: relative;
    z-index: 2;
  }

  .nav__menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 70px;
    z-index: 110;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    min-width: 229px;
    padding: 27px 20px;
    border-radius: 12px;
    background: rgba(255, 254, 254, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(8, 16, 20, 0.1);
  }

  .nav__menu.is-open {
    display: flex;
  }

  .nav__link {
    font-family: var(--font-geist);
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    letter-spacing: -0.32px;
    color: var(--ink-1e);
    height: auto;
    width: 100%;
    padding: 0;
    border-bottom: none;
    white-space: nowrap;
  }

  .nav__link:first-child {
    padding: 0 0 25px;
    border-bottom: 1px solid rgba(30, 30, 30, 0.48);
  }

  .nav__link:hover,
  .nav__link:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
    opacity: 1;
  }

  .nav__link:first-child:hover,
  .nav__link:first-child:focus-visible {
    border-bottom-color: rgba(30, 30, 30, 0.48);
  }
}

@media (max-width: 1000px) {
  :root {
    --pad-l: 32px;
    --pad-r: 32px;
  }
  .nav__inner {
    padding: 27px 32px;
    min-height: 80px;
  }
  .nav__menu {
    right: 32px;
  }
  .nav__brand img {
    width: min(182.696px, 42vw);
    height: auto;
  }
  .btn {
    height: 44px;
    padding: 10px 14px;
    font-size: 14px;
  }
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
  }
  .hero__bg img {
    object-position: 72% 40%;
  }
  .hero__content {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    padding: 16px var(--pad-l) 88px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }
  .hero__title {
    font-size: 32px;
    line-height: 1.2;
    max-width: none;
  }
  .hero__content .link-button {
    margin-top: 20px;
  }
  .hero__subtitle {
    font-size: 20px;
  }
  .hero__backed {
    position: relative;
    top: auto;
    margin-top: 0;
    flex-shrink: 0;
    min-height: auto;
    padding: 0 12px 4px;
  }
  .hero__backed-inner {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    max-width: none;
    padding: 0;
  }
  .hero__backed-label {
    width: auto;
    height: auto;
    flex-shrink: 0;
    text-align: left;
  }
  .hero__partners-marquee {
    flex: 1;
    min-width: 0;
    width: auto;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }
  .hero__partners {
    gap: 32px;
    padding-right: 32px;
  }
  .hero__partner-slot--google,
  .hero__partner-slot--difc {
    padding: 0;
  }
  .about {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .about__headline {
    font-size: 26px;
    line-height: 1.4;
  }
  /* Disable pinned scroll-jacking + the 3D wheel on small screens */
  .os-scroll {
    height: auto;
  }
  .os {
    position: static;
    height: auto;
    padding-top: 56px;
    padding-bottom: 56px;
    overflow: visible;
  }
  .os__grid {
    align-items: center;
    text-align: center;
  }
  .os__left {
    align-items: center;
  }
  .os__right {
    align-items: center;
    width: 100%;
  }
  .os__list {
    height: auto;
    perspective: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
  }
  .os__item {
    position: static;
    height: auto;
    margin-top: 0;
    font-size: 44px;
    line-height: 1.1;
    white-space: normal;
    opacity: 1 !important;
    transform: none !important;
    text-align: center;
    justify-content: center;
  }
  .os__explore {
    align-self: center;
    width: auto;
    justify-content: flex-start;
  }
  .testimonials {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .testimonials__marquee {
    margin-top: 48px;
  }
  .testimonials__marquee .testimonials__row {
    margin-top: 0;
    margin-left: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .tcard {
    flex: 0 0 min(300px, 80vw);
    width: min(300px, 80vw);
    max-width: none;
    min-height: 380px;
    padding: 24px;
  }
  .tcard__avatar {
    width: 80px;
    height: 80px;
  }
  .tcard__quote {
    margin-top: 36px;
    font-size: 20px;
    line-height: 1.3;
    max-width: none;
  }
  .tcard__meta {
    margin-top: 28px;
    padding-left: 14px;
  }
  .security {
    padding-bottom: 88px;
  }
  .security__features {
    margin-top: 48px;
    gap: 32px;
  }
  .feature {
    flex: 1 1 calc(50% - 16px);
    width: auto;
    max-width: 280px;
  }
  .security__badges {
    margin-top: 48px;
    justify-content: center;
    gap: 48px;
  }
  .footer__inner {
    padding: 56px var(--pad-l) 32px;
  }
  .footer {
    min-height: auto;
  }
  .footer__head {
    max-width: none;
  }
  .footer__signup {
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
  }
  .newsletter {
    flex: none;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
    padding: 24px 20px;
    gap: 12px;
  }
  .newsletter__label {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
  }
  .newsletter__form,
  .newsletter__terms {
    grid-column: 1;
  }
  .newsletter__form {
    grid-row: 2;
    height: auto;
  }
  .newsletter__terms {
    grid-row: 3;
    margin-top: 0;
  }
  .newsletter__cta {
    flex: none;
    width: 100%;
    min-height: 72px;
  }
  .footer__title {
    font-size: 28px;
    line-height: 1.3;
  }
  .footer__links {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }
  .footer__col--legal {
    border-left: none;
    border-top: 1px solid var(--ink-12);
    padding-left: 45px;
    padding-right: 45px;
  }
  .footer__bottom {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --pad-l: 20px;
    --pad-r: 20px;
  }
  .nav__inner {
    padding: 16px 20px;
    min-height: 72px;
    gap: 10px;
  }
  .nav__brand img {
    width: min(132px, 34vw);
    height: auto;
  }
  .nav__cta {
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
  }
  .nav__cta .btn {
    height: 38px;
    padding: 8px 12px;
    font-size: 13px;
    line-height: 1.2;
  }
  .nav__toggle {
    width: 38px;
    height: 38px;
    margin-left: 8px;
  }
  .nav__toggle-icon {
    width: 20px;
    height: 20px;
  }
  .nav__menu {
    right: 20px;
  }
  .hero__content {
    padding: 32px 20px 24px;
  }
  .hero__title {
    font-size: 24px;
    line-height: 1.25;
  }
  .hero__content .link-button {
    margin-top: 16px;
    padding: 11px 14px;
    font-size: 13px;
    line-height: 1.35;
  }
  .hero__content .link-button__arrow {
    width: 15px;
    height: 15px;
  }
  .hero__backed-inner {
    gap: 20px;
  }
  .hero__backed {
    padding-bottom: 2px;
  }
  .hero {
    padding-bottom: 12px;
  }
  .hero__backed-label {
    font-size: 15px;
    letter-spacing: 2.5px;
    line-height: 1.25;
  }
  .hero__partners {
    gap: 24px;
    padding-right: 24px;
  }
  .about,
  .testimonials,
  .security {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .about {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .about__headline {
    font-size: 22px;
    line-height: 1.45;
  }
  .about__right p {
    font-size: 16px;
    line-height: 1.5;
  }
  .os__item {
    font-size: 32px;
  }
  .footer__inner {
    padding: 48px 20px 32px;
  }
  .footer__head {
    max-width: none;
  }
  .footer__title {
    font-size: 24px;
  }
  .footer__col,
  .footer__col--legal {
    padding: 24px 20px;
  }
  .footer__muted {
    max-width: none;
  }
  .tcard {
    flex: 0 0 min(280px, 86vw);
    width: min(280px, 86vw);
    max-width: none;
    min-height: 340px;
    padding: 20px;
  }
  .tcard__avatar {
    width: 72px;
    height: 72px;
  }
  .tcard__quote {
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.3;
  }
  .tcard__meta {
    margin-top: 24px;
    min-height: 32px;
    font-size: 11px;
    line-height: 1.4;
  }
  .testimonials__row {
    gap: 16px;
  }
  .security__features {
    margin-top: 40px;
    justify-content: center;
  }
  .feature {
    flex: 1 1 100%;
    max-width: none;
  }
  .security__badges {
    gap: 40px;
  }
  .badge--soc,
  .badge--iso,
  .badge--enc {
    width: auto;
    min-width: 140px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__powered {
    text-align: left;
  }
  .newsletter__form {
    flex-direction: column;
    height: auto;
  }
  .newsletter__input {
    padding: 16px 20px;
  }
  .newsletter__btn {
    width: calc(100% - 10px);
    margin: 0 5px 5px;
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .nav__inner {
    padding: 12px 16px;
    min-height: 64px;
    gap: 6px;
  }
  .nav__brand img {
    width: min(96px, 25vw);
  }
  .nav__cta {
    gap: 4px;
  }
  .nav__cta .btn {
    height: 32px;
    padding: 6px 8px;
    font-size: 10px;
    line-height: 1.2;
  }
  .nav__cta .btn--ghost {
    padding: 6px 7px;
    border-color: rgba(255, 255, 255, 0.2);
  }
  .nav__cta .btn--white {
    padding: 6px 9px;
  }
  .nav__toggle {
    width: 32px;
    height: 32px;
    margin-left: 4px;
  }
  .nav__toggle-icon {
    width: 18px;
    height: 18px;
  }
  .hero__title {
    font-size: 20px;
    line-height: 1.3;
  }
  .hero__bg img {
    object-position: 68% 42%;
  }
  .hero {
    padding-bottom: 8px;
  }
  .hero__backed {
    padding-bottom: 0;
  }
  .hero__backed-inner {
    gap: 18px;
  }
  .hero__backed-label {
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1.25;
  }
  .hero__partners {
    gap: 24px;
    padding-right: 24px;
  }
  .hero__partner-slot--google {
    width: 96px;
    height: 32px;
  }
  .hero__partner-slot--github,
  .hero__partner-slot--azure,
  .hero__partner-slot--bachi,
  .hero__partner-slot--difc {
    width: 120px;
    height: 40px;
  }
  .hero__partner-slot--aws {
    width: 64px;
    height: 40px;
  }
  .link-button {
    width: 100%;
    justify-content: space-between;
  }
  .hero__content .link-button {
    width: auto;
    max-width: 100%;
    margin-top: 14px;
    padding: 9px 12px;
    font-size: 12px;
    line-height: 1.35;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
  }
  .hero__content .link-button__arrow {
    width: 14px;
    height: 14px;
  }
  .os__explore.link-button {
    width: auto;
    max-width: 100%;
    justify-content: flex-start;
  }
  .os__headline {
    font-size: 24px;
    line-height: 1.4;
  }
  .os__item {
    font-size: 28px;
  }
}

/* Phone horizontal — match compact vertical viewport */
@media (orientation: landscape) and (max-height: 520px) {
  :root {
    --pad-l: 20px;
    --pad-r: 20px;
  }

  .nav__inner {
    padding: 12px 16px;
    min-height: 64px;
    gap: 6px;
  }

  .nav__brand img {
    width: min(96px, 25vw);
    height: auto;
  }

  .nav__cta {
    gap: 4px;
  }

  .nav__cta .btn {
    height: 32px;
    padding: 6px 8px;
    font-size: 10px;
    line-height: 1.2;
  }

  .nav__cta .btn--ghost {
    padding: 6px 7px;
    border-color: rgba(255, 255, 255, 0.2);
  }

  .nav__cta .btn--white {
    padding: 6px 9px;
  }

  .nav__toggle {
    width: 32px;
    height: 32px;
    margin-left: 4px;
  }

  .nav__toggle-icon {
    width: 18px;
    height: 18px;
  }

  .nav__menu {
    right: 16px;
  }

  .hero {
    padding-bottom: 8px;
  }

  .hero__bg img {
    object-position: 68% 42%;
  }

  .hero__content {
    padding: 12px 20px 16px;
    justify-content: flex-end;
  }

  .hero__title {
    font-size: 20px;
    line-height: 1.3;
    max-width: min(480px, 100%);
  }

  .hero__content .link-button {
    width: auto;
    max-width: 100%;
    margin-top: 12px;
    padding: 9px 12px;
    font-size: 12px;
    line-height: 1.35;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
  }

  .hero__content .link-button__arrow {
    width: 14px;
    height: 14px;
  }

  .hero__backed {
    padding: 0 12px 0;
  }

  .hero__backed-inner {
    gap: 18px;
  }

  .hero__backed-label {
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1.25;
  }

  .hero__partners {
    gap: 24px;
    padding-right: 24px;
  }

  .hero__partner-slot--google {
    width: 96px;
    height: 32px;
  }

  .hero__partner-slot--github,
  .hero__partner-slot--azure,
  .hero__partner-slot--bachi,
  .hero__partner-slot--difc {
    width: 120px;
    height: 40px;
  }

  .hero__partner-slot--aws {
    width: 64px;
    height: 40px;
  }
}
