/* PT Sans — site-wide font (assets/fonts) */
@font-face {
  font-family: "PT Sans";
  src: url("assets/fonts/PTSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PT Sans";
  src: url("assets/fonts/PTSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "PT Sans";
  src: url("assets/fonts/PTSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PT Sans";
  src: url("assets/fonts/PTSans-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  /* Three-colour system: white · purple shades · cream */
  /* Purple scale (from the APEC station cards) */
  --purple: #5933d9; /* primary accent */
  --purple-deep: #2a1a6e; /* deep purple */
  --purple-light: #c084fc; /* light violet */
  --lavender: #ece6fb; /* pale lavender tint */
  --cream: #fcf5eb; /* page background */

  /* Legacy names kept as aliases so existing var() refs recolour to purple */
  --green: var(--purple);
  --deep: var(--purple-deep);
  --mint: var(--lavender);
  --ink: #1c1340; /* near-black purple — text & dark UI */
  --dark: #160f33; /* darkest purple — dark section bg */
  --muted: #6b6480; /* muted purple-grey — body copy */
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
  overflow-x: hidden;
  background: var(--cream);
}
body {
  overflow-x: hidden;
}
/* Lenis smooth scroll (vendor/lenis.min.js) */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}
body {
  margin: 0;
  font-family: "PT Sans", Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--ink);
  overscroll-behavior: none;
}
a {
  text-decoration: none;
  color: inherit;
}
.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(1240px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 16px 12px 24px;
  color: var(--ink);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(28.5px) saturate(180%);
  -webkit-backdrop-filter: blur(28.5px) saturate(180%);
  box-shadow: 0 14px 36px rgba(20, 12, 48, 0.12);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    padding 0.25s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 40px rgba(20, 12, 48, 0.16);
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
}
.brand-logo {
  height: 46px;
  width: auto;
  display: block;
}
.footer-brand .brand-logo {
  height: 54px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  font-weight: 900;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
}
.nav a {
  position: relative;
  color: var(--ink);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.nav a:hover {
  opacity: 1;
}
.nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--purple);
  transition: 0.2s;
}
.nav a:hover:after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.login {
  font-weight: 600;
  color: var(--ink);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.login:hover {
  opacity: 1;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  transition: 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-large {
  font-size: 18px;
  padding: 16px 30px;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 110;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu overlay — slides down from the top */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 34px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(28.5px) saturate(180%);
  -webkit-backdrop-filter: blur(28.5px) saturate(180%);
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.mobile-overlay.open {
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-overlay-links {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.mobile-overlay-links a {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ink);
  transition: color 0.2s ease;
}
.mobile-overlay-links a:hover {
  color: var(--purple);
}
.mobile-overlay-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 10px 0;
}
.mobile-overlay-cta {
  align-self: flex-start;
  background: var(--purple);
  color: #fff !important;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 999px;
}
.hero {
  position: relative;
  min-height: 760px;
  margin: 20px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 9vw;
  color: white;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(22, 15, 51, 0.82) 0%,
    rgba(22, 15, 51, 0.55) 26%,
    rgba(22, 15, 51, 0.18) 50%,
    rgba(22, 15, 51, 0) 72%
  );
}
.hero-copy,
.data-note {
  position: relative;
  z-index: 2;
}
.hero-copy {
  max-width: 620px;
}
.hero h1 {
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.95;
  margin: 0 0 24px;
  letter-spacing: -3px;
}
.hero p {
  font-size: 21px;
  max-width: 450px;
  line-height: 1.45;
}
.chat-stack {
  width: min(410px, 88vw);
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bubble,
.reaction-row,
.voice-note,
.photo-card {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}
.bubble {
  max-width: 290px;
  padding: 18px 22px;
  border-radius: 26px;
  font-size: 20px;
  color: var(--ink);
  background: white;
}
.bubble-left {
  align-self: flex-start;
}
.bubble-right {
  align-self: flex-end;
  background: var(--mint);
}
.reaction-row {
  align-self: center;
  background: white;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 28px;
}
.photo-card {
  height: 245px;
  border-radius: 30px;
  background: linear-gradient(145deg, #9ae6b4, #f5d491 50%, #f28a7a);
  position: relative;
  overflow: hidden;
}
.photo-card:after {
  content: "";
  position: absolute;
  inset: auto -20px 0;
  height: 90px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50% 50% 0 0;
}
.voice-note {
  display: flex;
  align-items: center;
  gap: 7px;
  background: white;
  color: var(--ink);
  border-radius: 999px;
  padding: 14px 18px;
  align-self: flex-end;
}
.voice-note span {
  width: 4px;
  background: var(--green);
  border-radius: 4px;
}
.voice-note span:nth-child(1) {
  height: 16px;
}
.voice-note span:nth-child(2) {
  height: 30px;
}
.voice-note span:nth-child(3) {
  height: 22px;
}
.data-note {
  position: absolute;
  right: 42px;
  bottom: 28px;
  font-size: 13px !important;
  color: #eee;
}
.intro {
  padding: 80px 8vw;
  text-align: center;
}
.hello-cloud {
  height: 170px;
  position: relative;
  margin-bottom: 40px;
}
.hello-cloud span {
  position: absolute;
  padding: 12px 24px;
  background: white;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  font-weight: 700;
}
.hello-cloud span:nth-child(1) {
  left: 8%;
  top: 20px;
}
.hello-cloud span:nth-child(2) {
  left: 39%;
  top: 82px;
}
.hello-cloud span:nth-child(3) {
  right: 9%;
  top: 18px;
}
.hello-cloud span:nth-child(4) {
  right: 28%;
  top: 112px;
}
.hello-cloud span:nth-child(5) {
  left: 28%;
  top: 125px;
}
.hello-cloud span:nth-child(6) {
  right: 35%;
  top: 45px;
}
.hello-cloud span:nth-child(7) {
  right: 45%;
  top: 20px;
}
.hello-cloud span:nth-child(8) {
  right: 20%;
  top: 30px;
}
.hello-cloud span:nth-child(9) {
  left: 29%;
  top: 15px;
}
.hello-cloud span:nth-child(10) {
  left: 18%;
  top: 52px;
}
.intro h2 {
  max-width: 1050px;
  margin: auto;
  font-size: clamp(32px, 4.8vw, 55px);
  line-height: 1.05;
  letter-spacing: -2px;
}
.feature {
  padding: 95px 8vw;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.reverse .feature-copy {
  order: 2;
}
.feature h2,
.business h2 {
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: -3px;
  margin: 0 0 20px;
}
.balanced-title span {
  display: block;
}
.feature p,
.business p {
  font-size: 19px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 500px;
}
.learn {
  font-weight: 700;
  border-bottom: 2px solid var(--green);
  padding-bottom: 4px;
}
.dark {
  background: var(--dark);
  color: white;
}
.dark p {
  color: #d8cdf0;
}
.light {
  color: white;
}
.mock-call,
.group-card,
.status-card,
.catalog-card,
.lock-visual {
  border-radius: 36px;
  min-height: 470px;
  background: white;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
  position: relative;
  padding: 32px;
  overflow: hidden;
}
.mock-call {
  background: linear-gradient(160deg, #d8ffe5, #9dddb3);
}
.avatar {
  position: absolute;
  border-radius: 34px;
  background: linear-gradient(145deg, #1f7a59, #ffe0b2);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}
.avatar-one {
  width: 230px;
  height: 300px;
  left: 52px;
  top: 50px;
}
.avatar-two {
  width: 210px;
  height: 250px;
  right: 48px;
  bottom: 80px;
  background: linear-gradient(145deg, #88d8ff, #f6a6bf);
}
.call-controls {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
}
.call-controls span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
}
.lock-visual {
  background: #143b31;
  display: grid;
  place-items: center;
}
.lock {
  font-size: 130px;
}
.encrypted-card {
  position: absolute;
  bottom: 72px;
  background: var(--green);
  color: var(--ink);
  padding: 18px 26px;
  border-radius: 22px;
  font-weight: 800;
}
.group-card h3,
.catalog-card h3 {
  font-size: 34px;
  margin: 0 0 24px;
}
.group-card p {
  background: #e8f7ee;
  border-radius: 18px;
  padding: 18px;
  margin: 16px 0;
  color: var(--ink);
}
.status-card {
  background: #e8f7ee;
}
.status-image {
  height: 320px;
  border-radius: 26px;
  background: linear-gradient(145deg, #6fcf97, #56ccf2 60%, #f2c94c);
}
.sticker {
  position: absolute;
  right: 44px;
  top: 290px;
  font-size: 66px;
}

/* Parallax feature (TetraBIN) — fixed background image + translucent text card.
   Self-contained; does not affect the other feature sections. */
.parallax-feature {
  position: relative;
  contain: paint;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 95px 8vw;
  background-image:
    linear-gradient(
      to right,
      rgba(22, 15, 51, 0.55),
      rgba(22, 15, 51, 0.15) 60%,
      rgba(22, 15, 51, 0.35)
    ),
    url("assets/mirrorwood-night-view.jpeg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-card {
  max-width: 560px;
  padding: 48px;
  border-radius: 24px;
  color: #fff;
  background: rgba(28, 19, 64, 0.45);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}
.parallax-card h2 {
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: -3px;
  margin: 0 0 20px;
}
.parallax-card p {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 440px;
}
@media (max-width: 950px) {
  .parallax-feature {
    min-height: 70vh;
    padding: 80px 26px;
  }
  .parallax-card {
    padding: 32px;
  }
}

.business {
  position: relative;
  z-index: 2;
  padding: 90px 8vw;
  background: var(--lavender);
  display: grid;
  border-radius: 0 0 40px 40px;
  grid-template-columns: minmax(320px, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
  margin-bottom: -40px;
}
.catalog-card {
  min-height: 360px;
}
.physical-world-image {
  aspect-ratio: 16 / 10;
  min-height: 360px;
  margin: 0;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}
.physical-world-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}
.product-grid span {
  height: 110px;
  border-radius: 18px;
  background: linear-gradient(145deg, #25d366, #fcf5eb);
}
.catalog-card button {
  width: 100%;
  border: 0;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  padding: 16px;
  font-weight: 700;
}
.footer {
  position: relative;
  z-index: 1;
  background: var(--ink);
  color: white;
  padding: 98px 8vw 58px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.footer-brand {
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, max-content) 1fr;
  align-items: start;
  gap: 34px 72px;
}
.footer h4 {
  color: #b3a3e6;
  margin: 0 0 4px;
}
.footer a {
  display: block;
  margin: 14px 0;
  color: white;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 50px;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  color: #d2dcda;
}
.footer-copyright {
  display: inline;
  margin: 0;
  color: inherit;
  text-decoration: none;
}
.footer-copyright:hover,
.footer-copyright:focus-visible {
  text-decoration: underline;
}
.footer-cities {
  margin-left: auto;
}
/* Connect block (heading + text + email + social) — far-right column,
   its heading top-aligned with the other footer column headings. */
.footer-connect {
  justify-self: end;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.footer-connect a {
  margin: 0;
}
.footer-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #d2dcda;
  opacity: 0.85;
}
.footer-email {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.95;
}
.footer-social {
  display: flex;
  gap: 12px;
}
/* iOS-style "Liquid Glass" icons (same effect as the 8hz hero button) */
.footer-social a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(217, 217, 217, 0.2);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.55),
    inset 0 -1px 1px rgba(255, 255, 255, 0.3);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease,
    background 0.35s ease;
}
.footer-social a:hover {
  transform: translateY(-2px) scale(1.04);
  background: rgba(217, 217, 217, 0.26);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.7),
    inset 0 -1px 1px rgba(255, 255, 255, 0.4),
    0 10px 24px rgba(0, 0, 0, 0.28);
}
.footer-social a:active {
  transform: translateY(0) scale(0.96);
  background: rgba(217, 217, 217, 0.16);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
/* Switch to the hamburger as soon as the nav links start to crowd
   (covers iPad landscape ~1024px and anything narrower). */
@media (max-width: 1100px) {
  /* Flush to the top, full-width, no rounded corners */
  .site-header {
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
    border: none;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(28.5px) saturate(180%);
    -webkit-backdrop-filter: blur(28.5px) saturate(180%);
    box-shadow: none;
  }
  .site-header.scrolled {
    background: rgba(255, 255, 255, 0.72);
    box-shadow: none;
  }
  /* When the menu is open, drop the header's own glass so the overlay
     shows through evenly (no darker strip at the top). */
  .site-header:has(.menu-toggle.open),
  .site-header.scrolled:has(.menu-toggle.open) {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .menu-toggle {
    display: flex;
  }
  .nav,
  .header-actions {
    display: none;
  }
  /* Footer: drop the wide 4-column layout so it fits the viewport */
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 40px;
  }
  .footer-connect {
    grid-column: 1 / -1;
    justify-self: start;
    max-width: 100%;
  }
  .business {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .business > div,
  .physical-world-image {
    width: min(100%, 760px);
  }
}
@media (max-width: 1280px) {
  .hello-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 12px;
    height: auto;
    max-width: 620px;
    margin: 0 auto 34px;
  }
  .hello-cloud span {
    position: static;
    flex: 0 1 auto;
    padding: 10px 16px;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
  }
}
@media (max-width: 980px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 104px 26px 58px;
    min-height: auto;
  }
  .hero-copy {
    margin-bottom: 44px;
  }
  .hero h1 {
    letter-spacing: -3px;
  }
  .reverse .feature-copy {
    order: 0;
  }
  .business {
    margin: 0 0 -40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-connect {
    justify-self: start;
    max-width: 320px;
  }
  .footer-top {
    align-items: flex-start;
    gap: 22px;
    flex-direction: column;
  }
  .data-note {
    position: static;
    margin-top: 30px !important;
  }
  .mock-call,
  .group-card,
  .status-card,
  .catalog-card,
  .lock-visual {
    min-height: 380px;
  }
}
@media (max-width: 580px) {
  .brand {
    font-size: 22px;
  }
  /* Center everything in the footer on mobile */
  .footer {
    text-align: center;
  }
  .footer-top {
    align-items: center;
    margin-top: 48px;
  }
  .footer-connect {
    justify-self: center;
    align-items: center;
    max-width: 300px;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-grid {
    justify-items: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .footer-cities {
    margin-left: 0;
  }
  .hero {
    margin: 10px;
    border-radius: 20px;
  }
  .feature,
  .intro {
    padding: 62px 24px;
  }
  .footer {
    padding: 42px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero h1,
  .feature h2,
  .business h2 {
    letter-spacing: -2px;
  }
  .hello-cloud {
    gap: 9px;
    margin-bottom: 28px;
  }
  .hello-cloud span {
    padding: 9px 13px;
    font-size: 13px;
  }
  .avatar-one {
    left: 25px;
    width: 185px;
  }
  .avatar-two {
    right: 20px;
    width: 170px;
  }
  .business {
    padding: 54px 24px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .site-header {
    gap: 12px;
  }
  .btn {
    padding: 12px 18px;
  }
}

/* ---- Sencity additions ---- */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--deep);
  margin-bottom: 16px;
}
.eyebrow.light {
  color: var(--purple-light);
}

/* Hero badge above the headline */
.hero-pill {
  display: inline-block;
  margin-bottom: 22px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 999px;
}

/* Real imagery inside the feature panels */
.media {
  padding: 0;
}
.panel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.panel-tag {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

/* SenBOX card (was the catalog card) */
.catalog-sub {
  font-size: 15px !important;
  color: var(--muted);
  margin: 0 0 20px !important;
  max-width: none !important;
}
.catalog-media {
  background: linear-gradient(160deg, var(--lavender), #d8c9f7);
  border-radius: 22px;
  padding: 26px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.catalog-media img {
  width: 76%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.22));
}
.catalog-btn {
  display: block;
  text-align: center;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 16px;
  font-weight: 700;
}
