@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Onest:wght@700;800;900&family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@24,600,0,0&display=swap");

:root {
  --graphite: #0e1b1f;
  --graphite-deep: #071012;
  --paper: #ffffff;
  --amber: #ffb740;
  --amber-soft: #ffd37c;
  --mint: #cfefdf;
  --muted: rgba(14, 27, 31, 0.58);
  --line: rgba(14, 27, 31, 0.12);
  --radius-pill: 999px;
  --radius-lg: 34px;
  --panel-open-dur: 4000ms;
  --panel-close-dur: 3500ms;
  --panel-translate-y: 18px;
  --panel-blur: 18px;
  --panel-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --stagger-dur: 5000ms;
  --stagger-distance: 10px;
  --stagger-stagger: 400ms;
  --stagger-blur: 28px;
  --stagger-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --cta-reveal-dur: 1400ms;
  --font-display: "Onest", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--paper);
  background: #080a0b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(8, 10, 11, 0.98), rgba(12, 14, 15, 1)),
    #080a0b;
}

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

.t-panel-slide {
  transform: translateY(var(--panel-translate-y));
  opacity: 0;
  filter: blur(var(--panel-blur));
  pointer-events: none;
  transition:
    transform var(--panel-close-dur) var(--panel-ease),
    opacity var(--panel-close-dur) var(--panel-ease),
    filter var(--panel-close-dur) var(--panel-ease);
  will-change: transform, opacity, filter;
}

.t-panel-slide[data-open="true"] {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
  transition:
    transform var(--panel-open-dur) var(--panel-ease),
    opacity var(--panel-open-dur) var(--panel-ease),
    filter var(--panel-open-dur) var(--panel-ease);
}

.t-stagger-line {
  display: block;
  opacity: 0;
  transform: translateY(var(--stagger-distance));
  filter: blur(var(--stagger-blur));
  transition:
    opacity var(--stagger-dur) var(--stagger-ease),
    transform var(--stagger-dur) var(--stagger-ease),
    filter var(--stagger-dur) var(--stagger-ease);
  will-change: transform, opacity, filter;
}

.t-stagger-line--2 {
  transition-delay: var(--stagger-stagger);
}

.t-stagger.is-shown .t-stagger-line {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.t-stagger.is-hiding .t-stagger-line {
  opacity: 0;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 200ms ease,
    transform 0s linear,
    filter 0s linear;
  transition-delay: 0s;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  width: min(100% - 32px, 1280px);
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(220px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 10px 10px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(7, 12, 14, 0.58);
  color: rgba(255, 250, 242, 0.96);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
  transition:
    opacity var(--panel-open-dur) var(--panel-ease),
    filter var(--panel-open-dur) var(--panel-ease),
    transform var(--panel-open-dur) var(--panel-ease);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
  backdrop-filter: blur(24px) saturate(135%);
}

html.intro-sequence .site-header {
  --panel-translate-y: -24px;
  opacity: 0;
  pointer-events: none;
  filter: blur(var(--panel-blur));
  transform: translateX(-50%) translateY(var(--panel-translate-y));
}

html.intro-sequence .site-header[data-open="true"],
html.intro-sequence.intro-stage-header .site-header {
  opacity: 1;
  pointer-events: auto;
  filter: blur(0);
  transform: translateX(-50%) translateY(0);
}

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

.brand-mark {
  position: relative;
  width: 68px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.brand-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform: scale(1.08);
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.34));
}

.brand-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  color: rgba(255, 250, 242, 0.98);
  font-size: 18px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-copy small {
  color: rgba(255, 250, 242, 0.62);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 450;
  letter-spacing: 0;
  white-space: nowrap;
}

.main-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.main-nav a,
.phone-link,
.booking-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-weight: 550;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.main-nav a {
  padding: 0 13px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 14px;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 250, 242, 0.98);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.phone-link {
  min-width: 170px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 250, 242, 0.74);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.phone-link:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 250, 242, 0.96);
}

.booking-link {
  padding: 0 22px;
  border: 1px solid rgba(255, 211, 124, 0.5);
  background: linear-gradient(135deg, var(--amber), #ff8a1c);
  color: var(--graphite-deep);
  font-size: 13px;
  letter-spacing: 0;
  box-shadow: 0 16px 40px rgba(255, 137, 28, 0.24);
}

.booking-link:hover {
  border-color: rgba(255, 211, 124, 0.75);
  background: linear-gradient(135deg, var(--amber-soft), var(--amber));
  color: var(--graphite-deep);
  box-shadow: 0 20px 46px rgba(255, 183, 64, 0.38);
}

.main-nav a:active,
.phone-link:active,
.booking-link:active,
.brand:active {
  transform: scale(0.96);
}

.hero-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 140px 24px 64px;
  background:
    radial-gradient(ellipse at 50% 36%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #0b0d0e 0%, #070909 55%, #050606 100%);
  isolation: isolate;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-section::before {
  background:
    linear-gradient(180deg, rgba(5, 6, 6, 0.78) 0%, rgba(5, 6, 6, 0.12) 34%, rgba(5, 6, 6, 0.5) 74%, rgba(5, 6, 6, 0.96) 100%),
    linear-gradient(90deg, rgba(5, 6, 6, 0.18), transparent 18%, transparent 82%, rgba(5, 6, 6, 0.18));
}

.hero-section::after {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 84px);
  opacity: 0.34;
  mix-blend-mode: screen;
}

.hero-video-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 0;
  background: #050606;
}

.hero-video-layer::before {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 46%, rgba(190, 205, 200, 0.14), transparent 48%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.05), transparent 24%, rgba(255, 255, 255, 0.04) 64%, transparent);
  filter: blur(18px);
  opacity: 0.58;
}

.hero-video-frame {
  position: relative;
  z-index: 0;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  border-radius: 0;
  background: #070909;
  box-shadow:
    0 0 90px rgba(255, 255, 255, 0.07),
    0 42px 120px rgba(0, 0, 0, 0.62);
}

html.intro-sequence .hero-video-frame {
  will-change: filter;
}

.hero-video-frame::before,
.hero-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-video-frame::before {
  background:
    linear-gradient(180deg, rgba(5, 6, 6, 0.2), transparent 34%, rgba(5, 6, 6, 0.22) 72%, rgba(5, 6, 6, 0.82) 100%),
    linear-gradient(90deg, rgba(5, 6, 6, 0.08), transparent 14%, transparent 86%, rgba(5, 6, 6, 0.08));
}

.hero-video-frame::after {
  display: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 0;
  object-fit: cover;
  object-position: center center;
  opacity: 0.96;
  filter: brightness(0.82) contrast(1.08) saturate(1.02);
  transform: translateZ(0) scale(1.07);
  transform-origin: center center;
  backface-visibility: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, 1240px);
  text-align: center;
}

.hero-content h1 {
  margin: 0;
  font-family: var(--font-display);
  color: #ffffff;
  font-size: 76px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.52),
    0 28px 90px rgba(255, 255, 255, 0.16);
  animation: hero-title-in 780ms 180ms cubic-bezier(0.2, 0, 0, 1) both;
}

.hero-cta {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 0 30px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--amber), #ff8a1c);
  color: var(--graphite-deep);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 18px 54px rgba(255, 137, 28, 0.34);
  transition:
    transform 180ms cubic-bezier(0.2, 0, 0, 1),
    box-shadow 180ms ease,
    filter 180ms ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.04) saturate(1.06);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.26) inset,
    0 24px 68px rgba(255, 137, 28, 0.46);
}

.hero-cta:active {
  transform: translateY(0) scale(0.96);
}

.hero-cta:focus-visible {
  outline: 2px solid rgba(255, 211, 124, 0.95);
  outline-offset: 4px;
}

.section-glow-divider {
  position: relative;
  z-index: 3;
  height: 148px;
  margin: -112px 0 -36px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 52%, rgba(255, 137, 28, 0.14), transparent 58%),
    linear-gradient(180deg, rgba(5, 6, 6, 0) 0%, rgba(5, 6, 6, 0.74) 36%, #050606 64%, rgba(5, 6, 6, 0.94) 100%);
}

.section-glow-divider::before {
  content: "";
  position: absolute;
  top: 54%;
  left: 50%;
  width: min(78%, 1080px);
  height: 1px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, transparent 0%, rgba(255, 106, 0, 0.1) 16%, rgba(255, 183, 64, 0.72) 50%, rgba(255, 106, 0, 0.1) 84%, transparent 100%);
  box-shadow:
    0 0 12px rgba(255, 106, 0, 0.28),
    0 0 30px rgba(255, 137, 28, 0.14);
}

.section-glow-divider::after {
  content: "";
  position: absolute;
  top: 54%;
  left: 50%;
  width: min(76%, 1040px);
  height: 38px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(255, 137, 28, 0.16), transparent 72%);
  filter: blur(14px);
  opacity: 0.9;
  pointer-events: none;
}

.benefits-section {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 118px 24px 132px;
  scroll-margin-top: 118px;
  background:
    linear-gradient(180deg, #050606 0%, #0a0d0e 52%, #080a0b 100%);
  color: var(--paper);
  isolation: isolate;
}

.benefits-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.98) 0%, rgba(5, 6, 6, 0.9) 34%, rgba(5, 6, 6, 0.42) 66%, rgba(5, 6, 6, 0.12) 100%),
    linear-gradient(180deg, rgba(5, 6, 6, 0.24), rgba(5, 6, 6, 0.42)),
    radial-gradient(circle at 73% 46%, rgba(255, 137, 28, 0.34), transparent 34%),
    url("assets/images/hero-storage.webp?v=20260708-optimized") right center / min(78vw, 1180px) auto no-repeat;
  opacity: 0.98;
}

.benefits-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 88px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 88px);
  opacity: 0.28;
}

.benefits-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 680px);
  align-items: start;
}

.benefits-copy {
  min-width: 0;
  text-align: left;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.benefits-copy h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  color: rgba(255, 250, 242, 0.98);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.benefits-lead {
  max-width: 580px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.72);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 450;
  text-wrap: pretty;
}

.benefits-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 600px;
  margin-top: 40px;
}

.benefit-card {
  min-height: 116px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon text";
  align-items: center;
  column-gap: 18px;
  row-gap: 6px;
  padding: 22px 24px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.05)),
    rgba(9, 14, 16, 0.62);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.105) inset,
    0 18px 50px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  backdrop-filter: blur(20px) saturate(135%);
  transition:
    transform 180ms cubic-bezier(0.2, 0, 0, 1),
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.benefit-icon {
  grid-area: icon;
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 22px;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 211, 124, 0.28), transparent 38%),
    rgba(255, 137, 28, 0.14);
  color: #ff8a1c;
  font-size: 30px;
  line-height: 1;
  font-variation-settings: "FILL" 1, "wght" 650, "GRAD" 0, "opsz" 24;
  box-shadow:
    0 0 0 1px rgba(255, 183, 64, 0.28) inset,
    0 14px 32px rgba(255, 137, 28, 0.2);
  transition:
    transform 180ms cubic-bezier(0.2, 0, 0, 1),
    background-color 180ms ease,
    color 180ms ease;
}

.benefit-card:hover .benefit-icon {
  transform: translateY(-2px);
  background-color: rgba(255, 137, 28, 0.2);
  color: var(--amber-soft);
}

.benefit-card:hover {
  transform: translateY(-3px);
  background-color: rgba(255, 183, 64, 0.075);
  box-shadow:
    0 0 0 1px rgba(255, 183, 64, 0.24) inset,
    0 24px 64px rgba(0, 0, 0, 0.34);
}

.benefit-card h3 {
  grid-area: title;
  margin: 0;
  font-family: var(--font-display);
  color: rgba(255, 250, 242, 0.98);
  font-size: 21px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.benefit-card p {
  grid-area: text;
  margin: 0;
  color: rgba(255, 250, 242, 0.7);
  font-size: 15px;
  line-height: 1.44;
  font-weight: 450;
  text-wrap: pretty;
}

.use-cases-section {
  position: relative;
  overflow: hidden;
  padding: 78px 24px 86px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 137, 28, 0.12), transparent 30%),
    radial-gradient(circle at 88% 74%, rgba(255, 183, 64, 0.13), transparent 32%),
    linear-gradient(180deg, #faf8f2 0%, #f0eee7 100%);
  color: var(--graphite-deep);
  isolation: isolate;
}

.use-cases-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17, 25, 27, 0.03) 0 1px, transparent 1px 96px),
    linear-gradient(0deg, rgba(17, 25, 27, 0.024) 0 1px, transparent 1px 96px);
  opacity: 0.5;
}

.use-cases-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 390px) minmax(620px, 760px);
  justify-content: center;
  gap: 56px;
  align-items: center;
}

.use-cases-copy {
  min-width: 0;
}

.use-cases-copy h2 {
  max-width: 420px;
  margin: 0;
  font-family: var(--font-display);
  color: #101719;
  font-size: clamp(42px, 4.5vw, 62px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.use-cases-copy p {
  max-width: 380px;
  margin: 24px 0 0;
  color: rgba(16, 23, 25, 0.66);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 450;
  text-wrap: pretty;
}

.use-cases-list {
  display: grid;
  gap: 12px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.use-cases-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(16, 23, 25, 0.74);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 650;
}

.use-cases-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
}

.use-case-card {
  position: relative;
  min-height: 176px;
  overflow: hidden;
  border-radius: 24px;
  background: #11191b;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.1) inset,
    0 24px 64px rgba(17, 25, 27, 0.16);
}

.use-case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.14), transparent 42%);
}

.use-case-card img {
  width: 100%;
  height: 100%;
  min-height: 176px;
  display: block;
  object-fit: cover;
  filter: brightness(0.86) contrast(1.06) saturate(1.05);
  transform: scale(1.01);
}

.use-case-card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 15px;
  background: linear-gradient(135deg, #ff6a00, #ff8a1c);
  color: #fffaf2;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 16px 34px rgba(255, 106, 0, 0.24);
}

.sizes-section {
  position: relative;
  overflow: hidden;
  padding: 76px 24px 92px;
  scroll-margin-top: 118px;
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 183, 64, 0.16), transparent 28%),
    radial-gradient(circle at 86% 76%, rgba(255, 106, 0, 0.11), transparent 30%),
    linear-gradient(180deg, #f7f1e6 0%, #eee7da 100%);
  color: #111719;
  isolation: isolate;
}

.sizes-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17, 23, 25, 0.04) 0 1px, transparent 1px 94px),
    linear-gradient(0deg, rgba(17, 23, 25, 0.03) 0 1px, transparent 1px 94px);
  opacity: 0.42;
}

.size-pricing-anchor {
  position: absolute;
  top: 0;
}

.sizes-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1440px);
  margin: 0 auto;
}

.sizes-header {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 28px;
  text-align: center;
}

.sizes-header h2 {
  margin: 0;
  font-family: var(--font-display);
  color: #111719;
  font-size: clamp(40px, 4.7vw, 64px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.sizes-header h2 span {
  color: #ff6a00;
}

.sizes-carousel {
  position: relative;
}

.sizes-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 64px) / 3);
  gap: 32px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding: 0;
  padding: 0;
  scrollbar-width: none;
}

.sizes-track::-webkit-scrollbar {
  display: none;
}

.size-card {
  min-height: 520px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  scroll-snap-align: start;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.32)),
    rgba(255, 250, 242, 0.72);
  box-shadow:
    0 0 0 1px rgba(17, 23, 25, 0.1) inset,
    0 18px 54px rgba(17, 23, 25, 0.1);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    filter 200ms ease;
}

.size-card:hover {
  filter: saturate(1.03);
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(255, 106, 0, 0.32) inset,
    0 24px 70px rgba(17, 23, 25, 0.16);
}

.size-card-top {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 18px;
  min-height: 280px;
  margin: 18px 18px 0;
  padding: 24px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 106, 0, 0.22), transparent 30%),
    linear-gradient(145deg, #171b1c, #070909);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 18px 44px rgba(17, 23, 25, 0.16);
}

.size-card-top::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 106, 0, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 42%, rgba(0, 0, 0, 0.18) 100%);
}

.size-card-title {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.size-card-title strong {
  color: rgba(255, 250, 242, 0.96);
  font-family: var(--font-display);
  font-size: clamp(72px, 7vw, 116px);
  line-height: 0.82;
  font-weight: 900;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  text-shadow:
    0 0 30px rgba(255, 106, 0, 0.18),
    0 20px 48px rgba(0, 0, 0, 0.34);
}

.size-card-title span {
  min-height: auto;
  display: inline-block;
  margin-bottom: 9px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #ff8a1c;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.3vw, 42px);
  line-height: 1;
  font-weight: 850;
  text-transform: none;
  font-variant-numeric: tabular-nums;
}

.size-card--service {
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 106, 0, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(20, 23, 22, 0.94), rgba(17, 23, 25, 0.86));
  color: #fffaf2;
  box-shadow:
    0 0 0 1px rgba(255, 106, 0, 0.2) inset,
    0 18px 54px rgba(17, 23, 25, 0.18);
}

.size-card--service:hover {
  box-shadow:
    0 0 0 1px rgba(255, 106, 0, 0.48) inset,
    0 24px 70px rgba(17, 23, 25, 0.22);
}

.size-card--service .size-card-top {
  min-height: 280px;
}

.size-card--service .size-card-title {
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.size-card--service .size-card-title strong {
  color: #ff6a00;
  font-size: clamp(58px, 5.4vw, 92px);
}

.size-card--service .size-card-title span {
  min-height: 34px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.12);
  color: rgba(255, 250, 242, 0.76);
  font-size: 14px;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.tire-rate-table {
  align-self: end;
  margin: 0 20px 20px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  font-variant-numeric: tabular-nums;
}

.tire-rate-row {
  display: grid;
  grid-template-columns: minmax(64px, 1fr) 70px 78px;
  gap: 8px;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  color: rgba(255, 250, 242, 0.9);
  font-size: 12px;
  line-height: 1.15;
  font-weight: 800;
  text-wrap: pretty;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.08) inset;
}

.tire-rate-row span:not(:first-child) {
  justify-self: end;
}

.tire-rate-row:last-child {
  box-shadow: none;
}

.tire-rate-head {
  min-height: 30px;
  color: #ff8a1c;
  background: rgba(255, 106, 0, 0.12);
  text-transform: uppercase;
  letter-spacing: 0;
}

.size-card ul {
  display: grid;
  align-content: start;
  gap: 8px;
  margin: 0;
  padding: 22px 24px 24px;
  list-style: none;
}

.size-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(17, 23, 25, 0.72);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  text-wrap: pretty;
}

.size-card li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -2px;
  color: #ff6a00;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1;
  font-weight: 900;
}

.size-card:not(.size-card--service) ul {
  gap: clamp(11px, 1vw, 16px);
  padding: clamp(24px, 2.2vw, 34px) clamp(26px, 2.4vw, 36px) clamp(26px, 2.4vw, 36px);
}

.size-card:not(.size-card--service) li {
  padding-left: 24px;
  color: rgba(17, 23, 25, 0.78);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.45;
  font-weight: 800;
}

.size-card:not(.size-card--service) li::before {
  top: -5px;
  font-size: 30px;
}

.size-card-price {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 20px;
  background: linear-gradient(135deg, #ff6a00, #ff8a1c);
  color: #111719;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.size-card-price .material-symbols-rounded {
  flex: 0 0 auto;
  font-size: 30px;
}

.size-card-price:hover {
  filter: brightness(1.04);
}

.size-card-price:active,
.sizes-dots button:active {
  transform: scale(0.96);
}

.sizes-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 23, 25, 0.88);
  color: #fffaf2;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 18px 40px rgba(17, 23, 25, 0.24);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.sizes-nav:hover {
  background: #ff6a00;
  color: #111719;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 22px 54px rgba(255, 106, 0, 0.34);
}

.sizes-nav:active {
  transform: translateY(-50%) scale(0.96);
}

.sizes-nav--prev {
  left: -18px;
}

.sizes-nav--next {
  right: -18px;
}

.sizes-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.sizes-dots button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: transform 180ms ease;
}

.sizes-dots button::before {
  content: "";
  width: 22px;
  height: 7px;
  border-radius: 999px;
  background: rgba(17, 23, 25, 0.22);
  transition:
    width 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.sizes-dots button[aria-current="true"]::before {
  width: 34px;
  background: #ff6a00;
  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.32);
}

.process-section {
  position: relative;
  overflow: hidden;
  padding: 112px 24px 124px;
  scroll-margin-top: 118px;
  background:
    radial-gradient(ellipse at 28% 18%, rgba(255, 137, 28, 0.22), transparent 34%),
    radial-gradient(circle at 82% 58%, rgba(255, 106, 0, 0.14), transparent 28%),
    linear-gradient(180deg, #050606 0%, #0c0f10 52%, #050606 100%);
  color: var(--paper);
  isolation: isolate;
  box-shadow:
    0 -1px 0 rgba(255, 255, 255, 0.06) inset,
    0 1px 0 rgba(255, 137, 28, 0.12) inset;
}

.process-section::before,
.process-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.process-section::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 96px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.016) 0 1px, transparent 1px 96px);
  opacity: 0.45;
}

.process-section::after {
  background:
    radial-gradient(ellipse at 50% 50%, transparent 0 56%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 24%, transparent 74%, rgba(0, 0, 0, 0.34));
  opacity: 0.86;
}

.process-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1220px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
  align-items: center;
  gap: 72px;
}

.process-intro {
  min-width: 0;
}

.process-kicker {
  color: rgba(255, 183, 64, 0.86);
}

.process-title {
  margin: 0;
  text-align: left;
  font-family: var(--font-display);
  color: rgba(255, 250, 242, 0.97);
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.process-title span {
  color: #ff6a00;
  text-shadow: 0 0 26px rgba(255, 106, 0, 0.3);
}

.process-lead {
  max-width: 410px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.68);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 450;
  text-wrap: pretty;
}

.process-cta {
  min-height: 54px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
  padding: 0 22px 0 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--amber), #ff8a1c);
  color: var(--graphite-deep);
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 22px 56px rgba(255, 137, 28, 0.3);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.process-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.03) saturate(1.04);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.26) inset,
    0 28px 70px rgba(255, 137, 28, 0.42);
}

.process-cta:active {
  transform: scale(0.96);
}

.process-cta .material-symbols-rounded {
  font-size: 22px;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 540, "GRAD" 0, "opsz" 24;
}

.process-board {
  position: relative;
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 14px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07) inset,
    0 34px 90px rgba(0, 0, 0, 0.34);
}

.process-board::before {
  content: "";
  position: absolute;
  top: 56px;
  bottom: 56px;
  left: 68px;
  z-index: 0;
  width: 2px;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, rgba(255, 183, 64, 0), rgba(255, 106, 0, 0.72), rgba(255, 183, 64, 0));
  box-shadow: 0 0 26px rgba(255, 106, 0, 0.24);
}

.process-step {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  column-gap: 20px;
  overflow: hidden;
  isolation: isolate;
  min-height: 132px;
  padding: 22px 28px 22px 20px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 50%, rgba(255, 106, 0, 0.14), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.075) inset,
    0 18px 50px rgba(0, 0, 0, 0.24);
}

.process-number {
  position: absolute;
  right: 20px;
  bottom: -18px;
  z-index: 0;
  color: #ff6a00;
  font-family: var(--font-display);
  font-size: clamp(92px, 9vw, 146px);
  line-height: 0.82;
  font-weight: 900;
  letter-spacing: 0;
  opacity: 0.11;
  font-variant-numeric: tabular-nums;
  text-shadow:
    0 0 28px rgba(255, 106, 0, 0.18),
    0 14px 32px rgba(255, 106, 0, 0.14);
  pointer-events: none;
  user-select: none;
}

.process-icon-badge {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.13), transparent 42%),
    linear-gradient(145deg, rgba(26, 31, 32, 0.98), rgba(8, 11, 12, 0.96));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 14px 38px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(255, 106, 0, 0.12);
}

.process-icon-badge .material-symbols-rounded {
  color: #ff6a00;
  font-size: 36px;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 420, "GRAD" 0, "opsz" 48;
  text-shadow: 0 0 18px rgba(255, 106, 0, 0.16);
}

.process-step-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.process-step-content p {
  margin: 0 0 9px;
  color: rgba(255, 183, 64, 0.78);
  font-family: var(--font-display);
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-step-content h3 {
  margin: 0;
  color: rgba(255, 250, 242, 0.94);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.process-step-content span {
  display: block;
  max-width: 410px;
  margin-top: 10px;
  color: rgba(255, 250, 242, 0.62);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 450;
  text-wrap: pretty;
}

html.intro-sequence .hero-content h1 {
  opacity: 0;
  filter: blur(var(--stagger-blur));
  transform: translateY(var(--stagger-distance)) scale(0.99);
  animation: none;
  transition:
    opacity var(--stagger-dur) var(--stagger-ease),
    filter var(--stagger-dur) var(--stagger-ease),
    transform var(--stagger-dur) var(--stagger-ease);
  will-change: opacity, filter, transform;
}

html.intro-sequence .hero-cta {
  opacity: 0;
  filter: blur(var(--stagger-blur));
  transform: translateY(var(--stagger-distance)) scale(0.99);
  pointer-events: none;
  transition:
    opacity var(--cta-reveal-dur) var(--stagger-ease),
    filter var(--cta-reveal-dur) var(--stagger-ease),
    transform var(--cta-reveal-dur) var(--stagger-ease),
    box-shadow 180ms ease;
  will-change: opacity, filter, transform;
}

html.intro-sequence .hero-content.is-shown h1,
html.intro-sequence.intro-stage-title .hero-content h1 {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

html.intro-sequence .hero-content.is-cta-shown .hero-cta,
html.intro-sequence.intro-stage-cta .hero-content .hero-cta {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

html.intro-sequence .hero-content.is-cta-shown .hero-cta:hover,
html.intro-sequence.intro-stage-cta .hero-content .hero-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.04) saturate(1.06);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.26) inset,
    0 24px 68px rgba(255, 137, 28, 0.46);
}

@keyframes hero-title-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.motion-ready .hero-content h1 {
  animation: none;
}

.motion-ready .hero-video-frame {
  will-change: opacity, filter;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 2px 2px 0;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .benefits-shell {
    grid-template-columns: minmax(0, 680px);
  }

  .use-cases-shell {
    grid-template-columns: minmax(280px, 360px) minmax(0, 680px);
    gap: 32px;
  }

  .use-case-card {
    min-height: 160px;
  }

  .use-case-card img {
    min-height: 160px;
  }

  .sizes-track {
    grid-auto-columns: calc((100% - 64px) / 3);
    gap: 32px;
  }

  .size-card {
    min-height: 500px;
  }

  .size-card-top {
    min-height: 260px;
  }

  .size-card--service .size-card-top {
    min-height: 260px;
  }

  .process-shell {
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 40px;
  }

  .process-icon-badge {
    width: 70px;
    height: 70px;
  }

  .process-icon-badge .material-symbols-rounded {
    font-size: 34px;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: max(10px, env(safe-area-inset-top));
    width: min(100% - 18px, 1280px);
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: stretch;
    gap: 8px 10px;
    min-height: 0;
    padding: 10px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
      rgba(7, 12, 14, 0.74);
    box-shadow:
      0 18px 56px rgba(0, 0, 0, 0.36),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }

  .main-nav {
    display: none;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    min-height: 42px;
    justify-self: start;
    justify-content: flex-start;
    gap: 7px;
  }

  .brand-mark {
    width: 54px;
    height: 38px;
    border-radius: 13px;
  }

  .brand-logo {
    transform: scale(1.08);
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    max-width: 116px;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.04;
    text-overflow: ellipsis;
    letter-spacing: 0;
  }

  .header-actions {
    display: contents;
  }

  .phone-link {
    grid-column: 1 / -1;
    grid-row: 2;
    min-width: 0;
    min-height: 38px;
    padding: 0 14px;
    justify-self: stretch;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    font-size: 13px;
    color: rgba(255, 250, 242, 0.8);
  }

  .booking-link {
    grid-column: 2;
    grid-row: 1;
    min-height: 42px;
    padding: 0 14px;
    align-self: center;
    font-size: 12px;
    box-shadow: 0 14px 34px rgba(255, 137, 28, 0.26);
  }

  .hero-section {
    padding: 214px 16px 58px;
  }

  .hero-content {
    width: min(100%, 420px);
    display: grid;
    justify-items: center;
    justify-self: center;
    padding: 0;
    text-align: center;
  }

  .hero-video-layer {
    padding: 0;
  }

  .hero-video-frame {
    width: 100vw;
    height: 100svh;
    border-radius: 0;
  }

  .hero-content h1 {
    width: 100%;
    margin-inline: auto;
    font-size: 44px;
    line-height: 1.06;
  }

  .benefits-section {
    min-height: auto;
    padding: 82px 20px;
    scroll-margin-top: 220px;
  }

  .benefits-section::before {
    background:
      linear-gradient(180deg, rgba(5, 6, 6, 0.98) 0%, rgba(5, 6, 6, 0.92) 58%, rgba(5, 6, 6, 0.64) 100%),
      radial-gradient(circle at 70% 72%, rgba(255, 137, 28, 0.24), transparent 38%),
      url("assets/images/hero-storage.webp?v=20260708-optimized") center bottom / 780px auto no-repeat;
  }

  .benefits-copy h2 {
    font-size: 40px;
  }

  .benefits-lead {
    font-size: 16px;
  }

  .benefits-list {
    margin-top: 30px;
  }

  .benefit-card {
    min-height: 112px;
    padding: 20px;
    border-radius: 26px;
  }

  .use-cases-section {
    padding: 60px 20px 68px;
  }

  .use-cases-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .use-cases-copy h2 {
    font-size: 34px;
  }

  .use-cases-copy p {
    max-width: 620px;
    margin-top: 18px;
    font-size: 15px;
  }

  .use-cases-list {
    gap: 12px;
    margin-top: 24px;
  }

  .use-cases-grid {
    gap: 14px;
  }

  .use-case-card {
    min-height: 150px;
    border-radius: 22px;
  }

  .use-case-card img {
    min-height: 150px;
  }

  .use-case-card span {
    left: 12px;
    bottom: 12px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 14px;
  }

  .sizes-section {
    padding: 58px 20px 68px;
    scroll-margin-top: 220px;
  }

  .sizes-header {
    margin-bottom: 22px;
  }

  .sizes-header h2 {
    font-size: 38px;
  }

  .sizes-track {
    grid-auto-columns: minmax(280px, 82%);
    gap: 16px;
    scroll-padding: 0;
  }

  .size-card {
    min-height: 500px;
  }

  .size-card-top,
  .size-card--service .size-card-top {
    min-height: 250px;
  }

  .sizes-nav {
    display: none;
  }

  .sizes-dots {
    display: none;
  }

  .process-section {
    padding: 76px 20px 86px;
    scroll-margin-top: 220px;
  }

  .process-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .process-title {
    font-size: 42px;
  }

  .process-lead {
    max-width: 620px;
    margin-top: 18px;
  }

  .process-board {
    padding: 12px;
    border-radius: 30px;
  }

  .process-board::before {
    left: 54px;
  }

  .process-step {
    min-height: 118px;
    grid-template-columns: 66px minmax(0, 1fr);
    column-gap: 16px;
    padding: 18px 20px 18px 16px;
    border-radius: 24px;
  }

  .process-icon-badge {
    width: 62px;
    height: 62px;
    border-radius: 20px;
  }

  .process-icon-badge .material-symbols-rounded {
    font-size: 31px;
  }

  .process-step-content h3 {
    font-size: 20px;
  }
}

@media (max-width: 420px) {
  .brand-copy strong {
    max-width: 92px;
    font-size: 14px;
  }

  .booking-link {
    padding: 0 12px;
    font-size: 11px;
  }

  .hero-section {
    padding-top: 216px;
  }

  .hero-video-layer {
    padding: 0;
  }

  .hero-video-frame {
    width: 100vw;
    height: 100svh;
    border-radius: 0;
  }

  .hero-content h1 {
    width: 100%;
    font-size: 36px;
  }

  .benefits-section {
    padding: 68px 16px 92px;
  }

  .benefits-section::before {
    background-size: auto, auto, 640px auto;
  }

  .benefits-copy h2 {
    font-size: 32px;
  }

  .use-cases-section {
    padding: 52px 16px 58px;
  }

  .use-cases-copy h2 {
    font-size: 30px;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  .use-case-card {
    min-height: 170px;
  }

  .use-case-card img {
    min-height: 170px;
  }

  .sizes-section {
    padding: 50px 16px 70px;
  }

  .sizes-header h2 {
    font-size: 31px;
  }

  .sizes-track {
    grid-auto-columns: minmax(264px, 88%);
    gap: 14px;
  }

  .size-card {
    min-height: 474px;
  }

  .size-card-top {
    grid-template-columns: 1fr;
    min-height: 220px;
    margin: 14px 14px 0;
    padding: 14px;
  }

  .size-card-title strong {
    font-size: 58px;
  }

  .size-card-title span {
    min-height: auto;
    margin-bottom: 5px;
    padding: 0;
    font-size: 22px;
  }

  .size-card--service .size-card-top {
    min-height: 220px;
  }

  .tire-rate-table {
    margin: 0 14px 16px;
  }

  .tire-rate-row {
    grid-template-columns: minmax(58px, 1fr) 60px 68px;
    min-height: 29px;
    gap: 6px;
    padding: 6px 8px;
    font-size: 11px;
  }

  .size-card ul {
    padding: 0 18px 18px;
  }

  .size-card-price {
    min-height: 58px;
    padding: 0 18px;
    font-size: 17px;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    font-size: 28px;
  }

  .benefit-card {
    grid-template-columns: 50px minmax(0, 1fr);
    column-gap: 14px;
    padding: 18px;
  }

  .benefit-card h3 {
    font-size: 19px;
  }

  .benefit-card p {
    font-size: 14px;
  }

  .process-section {
    padding: 54px 16px 62px;
  }

  .process-title {
    font-size: 34px;
  }

  .process-cta {
    width: 100%;
    padding: 0 18px;
  }

  .process-board {
    gap: 12px;
    padding: 10px;
    border-radius: 26px;
  }

  .process-board::before {
    left: 42px;
    top: 46px;
    bottom: 46px;
  }

  .process-step {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 112px;
    column-gap: 14px;
    padding: 16px 14px;
    border-radius: 22px;
  }

  .process-number {
    right: 10px;
    bottom: -10px;
    font-size: 92px;
  }

  .process-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 17px;
  }

  .process-icon-badge .material-symbols-rounded {
    font-size: 27px;
  }

  .process-step-content p {
    margin-bottom: 7px;
    font-size: 11px;
  }

  .process-step-content h3 {
    font-size: 18px;
  }

  .process-step-content span {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.42;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:not(.intro-sequence) .t-panel-slide,
  html:not(.intro-sequence) .t-stagger-line {
    transition: none !important;
  }

  html:not(.intro-sequence) *,
  html:not(.intro-sequence) *::before,
  html:not(.intro-sequence) *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
