:root {
  --blue: #014fe8;
  --blue-2: #002fbb;
  --blue-3: #001d73;
  --yellow: #ffd21a;
  --yellow-2: #ffb800;
  --green: #129a58;
  --purple: #6752d8;
  --ink: #07125a;
  --muted: #4d5e82;
  --line: #d9e5fb;
  --paper: #ffffff;
  --soft-blue: #eef6ff;
  --shadow: 0 18px 42px rgba(0, 23, 91, 0.22);
  --content: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--blue);
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.35;
}

img,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.home-panel,
.rental-panel,
.faq-panel,
.site-footer {
  position: relative;
  overflow: hidden;
}

.home-panel {
  min-height: 850px;
  padding: 22px 0 28px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 34, 149, 0.98) 0%, rgba(0, 71, 226, 0.88) 47%, rgba(0, 62, 197, 0.68) 100%),
    var(--blue);
}

.home-panel__image {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(68vw, 900px);
  height: 760px;
  object-fit: cover;
  object-position: 52% top;
  opacity: 0.98;
  mix-blend-mode: normal;
}

.blue-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18px 18px, rgba(255, 255, 255, 0.13) 2px, transparent 2.2px),
    linear-gradient(115deg, transparent 0 61%, rgba(255, 210, 26, 0.85) 61.2% 62.4%, transparent 62.7%),
    linear-gradient(105deg, transparent 0 66%, rgba(255, 210, 26, 0.38) 66.2% 67.4%, transparent 67.7%);
  background-size: 38px 38px, 100% 100%, 100% 100%;
  opacity: 0.7;
}

.site-header,
.hero-grid,
.metric-strip,
.bottom-panels,
.rental-heading,
.plan-grid,
.included-strip,
.help-cta,
.faq-panel,
.site-footer {
  width: var(--content);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  display: grid;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  place-items: center;
  border: 4px solid var(--yellow);
  border-radius: 18px;
  color: var(--yellow);
}

.brand__mark svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.brand strong {
  display: block;
  font-family: "Bowlby One SC", "Nunito Sans", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.brand strong span {
  display: block;
}

.brand strong em {
  color: var(--yellow);
  font-style: normal;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.8vw, 38px);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
}

.nav a {
  position: relative;
  padding: 13px 0;
  white-space: nowrap;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 5px;
  border-radius: 999px;
  background: var(--yellow);
  content: "";
  opacity: 0;
  transform: translateY(5px);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.is-active::after {
  opacity: 1;
  transform: translateY(0);
}

.top-cta,
.button,
.price-box a,
.help-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  color: #060f43;
  background: var(--yellow);
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.14);
  transition: transform 180ms ease, filter 180ms ease;
}

.top-cta {
  min-height: 58px;
  padding: 0 23px;
}

.top-cta svg,
.help-cta a svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.top-cta:hover,
.top-cta:focus-visible,
.button:hover,
.button:focus-visible,
.price-box a:hover,
.price-box a:focus-visible,
.help-cta a:hover,
.help-cta a:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.05);
}

@keyframes poster-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes poster-slap {
  0% {
    opacity: 0;
    transform: rotate(-7deg) translateY(22px) scale(0.94);
  }
  100% {
    opacity: 1;
    transform: rotate(-2deg) translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .brand,
  .nav,
  .top-cta,
  .sparkline,
  .hero-actions,
  .metric-strip,
  .bottom-panels,
  .rental-heading,
  .included-strip,
  .help-cta,
  .faq-panel {
    opacity: 0;
    animation: poster-rise 620ms cubic-bezier(0.2, 0.82, 0.2, 1) forwards;
  }

  .hero-copy h1 {
    opacity: 0;
    animation: poster-slap 700ms cubic-bezier(0.2, 0.82, 0.2, 1) 110ms forwards;
  }

  .brand {
    animation-delay: 30ms;
  }

  .nav {
    animation-delay: 80ms;
  }

  .top-cta {
    animation-delay: 140ms;
  }

  .sparkline {
    animation-delay: 170ms;
  }

  .hero-actions {
    animation-delay: 420ms;
  }

  .metric-strip {
    animation-delay: 520ms;
  }

  .bottom-panels {
    animation-delay: 620ms;
  }

  .plan-card {
    transition: transform 220ms ease, box-shadow 220ms ease;
  }

  .plan-card:hover {
    transform: translateY(-8px) rotate(-0.4deg);
    box-shadow: 0 28px 46px rgba(0, 45, 143, 0.34);
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(275px, 0.34fr);
  gap: 34px;
  padding: 58px 0 18px;
}

.hero-copy {
  position: relative;
  max-width: 710px;
}

.sparkline {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.24);
}

.hero-copy h1,
.rental-heading h2 {
  margin: 0;
  font-family: "Bowlby One SC", "Nunito Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  display: grid;
  gap: 2px;
  max-width: 710px;
  font-size: clamp(3.3rem, 5.15vw, 4.95rem);
  line-height: 0.86;
  text-shadow: 0 12px 20px rgba(0, 0, 0, 0.24);
  transform: rotate(-2deg);
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy mark,
.rental-heading mark {
  color: var(--yellow);
  background: transparent;
}

.speech-badge {
  position: absolute;
  top: 145px;
  left: min(455px, 64%);
  width: 150px;
  margin: 0;
  padding: 16px 15px;
  border: 5px solid #fff;
  border-radius: 26px;
  color: var(--blue-2);
  background: #fff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  transform: rotate(-8deg);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.14);
}

.speech-badge::after {
  position: absolute;
  right: 16px;
  bottom: -18px;
  width: 22px;
  height: 22px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 20% 100%);
  content: "";
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 52px;
}

.button {
  min-height: 58px;
  min-width: 230px;
  padding: 0 18px 0 26px;
  font-size: 1rem;
}

.button--white {
  color: var(--blue-2);
  background: #fff;
}

.button__circle {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  color: var(--yellow);
  background: var(--blue-3);
}

.button__circle svg,
.price-box svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.why-card {
  align-self: start;
  margin-top: 6px;
  padding: 18px 18px 16px;
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 10px 26px 10px 26px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.why-card h2 {
  margin: 0 0 16px;
  padding: 9px 12px;
  border-radius: 4px;
  color: #fff;
  background: var(--blue-2);
  font-family: "Bowlby One SC", "Nunito Sans", sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-1.5deg);
}

.why-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-card li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #d7ddeb;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.why-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.why-card strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
}

.why-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 999px;
  color: var(--yellow);
  background: var(--blue);
}

.why-card__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.metric-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  margin-top: 4px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.metric-strip article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 96px;
  padding: 16px 24px;
}

.metric-strip article + article {
  border-left: 1px solid #cfd9ed;
}

.metric-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  color: var(--yellow);
  background: var(--blue);
}

.metric-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.metric-strip p {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.1;
}

.metric-strip strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: clamp(1.08rem, 2vw, 1.65rem);
  font-weight: 900;
}

.bottom-panels {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 18px;
  margin-top: 18px;
}

.target-card,
.partner-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.target-card h2,
.partner-card h2 {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-family: "Bowlby One SC", "Nunito Sans", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.target-grid div {
  display: grid;
  gap: 8px;
  min-height: 132px;
  place-items: end center;
  padding: 14px 10px 10px;
  border-right: 1px solid #cfd9ed;
}

.target-grid div:last-child {
  border-right: 0;
}

.target-grid strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  width: 100%;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 0.9rem;
  text-align: center;
}

.avatar,
.mini-illus {
  display: block;
  position: relative;
  width: 92px;
  height: 78px;
  border-radius: 999px 999px 18px 18px;
  background: #d8efff;
  overflow: hidden;
}

.avatar::before {
  position: absolute;
  top: 18px;
  left: 29px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #ffd7a8;
  content: "";
}

.avatar::after {
  position: absolute;
  bottom: -10px;
  left: 21px;
  width: 50px;
  height: 36px;
  border-radius: 18px 18px 0 0;
  background: currentColor;
  content: "";
}

.avatar--green {
  color: #129a58;
}

.avatar--yellow {
  color: #f0a600;
}

.avatar--blue {
  color: #1f73d8;
}

.partner-card {
  background: #fff6d8;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.partner-grid div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 120px;
  padding: 15px;
  border-radius: 14px;
  background: #fff;
}

.partner-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.partner-grid strong {
  display: block;
  margin-bottom: 5px;
  color: var(--blue-2);
  font-size: 0.95rem;
  font-weight: 900;
}

.mini-illus {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: #d9eeff;
}

.mini-illus::before,
.mini-illus::after {
  position: absolute;
  content: "";
}

.mini-illus--person::before {
  top: 15px;
  left: 24px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #ffd7a8;
}

.mini-illus--person::after {
  right: 15px;
  bottom: 10px;
  left: 15px;
  height: 28px;
  border-radius: 15px 15px 0 0;
  background: #1672d7;
}

.mini-illus--building::before {
  bottom: 12px;
  left: 15px;
  width: 40px;
  height: 42px;
  border-radius: 4px 4px 0 0;
  background: var(--blue);
}

.mini-illus--building::after {
  inset: 23px 23px auto;
  height: 5px;
  background: var(--yellow);
  box-shadow: 0 10px 0 var(--yellow), 0 20px 0 var(--yellow);
}

.rental-panel {
  padding: 54px 0 36px;
  color: #fff;
  background:
    linear-gradient(180deg, #014fe8 0%, #008dea 70%, #1cb9f2 100%),
    var(--blue);
}

.rental-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20px 20px, rgba(255, 255, 255, 0.15) 2px, transparent 2.2px),
    linear-gradient(130deg, transparent 0 72%, rgba(255, 210, 26, 0.92) 72.3% 73.2%, transparent 73.6%);
  background-size: 36px 36px, 100% 100%;
  opacity: 0.62;
}

.rental-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.rental-heading p {
  max-width: 560px;
  margin: 12px 0 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.rental-heading h2 {
  display: grid;
  gap: 2px;
  max-width: 650px;
  font-size: clamp(3.2rem, 7.2vw, 6.9rem);
  line-height: 0.86;
  text-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
  transform: rotate(-2deg);
}

.rental-heading h2 span {
  display: block;
}

.rental-heading strong {
  display: inline-block;
  margin-top: 14px;
  color: var(--yellow);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 900;
  transform: rotate(-3deg);
}

.plan-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 640px;
  flex-direction: column;
  padding: 46px 16px 14px;
  border: 8px solid #fff;
  border-radius: 18px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 45, 143, 0.28);
}

.plan-ribbon {
  position: absolute;
  top: -2px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 185px;
  min-height: 32px;
  padding: 0 16px;
  border-radius: 0 0 999px 999px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.plan-ribbon--blue {
  background: var(--blue);
}

.plan-ribbon--green {
  background: var(--green);
}

.plan-ribbon--purple {
  background: var(--purple);
}

.plan-card img {
  width: min(100%, 350px);
  height: 270px;
  align-self: center;
  margin: -4px auto 2px;
  object-fit: contain;
  filter: drop-shadow(0 18px 16px rgba(4, 20, 79, 0.12));
}

.model-name {
  margin: 0 0 2px;
  color: var(--blue-2);
  font-family: "Bowlby One SC", "Nunito Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(0, 45, 143, 0.12);
}

.plan-desc {
  min-height: 66px;
  margin: 0 8px 14px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
  text-align: center;
}

.spec-list {
  display: grid;
  gap: 13px;
  margin: 0 10px 18px;
}

.spec-list div {
  position: relative;
  min-height: 45px;
  padding-left: 54px;
}

.spec-list div::before {
  position: absolute;
  top: 4px;
  left: 8px;
  width: 34px;
  height: 34px;
  border: 3px solid #0a8b53;
  border-radius: 8px;
  content: "";
}

.spec-list div:nth-child(2)::before {
  border-radius: 999px 999px 8px 8px;
}

.spec-list dt {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.spec-list dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.price-box {
  margin-top: auto;
  padding: 15px 14px 13px;
  border-radius: 14px;
  color: #fff;
  background: var(--blue);
}

.price-box span {
  display: block;
  margin-bottom: 2px;
  font-size: 0.78rem;
  font-weight: 700;
}

.price-box strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1;
  white-space: nowrap;
}

.price-box small {
  font-size: 0.58em;
}

.price-box a {
  display: flex;
  min-height: 45px;
  width: 100%;
  justify-content: space-between;
  padding: 0 10px 0 16px;
  box-shadow: none;
}

.price-box a svg {
  width: 24px;
  height: 24px;
  padding: 5px;
  border-radius: 999px;
  color: var(--yellow);
  background: var(--blue-3);
}

.spec-note {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 14px auto 0;
  padding: 10px 16px;
  border: 2px solid rgba(255, 208, 22, 0.85);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 38, 160, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.included-strip {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  padding: 18px 18px 22px;
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  text-align: center;
}

.included-strip h3 {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 44px;
  color: #fff;
  background: var(--blue);
  font-family: "Bowlby One SC", "Nunito Sans", sans-serif;
  font-size: clamp(1.2rem, 2.3vw, 1.8rem);
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.included-strip div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.included-strip span {
  position: relative;
  min-height: 72px;
  padding: 42px 12px 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.included-strip span + span {
  border-left: 1px solid #cfd9ed;
}

.included-strip span::before {
  position: absolute;
  top: 2px;
  left: 50%;
  width: 34px;
  height: 34px;
  border: 3px solid var(--blue);
  border-radius: 9px;
  content: "";
  transform: translateX(-50%);
}

.help-cta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding: 20px 0 0;
}

.help-cta p {
  margin: 0;
  padding: 18px 28px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  font-size: 1.18rem;
  text-align: center;
}

.help-cta strong {
  display: block;
}

.help-cta a {
  min-height: 58px;
  padding: 0 34px;
  font-size: 1.08rem;
}

.faq-panel {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 34px;
  padding: 56px 0;
  color: #fff;
}

.faq-panel h2 {
  margin: 0;
  font-family: "Bowlby One SC", "Nunito Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-size: 1.02rem;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr minmax(240px, 0.75fr);
  align-items: center;
  gap: 28px;
  padding: 28px 0 34px;
  color: #fff;
}

.brand--footer .brand__mark {
  width: 58px;
  height: 58px;
  border-radius: 14px;
}

.brand--footer .brand__mark svg {
  width: 40px;
  height: 40px;
}

.brand--footer strong {
  font-size: 1.35rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-weight: 900;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  :root {
    --content: min(100% - 32px, 900px);
  }

  .home-panel {
    min-height: auto;
  }

  .home-panel__image {
    width: 88vw;
    height: 720px;
    object-position: 66% top;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .why-card {
    max-width: 540px;
    transform: rotate(0);
  }

  .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-strip article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #cfd9ed;
  }

  .metric-strip article:nth-child(4) {
    border-top: 1px solid #cfd9ed;
  }

  .bottom-panels,
  .faq-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .plan-card {
    min-height: auto;
  }

  .included-strip div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 16px;
  }

  .included-strip span:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --content: min(100% - 24px, 520px);
  }

  .home-panel {
    padding-top: 16px;
  }

  .home-panel__image {
    width: 118vw;
    height: 680px;
    object-position: 70% top;
    opacity: 0.74;
  }

  .blue-noise {
    opacity: 0.52;
  }

  .site-header {
    gap: 16px;
  }

  .brand__mark {
    width: 50px;
    height: 50px;
    border-width: 3px;
    border-radius: 10px;
  }

  .brand__mark svg {
    width: 34px;
    height: 34px;
  }

  .brand strong {
    font-size: 1.14rem;
  }

  .top-cta {
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .top-cta svg {
    display: none;
  }

  .nav {
    flex-wrap: wrap;
    gap: 8px 14px;
    overflow-x: visible;
    font-size: 0.78rem;
  }

  .nav a {
    padding: 6px 0;
  }

  .hero-grid {
    padding-top: 46px;
  }

  .hero-copy h1,
  .rental-heading h2 {
    max-width: 100%;
    font-size: clamp(2.8rem, 12.5vw, 3.9rem);
    transform: rotate(-1deg);
    overflow-wrap: break-word;
  }

  .hero-copy h1 span {
    white-space: normal;
  }

  .speech-badge {
    position: relative;
    top: auto;
    left: auto;
    width: fit-content;
    max-width: 230px;
    margin-top: 18px;
    transform: rotate(-3deg);
  }

  .hero-actions {
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .why-card {
    padding: 18px;
  }

  .why-card li {
    grid-template-columns: 50px 1fr;
  }

  .why-card__icon {
    width: 48px;
    height: 48px;
  }

  .metric-strip,
  .target-grid,
  .partner-grid,
  .included-strip div,
  .help-cta {
    grid-template-columns: 1fr;
  }

  .metric-strip article,
  .metric-strip article:nth-child(n) {
    border-top: 1px solid #cfd9ed;
    border-left: 0;
  }

  .metric-strip article:first-child {
    border-top: 0;
  }

  .target-grid div {
    border-right: 0;
    border-bottom: 1px solid #cfd9ed;
  }

  .target-grid div:last-child {
    border-bottom: 0;
  }

  .plan-card {
    padding-inline: 12px;
    border-width: 6px;
  }

  .plan-desc {
    min-height: auto;
  }

  .price-box strong {
    white-space: normal;
  }

  .included-strip h3 {
    padding-inline: 18px;
  }

  .included-strip span,
  .included-strip span:nth-child(n) {
    border-left: 0;
    border-top: 1px solid #cfd9ed;
  }

  .included-strip span:first-child {
    border-top: 0;
  }

  .help-cta p {
    border-radius: 18px;
  }

  .help-cta a {
    width: 100%;
    padding-inline: 18px;
  }
}
