* {
  box-sizing: border-box;
}

:root {
  color: #020617;
  background-color: #f8f2e8;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #020617;
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.12), transparent 24%),
    linear-gradient(180deg, #f8f2e8 0%, #f7f4ed 100%);
  min-height: 100vh;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 48%, rgba(255, 255, 255, 0.2), transparent 24rem),
    linear-gradient(135deg, #858c86 0%, #9da39c 48%, #747b76 100%);
  color: #ffffff;
  pointer-events: none;
  animation: loaderExit 900ms cubic-bezier(0.74, 0, 0.24, 1) 3550ms forwards;
}

.site-loader::before {
  content: "ParcellBox";
  position: absolute;
  right: -0.08em;
  bottom: -0.18em;
  color: rgba(255, 255, 255, 0.12);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(6rem, 18vw, 18rem);
  line-height: 0.76;
  font-weight: 700;
  letter-spacing: -0.105em;
  white-space: nowrap;
}

.site-loader__inner {
  position: relative;
  z-index: 1;
  width: min(1420px, calc(100% - 32px));
  display: grid;
  gap: clamp(10px, 1.2vw, 18px);
  justify-items: center;
  text-align: center;
}

.site-loader__line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.24em;
  overflow: hidden;
  width: fit-content;
  max-width: 100%;
  color: #ffffff;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.2rem, 5vw, 6rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.075em;
  white-space: nowrap;
  transform-origin: left center;
  animation: loaderWord 900ms cubic-bezier(0.2, 0.72, 0.18, 1) both;
}

.site-loader__line:nth-child(1) {
  animation-delay: 120ms;
}

.site-loader__line:nth-child(2) {
  animation-delay: 1200ms;
}

.site-loader__line--join {
  white-space: nowrap;
}

.site-loader__brand {
  display: inline-block;
  color: #f8c15d;
  font-size: 1.18em;
  letter-spacing: -0.085em;
}

.marketing-shell {
  animation: pageReveal 900ms cubic-bezier(0.2, 0.72, 0.18, 1) 3800ms both;
}

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

.marketing-shell {
  min-height: 100vh;
}

.shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  background: rgba(248, 242, 232, 0.84);
  backdrop-filter: blur(20px);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-right: auto;
}

.brand__logo {
  display: block;
}

.brand__logo--wide {
  width: 210px;
  height: auto;
}

.brand__logo--compact {
  display: none;
  width: 44px;
  height: 44px;
  object-fit: cover;
  object-position: left center;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.14);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #475569;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:hover,
.footer__links a:hover {
  color: #020617;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn--ghost {
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.8);
  color: #1e293b;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.btn--primary {
  background: #020617;
  color: white;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
}

.btn--accent {
  background: #f97316;
  color: white;
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.28);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 96px;
}

.hero__bg {
  position: absolute;
  inset: 0 0 auto;
  height: 38rem;
  z-index: -1;
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.28), transparent 30%),
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.2), transparent 26%),
    linear-gradient(180deg, #f8f2e8 0%, #f6eee1 55%, #f7f4ed 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 56px;
}

.pill-badge,
.section-kicker,
.meta {
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 16px;
  border-radius: 999px;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
}

.hero h1,
.section-head h2,
.platform-copy h2,
.cta h2,
.marketing-card h3,
.dark-card h3,
.platform-flow__card h3 {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.04em;
}

.hero h1 {
  margin: 24px 0 0;
  font-size: clamp(3.4rem, 8vw, 5.6rem);
  line-height: 0.94;
  font-weight: 600;
}

.hero__lede {
  margin-top: 24px;
  max-width: 640px;
  color: #475569;
  font-size: 1.18rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-device {
  animation: hero-float 7.5s ease-in-out infinite;
  transform-origin: center;
  max-width: 34rem;
  margin-inline: auto;
  border-radius: 2rem;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: #fffaf1;
  box-shadow: 0 30px 90px rgba(148, 90, 36, 0.22);
}

.hero-device__frame {
  border-radius: 1.7rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, #fffdf8 0%, #fff6e7 100%);
  padding: 20px;
}

.hero-device__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.8);
}

.meta {
  margin: 0;
  color: #94a3b8;
  font-size: 0.7rem;
  font-weight: 600;
}

.meta--light {
  color: rgba(255, 255, 255, 0.45);
}

.hero-device__title {
  margin: 6px 0 0;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.status {
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

.status--online {
  background: #dcfce7;
  color: #15803d;
}

.hero-device__panel {
  margin-top: 16px;
  border-radius: 1.8rem;
  background: #020617;
  color: white;
  padding: 24px;
}

.hero-device__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.hero-device__unit {
  margin: 8px 0 0;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 600;
}

.hero-device__icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: #fde68a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.hero-device__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.stat-card {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
}

.stat-card p:last-child {
  margin: 8px 0 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.approval-card {
  margin-top: 24px;
  border-radius: 1.5rem;
  padding: 20px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(249, 115, 22, 0.3));
}

.approval-card__eyebrow {
  margin: 0;
  color: #fde68a;
  font-size: 0.95rem;
  font-weight: 500;
}

.approval-card__inner {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 1rem;
  background: rgba(2, 6, 23, 0.55);
  padding: 16px;
}

.approval-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.approval-card__copy {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.approval-card__actions {
  display: flex;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.chip--dark {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.chip--approve {
  background: #4ade80;
  color: #14532d;
}

.section {
  padding: 96px 0;
}

.section-head {
  max-width: 760px;
}

.section-kicker {
  margin: 0;
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 600;
}

.section-kicker--light {
  color: rgba(253, 224, 71, 0.9);
}

.section-head h2,
.platform-copy h2,
.cta h2 {
  margin: 14px 0 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08;
  font-weight: 600;
}

.grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.marketing-card,
.dark-card {
  border-radius: 2rem;
  padding: 28px;
}

.marketing-card {
  border: 1px solid rgba(15, 23, 42, 0.05);
  background: white;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
}

.marketing-card--tight h3 {
  margin-top: 16px;
  font-size: 1.7rem;
  line-height: 1.35;
}

.marketing-card h3 {
  margin: 24px 0 0;
  font-size: 1.75rem;
  font-weight: 600;
}

.marketing-card p {
  margin: 12px 0 0;
  color: #475569;
  line-height: 1.8;
}

.icon-tile {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #020617;
  color: #fde68a;
  font-weight: 700;
}

.section--dark {
  background: #020617;
  color: white;
}

.section-title--light {
  color: white;
}

.dark-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.dark-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dark-card__index {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.2);
}

.dark-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fde68a;
  font-size: 0.82rem;
  font-weight: 700;
}

.dark-card h3 {
  margin: 36px 0 0;
  font-size: 1.75rem;
  font-weight: 600;
}

.dark-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.platform-wrap {
  overflow: hidden;
  border-radius: 2.5rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 247, 235, 0.98) 100%);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
}

.platform-copy,
.platform-benefits {
  padding: 40px;
}

.platform-copy {
  border-right: 1px solid rgba(15, 23, 42, 0.06);
}

.platform-lede {
  margin-top: 20px;
  color: #475569;
  font-size: 1.12rem;
  line-height: 1.8;
}

.platform-flow {
  margin-top: 32px;
  border-radius: 2rem;
  background: #020617;
  color: white;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.platform-flow__card {
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
}

.platform-flow__card h3 {
  margin: 12px 0 0;
  font-size: 1.6rem;
  line-height: 1.3;
}

.platform-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 16px;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
}

.platform-step__icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fde68a;
  font-weight: 700;
  font-size: 0.8rem;
}

.platform-step strong {
  display: block;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.1rem;
}

.platform-step p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}

.capability-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.capability {
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
  padding: 16px;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.7;
}

.section--cta {
  padding-top: 16px;
}

.cta {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  background: #020617;
  color: white;
  padding: 48px 56px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.28);
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 50%;
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.34), transparent 48%);
}

.cta__copy,
.cta__actions {
  position: relative;
  z-index: 1;
}

.cta__copy {
  max-width: 760px;
}

.cta__copy p:last-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.12rem;
  line-height: 1.8;
  margin-top: 20px;
}

.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 18rem;
}

.store-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.store-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  min-width: 240px;
  border-radius: 1.15rem;
  background: black;
  color: white;
  padding: 16px 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.store-badge__label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.store-badge strong {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #020617;
  color: white;
  padding: 32px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1100px) {
  .hero__grid,
  .platform-wrap,
  .cta {
    grid-template-columns: 1fr;
    display: grid;
  }

  .platform-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  }

  .cta {
    padding: 40px 32px;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(1280px, calc(100% - 32px));
  }

  .nav,
  .topbar__actions {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero__lede,
  .platform-lede,
  .cta__copy p:last-child {
    font-size: 1rem;
  }

  .grid--three,
  .hero-device__stats,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .platform-copy,
  .platform-benefits,
  .cta {
    padding: 28px;
  }

  .approval-card__inner,
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .approval-card__actions {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .brand__logo--wide {
    display: none;
  }

  .brand__logo--compact {
    display: block;
  }
}

/* New ParcellBox infrastructure landing page */
.hero--infrastructure {
  padding: 56px 0 104px;
}

.hero--infrastructure .hero__grid {
  grid-template-columns: 1.04fr 0.96fr;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span,
.feature-ribbon span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.74);
  color: #334155;
  padding: 9px 13px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
}

.delivery-console {
  position: relative;
  overflow: hidden;
  border-radius: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 85% 8%, rgba(251, 191, 36, 0.34), transparent 28%),
    linear-gradient(145deg, #fffdf7 0%, #fff3df 48%, #ffffff 100%);
  box-shadow: 0 34px 90px rgba(124, 58, 16, 0.22);
  padding: 24px;
  animation: hero-float 7.5s ease-in-out infinite;
}

.delivery-console::before {
  content: "";
  position: absolute;
  inset: auto -18% -36% 34%;
  height: 19rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.22), transparent 62%);
}

.delivery-console__top,
.vault-card,
.hero-metrics {
  position: relative;
  z-index: 1;
}

.delivery-console__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.delivery-console__top h2 {
  margin: 8px 0 0;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.vault-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  align-items: center;
  border-radius: 2rem;
  background: #020617;
  color: white;
  padding: 22px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 24px 70px rgba(2, 6, 23, 0.22);
}

.vault-card__box {
  position: relative;
  min-height: 190px;
  border-radius: 1.4rem;
  background: linear-gradient(135deg, #0f2a4d 0%, #031025 72%);
  box-shadow: inset -14px -18px 40px rgba(0, 0, 0, 0.26);
}

.vault-card__lid {
  position: absolute;
  inset: 18px 20px auto;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.72));
}

.vault-card__door {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 54%;
  height: 66%;
  border-radius: 1rem;
  background: #fff7e8;
  display: grid;
  place-items: center;
}

.vault-card__cube {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #c8922e, #f3c25f);
  color: white;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
}

.vault-card__content h3 {
  margin: 10px 0 0;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.85rem;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.vault-card__content p:last-child {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.hero-metrics div {
  border-radius: 1.15rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.78);
  padding: 16px;
  box-shadow: 0 14px 45px rgba(15, 23, 42, 0.06);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.1rem;
}

.hero-metrics span {
  margin-top: 4px;
  color: #64748b;
  font-size: 0.82rem;
}

.split-intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: end;
}

.split-intro h2,
.future-panel h2 {
  margin: 14px 0 0;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.intro-copy,
.section-lede {
  color: #475569;
  font-size: 1.12rem;
  line-height: 1.85;
}

.section-lede {
  max-width: 780px;
  margin: 18px 0 0;
}

.section--problem {
  padding-top: 88px;
}

.problem-grid {
  align-items: stretch;
}

.problem-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border-radius: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #ffffff;
  padding: 30px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.07);
}

.problem-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.10);
}

.problem-card--gold {
  background: linear-gradient(145deg, #fff7e8 0%, #ffffff 100%);
}

.problem-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 44px;
  border-radius: 999px;
  background: #020617;
  color: #fcd34d;
  padding: 0 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.problem-card h3,
.size-card h3,
.environment-card h3,
.tech-card h3,
.technology-note h3 {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.04em;
}

.problem-card h3 {
  margin: 34px 0 0;
  font-size: 1.8rem;
  line-height: 1.15;
}

.problem-card p,
.size-card p,
.environment-card p,
.tech-card p,
.technology-note p,
.future-panel p {
  color: #475569;
  line-height: 1.75;
}

.steps-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.step-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.055);
  padding: 26px;
}

.step-card--accent {
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.26), rgba(251, 191, 36, 0.12));
}

.step-card__number {
  display: block;
  color: rgba(253, 224, 71, 0.95);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.step-card h3 {
  margin: 42px 0 0;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.step-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.size-card {
  position: relative;
  min-height: 320px;
  border-radius: 2rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
  padding: 30px;
}

.size-card::before {
  content: "";
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: var(--box-width, 82px);
  height: var(--box-height, 68px);
  border-radius: 16px 16px 10px 10px;
  background: linear-gradient(145deg, #08254a, #020617);
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.20);
}

.size-card--small { --box-width: 72px; --box-height: 56px; }
.size-card--medium { --box-width: 92px; --box-height: 72px; }
.size-card--large { --box-width: 112px; --box-height: 88px; }

.size-card__label {
  margin: 0;
  color: #b7791f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.size-card h3 {
  margin: 18px 0 0;
  font-size: 1.85rem;
  line-height: 1.12;
}

.size-card p:last-child {
  max-width: 28rem;
}

.feature-ribbon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.section--muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 247, 235, 0.72));
}

.section-head--wide {
  max-width: 920px;
}

.environment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.environment-card {
  min-height: 230px;
  border-radius: 1.8rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.86);
  padding: 28px;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.055);
}

.environment-card h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.16;
}

.environment-card--dark {
  background: #020617;
  color: white;
}

.environment-card--dark h3 {
  margin-top: 18px;
  color: white;
}

.technology-wrap {
  grid-template-columns: 0.9fr 1.1fr;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 34px;
}

.tech-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.78);
  padding: 22px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.05);
}

.tech-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  color: #c2410c;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.tech-card h3 {
  margin: 18px 0 0;
  font-size: 1.25rem;
}

.tech-card p {
  font-size: 0.95rem;
}

.technology-note {
  margin-top: 32px;
  border-radius: 1.6rem;
  background: #020617;
  color: white;
  padding: 26px;
}

.technology-note h3 {
  margin: 0;
  font-size: 1.6rem;
}

.technology-note p {
  color: rgba(255, 255, 255, 0.72);
}

.section--future {
  padding-top: 12px;
}

.future-panel {
  overflow: hidden;
  position: relative;
  border-radius: 2.4rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background:
    radial-gradient(circle at 88% 22%, rgba(251, 191, 36, 0.28), transparent 28%),
    #ffffff;
  padding: 56px;
  box-shadow: 0 24px 75px rgba(15, 23, 42, 0.07);
}

.future-panel p:last-child {
  max-width: 760px;
  font-size: 1.12rem;
}

.btn--light {
  background: white;
  color: #020617;
  box-shadow: 0 18px 45px rgba(255, 255, 255, 0.12);
}

.btn--ghost-dark {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: white;
}

.cta__actions--stacked .btn {
  width: 100%;
}

@media (max-width: 1100px) {
  .hero--infrastructure .hero__grid,
  .split-intro,
  .technology-wrap {
    grid-template-columns: 1fr;
  }

  .steps-rail,
  .environment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero--infrastructure {
    padding-bottom: 72px;
  }

  .vault-card,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .steps-rail,
  .environment-grid {
    grid-template-columns: 1fr;
  }

  .delivery-console,
  .future-panel {
    border-radius: 1.8rem;
    padding: 22px;
  }

  .feature-ribbon {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2.65rem, 14vw, 3.4rem);
  }

  .hero-metrics,
  .grid--three {
    grid-template-columns: 1fr;
  }

  .problem-card,
  .size-card,
  .environment-card,
  .tech-card {
    border-radius: 1.5rem;
    padding: 22px;
  }

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

  .steps-rail {
    gap: 12px;
  }
}

/* Reference-style hero composition requested on 2026-05-11 */
body {
  background: #ffdf82;
}

.topbar {
  position: relative;
  top: auto;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
  padding-top: 34px;
}

.topbar__inner {
  width: min(1520px, calc(100% - 144px));
  padding: 42px 124px 22px;
  background: #fffaf5;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 0;
}

.nav--showcase {
  color: #090d1a;
  font-size: 1.02rem;
  font-weight: 700;
  gap: 42px;
}

.topbar__actions--icons {
  gap: 18px;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #020617;
  font-size: 1.55rem;
  font-weight: 800;
}

.icon-button--accent {
  background: #ff7a35;
  color: white;
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.28);
}

.hero--reference {
  padding: 0 0 96px;
  overflow: visible;
  background: #ffdf82;
}

.hero--reference .hero__bg {
  display: none;
}

.hero-showcase {
  position: relative;
  width: min(1520px, calc(100% - 144px));
  min-height: 940px;
  overflow: hidden;
  background: #fffaf5;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-top: 0;
  padding: 88px 124px 68px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  grid-template-rows: auto 1fr auto;
  column-gap: 66px;
}

.hero-showcase__grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.74;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.055) 1px, transparent 1px);
  background-size: 128px 128px;
  background-position: 0 -22px;
}

.hero-showcase__copy,
.hero-showcase__product,
.showcase-review {
  position: relative;
  z-index: 2;
}

.showcase-kicker {
  width: fit-content;
  margin: 0 0 18px;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-showcase h1 {
  margin: 0;
  max-width: 690px;
  color: #080e20;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5.6rem, 7.6vw, 8.8rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.085em;
}

.hero-showcase h1 span,
.hero-showcase h1 mark {
  display: block;
}

.hero-showcase h1 mark {
  width: max-content;
  max-width: 100%;
  margin: 0.02em 0 0;
  padding: 0 0.06em 0.04em;
  background: linear-gradient(90deg, rgba(253, 224, 71, 0.18), #f4ff21 78%);
  color: inherit;
}

.showcase-lede {
  max-width: 650px;
  margin-top: 28px;
  color: #1f2937;
  font-size: 1.15rem;
  line-height: 1.75;
}

.showcase-actions {
  display: flex;
  align-items: center;
  gap: 44px;
  margin-top: 56px;
}

.showcase-primary {
  border-radius: 0;
  padding: 19px 38px;
  background: #080e20;
  box-shadow: none;
}

.showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid #080e20;
  padding-bottom: 16px;
  color: #080e20;
  font-size: 1.12rem;
  font-weight: 800;
}

.showcase-link span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #080e20;
  border-radius: 999px;
}

.showcase-stats {
  display: grid;
  grid-template-columns: auto auto auto auto;
  align-items: center;
  gap: 16px;
  margin-top: 76px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin-right: -12px;
  border-radius: 999px;
  border: 2px solid #fffaf5;
  background: #fef3c7;
  font-size: 1.2rem;
}

.showcase-stats strong {
  display: block;
  color: #080e20;
  font-size: 1.75rem;
  line-height: 1;
}

.showcase-stats span:not(.avatar-stack span) {
  display: block;
  margin-top: 4px;
  color: #334155;
  font-size: 0.98rem;
}

.stat-bubble {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #ff7a35;
  color: white;
  font-size: 1.45rem;
  font-weight: 900;
}

.hero-showcase__product {
  min-height: 610px;
  align-self: start;
}

.color-block {
  position: absolute;
  z-index: 0;
}

.color-block--green {
  top: 54px;
  left: 39%;
  width: 136px;
  height: 180px;
  background: #3f7057;
}

.color-block--coral {
  right: 10px;
  bottom: 28px;
  width: 138px;
  height: 360px;
  background: #ff6b59;
}

.floating-offer {
  position: absolute;
  z-index: 4;
  top: 128px;
  left: 24%;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.94);
  padding: 16px 22px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.floating-offer > span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  background: #fff1e8;
  color: #ff7a35;
  font-size: 1.2rem;
}

.floating-offer strong,
.floating-offer small {
  display: block;
}

.floating-offer strong {
  color: #080e20;
  font-size: 1.08rem;
}

.floating-offer small {
  margin-top: 3px;
  color: #475569;
}

.main-product-box {
  position: absolute;
  z-index: 3;
  right: 78px;
  top: 212px;
  width: 470px;
  height: 430px;
  filter: drop-shadow(0 34px 40px rgba(15, 23, 42, 0.24));
}

.main-product-box__top {
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 108px;
  border-radius: 58px 58px 18px 18px;
  background: linear-gradient(180deg, #fffdf5, #e7e0d1);
  box-shadow: inset 0 -12px 20px rgba(15, 23, 42, 0.08);
}

.main-product-box__body {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 0;
  height: 342px;
  border-radius: 38px 38px 74px 74px;
  background: linear-gradient(160deg, #071b36 0%, #0d3a62 42%, #031027 100%);
  overflow: hidden;
}

.main-product-box__body::before {
  content: "";
  position: absolute;
  inset: 34px 38px 40px auto;
  width: 48%;
  border-radius: 24px;
  background: #fff7e8;
}

.main-product-box__door {
  position: absolute;
  inset: 58px 54px 56px auto;
  width: 42%;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 18px;
}

.parcel-mark {
  width: 86px;
  height: 86px;
  display: inline-grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #c28625, #f3c25f);
  color: white;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
}

.main-product-box__icons {
  display: grid;
  grid-template-columns: repeat(2, 36px);
  gap: 8px;
}

.main-product-box__icons span {
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  background: white;
  color: #08254a;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.10);
}

.showcase-product-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 74px;
}

.mini-product {
  min-height: 148px;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: end;
  gap: 16px;
  padding: 18px 20px;
}

.mini-product--sage { background: #e7f0de; }
.mini-product--cream { background: #fff0c9; }

.mini-product__box {
  width: 88px;
  height: 106px;
  border-radius: 18px 18px 26px 26px;
  background: linear-gradient(160deg, #071b36, #0d3a62);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.22);
  justify-self: center;
}

.mini-product__box--small {
  height: 96px;
  transform: rotate(-2deg);
}

.mini-product__box--tall {
  height: 116px;
  transform: rotate(2deg);
}

.mini-product h3 {
  margin: 0;
  color: #080e20;
  font-size: 1.16rem;
}

.mini-product p {
  margin: 7px 0 12px;
  color: #334155;
}

.mini-product a {
  display: inline-flex;
  background: #080e20;
  color: white;
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 800;
}

.showcase-review {
  grid-column: 2;
  align-self: end;
  max-width: 620px;
  margin: 28px 0 0 86px;
}

.showcase-review__score,
.showcase-review__pager {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.showcase-review__score span {
  color: #ff7a35;
  letter-spacing: 0.06em;
}

.showcase-review__score strong {
  font-size: 1.15rem;
}

.showcase-review__pager {
  margin-left: 28px;
  color: #64748b;
}

.showcase-review__pager i {
  width: 160px;
  height: 1px;
  background: rgba(15, 23, 42, 0.25);
}

.showcase-review h3 {
  margin: 24px 0 0;
  color: #080e20;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.showcase-review p {
  max-width: 560px;
  margin: 16px 0 0;
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.75;
}

.spark {
  position: absolute;
  z-index: 3;
  color: #080e20;
  font-size: 2rem;
}

.spark--one { left: 46%; top: 170px; }
.spark--two { left: 49%; top: 510px; }

@media (max-width: 1240px) {
  .topbar__inner,
  .hero-showcase {
    width: min(1280px, calc(100% - 48px));
    padding-left: 48px;
    padding-right: 48px;
  }

  .main-product-box {
    right: 10px;
    transform: scale(0.86);
    transform-origin: top right;
  }
}

@media (max-width: 980px) {
  .topbar__inner {
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding: 22px 28px;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 42px 28px;
  }

  .hero-showcase__product {
    min-height: 560px;
    margin-top: 48px;
  }

  .showcase-review {
    grid-column: auto;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding-top: 16px;
  }

  .topbar__inner,
  .hero-showcase {
    width: min(100% - 24px, 1280px);
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-showcase h1 {
    font-size: clamp(4rem, 20vw, 5.6rem);
  }

  .showcase-actions,
  .showcase-stats,
  .showcase-product-row {
    grid-template-columns: 1fr;
    display: grid;
    gap: 18px;
  }

  .showcase-actions {
    align-items: start;
  }

  .main-product-box {
    right: -80px;
    transform: scale(0.68);
  }

  .floating-offer {
    left: 2px;
  }

  .showcase-review__pager {
    display: none;
  }
}

/* Restore full-width ParcellBox theme hero after reference experiment */
body {
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.12), transparent 24%),
    linear-gradient(180deg, #f8f2e8 0%, #f7f4ed 100%);
}

.topbar {
  position: sticky;
  top: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  background: rgba(248, 242, 232, 0.84);
  backdrop-filter: blur(20px);
  padding-top: 0;
}

.topbar__inner {
  width: min(1280px, calc(100% - 48px));
  padding: 16px 0;
  background: transparent;
  border: 0;
}

.nav--showcase {
  color: #475569;
  font-size: 0.95rem;
  font-weight: 500;
  gap: 32px;
}

.topbar__actions--icons {
  display: flex;
  gap: 12px;
}

.icon-button {
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
  color: #1e293b;
  font-size: 1.2rem;
  box-shadow: none;
}

.icon-button--accent {
  width: 42px;
  height: 42px;
  background: #f97316;
  color: white;
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.24);
}

.hero--clean {
  overflow: hidden;
  width: 100%;
  padding: 56px 0 104px;
  background: transparent;
}

.hero-clean__grid {
  grid-template-columns: 1.03fr 0.97fr;
  gap: 64px;
}

.hero-clean__copy h1 {
  margin: 24px 0 0;
  max-width: 760px;
  color: #020617;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(3.8rem, 8vw, 6.4rem);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.065em;
}

.hero-clean__subhead {
  margin: 14px 0 0;
  color: #b45309;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.hero-clean__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
}

.hero-clean__visual img {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 680px);
  height: auto;
  filter: drop-shadow(0 34px 55px rgba(15, 23, 42, 0.20));
}

.hero-clean__halo {
  position: absolute;
  inset: 9% 0 auto auto;
  width: min(74vw, 560px);
  height: min(74vw, 560px);
  border-radius: 999px;
  background:
    radial-gradient(circle at 42% 34%, rgba(251, 191, 36, 0.42), transparent 34%),
    radial-gradient(circle at 68% 70%, rgba(249, 115, 22, 0.18), transparent 48%);
  filter: blur(4px);
}

.hero--clean .trust-strip {
  margin-top: 28px;
}

.hero--clean .hero__actions {
  margin-top: 34px;
}

@media (max-width: 1100px) {
  .hero-clean__grid {
    grid-template-columns: 1fr;
  }

  .hero-clean__visual {
    min-height: auto;
    margin-top: 24px;
  }

  .hero-clean__visual img {
    width: min(100%, 560px);
  }
}

@media (max-width: 900px) {
  .topbar__inner {
    width: min(1280px, calc(100% - 32px));
    padding: 16px 0;
  }

  .topbar__actions--icons {
    display: none;
  }

  .hero--clean {
    padding: 36px 0 72px;
  }
}

@media (max-width: 640px) {
  .hero-clean__copy h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero-clean__subhead {
    font-size: clamp(1.65rem, 9vw, 2.6rem);
  }
}

/* Hero cleanup: restore original menu and align testimonial strip */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #475569;
  font-size: 0.95rem;
  font-weight: 500;
}

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

.hero-testimonial {
  display: grid;
  grid-template-columns: auto 1px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  max-width: 680px;
  margin-top: 34px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.hero-testimonial__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.hero-testimonial__rating span {
  color: #f97316;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.hero-testimonial__rating strong {
  color: #020617;
  font-size: 1.05rem;
}

.hero-testimonial__divider {
  width: 1px;
  height: 40px;
  background: rgba(15, 23, 42, 0.12);
}

.hero-testimonial p {
  margin: 0;
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .nav,
  .topbar__actions {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-testimonial {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-testimonial__divider {
    width: 100%;
    height: 1px;
  }
}

/* Website layout refresh: cleaner content presentation */
.marketing-shell {
  overflow: hidden;
}

.section {
  position: relative;
  padding: 88px 0;
}

.hero--clean {
  padding: 66px 0 76px;
}

.hero-clean__grid {
  align-items: center;
}

.hero-clean__copy {
  position: relative;
  z-index: 2;
}

.hero-clean__copy h1 {
  max-width: 820px;
}

.hero-clean__visual {
  min-height: 560px;
}

.hero-clean__visual img {
  width: min(100%, 610px);
}

.hero-testimonial {
  max-width: 620px;
  background: rgba(255, 255, 255, 0.82);
}

.value-strip {
  padding: 0 0 46px;
  margin-top: -18px;
}

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

.value-strip__grid > div {
  position: relative;
  overflow: hidden;
  min-height: 148px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: rgba(255, 255, 255, 0.78);
  padding: 24px;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.055);
}

.value-strip__grid > div::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -58px;
  width: 138px;
  height: 138px;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.16);
}

.value-strip span {
  display: inline-flex;
  color: #b45309;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.value-strip strong {
  display: block;
  margin-top: 18px;
  color: #020617;
  font-size: 1.16rem;
}

.value-strip p {
  margin: 8px 0 0;
  color: #64748b;
  line-height: 1.6;
}

.split-intro {
  align-items: start;
  padding: 0 0 6px;
}

.split-intro > div:first-child {
  position: sticky;
  top: 110px;
}

.split-intro h2,
.section-head h2,
.platform-copy h2,
.future-panel h2,
.cta h2 {
  letter-spacing: -0.06em;
}

.intro-copy,
.section-lede,
.platform-lede {
  border-left: 3px solid rgba(249, 115, 22, 0.46);
  padding-left: 22px;
}

.problem-grid,
.size-grid,
.environment-grid {
  margin-top: 34px;
}

.problem-card,
.size-card,
.environment-card,
.tech-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.problem-card:hover,
.size-card:hover,
.environment-card:hover,
.tech-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.20);
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.10);
}

.problem-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
}

.problem-card p {
  margin-top: auto;
}

.section--steps {
  border-radius: 40px;
  margin: 24px auto;
  width: min(1380px, calc(100% - 32px));
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(2, 6, 23, 0.22);
}

.steps-rail {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps-rail::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 44px;
  height: 1px;
  background: linear-gradient(90deg, rgba(253, 224, 71, 0.0), rgba(253, 224, 71, 0.44), rgba(253, 224, 71, 0.0));
}

.step-card {
  backdrop-filter: blur(12px);
}

.step-card h3 {
  margin-top: 54px;
}

.size-grid {
  grid-template-columns: 0.85fr 1fr 1.15fr;
}

.size-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
}

.size-card p:last-child {
  margin-bottom: 112px;
}

.feature-ribbon {
  max-width: 1020px;
  margin-inline: auto;
  padding: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.05);
}

.section--muted {
  border-radius: 40px;
  width: min(1380px, calc(100% - 32px));
  margin-inline: auto;
}

.environment-grid {
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-auto-rows: minmax(220px, auto);
}

.environment-card:first-child,
.environment-card--dark {
  grid-row: span 2;
}

.environment-card:first-child {
  background:
    radial-gradient(circle at 92% 12%, rgba(251, 191, 36, 0.22), transparent 32%),
    #ffffff;
}

.environment-card--dark {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.28), transparent 36%),
    #020617;
}

.technology-wrap {
  overflow: visible;
  border-radius: 40px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 235, 0.96));
}

.platform-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tech-grid {
  gap: 16px;
}

.tech-card {
  min-height: 220px;
}

.tech-card span {
  background: #020617;
  color: #fcd34d;
}

.future-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.future-panel p:last-child {
  margin: 0;
  align-self: end;
  border-left: 3px solid rgba(249, 115, 22, 0.42);
  padding-left: 22px;
}

.cta {
  align-items: center;
}

.cta__actions--stacked {
  display: grid;
  grid-template-columns: 1fr;
}

@media (max-width: 1100px) {
  .value-strip__grid,
  .steps-rail,
  .size-grid,
  .environment-grid,
  .future-panel {
    grid-template-columns: 1fr;
  }

  .split-intro > div:first-child {
    position: static;
  }

  .section--steps,
  .section--muted {
    width: 100%;
    border-radius: 0;
  }

  .environment-card:first-child,
  .environment-card--dark {
    grid-row: auto;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 66px 0;
  }

  .value-strip {
    padding-bottom: 28px;
  }

  .feature-ribbon {
    border-radius: 24px;
    justify-content: flex-start;
  }

  .future-panel {
    padding: 30px;
  }
}

/* Hero stats and spacing correction */
.hero--clean {
  padding: 58px 0 68px;
}

.hero-clean__grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: clamp(32px, 5vw, 72px);
}

.hero-clean__copy h1 {
  max-width: 720px;
  font-size: clamp(3.6rem, 7vw, 5.95rem);
}

.hero-clean__subhead {
  margin-top: 10px;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
}

.hero__lede {
  max-width: 610px;
}

.hero__actions {
  margin-top: 28px;
}

.hero--clean .trust-strip {
  display: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: auto minmax(0, auto) auto minmax(0, auto);
  align-items: center;
  gap: 16px;
  width: fit-content;
  max-width: 100%;
  margin-top: 34px;
  padding: 16px 18px;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.07);
}

.hero-stats__avatars {
  display: flex;
  align-items: center;
  padding-right: 4px;
}

.hero-stats__avatars span {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin-right: -12px;
  border-radius: 999px;
  border: 2px solid #fffaf1;
  background: #fef3c7;
  font-size: 1.18rem;
}

.hero-stats__item strong,
.hero-stats__item span {
  display: block;
}

.hero-stats__item strong {
  color: #020617;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.72rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-stats__item span {
  margin-top: 4px;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-stats__badge {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #f97316;
  color: white;
  font-size: 1.4rem;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(249, 115, 22, 0.24);
}

.hero-testimonial {
  margin-top: 22px;
  max-width: 610px;
  padding: 16px 18px;
}

.hero-clean__visual {
  min-height: 520px;
}

.hero-clean__visual img {
  width: min(100%, 590px);
}

.section--problem {
  padding-top: 74px;
}

.value-strip {
  display: none;
}

.section--steps {
  margin-top: 6px;
  margin-bottom: 6px;
}

.size-card p:last-child {
  margin-bottom: 96px;
}

@media (max-width: 1100px) {
  .hero-clean__grid {
    grid-template-columns: 1fr;
  }

  .hero-clean__visual {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .hero-stats {
    grid-template-columns: auto 1fr;
    width: 100%;
  }

  .hero-stats__badge {
    order: 3;
  }

  .hero-stats__item:last-child {
    order: 4;
  }

  .hero-stats__item span {
    white-space: normal;
  }
}

/* Reference-aligned hero placement: same content, cleaner editorial layout */
.hero--clean {
  position: relative;
  min-height: calc(100vh - 78px);
  padding: clamp(42px, 6vw, 74px) 0 clamp(52px, 6vw, 78px);
}

.hero--clean::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
  pointer-events: none;
}

.hero-clean__grid {
  min-height: calc(100vh - 220px);
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}

.hero-clean__copy {
  align-self: center;
}

.hero-clean__copy h1 {
  max-width: 670px;
  margin-top: 28px;
  font-size: clamp(4.1rem, 7.4vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.hero-clean__subhead {
  max-width: 650px;
  margin-top: 18px;
  color: #b7791f;
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  line-height: 1.02;
}

.hero__lede {
  max-width: 590px;
  margin-top: 22px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero__actions {
  margin-top: 36px;
  gap: 18px;
}

.hero-stats {
  margin-top: 54px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  gap: 22px;
}

.hero-stats__avatars span {
  width: 50px;
  height: 50px;
  border-color: #f8f2e8;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.hero-stats__item strong {
  font-size: 1.85rem;
}

.hero-stats__badge {
  width: 58px;
  height: 58px;
  background: #f97316;
}

.hero-testimonial {
  position: absolute;
  right: min(6vw, 78px);
  bottom: clamp(28px, 4vw, 52px);
  z-index: 4;
  width: min(520px, 42vw);
  max-width: none;
  margin: 0;
  background: rgba(255, 250, 241, 0.9);
  backdrop-filter: blur(16px);
}

.hero-clean__visual {
  min-height: 620px;
  justify-items: end;
  align-self: stretch;
}

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

.hero-clean__visual::before {
  right: 2%;
  bottom: 8%;
  width: min(18vw, 240px);
  height: min(28vw, 380px);
  border-radius: 8px;
  background: rgba(249, 115, 22, 0.18);
}

.hero-clean__visual::after {
  right: 42%;
  top: 20%;
  width: 12px;
  height: 12px;
  background: #020617;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.hero-clean__halo {
  inset: 13% auto auto 8%;
  width: min(44vw, 430px);
  height: min(44vw, 430px);
  background:
    radial-gradient(circle at 45% 42%, rgba(251, 191, 36, 0.32), transparent 38%),
    radial-gradient(circle at 64% 70%, rgba(249, 115, 22, 0.16), transparent 52%);
}

.hero-clean__visual img {
  width: min(100%, 650px);
  transform: translateX(2%);
  filter: drop-shadow(0 42px 70px rgba(15, 23, 42, 0.24));
}

.section--problem {
  padding-top: 86px;
}

@media (max-width: 1180px) {
  .hero--clean {
    min-height: auto;
  }

  .hero-clean__grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-clean__visual {
    min-height: auto;
    justify-items: center;
  }

  .hero-clean__visual img {
    width: min(100%, 560px);
    transform: none;
  }

  .hero-testimonial {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 610px;
    margin-top: 24px;
  }
}

@media (max-width: 700px) {
  .hero--clean::before {
    background-size: 58px 58px;
  }

  .hero-clean__copy h1 {
    font-size: clamp(3.25rem, 15vw, 4.7rem);
  }

  .hero-clean__subhead {
    font-size: clamp(1.7rem, 8.5vw, 2.55rem);
  }

  .hero-stats {
    margin-top: 34px;
  }

  .hero-clean__visual::before,
  .hero-clean__visual::after {
    display: none;
  }
}

/* Website flow alignment pass: document-style sections, same content and palette */
.marketing-shell {
  background:
    radial-gradient(circle at 8% 0%, rgba(251, 191, 36, 0.14), transparent 24rem),
    linear-gradient(180deg, #f8f2e8 0%, #f7f4ed 100%);
}

.topbar {
  border-bottom-color: rgba(15, 23, 42, 0.07);
}

.topbar__inner {
  min-height: 74px;
}

.hero--clean {
  min-height: auto;
  padding: clamp(54px, 6vw, 82px) 0 clamp(58px, 6vw, 84px);
}

.hero-clean__grid {
  min-height: auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(42px, 6vw, 92px);
}

.hero-clean__copy h1 {
  max-width: 640px;
  font-size: clamp(3.8rem, 7vw, 6.35rem);
}

.hero-clean__subhead,
.hero__lede {
  max-width: 560px;
}

.hero-stats {
  margin-top: 42px;
}

.hero-testimonial {
  position: static;
  width: min(100%, 590px);
  max-width: 590px;
  margin-top: 28px;
}

.hero-clean__visual {
  min-height: 560px;
  align-self: center;
  justify-items: center;
}

.hero-clean__visual img {
  width: min(100%, 620px);
  transform: none;
}

.hero-clean__visual::before {
  right: 7%;
  bottom: 7%;
}

.section {
  padding: clamp(70px, 7vw, 104px) 0;
}

.split-intro,
.section-head,
.section-head--wide {
  text-align: center;
  max-width: 880px;
  margin-inline: auto;
}

.split-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-bottom: 0;
}

.split-intro > div:first-child {
  position: static;
}

.split-intro h2,
.section-head h2,
.platform-copy h2,
.future-panel h2,
.cta h2 {
  max-width: 760px;
  margin-inline: auto;
  text-wrap: balance;
}

.intro-copy,
.section-lede,
.platform-lede {
  max-width: 720px;
  margin-inline: auto;
  border-left: 0;
  padding-left: 0;
  text-align: center;
}

.problem-grid,
.size-grid,
.environment-grid,
.tech-grid {
  margin-top: 38px;
}

.problem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.problem-card,
.size-card,
.environment-card,
.tech-card {
  min-height: unset;
  border-radius: 24px;
  padding: 26px;
}

.problem-card {
  text-align: left;
}

.problem-card p {
  margin-top: 14px;
}

.section--steps {
  width: 100%;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  padding: clamp(74px, 7vw, 108px) 0;
}

.section--steps .section-head {
  max-width: 840px;
}

.steps-rail {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.steps-rail::before {
  top: 48px;
  left: 8%;
  right: 8%;
}

.step-card {
  min-height: 260px;
  padding: 24px;
}

.step-card h3 {
  margin-top: 56px;
}

.size-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.size-card {
  display: flex;
  min-height: 320px;
}

.size-card p:last-child {
  margin-bottom: 86px;
}

.feature-ribbon {
  margin-top: 28px;
  justify-content: center;
}

.section--muted {
  width: 100%;
  border-radius: 0;
  margin: 0;
}

.environment-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
}

.environment-card:first-child,
.environment-card--dark {
  grid-row: auto;
}

.environment-card--dark {
  min-height: 230px;
}

.technology-wrap {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  max-width: 1280px;
}

.platform-copy {
  padding: clamp(34px, 5vw, 58px);
  text-align: left;
}

.platform-copy h2,
.platform-copy .platform-lede {
  margin-left: 0;
  text-align: left;
}

.technology-note {
  margin-top: 28px;
}

.tech-grid {
  padding: clamp(24px, 4vw, 38px);
  align-content: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tech-card {
  min-height: 186px;
}

.future-panel {
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 920px;
  text-align: center;
}

.future-panel p:last-child {
  max-width: 680px;
  margin: 0 auto;
  border-left: 0;
  padding-left: 0;
}

.section--cta {
  padding-top: clamp(70px, 7vw, 104px);
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  align-items: center;
  gap: 34px;
  border-radius: 34px;
}

.cta__copy {
  max-width: 760px;
}

.cta__copy h2,
.cta__copy p:last-child {
  margin-left: 0;
  text-align: left;
}

.cta__actions--stacked {
  gap: 12px;
}

@media (max-width: 1100px) {
  .hero-clean__grid,
  .technology-wrap,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero-clean__visual {
    min-height: auto;
  }

  .problem-grid,
  .steps-rail,
  .size-grid,
  .environment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .technology-wrap {
    border-radius: 32px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 62px 0;
  }

  .hero--clean {
    padding-top: 42px;
  }

  .hero-clean__copy h1 {
    font-size: clamp(3.05rem, 14vw, 4.55rem);
  }

  .hero-clean__subhead {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .hero-stats,
  .hero-testimonial {
    width: 100%;
  }

  .problem-grid,
  .steps-rail,
  .size-grid,
  .environment-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .steps-rail::before {
    display: none;
  }

  .step-card,
  .size-card,
  .environment-card,
  .tech-card {
    min-height: unset;
  }

  .platform-copy,
  .tech-grid,
  .cta {
    padding: 28px;
  }

  .cta__actions {
    min-width: 0;
  }
}

/* Hardware product page refresh inspired by smart-box hardware landing flows */
.hardware-page .hero--clean {
  padding: clamp(62px, 7vw, 96px) 0 clamp(70px, 7vw, 104px);
}

.hardware-page .hero-clean__grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
  gap: clamp(42px, 6vw, 96px);
}

.hardware-page .hero-clean__copy h1 {
  max-width: 720px;
  font-size: clamp(3.35rem, 6vw, 5.75rem);
  line-height: 0.94;
}

.hardware-page .hero-clean__subhead {
  max-width: 650px;
  color: #0f2a4d;
  font-size: clamp(1.45rem, 2.6vw, 2.55rem);
}

.hardware-page .hero__lede {
  max-width: 640px;
}

.hardware-page .hero-clean__visual {
  min-height: 520px;
}

.hardware-page .hero-clean__visual img {
  width: min(100%, 590px);
}

.hardware-page .hero-testimonial {
  border-color: rgba(184, 128, 39, 0.18);
}

.hardware-specs {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  margin-top: 42px;
}

.hardware-specs__visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: 32px;
  background:
    radial-gradient(circle at 45% 32%, rgba(251, 191, 36, 0.2), transparent 42%),
    rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.hardware-specs__visual::after {
  content: "";
  position: absolute;
  inset: auto 11% 10%;
  height: 18px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.14);
  filter: blur(16px);
}

.hardware-specs__visual img {
  position: relative;
  z-index: 1;
  width: min(82%, 370px);
  filter: drop-shadow(0 28px 48px rgba(15, 23, 42, 0.22));
}

.hardware-specs__table-wrap {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.07);
}

.hardware-table {
  width: 100%;
  border-collapse: collapse;
}

.hardware-table th,
.hardware-table td {
  padding: 20px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.hardware-table th {
  color: #64748b;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255, 247, 235, 0.78);
}

.hardware-table td {
  color: #334155;
  font-weight: 600;
}

.hardware-table td:first-child {
  color: #020617;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.15rem;
}

.hardware-table tr:last-child td {
  border-bottom: 0;
}

.function-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.hardware-functions .step-card {
  min-height: 240px;
}

.usage-section {
  background:
    radial-gradient(circle at 8% 22%, rgba(251, 191, 36, 0.13), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.usage-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.82);
  padding: clamp(28px, 4vw, 42px);
  box-shadow: 0 24px 72px rgba(15, 23, 42, 0.07);
}

.usage-card::after {
  content: "";
  position: absolute;
  right: -64px;
  top: -64px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.16);
}

.usage-card--dark {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.26), transparent 34%),
    #020617;
  color: white;
}

.usage-card h3 {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.usage-card ol {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.usage-card li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  color: #475569;
  line-height: 1.55;
}

.usage-card--dark li {
  color: rgba(255, 255, 255, 0.74);
}

.usage-card li::before {
  counter-increment: usage-step;
  content: counter(usage-step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #f97316;
  color: white;
  font-weight: 800;
}

.usage-card ol {
  counter-reset: usage-step;
}

.install-section .environment-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.install-section .environment-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.02), rgba(2, 6, 23, 0.08)),
    rgba(255, 255, 255, 0.84);
}

.install-section .environment-card h3 {
  max-width: 320px;
}

.software-section .technology-wrap {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.software-section .tech-card {
  min-height: 176px;
}

.section--future {
  padding-top: clamp(54px, 6vw, 84px);
}

.section--future .future-panel {
  border-radius: 34px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: rgba(255, 255, 255, 0.74);
  padding: clamp(32px, 5vw, 58px);
  box-shadow: 0 24px 76px rgba(15, 23, 42, 0.07);
}

@media (max-width: 1100px) {
  .hardware-page .hero-clean__grid,
  .hardware-specs,
  .usage-grid,
  .software-section .technology-wrap {
    grid-template-columns: 1fr;
  }

  .function-grid,
  .install-section .environment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hardware-page .hero-clean__copy h1 {
    font-size: clamp(3rem, 13vw, 4.35rem);
  }

  .hardware-specs__visual {
    min-height: 280px;
  }

  .hardware-specs__table-wrap {
    overflow-x: auto;
  }

  .hardware-table {
    min-width: 680px;
  }

  .function-grid,
  .install-section .environment-grid {
    grid-template-columns: 1fr;
  }
}

/* Custo-inspired hero: product background, oversized wordmark, staggered motion */
.hardware-page .hardware-hero {
  isolation: isolate;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  padding: clamp(48px, 5.6vw, 76px) 0 clamp(46px, 5vw, 70px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.72) 0%, rgba(2, 6, 23, 0.38) 42%, rgba(2, 6, 23, 0.08) 100%),
    url("/assets/branding/pb-hero-bg.png") center center / cover no-repeat,
    #11100d;
}

.hardware-page .hardware-hero .hero__bg {
  height: 100%;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.06), rgba(2, 6, 23, 0.4));
}

.hardware-page .hardware-hero::before {
  content: none;
}

.hero-brand-word {
  position: absolute;
  left: auto;
  right: -0.08em;
  bottom: -0.18em;
  z-index: 0;
  color: rgba(255, 255, 255, 0.18);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(5.4rem, 14vw, 15.5rem);
  line-height: 0.76;
  font-weight: 700;
  letter-spacing: -0.105em;
  white-space: nowrap;
  pointer-events: none;
  transform-origin: right bottom;
  animation: brandWordReveal 1100ms cubic-bezier(0.2, 0.72, 0.18, 1) 3980ms both;
}

.hardware-page .hardware-hero .hero-clean__grid {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 220px);
  grid-template-columns: minmax(900px, 1.28fr) minmax(220px, 0.72fr);
  align-items: start;
}

.hardware-page .hardware-hero .hero-clean__copy {
  padding-top: clamp(0px, 2.8vw, 34px);
}

.hardware-page .hardware-hero .pill-badge {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: none;
  backdrop-filter: blur(14px);
  animation: revealUp 780ms cubic-bezier(0.2, 0.72, 0.18, 1) 3900ms both;
}

.hardware-page .hardware-hero .hero-clean__copy h1 {
  max-width: min(1120px, 100%);
  color: #ffffff;
  font-size: clamp(3.8rem, 5.7vw, 6.05rem);
  line-height: 0.94;
  text-shadow: 0 20px 50px rgba(2, 6, 23, 0.18);
  animation: revealUp 900ms cubic-bezier(0.2, 0.72, 0.18, 1) 4020ms both;
}

.hardware-page .hardware-hero .hero-clean__copy h1 span {
  display: block;
  white-space: nowrap;
}

.hardware-page .hardware-hero .hero-clean__copy h1 strong {
  color: #f8c15d;
  font-size: 1.08em;
  font-weight: 700;
}

.hardware-page .hardware-hero .hero-clean__subhead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.92);
  animation: revealUp 900ms cubic-bezier(0.2, 0.72, 0.18, 1) 4140ms both;
}

.hardware-page .hardware-hero .hero__lede {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  animation: revealUp 900ms cubic-bezier(0.2, 0.72, 0.18, 1) 4260ms both;
}

.hardware-page .hardware-hero .hero__actions {
  animation: revealUp 900ms cubic-bezier(0.2, 0.72, 0.18, 1) 4380ms both;
}

.hero-preload-caption {
  position: relative;
  width: fit-content;
  max-width: min(100%, 640px);
  margin: clamp(38px, 6vw, 78px) 0 0;
  padding: 0 64px 15px 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.045em;
  overflow: hidden;
  animation: captionClipReveal 1200ms cubic-bezier(0.2, 0.72, 0.18, 1) 4560ms both;
}

.hero-preload-caption::before,
.hero-preload-caption::after {
  content: "";
  position: absolute;
  bottom: 0;
}

.hero-preload-caption::before {
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.66);
  transform-origin: left center;
  animation: captionLine 1200ms cubic-bezier(0.2, 0.72, 0.18, 1) 4720ms both;
}

.hero-preload-caption::after {
  right: 3px;
  bottom: 6px;
  width: 34px;
  height: 20px;
  background: currentColor;
  clip-path: polygon(0 44%, 70% 44%, 55% 18%, 65% 8%, 100% 50%, 65% 92%, 55% 82%, 70% 56%, 0 56%);
  animation: captionArrow 1100ms cubic-bezier(0.2, 0.72, 0.18, 1) 4860ms both;
}

.hardware-page .hardware-hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.hardware-page .hardware-hero .hero-clean__visual {
  min-height: 0;
  opacity: 0;
  pointer-events: none;
}

.hardware-page .hardware-hero .hero-clean__visual img,
.hardware-page .hardware-hero .hero-clean__halo,
.hardware-page .hardware-hero .hero-clean__visual::before,
.hardware-page .hardware-hero .hero-clean__visual::after {
  display: none;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes loaderWord {
  0% {
    opacity: 0;
    transform: translateY(0.85em) rotate(2deg);
    clip-path: inset(100% 0 0 0);
    filter: blur(10px);
  }
  62% {
    opacity: 1;
    transform: translateY(0) rotate(0);
    clip-path: inset(0 0 0 0);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    filter: blur(0);
  }
}

@keyframes loaderExit {
  0% {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
    visibility: hidden;
  }
}

@keyframes pageReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes productReveal {
  from {
    opacity: 0;
    transform: translate3d(8vw, 4vw, 0) scale(0.94);
    filter: blur(10px) drop-shadow(0 56px 70px rgba(2, 6, 23, 0.32));
  }
  to {
    opacity: 0.92;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0) drop-shadow(0 56px 70px rgba(2, 6, 23, 0.32));
  }
}

@keyframes productDrift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.012);
  }
}

@keyframes brandWordReveal {
  from {
    opacity: 0;
    transform: translate(0.16em, 0.22em) scaleX(1.08);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleX(1);
  }
}

@keyframes captionClipReveal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes captionLine {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes captionArrow {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1100px) {
  .hardware-page .hardware-hero {
    min-height: auto;
  }

  .hardware-page .hardware-hero::before {
    content: none;
  }

  .hardware-page .hardware-hero .hero-clean__grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-brand-word {
    font-size: clamp(5.6rem, 24vw, 12rem);
    bottom: -0.14em;
    right: -0.12em;
  }
}

@media (max-width: 720px) {
  .site-loader__inner {
    width: min(100%, calc(100% - 20px));
  }

  .site-loader__line {
    font-size: clamp(2rem, 9vw, 3.8rem);
  }

  .site-loader__line--join {
    gap: 0.12em;
  }

  .site-loader__brand {
    font-size: 1.08em;
  }

  .hardware-page .hardware-hero {
    padding-top: 44px;
    min-height: 780px;
  }

  .hardware-page .hardware-hero::before {
    content: none;
  }

  .hardware-page .hardware-hero .hero-clean__copy h1 {
    font-size: clamp(3.05rem, 13vw, 4.5rem);
  }

  .hero-brand-word {
    font-size: clamp(4.8rem, 23vw, 8rem);
    bottom: 0.04em;
    right: -0.16em;
  }

  .hero-preload-caption {
    padding-right: 46px;
    font-size: clamp(1.15rem, 6vw, 1.65rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader {
    display: none;
  }

  .site-loader__line,
  .site-loader__brand {
    animation: none;
  }

  .marketing-shell {
    animation: none;
  }

  .hero-brand-word,
  .hardware-page .hardware-hero .pill-badge,
  .hardware-page .hardware-hero .hero-clean__copy h1,
  .hardware-page .hardware-hero .hero-clean__subhead,
  .hardware-page .hardware-hero .hero__lede,
  .hardware-page .hardware-hero .hero__actions,
  .hero-preload-caption,
  .hero-preload-caption::before,
  .hero-preload-caption::after {
    animation: none;
  }
}

/* O2Labs-style soft pill buttons for header and hero */
.topbar__actions {
  margin-left: auto;
}

.topbar__actions .btn {
  min-width: 148px;
  padding: 17px 28px;
  border-radius: 999px;
  border: 1px solid rgba(2, 6, 23, 0.28);
  background: #020617;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 18px 46px rgba(2, 6, 23, 0.22);
  backdrop-filter: blur(18px);
}

.topbar__actions .btn:hover {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-1px);
}

.hardware-page .hardware-hero .hero__actions {
  gap: 18px;
}

.hardware-page .hardware-hero .hero__actions .btn {
  min-width: 178px;
  min-height: 58px;
  padding: 17px 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.hardware-page .hardware-hero .hero__actions .btn--accent {
  background: rgba(255, 255, 255, 0.9);
  color: #020617;
}

.hardware-page .hardware-hero .hero__actions .btn--ghost {
  background: rgba(255, 255, 255, 0.13);
}

.hardware-page .hardware-hero .hero__actions .btn:hover {
  background: #ffffff;
  color: #020617;
}

@media (max-width: 760px) {
  .topbar__actions .btn {
    min-width: 116px;
    padding: 13px 18px;
    font-size: 0.92rem;
  }

  .hardware-page .hardware-hero .hero__actions .btn {
    width: 100%;
  }
}

/* Final mobile responsiveness pass */
@media (max-width: 900px) {
  .shell {
    width: min(100%, calc(100% - 28px));
  }

  .topbar {
    position: sticky;
    background: rgba(248, 242, 232, 0.9);
  }

  .topbar__inner {
    min-height: 64px;
    padding: 10px 0;
    gap: 12px;
  }

  .brand {
    margin-right: 0;
  }

  .brand__logo--wide {
    width: 148px;
  }

  .nav {
    display: none;
  }

  .topbar__actions {
    display: flex;
    margin-left: auto;
  }

  .topbar__actions .btn {
    min-width: auto;
    padding: 12px 18px;
    font-size: 0.88rem;
  }

  .hardware-page .hardware-hero {
    min-height: auto;
    padding: 54px 0 72px;
    background:
      linear-gradient(180deg, rgba(2, 6, 23, 0.72) 0%, rgba(2, 6, 23, 0.58) 52%, rgba(2, 6, 23, 0.78) 100%),
      url("/assets/branding/pb-hero-bg.png") 64% center / cover no-repeat,
      #11100d;
  }

  .hardware-page .hardware-hero .hero-clean__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hardware-page .hardware-hero .hero-clean__copy {
    padding-top: 0;
  }

  .hardware-page .hardware-hero .hero-clean__copy h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 11.5vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.075em;
  }

  .hardware-page .hardware-hero .hero-clean__copy h1 span {
    white-space: normal;
  }

  .hardware-page .hardware-hero .hero__lede {
    max-width: 94%;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hardware-page .hardware-hero .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 320px;
    gap: 12px;
    margin-top: 26px;
  }

  .hardware-page .hardware-hero .hero__actions .btn {
    width: 100%;
    min-height: 54px;
  }

  .hero-brand-word {
    right: -0.18em;
    bottom: -0.08em;
    font-size: clamp(4.2rem, 25vw, 8.8rem);
    color: rgba(255, 255, 255, 0.1);
  }

  .section,
  .section--steps,
  .section--cta {
    padding: 58px 0;
  }

  .split-intro,
  .section-head,
  .section-head--wide {
    text-align: left;
    max-width: none;
  }

  .split-intro h2,
  .section-head h2,
  .platform-copy h2,
  .future-panel h2,
  .cta h2 {
    margin-left: 0;
    max-width: none;
    font-size: clamp(2.15rem, 9vw, 3.2rem);
  }

  .intro-copy,
  .section-lede,
  .platform-lede {
    margin-left: 0;
    max-width: none;
    text-align: left;
  }

  .usage-grid,
  .function-grid,
  .install-section .environment-grid,
  .environment-grid,
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .usage-card,
  .step-card,
  .environment-card,
  .tech-card {
    border-radius: 24px;
    padding: 24px;
  }

  .usage-card h3 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .technology-wrap {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .platform-copy,
  .tech-grid {
    padding: 26px;
  }

  .platform-copy h2,
  .platform-copy .platform-lede {
    text-align: left;
  }

  .future-panel {
    text-align: left;
    padding: 28px;
  }

  .future-panel p:last-child {
    margin-left: 0;
  }

  .cta {
    grid-template-columns: 1fr;
    padding: 28px;
    border-radius: 28px;
  }

  .cta__copy h2,
  .cta__copy p:last-child {
    text-align: left;
  }

  .cta__actions {
    min-width: 0;
  }

  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .shell {
    width: min(100%, calc(100% - 22px));
  }

  .brand__logo--wide {
    display: none;
  }

  .brand__logo--compact {
    display: block;
    width: 42px;
    height: 42px;
  }

  .topbar__actions .btn {
    padding: 11px 15px;
  }

  .site-loader__inner {
    width: min(100%, calc(100% - 24px));
  }

  .site-loader__line {
    font-size: clamp(1.9rem, 10vw, 3rem);
    line-height: 1.16;
    white-space: normal;
  }

  .site-loader__line--join {
    white-space: nowrap;
  }

  .hardware-page .hardware-hero {
    padding: 42px 0 62px;
  }

  .hardware-page .hardware-hero .hero-clean__copy h1 {
    font-size: clamp(2.55rem, 12vw, 3.55rem);
  }

  .hardware-page .hardware-hero .hero__lede {
    max-width: 100%;
  }
}
