:root {
  --blue: #0877f2;
  --blue-dark: #005cc8;
  --orange: #f6a313;
  --ink: #202a36;
  --muted: #687380;
  --light: #f6f7f9;
  --line: #e4e7ec;
  --dark: #303030;
  --darker: #262626;
  --shadow: 0 18px 42px rgba(32, 42, 54, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: white;
  font-family:
    Lato, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: absolute;
  top: 28px;
  left: 0;
  z-index: 20;
  width: 100%;
  color: white;
}

.utility-bar {
  display: flex;
  justify-content: center;
  gap: 42px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
}

.utility-bar a::before {
  color: var(--orange);
  margin-right: 8px;
}

.utility-bar a:first-child::before {
  content: "mail";
  font-size: 0.68rem;
  text-transform: uppercase;
}

.linkedin::before {
  content: "in";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-size: 0.64rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  margin-top: 14px;
  scrollbar-width: none;
}

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

.main-nav a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(36, 36, 36, 0.94);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.main-nav a:hover {
  color: var(--orange);
  transform: translateY(-1px);
}

.main-nav a:first-child {
  border-left: 0;
}

.main-nav .quote-link {
  color: var(--orange);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.hero > img {
  width: 100%;
  height: 760px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.03) 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 42%);
}

.hero-content {
  position: absolute;
  top: 48%;
  left: 50%;
  display: grid;
  grid-template-columns: 170px minmax(0, 500px);
  gap: 24px;
  align-items: center;
  width: min(760px, calc(100% - 36px));
  transform: translate(-50%, -50%);
}

.brand-symbol {
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  color: white;
  border-radius: 36px 82px 82px 36px;
  background: var(--blue);
  box-shadow: 0 18px 36px rgba(8, 119, 242, 0.28);
  font-size: 4rem;
  font-weight: 950;
  line-height: 1;
}

.brand-symbol.white {
  color: var(--blue);
  background: white;
  box-shadow: none;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  color: var(--blue);
  font-size: clamp(1.7rem, 3.7vw, 3.2rem);
  line-height: 0.98;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-content p:not(.eyebrow) {
  max-width: 470px;
  margin: 14px 0 0;
  color: #f6f8fb;
  font-size: 1rem;
  font-weight: 700;
}

.tier-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(760px, calc(100% - 34px));
  margin: -32px auto 0;
  overflow: hidden;
  background: var(--blue);
  box-shadow: var(--shadow);
}

.tier-strip article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 18px;
  color: white;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.tier-strip article:first-child {
  border-left: 0;
}

.tier-strip span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.tier-strip strong {
  font-size: 0.78rem;
  text-transform: uppercase;
}

.section {
  padding: clamp(56px, 7vw, 88px) clamp(18px, 4vw, 64px);
}

.section-heading {
  width: min(1080px, 100%);
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading h2,
.blue-band h2,
.power-band h2 {
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2 span,
.blue-band h2 span,
.power-band h2 span,
.product-statement strong {
  color: var(--blue);
}

.section-heading p {
  max-width: 880px;
  margin: 16px auto 0;
  color: var(--muted);
}

.narrow-copy {
  width: min(760px, 100%);
  margin: 0 auto;
  color: var(--muted);
}

.narrow-copy p {
  margin: 0 0 18px;
}

.about-product {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
}

.mini-gondola {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 12px;
  min-height: 360px;
  padding: 22px;
  background:
    radial-gradient(circle at 12% 14%, rgba(246, 163, 19, 0.18), transparent 12rem),
    #f4f8fc;
  box-shadow: var(--shadow);
}

.mini-screen,
.mini-shelves {
  border-radius: 12px;
}

.mini-screen {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 20px;
  color: white;
  background: linear-gradient(160deg, #063c82, var(--blue));
}

.mini-screen span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mini-screen strong {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.mini-screen i {
  display: block;
  width: 76px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
}

.mini-shelves {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 20px;
  background: white;
}

.mini-shelves span {
  height: 64px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(8, 119, 242, 0.14), rgba(246, 163, 19, 0.13)),
    repeating-linear-gradient(90deg, #ffffff 0 28px, #e8edf3 28px 42px);
  box-shadow: 0 10px 20px rgba(32, 42, 54, 0.1);
}

.sensor {
  position: absolute;
  display: grid;
  min-width: 72px;
  min-height: 36px;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--orange);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(246, 163, 19, 0.3);
}

.sensor-one {
  top: 18px;
  right: 22px;
}

.sensor-two {
  left: 24px;
  bottom: 20px;
}

.sensor-three {
  right: 28px;
  bottom: 20px;
  background: var(--blue);
}

.product-points {
  display: grid;
  gap: 12px;
}

.product-points article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  background: white;
}

.product-points span {
  grid-row: span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-weight: 950;
}

.product-points strong {
  color: var(--ink);
  font-size: 1.18rem;
  text-transform: uppercase;
}

.product-points p {
  margin: 0;
  color: var(--muted);
}

.awards-card {
  width: min(980px, 100%);
  margin: 46px auto 0;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(8, 119, 242, 0.08), rgba(246, 163, 19, 0.08)),
    white;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 6px solid var(--blue);
}

.award-copy {
  display: block;
  max-width: 720px;
  margin: 0 auto;
}

.awards-card h3 {
  color: #425066;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  font-weight: 950;
  text-transform: uppercase;
}

.awards-card p {
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.award-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.award-logos article {
  display: grid;
  min-height: 220px;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 18px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(32, 42, 54, 0.08);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.award-logos article:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px rgba(32, 42, 54, 0.16);
}

.award-logos img {
  display: block;
  width: auto;
  max-width: 190px;
  max-height: 128px;
  object-fit: contain;
}

.award-logos span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.blue-band,
.power-band {
  display: flex;
  min-height: 142px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 30px 18px;
  color: white;
  background: var(--blue);
  text-align: left;
}

.blue-band h2,
.power-band h2 {
  max-width: 720px;
  color: white;
}

.blue-band h2 span,
.power-band h2 span {
  color: var(--orange);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(1180px, 100%);
  margin: 44px auto;
}

.product-grid article {
  min-height: 180px;
  padding: 30px 24px;
  background: #f8f9fb;
  text-align: center;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease;
}

.product-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin: 0 auto 20px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.product-grid h3 {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-grid p,
.feature-grid p,
.why-list p {
  color: var(--muted);
  font-size: 0.92rem;
}

.product-statement {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 18px;
  color: var(--ink);
  background: #f1f3f6;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 850;
}

.journey-board {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 34px minmax(150px, 1fr) 34px minmax(150px, 1fr) 34px minmax(150px, 1fr);
  gap: 10px;
  width: min(1060px, 100%);
  margin: 34px auto 0;
  align-items: center;
}

.journey-board article {
  min-height: 126px;
  padding: 22px;
  color: white;
  background: var(--blue);
  box-shadow: var(--shadow);
}

.journey-board span,
.journey-board strong {
  display: block;
}

.journey-board span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.journey-board strong {
  margin-top: 18px;
  font-size: 1.2rem;
  line-height: 1.12;
  text-transform: uppercase;
}

.journey-board i {
  position: relative;
  display: block;
  height: 3px;
  background: var(--orange);
}

.journey-board i::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -5px;
  border-left: 9px solid var(--orange);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.asmr-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.96fr) minmax(360px, 1.04fr);
  gap: clamp(24px, 4vw, 48px);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: stretch;
}

.asmr-layout .narrow-copy {
  margin: 0;
}

.sound-stage {
  position: relative;
  display: grid;
  min-height: 330px;
  place-items: center;
  padding: 0;
  overflow: hidden;
  background: #101820;
  box-shadow: var(--shadow);
}

.sound-core {
  position: relative;
  z-index: 3;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-size: 1.6rem;
  font-weight: 950;
}

.wave {
  position: absolute;
  border: 2px solid rgba(8, 119, 242, 0.7);
  border-radius: 50%;
}

.wave-one {
  width: 176px;
  height: 176px;
}

.wave-two {
  width: 246px;
  height: 246px;
  border-color: rgba(246, 163, 19, 0.6);
}

.wave-three {
  width: 316px;
  height: 316px;
  border-color: rgba(255, 255, 255, 0.22);
}

.sound-stage article {
  position: absolute;
  z-index: 4;
  min-width: 112px;
  padding: 9px 12px;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.sound-stage article:nth-of-type(1) {
  top: 22px;
  left: 22px;
}

.sound-stage article:nth-of-type(2) {
  right: 22px;
  top: 42%;
}

.sound-stage article:nth-of-type(3) {
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
}

.asmr-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.asmr-benefits article {
  position: relative;
  min-height: 92px;
  padding: 18px 20px 18px 56px;
  border: 1px solid var(--line);
  background: #f8f9fb;
}

.asmr-benefits article::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 23px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
}

.asmr-benefits strong,
.asmr-benefits span {
  display: block;
}

.asmr-benefits strong {
  font-size: 0.94rem;
  text-transform: uppercase;
}

.asmr-benefits span {
  color: var(--muted);
  margin-top: 8px;
  font-size: 0.9rem;
}

.asmr-collage {
  width: min(900px, 100%);
  max-height: 260px;
  margin: 34px auto -48px;
  position: relative;
  z-index: 2;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.power-band {
  display: grid;
  padding-top: 62px;
  text-align: center;
  justify-items: center;
}

.power-band p {
  width: min(700px, 100%);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 44px auto 0;
}

.feature-grid article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-content: start;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #f8f9fb;
}

.feature-grid span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--orange);
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(32, 42, 54, 0.08);
}

.feature-grid strong {
  color: var(--blue);
  font-size: 1rem;
  text-transform: uppercase;
}

.feature-grid p {
  margin: 0;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.image-strip article {
  position: relative;
  display: grid;
  min-height: 220px;
  align-content: end;
  padding: 24px;
  color: white;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.image-strip article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.72));
}

.image-strip h3,
.image-strip p {
  position: relative;
  z-index: 1;
}

.image-strip h3 {
  font-size: 1rem;
  font-weight: 950;
}

.image-strip p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  width: min(760px, 100%);
  margin: 34px auto 0;
}

details {
  border: 1px solid var(--line);
  background: white;
}

summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--orange);
  font-size: 1.15rem;
  font-weight: 950;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 16px 16px;
}

.impact-dashboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(900px, 100%);
  margin: 34px auto 0;
}

.impact-dashboard article {
  padding: 22px;
  background: #f6f8fb;
}

.impact-dashboard span,
.impact-dashboard strong,
.impact-dashboard i {
  display: block;
}

.impact-dashboard span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.impact-dashboard strong {
  margin: 8px 0 18px;
  font-size: 1.12rem;
  text-transform: uppercase;
}

.impact-dashboard i {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange) var(--fill), #d9e0e7 var(--fill));
}

.team {
  background: #f5f6f8;
}

.team-intro {
  display: grid;
  grid-template-columns: 190px minmax(0, 620px);
  gap: 42px;
  width: min(900px, 100%);
  margin: 0 auto 36px;
  align-items: center;
}

.team-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 850;
}

.team-intro p {
  color: var(--muted);
}

.team-card {
  width: min(900px, 100%);
  margin: 28px auto 0;
  padding: clamp(26px, 4vw, 48px);
  background: white;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 26px;
}

.team-marker {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(8, 119, 242, 0.22);
}

.team-card h3 {
  color: var(--blue);
  font-size: 1.45rem;
  font-weight: 950;
}

.team-card span {
  display: block;
  margin: 8px 0 20px;
  color: var(--muted);
  font-weight: 800;
}

.team-card p {
  color: #4d5865;
  margin: 0 0 20px;
  font-size: 1rem;
}

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

.team-card li {
  position: relative;
  padding-left: 22px;
  color: #4d5865;
}

.team-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.contact {
  color: white;
  background: var(--dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.5fr 0.9fr;
  gap: clamp(28px, 5vw, 64px);
  width: min(1160px, 100%);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand .brand-symbol {
  width: 74px;
  height: 74px;
  border-radius: 18px 40px 40px 18px;
  font-size: 2rem;
}

.footer-brand h2 {
  font-size: 1.6rem;
  text-transform: uppercase;
}

.contact p,
.contact a,
.contact label,
.contact-meta {
  color: rgba(255, 255, 255, 0.74);
}

.footer-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.footer-pillars span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
}

.contact h3 {
  margin-bottom: 16px;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.contact a {
  display: block;
  margin: 8px 0;
}

form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: white;
  padding: 9px 10px;
}

button {
  justify-self: end;
  border: 0;
  padding: 8px 18px;
  color: var(--ink);
  background: white;
  cursor: pointer;
  font-weight: 800;
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1160px, 100%);
  margin: 54px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  font-weight: 800;
}

.contact-meta article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-meta strong,
.contact-meta span,
.contact-meta a {
  display: block;
}

.contact-meta strong {
  color: white;
  margin-bottom: 8px;
  text-transform: uppercase;
}

@media (max-width: 940px) {
  .site-header {
    position: static;
    background: var(--dark);
    padding: 12px 0;
  }

  .main-nav {
    display: none;
  }

  .mobile-nav {
    display: grid;
    width: min(420px, calc(100% - 28px));
    margin: 12px auto 0;
    border: 0;
    color: white;
  }

  .mobile-nav summary {
    min-height: 46px;
    padding: 0 18px;
    background: rgba(36, 36, 36, 0.94);
    color: white;
    text-transform: uppercase;
  }

  .mobile-nav summary::after {
    content: "Menu";
    color: var(--orange);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .mobile-nav[open] summary::after {
    content: "Close";
  }

  .mobile-nav div {
    display: grid;
    background: #242424;
  }

  .mobile-nav a {
    padding: 13px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 850;
    text-transform: uppercase;
  }

  .hero,
  .hero > img {
    min-height: 620px;
    height: 620px;
  }

  .team-intro,
  .about-product,
  .asmr-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .award-copy,
  .sound-stage,
  .contact-meta {
    grid-template-columns: 1fr;
  }

  .asmr-benefits,
  .why-list,
  .impact-dashboard {
    grid-template-columns: 1fr;
  }

  .award-logos,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-board {
    grid-template-columns: 1fr;
  }

  .journey-board i {
    width: 3px;
    height: 28px;
    margin: 0 auto;
  }

  .journey-board i::after {
    left: -5px;
    right: auto;
    top: auto;
    bottom: -2px;
    border-top: 9px solid var(--orange);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .utility-bar {
    flex-direction: column;
    gap: 8px;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .brand-symbol {
    width: 118px;
    height: 118px;
    font-size: 3.1rem;
  }

  .blue-band {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .contact-meta {
    flex-direction: column;
    gap: 14px;
  }

  .mini-gondola {
    grid-template-columns: 1fr;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .team-marker {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 700px) {
  .product-grid,
  .tier-strip,
  .image-strip,
  .award-logos,
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
