@font-face {
  font-family: "Conthrax";
  src: url("assets/conthrax-book.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Conthrax";
  src: url("assets/conthrax-semibold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Conthrax";
  src: url("assets/conthrax-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy: #051351;
  --navy-deep: #03103d;
  --blue: #0454ee;
  --blue-bright: #006cff;
  --cyan: #10dcca;
  --sky: #55bfe5;
  --ice: #f3f8fd;
  --ice-strong: #eaf4fc;
  --white: #ffffff;
  --text-muted: rgba(5, 19, 81, 0.64);
  --line: rgba(5, 19, 81, 0.12);
  --shadow: 0 22px 70px rgba(5, 19, 81, 0.08);
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--navy);
  background: #fbfdff;
  font-family: "Conthrax", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: calc(10px + env(safe-area-inset-top, 0px));
  left: 14px;
  padding: 11px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-size: 10px;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 4px;
}

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

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

.section {
  padding-block: clamp(42px, 5vw, 76px);
}

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

.eyebrow {
  color: var(--blue);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: clamp(38px, 5vw, 68px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: end;
}

.section-heading h2,
.section-copy h2,
.formats-intro h2,
.analytics-intro h2,
.contact-copy h2 {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading h2 {
  margin-top: 13px;
}

.section-heading > p,
.section-lead,
.formats-intro > p:last-child,
.analytics-intro > p:last-child {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-height);
  padding-top: env(safe-area-inset-top, 0px);
  border-bottom: 1px solid transparent;
  background: rgba(251, 253, 255, 0.9);
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled,
.site-header.menu-is-open {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 35px rgba(5, 19, 81, 0.05);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  gap: 28px;
  align-items: center;
}

.brand {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 9px;
}

.brand-fish {
  width: 54px;
}

.brand-name {
  width: 145px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.25vw, 36px);
}

.desktop-nav a,
.header-mail {
  position: relative;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
  content: "";
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-mail {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-mail i,
.button i,
.footer-bottom i {
  position: relative;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.header-mail i::before,
.button i::before {
  position: absolute;
  top: 2px;
  right: 1px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
}

.header-mail i::after,
.button i::after {
  position: absolute;
  top: 7px;
  left: 1px;
  width: 12px;
  height: 1.5px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
  content: "";
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px) + 28px);
  padding-bottom: 30px;
}

.hero-panel {
  position: relative;
  min-height: 610px;
  padding: clamp(42px, 5vw, 70px) clamp(34px, 5.5vw, 76px) 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  grid-template-rows: 1fr auto;
  gap: 24px 34px;
  border: 1px solid rgba(5, 19, 81, 0.05);
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 24%, rgba(16, 220, 202, 0.12), transparent 24%),
    radial-gradient(circle at 70% 65%, rgba(0, 108, 255, 0.1), transparent 35%),
    linear-gradient(135deg, #f9fcff 0%, #eff7fe 100%);
  box-shadow: 0 24px 80px rgba(5, 19, 81, 0.05);
}

.hero-panel::before {
  position: absolute;
  top: 44px;
  right: 28px;
  width: 120px;
  height: 86px;
  opacity: 0.23;
  background-image: radial-gradient(circle, var(--blue) 1px, transparent 1.2px);
  background-size: 10px 10px;
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
}

.hero-copy h1 {
  max-width: 790px;
  margin-top: 18px;
  font-size: clamp(37px, 4.8vw, 68px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.052em;
}

.hero-tagline {
  margin-top: 28px;
  color: var(--blue);
  font-size: clamp(12px, 1.35vw, 17px);
  font-weight: 600;
  letter-spacing: 0.035em;
}

.hero-lead {
  max-width: 620px;
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 420px;
}

.hero-phone {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(116%, 650px);
  transform: translate3d(calc(-50% + var(--phone-x, 0px)), calc(-50% + var(--phone-y, 0px)), 0)
    rotate(var(--phone-rotate, 0deg));
  transition: transform 0.48s var(--ease);
  will-change: transform;
}

.hero-phone img {
  width: 100%;
  border-radius: 20px;
  mix-blend-mode: multiply;
  -webkit-user-drag: none;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 52%;
  border: 3px solid transparent;
  border-top-color: var(--cyan);
  border-right-color: var(--blue-bright);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-22deg);
}

.orbit-one {
  width: 88%;
  aspect-ratio: 1;
  opacity: 0.82;
}

.orbit-two {
  width: 68%;
  aspect-ratio: 1;
  opacity: 0.32;
  transform: translate(-50%, -50%) rotate(115deg);
}

.hero-dots {
  position: absolute;
  z-index: 0;
  right: 1%;
  bottom: 4%;
  width: 40%;
  height: 38%;
  opacity: 0.22;
  background-image: radial-gradient(circle, var(--blue) 1px, transparent 1.2px);
  background-size: 11px 11px;
  -webkit-mask-image: linear-gradient(120deg, transparent, #000);
  mask-image: linear-gradient(120deg, transparent, #000);
}

.hero-benefits {
  position: relative;
  z-index: 4;
  grid-column: 1 / -1;
  width: min(740px, 70%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.benefit-card {
  min-width: 0;
  min-height: 76px;
  padding: 10px 15px 10px 10px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(5, 19, 81, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 9px 24px rgba(5, 19, 81, 0.06);
}

.benefit-card > span:last-child {
  min-width: 0;
}

.benefit-card strong,
.benefit-card small {
  display: block;
}

.benefit-card strong {
  font-size: 9px;
  font-weight: 600;
  line-height: 1.3;
}

.benefit-card small {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 7px;
  line-height: 1.35;
}

.benefit-art {
  position: relative;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  overflow: hidden;
  border-radius: 9px;
  background: #fff;
}

.benefit-art img {
  position: absolute;
  max-width: none;
}

.benefit-shield img {
  top: -4px;
  left: -3px;
  width: 56px;
}

.benefit-people img,
.benefit-result img {
  top: -1px;
  width: 112px;
}

.benefit-people img { left: -4px; }
.benefit-result img { right: -3px; }

.inventory {
  padding-top: 36px;
}

.inventory-grid {
  min-height: 520px;
  padding: clamp(32px, 4.5vw, 62px);
  display: grid;
  grid-template-columns: minmax(460px, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, #edf7ff, #f8fbff);
}

.inventory-stage {
  position: relative;
  min-height: 410px;
}

.inventory-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 220, 202, 0.22), rgba(0, 108, 255, 0.06) 46%, transparent 70%);
  transform: translate(-50%, -50%);
}

.inventory-glow::after {
  position: absolute;
  inset: 17%;
  border: 1px solid rgba(0, 108, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(0, 108, 255, 0.035);
  content: "";
}

.inventory-phone {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 49%;
  border-radius: 24px;
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 20px 26px rgba(5, 19, 81, 0.12));
}

.inventory-phone.is-bouncing {
  animation: phone-bounce 0.95s var(--ease) both;
}

.app-cloud img {
  position: absolute;
  z-index: 4;
  width: clamp(50px, 5.2vw, 76px);
  aspect-ratio: 1;
  border: 7px solid rgba(255, 255, 255, 0.88);
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(5, 19, 81, 0.13);
  animation: app-float 5s ease-in-out infinite;
}

.app-cloud img:nth-child(1) { top: 5%; left: 3%; animation-delay: -0.7s; }
.app-cloud img:nth-child(2) { top: 33%; left: 11%; animation-delay: -2.2s; }
.app-cloud img:nth-child(3) { bottom: 4%; left: 3%; animation-delay: -1.3s; }
.app-cloud img:nth-child(4) { top: 2%; right: 10%; animation-delay: -3.1s; }
.app-cloud img:nth-child(5) { top: 39%; right: 2%; animation-delay: -1.8s; }
.app-cloud img:nth-child(6) { right: 14%; bottom: 2%; animation-delay: -3.7s; }
.app-cloud img:nth-child(7) { top: 19%; left: 26%; animation-delay: -2.8s; }
.app-cloud img:nth-child(8) { right: 27%; bottom: 18%; animation-delay: -0.2s; }

.section-copy .eyebrow {
  margin-bottom: 15px;
}

.section-lead {
  max-width: 540px;
  margin-top: 24px;
}

.check-list {
  margin-top: 30px;
  padding: 0;
  display: grid;
  gap: 15px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 27px;
  color: rgba(5, 19, 81, 0.75);
  font-size: 12px;
  line-height: 1.45;
}

.check-list li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue-bright));
  box-shadow: 0 0 0 4px rgba(0, 108, 255, 0.07);
  content: "";
}

.check-list li::after {
  position: absolute;
  top: 0.42em;
  left: 5px;
  width: 5px;
  height: 3px;
  border-bottom: 1.5px solid #fff;
  border-left: 1.5px solid #fff;
  transform: rotate(-45deg);
  content: "";
}

.categories {
  padding-top: 36px;
}

.compact-heading {
  margin-bottom: 26px;
}

.compact-heading h2 {
  font-size: clamp(27px, 3.2vw, 42px);
}

.categories-frame {
  padding: clamp(20px, 2.5vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(5, 19, 81, 0.07);
  border-radius: 20px;
  background: #f7fbff;
  box-shadow: 0 14px 45px rgba(5, 19, 81, 0.04);
}

.categories-frame img {
  width: 100%;
  border-radius: 12px;
  mix-blend-mode: multiply;
}

.formats {
  padding-top: 28px;
}

.formats-panel {
  padding: clamp(30px, 4vw, 54px);
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 2.28fr);
  gap: clamp(34px, 4vw, 64px);
  border-radius: 22px;
  background: linear-gradient(135deg, #f4f9fe, #eff6fc);
}

.formats-intro h2 {
  margin-top: 14px;
  font-size: clamp(26px, 3vw, 42px);
}

.formats-intro > p:last-child {
  margin-top: 24px;
}

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

.format-card {
  padding: 17px;
  align-self: start;
  overflow: hidden;
  border: 1px solid rgba(5, 19, 81, 0.11);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(5, 19, 81, 0.05);
}

.format-card-head {
  min-height: 42px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.format-card-head span {
  color: var(--blue);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.format-card-head h3 {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
}

.format-preview {
  position: relative;
  width: 100%;
  height: clamp(220px, 22vw, 310px);
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #eef6fc;
  cursor: zoom-in;
}

.format-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease), filter 0.35s ease;
}

.format-preview-wide img {
  object-fit: contain;
  mix-blend-mode: multiply;
}

.format-preview > span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 9px 11px;
  border-radius: 20px;
  color: #fff;
  background: rgba(5, 19, 81, 0.85);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
}

.format-preview:hover img {
  transform: scale(1.025);
  filter: saturate(1.08);
}

.format-preview:hover > span {
  opacity: 1;
  transform: translateY(0);
}

.format-toggle {
  width: 100%;
  margin-top: 12px;
  padding: 13px 0 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  background: transparent;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.format-toggle i {
  position: relative;
  width: 14px;
  height: 14px;
}

.format-toggle i::before,
.format-toggle i::after {
  position: absolute;
  top: 6px;
  left: 2px;
  width: 10px;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s var(--ease);
  content: "";
}

.format-toggle i::after {
  transform: rotate(90deg);
}

.format-card.is-open .format-toggle i::after {
  transform: rotate(0);
}

.format-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s var(--ease), opacity 0.3s ease, padding 0.5s var(--ease);
}

.format-card.is-open .format-details {
  max-height: 150px;
  padding-top: 13px;
  opacity: 1;
}

.format-details p {
  color: var(--text-muted);
  font-size: 8px;
  line-height: 1.55;
}

.format-details p + p {
  margin-top: 7px;
}

.metrics {
  padding-top: 22px;
  padding-bottom: 38px;
}

.metrics-panel {
  padding: clamp(28px, 3.6vw, 48px) clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(16, 220, 202, 0.13), transparent 24%),
    linear-gradient(110deg, #03103d, #092965);
  box-shadow: 0 20px 55px rgba(5, 19, 81, 0.18);
}

.metrics-panel article {
  min-width: 0;
  padding-inline: clamp(16px, 2.6vw, 36px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.metrics-panel article:first-child {
  padding-left: 0;
  border-left: 0;
}

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

.metrics-panel strong {
  position: relative;
  padding-top: 12px;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
}

.metrics-panel strong::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--sky));
  content: "";
}

.metrics-panel span {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  line-height: 1.55;
}

.audience {
  overflow: hidden;
  background: linear-gradient(180deg, #fbfdff, #f4f9fe 72%, #fbfdff);
}

.audience-heading {
  margin-bottom: 20px;
}

.audience-layout {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(570px, 1.28fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
}

.audience-panel {
  position: relative;
  min-height: 390px;
  padding: clamp(28px, 3.5vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(5, 19, 81, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 60px rgba(5, 19, 81, 0.06);
  transition: opacity 0.24s ease, transform 0.35s var(--ease);
  margin-top: 76px;
}

.audience-panel.is-updating {
  opacity: 0.58;
  transform: translateY(5px);
}

.audience-panel::before {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border: 1px dashed rgba(0, 108, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(0, 108, 255, 0.025);
  content: "";
}

.audience-index {
  color: var(--blue);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.audience-panel h3 {
  max-width: 440px;
  margin-top: 34px;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.audience-description {
  max-width: 430px;
  min-height: 58px;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
}

.audience-meta {
  position: relative;
  z-index: 1;
  margin-top: 36px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px 20px;
  align-items: baseline;
}

.audience-meta span {
  color: rgba(5, 19, 81, 0.44);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audience-meta strong {
  font-size: 9px;
  font-weight: 600;
}

.audience-hint {
  margin-top: 36px;
  color: rgba(5, 19, 81, 0.4);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-radar {
  position: relative;
  justify-self: end;
  width: min(100%, 690px);
  aspect-ratio: 1;
}

.radar-ring,
.radar-axis,
.radar-scan {
  position: absolute;
  pointer-events: none;
}

.radar-ring {
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  border: 1px dashed rgba(0, 108, 255, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.radar-ring-one { width: 84%; }
.radar-ring-two { width: 55%; border-style: solid; opacity: 0.7; }

.radar-axis {
  top: 50%;
  left: 50%;
  width: 84%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 108, 255, 0.18), transparent);
  transform: translate(-50%, -50%);
}

.radar-axis-y {
  transform: translate(-50%, -50%) rotate(90deg);
}

.radar-scan {
  z-index: 1;
  inset: 8%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(0, 108, 255, 0.24), rgba(16, 220, 202, 0.06) 20deg, transparent 76deg);
  -webkit-mask: radial-gradient(circle, transparent 0 17%, #000 18% 100%);
  mask: radial-gradient(circle, transparent 0 17%, #000 18% 100%);
  animation: radar-spin 9s linear infinite;
}

.audience-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 31%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 10px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 36% 26%, #5ee8dd, #0d76f1 58%, #0645c5);
  box-shadow: 0 20px 55px rgba(0, 67, 255, 0.24), inset 0 0 40px rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%);
  text-align: center;
}

.audience-core span {
  position: absolute;
  width: 28%;
  aspect-ratio: 1;
  border: 2px solid #fff;
  border-radius: 50% 50% 45% 45%;
  transform: translateY(-34%);
}

.audience-core span::after {
  position: absolute;
  top: 90%;
  left: 50%;
  width: 175%;
  height: 80%;
  border: 2px solid #fff;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
  content: "";
}

.audience-core strong {
  padding-top: 52%;
  font-size: clamp(9px, 1.1vw, 14px);
  font-weight: 600;
  line-height: 1.2;
}

.audience-node {
  position: absolute;
  z-index: 5;
  width: 116px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: transparent;
  cursor: pointer;
}

.audience-node img,
.geo-mark {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(5, 19, 81, 0.1);
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(5, 19, 81, 0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s var(--ease);
}

.audience-node span {
  max-width: 120px;
  font-size: 7px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  transition: color 0.3s ease;
}

.audience-node:hover img,
.audience-node:hover .geo-mark,
.audience-node.is-active img,
.audience-node.is-active .geo-mark {
  border-color: rgba(0, 108, 255, 0.42);
  box-shadow: 0 15px 38px rgba(0, 67, 255, 0.18), 0 0 0 6px rgba(0, 108, 255, 0.06);
  transform: translateY(-3px) scale(1.03);
}

.audience-node.is-active span {
  color: var(--blue);
}

.node-psychographics { top: 2%; left: 24%; }
.node-interests { top: 2%; right: 18%; }
.node-purchases { top: 39%; right: -1%; }
.node-technical { right: 17%; bottom: 0; }
.node-demography { bottom: 0; left: 22%; }
.node-geo { top: 42%; left: -2%; }

.geo-mark {
  position: relative;
  display: block;
}

.geo-mark::before {
  position: absolute;
  top: 18px;
  left: 23px;
  width: 23px;
  height: 29px;
  border: 3px solid var(--blue-bright);
  border-radius: 50% 50% 50% 7px;
  transform: rotate(-45deg);
  content: "";
}

.geo-mark::after {
  position: absolute;
  top: 27px;
  left: 32px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  content: "";
}

.examples {
  padding-top: 38px;
}

.examples-panel {
  padding: clamp(30px, 4vw, 54px);
  border-radius: 22px;
  background: linear-gradient(135deg, #f5faff, #eef6fd);
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.example-card {
  overflow: hidden;
  border: 1px solid rgba(5, 19, 81, 0.08);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.84);
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}

.example-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(5, 19, 81, 0.09);
}

.example-media {
  height: clamp(260px, 25vw, 350px);
  overflow: hidden;
  background: #f7f7f7;
}

.example-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  mix-blend-mode: multiply;
  transition: transform 0.65s var(--ease);
}

.example-card:hover .example-media img {
  transform: scale(1.025);
}

.example-copy {
  position: relative;
  padding: 22px;
}

.example-number {
  position: absolute;
  top: 25px;
  right: 22px;
  color: rgba(5, 19, 81, 0.28);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.example-copy h3 {
  padding-right: 38px;
  font-size: 15px;
  font-weight: 600;
}

.example-copy p {
  min-height: 63px;
  margin-top: 13px;
  color: var(--text-muted);
  font-size: 9px;
  line-height: 1.55;
}

.example-copy strong {
  display: block;
  margin-top: 18px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
}

.analytics {
  padding-top: 36px;
}

.analytics-grid {
  padding: clamp(30px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 2.3fr);
  gap: clamp(40px, 5vw, 76px);
  align-items: center;
  border-radius: 22px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(5, 19, 81, 0.07), 0 16px 50px rgba(5, 19, 81, 0.04);
}

.analytics-intro h2 {
  margin-top: 15px;
}

.analytics-intro > p:last-child {
  margin-top: 25px;
}

.analytics-art {
  width: min(100%, 760px);
  margin-inline: auto;
  mix-blend-mode: multiply;
}

.analytics-cards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.analytics-cards article {
  padding: 21px clamp(14px, 2vw, 26px) 5px;
  border-left: 1px solid var(--line);
}

.analytics-cards article:first-child {
  padding-left: 0;
  border-left: 0;
}

.analytics-cards span {
  color: var(--blue);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.analytics-cards h3 {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.analytics-cards p {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 8px;
  line-height: 1.55;
}

.partners {
  margin-top: 20px;
  padding-block: 20px;
  color: #fff;
  background: linear-gradient(105deg, #03103d, #0b326c);
}

.partners-inner {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.partners h2 {
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 11px;
}

.partner-list > div {
  height: 48px;
  padding: 8px 13px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.96);
}

.partner-list img {
  width: 100%;
  max-height: 31px;
  object-fit: contain;
}

.contact {
  padding-top: 58px;
  padding-bottom: 44px;
}

.contact-panel {
  position: relative;
  min-height: 300px;
  padding: clamp(34px, 4vw, 58px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(180px, 0.6fr) minmax(420px, 1.5fr) minmax(230px, 0.7fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 28%, rgba(0, 108, 255, 0.22), transparent 31%),
    linear-gradient(110deg, #04113f, #081b5a);
  box-shadow: 0 22px 60px rgba(5, 19, 81, 0.18);
}

.contact-panel::after {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 320px;
  height: 220px;
  opacity: 0.18;
  background-image: radial-gradient(circle, #fff 1px, transparent 1.2px);
  background-size: 12px 12px;
  -webkit-mask-image: linear-gradient(130deg, transparent, #000);
  mask-image: linear-gradient(130deg, transparent, #000);
  content: "";
}

.contact-mark {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}

.contact-mark img {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 84%;
  filter: brightness(0) invert(1);
  translate: var(--contact-x, 0px) var(--contact-y, 0px);
  transform: translate(-50%, -50%);
  animation: fish-bob 5.5s ease-in-out infinite;
  transition: translate 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, translate;
}

.contact-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-top-color: var(--cyan);
  border-right-color: var(--blue-bright);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-a { width: 100%; transform: translate(-50%, -50%) rotate(18deg); }
.ring-b { width: 77%; opacity: 0.45; transform: translate(-50%, -50%) rotate(152deg); }

.contact-copy {
  position: relative;
  z-index: 2;
}

.contact-copy .eyebrow {
  color: var(--cyan);
}

.contact-email {
  margin-top: 12px;
  display: inline-block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.contact-copy h2 {
  margin-top: 24px;
  max-width: 720px;
  font-size: clamp(28px, 3.3vw, 46px);
}

.contact-copy > p:last-child {
  max-width: 650px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  line-height: 1.6;
}

.contact-actions {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.button {
  min-height: 52px;
  padding: 14px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 9px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.3s var(--ease), border-color 0.3s ease, background 0.3s ease;
}

.button-primary {
  border-color: transparent;
  color: var(--navy);
  background: linear-gradient(110deg, #76dfed, #49b5e5);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.02);
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.52);
}

.site-footer {
  padding: 62px 0 28px;
  background: #fff;
}

.footer-top {
  padding-bottom: 58px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(550px, 1.35fr);
  gap: 64px;
}

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

.footer-logo > img { width: 76px; }

.footer-wordmark {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.footer-wordmark > img { width: min(220px, 100%); }

.footer-wordmark > span {
  font-size: 8px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-info {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.7fr;
  gap: 38px;
}

.footer-info > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.footer-info p {
  margin-bottom: 10px;
  color: rgba(5, 19, 81, 0.43);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-info span,
.footer-info a {
  font-size: 11px;
  line-height: 1.7;
}

.address-nowrap {
  display: inline-block;
  white-space: nowrap;
}

.footer-info a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.footer-info a:hover {
  border-color: currentColor;
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  color: rgba(5, 19, 81, 0.52);
  font-size: 9px;
}

.footer-bottom a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom i::before {
  position: absolute;
  top: 1px;
  left: 7px;
  width: 1px;
  height: 13px;
  background: var(--blue);
  content: "";
}

.footer-bottom i::after {
  position: absolute;
  top: 1px;
  left: 4px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--blue);
  border-left: 1px solid var(--blue);
  transform: rotate(45deg);
  content: "";
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.format-dialog {
  width: min(1080px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 0;
  border-radius: 20px;
  color: var(--navy);
  background: #f7fbff;
  box-shadow: 0 28px 90px rgba(2, 9, 42, 0.32);
}

.format-dialog::backdrop {
  background: rgba(2, 9, 42, 0.72);
  backdrop-filter: blur(8px);
}

.dialog-shell {
  padding: 20px;
}

.dialog-shell header {
  min-height: 64px;
  padding: 4px 3px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.dialog-shell header span {
  color: var(--blue);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dialog-shell header h2 {
  margin-top: 7px;
  font-size: 20px;
  font-weight: 600;
}

.dialog-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(5, 19, 81, 0.07);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.dialog-stage {
  min-height: min(66vh, 660px);
  padding: 22px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 15px;
  background: linear-gradient(135deg, #eaf4fc, #fff);
}

.dialog-stage img {
  width: 100%;
  max-height: min(62vh, 620px);
  object-fit: contain;
  mix-blend-mode: multiply;
}

.dialog-rotate {
  min-height: 46px;
  margin-top: 12px;
  margin-left: auto;
  padding: 10px 15px;
  display: none;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.dialog-rotate.is-visible {
  display: flex;
}

.dialog-rotate i {
  width: 15px;
  height: 12px;
  border: 1px solid currentColor;
  border-radius: 2px;
  transition: transform 0.35s var(--ease);
}

.dialog-rotate.is-portrait i {
  transform: rotate(90deg);
}

@keyframes app-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-9px) rotate(1deg); }
}

@keyframes phone-bounce {
  0% { transform: translate(-50%, -50%); }
  42% { transform: translate(-50%, calc(-50% - 18px)) rotate(-1.2deg); }
  70% { transform: translate(-50%, calc(-50% + 3px)) rotate(0.5deg); }
  100% { transform: translate(-50%, -50%); }
}

@keyframes radar-spin {
  to { transform: rotate(360deg); }
}

@keyframes fish-bob {
  0%, 100% { transform: translate(-50%, -50%) translateY(0) rotate(-1deg); }
  50% { transform: translate(-50%, -50%) translateY(-7px) rotate(1deg); }
}

@media (max-width: 1120px) {
  :root { --header-height: 76px; }

  .header-inner {
    grid-template-columns: minmax(210px, 1fr) auto minmax(160px, 1fr);
  }

  .brand-fish { width: 48px; }
  .brand-name { width: 130px; }
  .desktop-nav { gap: 17px; }
  .header-mail span { display: none; }

  .hero-panel {
    min-height: 560px;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
  }

  .hero-benefits { width: 80%; }

  .inventory-grid {
    grid-template-columns: minmax(390px, 1fr) minmax(340px, 0.9fr);
    gap: 42px;
  }

  .formats-panel {
    grid-template-columns: 1fr;
  }

  .formats-intro {
    max-width: 790px;
  }

  .audience-layout {
    grid-template-columns: minmax(300px, 0.68fr) minmax(500px, 1.32fr);
    gap: 28px;
  }

  .audience-node {
    width: 100px;
  }

  .audience-node img,
  .geo-mark {
    width: 62px;
    height: 62px;
  }

  .geo-mark::before { top: 15px; left: 20px; width: 20px; height: 25px; }
  .geo-mark::after { top: 23px; left: 28px; }

  .contact-panel {
    grid-template-columns: 150px minmax(390px, 1fr) 220px;
    gap: 28px;
  }
}

@media (max-width: 980px) and (min-width: 901px) {
  .contact-panel {
    grid-template-columns: 145px minmax(0, 1fr);
  }

  .contact-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(100% - 34px, 760px);
  }

  .desktop-nav,
  .header-mail {
    display: none;
  }

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

  .menu-toggle {
    position: relative;
    z-index: 102;
    width: 43px;
    height: 43px;
    padding: 0;
    display: block;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
  }

  .menu-toggle span {
    position: absolute;
    left: 12px;
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: transform 0.3s var(--ease), top 0.3s var(--ease);
  }

  .menu-toggle span:first-child { top: 17px; }
  .menu-toggle span:last-child { top: 24px; }

  .menu-toggle[aria-expanded="true"] span:first-child {
    top: 21px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    top: 21px;
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    inset: 0;
    padding: calc(var(--header-height) + env(safe-area-inset-top, 0px) + 44px)
      max(24px, env(safe-area-inset-right, 0px))
      max(34px, env(safe-area-inset-bottom, 0px))
      max(24px, env(safe-area-inset-left, 0px));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    background: var(--navy-deep);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s var(--ease);
  }

  .site-header.menu-is-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-header.menu-is-open .brand {
    position: relative;
    z-index: 103;
    filter: brightness(0) invert(1);
  }

  .site-header.menu-is-open .menu-toggle {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-menu nav {
    display: grid;
    gap: 15px;
  }

  .mobile-menu nav a {
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-size: clamp(18px, 4.5vw, 28px);
    font-weight: 600;
    letter-spacing: -0.025em;
  }

  .mobile-mail {
    color: var(--cyan);
    font-size: 11px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .section-heading > p {
    max-width: 560px;
  }

  .hero {
    padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px) + 18px);
  }

  .hero-panel {
    min-height: 760px;
    padding: 42px 34px 27px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
  }

  .hero-copy h1 {
    max-width: 650px;
    font-size: clamp(35px, 7vw, 54px);
  }

  .hero-visual {
    min-height: 370px;
  }

  .hero-phone {
    width: min(92%, 570px);
  }

  .hero-benefits {
    grid-column: 1;
    width: 100%;
  }

  .inventory-grid {
    padding: 36px;
    grid-template-columns: 1fr;
  }

  .inventory-stage { min-height: 430px; }
  .inventory-copy { order: -1; }

  .formats-panel {
    padding: 34px;
  }

  .format-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .format-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 8px);
    justify-self: center;
  }

  .format-preview {
    height: 300px;
  }

  .metrics-panel {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }

  .metrics-panel article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .audience-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .audience-panel {
    min-height: 330px;
    margin-top: 0;
  }

  .audience-radar {
    justify-self: center;
    width: min(100%, 640px);
  }

  .example-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .example-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 9px);
    justify-self: center;
  }

  .analytics-grid {
    grid-template-columns: 1fr;
  }

  .analytics-intro {
    max-width: 650px;
  }

  .partners-inner {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .partners h2 br { display: none; }

  .contact-panel {
    grid-template-columns: 170px 1fr;
  }

  .contact-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  :root { --header-height: 70px; }

  .shell {
    width: calc(100% - 24px);
  }

  .section {
    padding-block: 34px;
  }

  .brand { gap: 7px; }
  .brand-fish { width: 43px; }
  .brand-name { width: 118px; }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .eyebrow {
    font-size: 7px;
  }

  .hero {
    padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px) + 12px);
    padding-bottom: 18px;
  }

  .hero-panel {
    min-height: 720px;
    padding: 30px 20px 20px;
    gap: 13px;
    border-radius: 18px;
  }

  .hero-copy h1 {
    margin-top: 14px;
    font-size: clamp(29px, 8.7vw, 39px);
    letter-spacing: -0.055em;
  }

  .hero-tagline {
    margin-top: 21px;
    font-size: 9px;
    line-height: 1.5;
  }

  .hero-lead {
    margin-top: 9px;
    font-size: 11px;
    line-height: 1.55;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-phone {
    width: 114%;
  }

  .hero-orbit { left: 50%; }
  .orbit-one { width: 103%; }
  .orbit-two { width: 78%; }

  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .benefit-card {
    min-height: 54px;
    padding: 7px 12px 7px 8px;
  }

  .benefit-art {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .benefit-shield img { width: 45px; }
  .benefit-people img,
  .benefit-result img { width: 91px; }

  .inventory {
    padding-top: 18px;
  }

  .inventory-grid {
    min-height: 0;
    padding: 27px 20px;
    gap: 15px;
    border-radius: 18px;
  }

  .section-copy h2,
  .section-heading h2,
  .formats-intro h2,
  .analytics-intro h2 {
    font-size: 27px;
  }

  .section-lead,
  .section-heading > p,
  .formats-intro > p:last-child,
  .analytics-intro > p:last-child {
    font-size: 11px;
    line-height: 1.6;
  }

  .section-lead {
    margin-top: 17px;
  }

  .check-list {
    margin-top: 23px;
    gap: 13px;
  }

  .check-list li {
    font-size: 10px;
  }

  .inventory-stage {
    min-height: 340px;
  }

  .inventory-phone {
    width: 58%;
  }

  .app-cloud img {
    width: 49px;
    border-width: 5px;
    border-radius: 15px;
  }

  .app-cloud img:nth-child(7),
  .app-cloud img:nth-child(8) {
    display: none;
  }

  .compact-heading {
    margin-bottom: 19px;
  }

  .categories-frame {
    padding: 14px;
    overflow-x: auto;
    border-radius: 16px;
    scrollbar-width: none;
  }

  .categories-frame::-webkit-scrollbar { display: none; }

  .categories-frame img {
    width: 760px;
    max-width: none;
  }

  .formats-panel {
    padding: 27px 16px;
    gap: 27px;
    border-radius: 18px;
  }

  .formats-intro > p:last-child {
    margin-top: 16px;
  }

  .format-grid {
    grid-template-columns: 1fr;
  }

  .format-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .format-preview {
    height: 360px;
  }

  .format-preview-wide {
    height: 250px;
  }

  .format-preview > span {
    display: block;
    opacity: 1;
    transform: none;
  }

  .format-toggle {
    font-size: 9px;
  }

  .format-details p {
    font-size: 9px;
  }

  .metrics {
    padding-top: 14px;
    padding-bottom: 24px;
  }

  .metrics-panel {
    padding: 25px 18px;
    gap: 25px 0;
    border-radius: 15px;
  }

  .metrics-panel article {
    padding-inline: 16px;
  }

  .metrics-panel article:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .metrics-panel strong {
    font-size: 30px;
  }

  .metrics-panel span {
    margin-top: 10px;
    font-size: 8px;
  }

  .audience-heading {
    margin-bottom: 22px;
  }

  .audience-panel {
    min-height: 315px;
    padding: 25px 21px;
  }

  .audience-panel h3 {
    margin-top: 25px;
    font-size: 27px;
  }

  .audience-description {
    min-height: 50px;
    font-size: 11px;
  }

  .audience-meta {
    margin-top: 27px;
    grid-template-columns: 72px 1fr;
  }

  .audience-meta strong {
    font-size: 8px;
  }

  .audience-hint {
    margin-top: 27px;
    font-size: 6px;
  }

  .audience-radar {
    min-height: 420px;
    padding-top: 135px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    aspect-ratio: auto;
  }

  .radar-ring,
  .radar-axis,
  .radar-scan {
    display: none;
  }

  .audience-core {
    top: 55px;
    width: 118px;
    border-width: 7px;
  }

  .audience-node {
    position: static;
    width: auto;
    min-height: 64px;
    padding: 9px 8px;
    flex-direction: row;
    justify-content: flex-start;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.86);
  }

  .audience-node img,
  .geo-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    box-shadow: none;
  }

  .audience-node span {
    max-width: none;
    font-size: 8px;
    text-align: left;
  }

  .geo-mark::before { top: 10px; left: 14px; width: 14px; height: 18px; border-width: 2px; }
  .geo-mark::after { top: 16px; left: 20px; width: 4px; height: 4px; border-width: 1px; }

  .examples-panel {
    padding: 27px 16px;
    border-radius: 18px;
  }

  .example-grid {
    grid-template-columns: 1fr;
  }

  .example-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .example-media {
    height: 300px;
  }

  .example-copy p {
    min-height: 0;
    font-size: 10px;
  }

  .analytics-grid {
    padding: 28px 17px;
    gap: 28px;
    border-radius: 18px;
  }

  .analytics-cards {
    grid-template-columns: 1fr;
  }

  .analytics-cards article,
  .analytics-cards article:first-child {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .analytics-cards article:last-child {
    border-bottom: 0;
  }

  .analytics-cards h3 { font-size: 11px; }
  .analytics-cards p { font-size: 8px; }

  .partners {
    margin-top: 12px;
  }

  .partner-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-list > div:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 5px);
    justify-self: center;
  }

  .contact {
    padding-top: 34px;
  }

  .contact-panel {
    min-height: 0;
    padding: 30px 20px;
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .contact-mark {
    justify-self: center;
    width: 160px;
  }

  .contact-copy h2 {
    font-size: 29px;
  }

  .contact-copy > p:last-child {
    font-size: 9px;
  }

  .contact-actions {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 46px;
  }

  .footer-top {
    padding-bottom: 42px;
    gap: 42px;
  }

  .footer-logo > img { width: 58px; }
  .footer-wordmark { gap: 5px; }
  .footer-wordmark > img { width: 155px; }

  .footer-info {
    grid-template-columns: 1fr 1fr;
    gap: 34px 20px;
  }

  .footer-info > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-info span,
  .footer-info a {
    font-size: 9px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    font-size: 8px;
  }

  .format-dialog {
    width: calc(100% - 16px);
    max-height: calc(100svh - 16px);
    border-radius: 15px;
  }

  .dialog-shell {
    padding: 12px;
  }

  .dialog-stage {
    min-height: 58vh;
    padding: 10px;
  }
}

/* 2026-07-24 composition refinements */

.nowrap {
  white-space: nowrap;
}

.hero-panel {
  min-height: 570px;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  background:
    radial-gradient(circle at 86% 24%, rgba(16, 220, 202, 0.11), transparent 26%),
    radial-gradient(circle at 72% 68%, rgba(0, 108, 255, 0.09), transparent 36%),
    linear-gradient(135deg, #f9fcff 0%, #eff7fe 100%);
}

.hero-panel::before {
  content: none;
}

.hero-copy h1 {
  max-width: 690px;
  font-size: clamp(34px, 4.15vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.048em;
  text-wrap: balance;
}

.hero-tagline {
  color: #004bd8;
  font-size: clamp(13px, 1.35vw, 17px);
  font-weight: 700;
}

.hero-visual {
  min-height: 400px;
}

.hero-phone {
  width: min(124%, 670px);
}

.hero-phone img {
  border-radius: 0;
  mix-blend-mode: normal;
  filter: drop-shadow(0 24px 36px rgba(5, 19, 81, 0.11));
}

.hero-benefits {
  width: min(830px, 76%);
  gap: 14px;
}

.benefit-card {
  min-height: 82px;
  padding: 11px 16px 11px 11px;
  gap: 13px;
}

.benefit-card > strong {
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  line-height: 1.48;
}

.benefit-art {
  width: 54px;
  height: 54px;
  flex-basis: 54px;
  overflow: visible;
  background: transparent;
}

.benefit-art img,
.benefit-shield img,
.benefit-people img,
.benefit-result img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.inventory-device {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(43%, 238px);
  aspect-ratio: 9 / 18.8;
  padding: 18px 7px 23px;
  overflow: hidden;
  border: 4px solid #07133d;
  border-radius: 31px;
  background: linear-gradient(145deg, #15245f, #020a2a 60%);
  box-shadow:
    0 25px 42px rgba(5, 19, 81, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transform: translate(-50%, -50%);
  transform-origin: 50% 62%;
}

.inventory-device::after {
  position: absolute;
  z-index: 4;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  pointer-events: none;
  content: "";
}

.inventory-device.is-bouncing {
  animation: device-arrival 1.15s var(--ease) both;
}

.inventory-speaker {
  position: absolute;
  z-index: 5;
  top: 7px;
  left: 50%;
  width: 34%;
  height: 7px;
  border-radius: 0 0 8px 8px;
  background: #02091f;
  transform: translateX(-50%);
}

.inventory-speaker::after {
  position: absolute;
  top: 2px;
  right: 9px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #294690;
  content: "";
}

.inventory-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 19px;
  background: #0b6ae4;
}

.inventory-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.inventory-home {
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 30%;
  height: 3px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.7);
  transform: translateX(-50%);
}

.categories-heading h2 {
  margin-top: 0;
}

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

.category-grid article {
  min-width: 0;
  min-height: 168px;
  padding: 20px 10px 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid rgba(5, 19, 81, 0.07);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 253, 0.82));
  box-shadow: 0 12px 30px rgba(5, 19, 81, 0.045);
}

.category-grid img {
  width: min(100%, 92px);
  height: 92px;
  object-fit: contain;
}

.category-grid h3 {
  min-height: 2.7em;
  display: grid;
  place-items: center;
  font-size: 8px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.formats-panel {
  display: block;
}

.formats-intro {
  margin-bottom: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 5vw, 74px);
  align-items: end;
}

.formats-intro h2 {
  max-width: 800px;
  margin-top: 0;
  font-size: clamp(30px, 3.45vw, 47px);
  text-wrap: balance;
}

.formats-intro-copy > p {
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
}

.formats-points {
  margin-top: 18px;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.formats-points li {
  position: relative;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 10px;
  line-height: 1.5;
}

.formats-points li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  content: "";
}

.format-card {
  display: flex;
  flex-direction: column;
}

.format-card-head {
  min-height: 46px;
}

.format-card-head h3 {
  font-size: 12px;
}

.format-preview,
.format-preview-wide {
  height: clamp(265px, 25vw, 350px);
  background: transparent;
}

.format-preview img,
.format-preview-wide img {
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 18px 22px rgba(5, 19, 81, 0.14));
}

.format-toggle {
  font-size: 8px;
}

.format-card.is-open .format-details {
  max-height: 230px;
}

.format-details p {
  font-size: 9px;
  line-height: 1.65;
}

.metrics-panel span {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(9px, 0.95vw, 12px);
  font-weight: 600;
  line-height: 1.5;
}

.metrics-panel strong {
  white-space: nowrap;
}

.data-metrics {
  padding-top: 8px;
}

.data-metrics .metrics-panel {
  background:
    radial-gradient(circle at 84% 25%, rgba(16, 220, 202, 0.12), transparent 26%),
    linear-gradient(110deg, #08235d, #0544ae);
}

.data-metrics .metrics-panel strong {
  font-size: clamp(25px, 3.5vw, 48px);
}

.audience-heading {
  margin-bottom: 28px;
  align-items: center;
}

.audience-heading h2 {
  margin-top: 0;
  max-width: 760px;
  text-wrap: balance;
}

.audience-heading > p {
  max-width: 480px;
}

.audience-panel {
  min-height: 370px;
  margin-top: 56px;
  padding: clamp(28px, 3vw, 42px);
}

.audience-panel-icon {
  position: absolute;
  top: 26px;
  right: 28px;
  width: 104px;
  height: 104px;
  padding: 8px;
  object-fit: contain;
  opacity: 0.95;
  mix-blend-mode: multiply;
}

.audience-panel h3 {
  max-width: calc(100% - 128px);
  min-height: 2.15em;
  margin-top: 32px;
  padding-right: 0;
  overflow-wrap: anywhere;
  font-size: clamp(24px, 2.55vw, 35px);
  line-height: 1.08;
}

.audience-description {
  max-width: 360px;
  min-height: 78px;
  font-size: 12px;
}

.audience-hint {
  position: relative;
  z-index: 2;
  margin-top: 25px;
}

.audience-core span {
  top: 18%;
  width: 25%;
  border: 0;
  border-radius: 50%;
  background: #fff;
  transform: none;
}

.audience-core span::after {
  top: 103%;
  left: 50%;
  width: 178%;
  height: 112%;
  border: 0;
  border-radius: 52% 52% 24% 24%;
  background: #fff;
  transform: translateX(-50%);
}

.audience-core strong {
  position: relative;
  z-index: 2;
}

.audience-node img {
  padding: 5px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.node-geo img,
.audience-panel-icon[src*="audience-geo"] {
  mix-blend-mode: normal;
}

.example-copy {
  min-height: 210px;
}

.example-copy ul {
  margin: 15px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.example-copy li {
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.5;
}

.example-copy li:last-child {
  margin-top: 4px;
  color: var(--blue);
  font-size: 11.5px;
  font-weight: 600;
}

.analytics-grid {
  display: block;
}

.analytics-intro {
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: clamp(32px, 5vw, 74px);
  align-items: end;
}

.analytics-intro h2 {
  max-width: 760px;
  margin-top: 0;
  font-size: clamp(31px, 3.5vw, 48px);
  text-wrap: balance;
}

.analytics-intro > p:last-child {
  margin-top: 0;
}

.analytics-cards {
  margin-top: 0;
  gap: 16px;
  border-top: 0;
}

.analytics-cards article,
.analytics-cards article:first-child {
  min-width: 0;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, #f9fcff, #edf6fd);
}

.analytics-cards article > img {
  width: 100%;
  height: 150px;
  margin-bottom: 17px;
  object-fit: contain;
}

.analytics-cards h3 {
  font-size: 13px;
}

.analytics-cards p {
  min-height: 4.8em;
  font-size: 9px;
  line-height: 1.6;
}

.contact-panel {
  grid-template-columns: minmax(165px, 0.52fr) minmax(430px, 1.68fr) minmax(230px, 0.72fr);
}

.contact-copy h2 {
  max-width: 760px;
  font-size: clamp(27px, 3vw, 41px);
  line-height: 1.12;
  text-wrap: balance;
}

.contact-actions {
  align-content: center;
  grid-template-columns: 1fr;
}

.contact-actions .contact-email {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.025em;
}

.button {
  font-size: 10px;
}

.contact-mark.is-arriving img {
  animation: contact-fish-arrival 1.2s var(--ease) both;
}

.dialog-stage img {
  mix-blend-mode: normal;
  filter: drop-shadow(0 20px 30px rgba(5, 19, 81, 0.15));
}

.format-dialog {
  width: calc(100% - 32px);
  height: calc(100svh - 32px);
  max-height: none;
}

.dialog-shell {
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.dialog-stage {
  min-height: 0;
}

.dialog-stage img {
  max-height: 100%;
}

@keyframes device-arrival {
  0% { transform: translate(-50%, -50%) scale(0.94); }
  28% { transform: translate(-50%, calc(-50% - 40px)) scale(1.035) rotate(-1.8deg); }
  56% { transform: translate(-50%, calc(-50% + 8px)) scale(0.99) rotate(0.8deg); }
  77% { transform: translate(-50%, calc(-50% - 11px)) scale(1.01) rotate(-0.3deg); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

@keyframes contact-fish-arrival {
  0% { transform: translate(-74%, -40%) rotate(-8deg) scale(0.82); }
  38% { transform: translate(-49%, -60%) rotate(3deg) scale(1.06); }
  64% { transform: translate(-51%, -47%) rotate(-1deg) scale(0.98); }
  100% { transform: translate(-50%, -50%) rotate(0) scale(1); }
}

@media (max-width: 1120px) {
  .hero-panel {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  }

  .hero-benefits {
    width: 88%;
  }

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

  .category-grid article:nth-child(n + 5) {
    min-height: 150px;
  }

  .contact-panel {
    grid-template-columns: 150px minmax(390px, 1fr) 220px;
  }
}

@media (max-width: 900px) {
  .hero-panel {
    min-height: 740px;
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 680px;
    font-size: clamp(34px, 6.5vw, 50px);
  }

  .hero-phone {
    width: min(105%, 580px);
  }

  .hero-benefits {
    width: 100%;
  }

  .formats-intro,
  .analytics-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .formats-intro-copy {
    max-width: 650px;
  }

  .audience-panel {
    margin-top: 0;
  }

  .analytics-intro {
    max-width: none;
  }

  .contact-panel {
    grid-template-columns: 165px 1fr;
  }

  .contact-actions {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .hero-panel {
    min-height: 765px;
  }

  .hero-copy h1 {
    font-size: clamp(28px, 8.2vw, 36px);
    line-height: 1.08;
  }

  .hero-tagline {
    font-size: 10px;
  }

  .hero-visual {
    min-height: 272px;
  }

  .hero-phone {
    width: 122%;
  }

  .benefit-card {
    min-height: 60px;
    gap: 11px;
  }

  .benefit-art {
    width: 43px;
    height: 43px;
    flex-basis: 43px;
  }

  .benefit-card > strong {
    font-size: 10.5px;
  }

  .inventory-device {
    width: min(49%, 186px);
    padding: 15px 6px 20px;
    border-width: 3px;
    border-radius: 27px;
  }

  .inventory-stage {
    min-height: 370px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .category-grid article,
  .category-grid article:nth-child(n + 5) {
    min-height: 145px;
    padding: 15px 7px 13px;
  }

  .category-grid article:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 5px);
    justify-self: center;
  }

  .category-grid img {
    width: 78px;
    height: 78px;
  }

  .category-grid h3 {
    font-size: 8px;
  }

  .formats-intro {
    margin-bottom: 27px;
  }

  .formats-intro h2,
  .analytics-intro h2 {
    font-size: 27px;
  }

  .formats-intro-copy > p {
    font-size: 10px;
  }

  .formats-points li {
    font-size: 9px;
  }

  .format-preview,
  .format-preview-wide {
    height: 315px;
  }

  .format-details p {
    font-size: 9px;
  }

  .metrics-panel span {
    font-size: 9px;
  }

  .data-metrics .metrics-panel strong {
    font-size: 27px;
  }

  .audience-panel {
    min-height: 320px;
  }

  .audience-panel-icon {
    top: 20px;
    right: 18px;
    width: 82px;
    height: 82px;
  }

  .audience-panel h3 {
    max-width: calc(100% - 100px);
    min-height: 2.35em;
    font-size: 24px;
  }

  .audience-description {
    min-height: 64px;
    font-size: 10px;
  }

  .audience-core span {
    top: 16%;
  }

  .example-copy {
    min-height: 0;
  }

  .example-copy li,
  .example-copy li:last-child {
    font-size: 10.5px;
  }

  .analytics-cards article,
  .analytics-cards article:first-child {
    padding: 19px;
  }

  .analytics-cards article > img {
    height: 130px;
  }

  .analytics-cards h3 {
    font-size: 12px;
  }

  .analytics-cards p {
    min-height: 0;
    font-size: 9px;
  }

  .contact-panel,
  .contact-actions {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .contact-copy h2 {
    font-size: 27px;
    line-height: 1.15;
  }

  .contact-actions .contact-email {
    font-size: 9px;
  }

  .button {
    font-size: 10px;
  }

  .format-dialog {
    width: calc(100% - 16px);
    height: calc(100svh - 16px);
  }
}

/* 2026-07-24 scale and fit refinements */

.section-heading h2,
.section-copy h2 {
  font-size: clamp(25px, 2.75vw, 39px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.compact-heading h2 {
  font-size: clamp(24px, 2.55vw, 35px);
}

.hero-panel {
  min-height: 530px;
}

.hero-copy h1 {
  max-width: 650px;
  margin-top: 0;
  font-size: clamp(31px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.hero-tagline {
  margin-top: 21px;
  font-size: clamp(11px, 1.05vw, 14px);
  line-height: 1.45;
}

.hero-lead {
  max-width: 570px;
  margin-top: 11px;
  font-size: 12.5px;
  line-height: 1.6;
}

.hero-visual {
  min-height: 350px;
}

.hero-phone {
  width: min(92%, 445px);
}

.inventory-device {
  width: min(33%, 175px);
}

.formats-intro h2,
.analytics-intro h2 {
  font-size: clamp(26px, 2.75vw, 39px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.contact-copy h2 {
  font-size: clamp(25px, 2.45vw, 35px);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.audience-layout {
  grid-template-columns: minmax(430px, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(30px, 4vw, 56px);
}

.audience-panel {
  margin-top: 42px;
}

.audience-panel-icon {
  top: 27px;
  right: 26px;
  width: 82px;
  height: 82px;
}

.audience-panel h3 {
  max-width: calc(100% - 90px);
  min-height: 0;
  margin-top: 8px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.14;
}

.audience-description {
  max-width: 390px;
}

.audience-core span {
  top: 13%;
  width: 21%;
}

.audience-core strong {
  position: absolute;
  left: 12%;
  bottom: 14%;
  width: 76%;
  padding-top: 0;
  transform: none;
}

.analytics-cards h3 {
  font-size: 16px;
  line-height: 1.35;
}

.analytics-cards p {
  min-height: 0;
  font-size: 11px;
  line-height: 1.6;
}

.dialog-stage img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes device-arrival {
  0% { transform: translate(-50%, -50%) scale(0.96); }
  30% { transform: translate(-50%, calc(-50% - 22px)) scale(1.025) rotate(-1.2deg); }
  58% { transform: translate(-50%, calc(-50% + 5px)) scale(0.995) rotate(0.5deg); }
  78% { transform: translate(-50%, calc(-50% - 7px)) scale(1.006) rotate(-0.2deg); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

@media (max-width: 1120px) and (min-width: 901px) {
  .hero-phone {
    width: min(88%, 425px);
  }

  .audience-layout {
    grid-template-columns: minmax(380px, 0.85fr) minmax(480px, 1.15fr);
    gap: 28px;
  }

  .audience-panel h3 {
    font-size: 25px;
  }
}

@media (max-width: 980px) {
  .audience-layout {
    grid-template-columns: 1fr;
  }

  .audience-panel {
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .hero-panel {
    min-height: 670px;
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 600px;
    font-size: clamp(29px, 5.5vw, 40px);
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-phone {
    width: min(86%, 430px);
  }

  .audience-layout {
    grid-template-columns: 1fr;
  }

  .audience-panel {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .section-heading h2,
  .section-copy h2,
  .compact-heading h2,
  .formats-intro h2,
  .analytics-intro h2,
  .contact-copy h2 {
    font-size: 24px;
  }

  .hero-panel {
    min-height: 690px;
  }

  .hero-copy h1 {
    font-size: clamp(25px, 7.4vw, 31px);
  }

  .hero-tagline {
    margin-top: 17px;
    font-size: 9px;
  }

  .hero-lead {
    font-size: 10.5px;
  }

  .hero-visual {
    min-height: 255px;
  }

  .hero-phone {
    width: min(90%, 350px);
  }

  .inventory-device {
    width: min(36%, 140px);
  }

  .inventory-stage {
    min-height: 345px;
  }

  .audience-panel-icon {
    top: 20px;
    right: 18px;
    width: 68px;
    height: 68px;
  }

  .audience-panel h3 {
    max-width: calc(100% - 74px);
    margin-top: 4px;
    font-size: 21px;
  }

  .audience-core span {
    top: 12%;
    width: 20%;
  }

  .audience-core strong {
    bottom: 13%;
    font-size: 9px;
  }

  .analytics-cards h3 {
    font-size: 14px;
  }

  .analytics-cards p {
    font-size: 10.5px;
  }
}

/* 2026-07-24 canonical type scale, asset fit and audience balance */

:root {
  --type-display: clamp(31px, 2.8vw, 40px);
  --type-section: clamp(23px, 2.15vw, 31px);
  --type-lead: clamp(12px, 1vw, 14px);
  --type-card: 14px;
  --type-body: 12px;
  --type-caption: 9px;
}

.hero-copy h1 {
  max-width: 620px;
  font-size: var(--type-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero-copy {
  top: -12px;
}

.section-heading h2,
.section-copy h2,
.compact-heading h2,
.formats-intro h2,
.analytics-intro h2,
.contact-copy h2 {
  margin-top: 0;
  font-size: var(--type-section);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero-lead,
.section-heading > p,
.section-lead,
.formats-intro-copy > p,
.analytics-intro > p:last-child,
.contact-copy > p:last-child {
  font-size: var(--type-lead);
  line-height: 1.65;
}

.category-grid h3,
.format-card-head h3,
.example-copy h3,
.analytics-cards h3 {
  font-size: var(--type-card);
  font-weight: 600;
  line-height: 1.35;
}

.benefit-card > strong,
.check-list li,
.formats-points li,
.format-details p,
.audience-description,
.example-copy li,
.example-copy li:last-child,
.analytics-cards p,
.metrics-panel span {
  font-size: var(--type-body);
  line-height: 1.6;
}

.hero-tagline {
  font-size: var(--type-lead);
  font-weight: 700;
  line-height: 1.45;
}

.eyebrow,
.partners h2,
.dialog-shell header span,
.audience-hint {
  font-size: var(--type-caption);
}

.hero-panel {
  min-height: 590px;
}

.hero-visual {
  min-height: 390px;
}

.hero-phone {
  width: min(68%, 250px);
  isolation: isolate;
}

.hero-phone::before {
  position: absolute;
  z-index: 1;
  top: 52%;
  left: 50%;
  width: 210%;
  aspect-ratio: 777.813 / 563.81;
  background: linear-gradient(145deg, #10f4dc 4%, #006cff 54%, #051351 96%);
  transform: translate(-50%, -50%);
  opacity: 0.48;
  -webkit-mask: url("assets/media-tuner-ripples.svg") center / contain no-repeat;
  mask: url("assets/media-tuner-ripples.svg") center / contain no-repeat;
  pointer-events: none;
  content: "";
}

.hero-phone img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: normal;
}

.inventory-device {
  width: min(40%, 220px);
  aspect-ratio: 0.64;
  padding: 22px 9px 24px;
  overflow: visible;
  border: 3px solid #07133d;
  border-radius: 34px;
  background: linear-gradient(145deg, #15245f, #020a2a 60%);
  box-shadow:
    0 25px 42px rgba(5, 19, 81, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.inventory-device::before {
  position: absolute;
  top: 27%;
  right: -6px;
  width: 4px;
  height: 48px;
  border-radius: 0 4px 4px 0;
  background: #07133d;
  box-shadow: 0 64px 0 #07133d;
  content: "";
}

.inventory-device::after {
  display: block;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
}

.inventory-speaker {
  display: block;
  top: 7px;
  width: 31%;
  height: 8px;
  border-radius: 0 0 8px 8px;
}

.inventory-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  border-radius: 24px;
  background: linear-gradient(180deg, #0f78e8 0%, #0d68d8 52%, #0656c4 100%);
}

.inventory-screen img {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: -0.75%;
  width: 117.5%;
  height: auto;
  max-width: none;
  object-fit: initial;
  transform: translateY(-50%);
}

.inventory-home {
  display: block;
  bottom: 8px;
  width: 27%;
  height: 3px;
}

.formats-panel {
  display: block;
}

.formats-intro {
  display: block;
  margin-bottom: clamp(26px, 3.3vw, 44px);
}

.formats-intro h2 {
  max-width: 900px;
  margin: 0;
}

.formats-content {
  display: grid;
  grid-template-columns: minmax(225px, 0.68fr) minmax(0, 2.32fr);
  gap: clamp(28px, 3.5vw, 50px);
  align-items: start;
}

.formats-intro-copy {
  max-width: 310px;
  padding-top: 4px;
}

.format-grid {
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dialog-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding: 80px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dialog-stage img {
  position: static;
  display: block;
  width: min(100%, 960px);
  height: min(calc(100svh - 208px), 760px);
  max-width: none;
  max-height: none;
  margin: auto;
  object-fit: contain;
  object-position: center;
  transform: none;
  mix-blend-mode: normal;
}

.format-dialog {
  position: fixed;
  inset: 16px;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  margin: 0;
  overflow: hidden;
}

.dialog-shell {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  display: block;
  overflow: hidden;
}

.dialog-shell header {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  left: 20px;
  min-height: 0;
  padding: 0;
}

.dialog-rotate {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  margin: 0;
}

.audience-core {
  overflow: hidden;
  border-color: #f2f7ff;
  background-clip: padding-box;
  box-shadow:
    0 0 0 8px rgba(0, 108, 255, 0.08),
    0 20px 55px rgba(0, 67, 255, 0.24),
    inset 0 0 40px rgba(255, 255, 255, 0.25);
}

.audience-core strong {
  font-size: clamp(7.5px, 0.85vw, 11px);
}

.categories-heading,
.audience-heading {
  padding-inline: clamp(16px, 4vw, 54px);
}

@media (min-width: 901px) {
  .categories-heading > p,
  .analytics-intro > p:last-child {
    align-self: center;
  }

  .example-copy,
  .example-copy ul {
    display: flex;
    flex-direction: column;
  }

  .example-copy ul {
    flex: 1;
  }

  .example-copy li:last-child {
    margin-top: auto;
    padding-top: 12px;
  }
}

.audience-heading {
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-bottom: 30px;
}

.audience-heading > p {
  width: min(100%, 760px);
  max-width: none;
  margin: 0;
}

.audience-layout {
  min-height: 0;
  grid-template-columns: minmax(500px, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(32px, 4vw, 48px);
  align-items: center;
}

.audience-panel {
  min-height: 286px;
  margin-top: 0;
  padding: 30px 34px;
  align-self: center;
}

.audience-panel-icon {
  top: 26px;
  right: 28px;
  width: 76px;
  height: 76px;
}

.audience-panel h3 {
  max-width: calc(100% - 88px);
  min-height: 0;
  margin-top: 0;
  font-size: clamp(20px, 1.75vw, 25px);
  line-height: 1.18;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.audience-description {
  max-width: 420px;
  min-height: 0;
  margin-top: 18px;
}

.audience-hint {
  margin-top: 18px;
}

.audience-radar {
  justify-self: center;
  width: min(100%, 590px);
}

.audience-node span {
  max-width: 154px;
  font-size: var(--type-caption);
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.node-technical {
  right: 10%;
  bottom: -1%;
  width: 160px;
}

.node-technical span {
  max-width: 160px;
}

.audience-node.node-purchases img,
.audience-panel-icon[src*="audience-purchases"] {
  background: transparent;
  mix-blend-mode: normal;
}

.audience-node.node-purchases img {
  padding: 10px;
  border-color: transparent;
}

@media (max-width: 1080px) {
  .audience-layout {
    grid-template-columns: 1fr;
  }

  .audience-panel {
    width: min(100%, 720px);
    justify-self: center;
  }

  .audience-radar {
    width: min(100%, 590px);
  }
}

@media (max-width: 1000px) {
  .formats-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .formats-intro-copy {
    max-width: 680px;
  }

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

  .format-card:last-child {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }
}

@media (max-width: 900px) {
  .hero-panel {
    min-height: 745px;
  }

  .hero-copy {
    top: -6px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-phone {
    width: min(68%, 230px);
  }
}

@media (max-width: 700px) {
  .format-grid {
    grid-template-columns: 1fr;
  }

  .format-card:last-child {
    grid-column: auto;
    width: 100%;
  }
}

@media (max-width: 620px) {
  :root {
    --type-display: 27px;
    --type-section: 22px;
    --type-lead: 11px;
    --type-card: 13px;
    --type-body: 10.5px;
    --type-caption: 8px;
  }

  .hero-panel {
    min-height: 750px;
  }

  .hero-copy h1 {
    font-size: var(--type-display);
  }

  .hero-copy {
    top: -4px;
  }

  .hero-visual {
    min-height: 292px;
  }

  .hero-phone {
    width: min(68%, 190px);
  }

  .inventory-device {
    width: min(48%, 175px);
    padding: 19px 7px 21px;
    border-width: 3px;
    border-radius: 28px;
  }

  .inventory-screen {
    border-radius: 20px;
  }

  .categories-heading,
  .audience-heading {
    padding-inline: 16px;
  }

  .audience-heading {
    gap: 9px;
    margin-bottom: 22px;
  }

  .audience-heading > p {
    margin: 0;
  }

  .format-dialog {
    inset: 8px;
    width: auto;
    height: auto;
  }

  .dialog-shell header {
    top: 12px;
    right: 12px;
    left: 12px;
  }

  .dialog-stage {
    padding: 72px 18px 70px;
  }

  .dialog-stage img {
    width: 100%;
    height: min(calc(100svh - 190px), 620px);
    max-width: none;
    max-height: none;
  }

  .dialog-rotate {
    right: 12px;
    bottom: 12px;
  }

  .audience-panel {
    min-height: 250px;
    padding: 26px 24px;
  }

  .audience-panel-icon {
    top: 22px;
    right: 20px;
    width: 64px;
    height: 64px;
  }

  .audience-panel h3 {
    max-width: calc(100% - 72px);
    font-size: 19px;
  }

  .audience-description {
    margin-top: 15px;
  }

  .audience-hint {
    margin-top: 15px;
  }

  .audience-radar {
    position: relative;
    order: -1;
    width: min(100%, 360px);
    min-height: 0;
    aspect-ratio: 1;
    margin: 20px auto 4px;
    padding: 0;
    display: block;
    overflow: visible;
  }

  .radar-ring,
  .radar-axis,
  .radar-scan {
    display: block;
  }

  .audience-core {
    top: 50%;
    left: 50%;
    width: 30%;
    border-width: 7px;
  }

  .audience-node {
    position: absolute;
    width: 82px;
    min-height: 72px;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 0;
    border-radius: 0;
    background: transparent;
    touch-action: manipulation;
  }

  .audience-node img,
  .geo-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    box-shadow: 0 8px 22px rgba(5, 19, 81, 0.1);
  }

  .audience-node span {
    max-width: 88px;
    font-size: 7px;
    line-height: 1.3;
    text-align: center;
  }

  .node-psychographics {
    top: 0;
    left: 10%;
  }

  .node-interests {
    top: 0;
    right: 10%;
  }

  .node-purchases {
    top: 40%;
    right: 0;
  }

  .node-geo {
    top: 40%;
    left: 0;
  }

  .node-demography {
    bottom: 0;
    left: 6%;
  }

  .node-technical {
    right: 2%;
    bottom: 0;
    width: 110px;
  }

  .node-technical span {
    max-width: 110px;
  }
}

.carousel-controls {
  display: none;
}

.audience-node.node-purchases img {
  padding: 12px;
  object-fit: contain;
}

.audience-node.node-technical img {
  padding: 10px;
  object-fit: contain;
}

@media (max-width: 620px) {
  .category-grid,
  .example-grid {
    max-width: 100%;
    padding: 3px 2px 8px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x pan-y pinch-zoom;
  }

  .category-grid::-webkit-scrollbar,
  .example-grid::-webkit-scrollbar {
    display: none;
  }

  .category-grid {
    padding-right: 2px;
    padding-left: 2px;
  }

  .category-grid > article,
  .category-grid > article:nth-child(n + 5),
  .category-grid > article:last-child {
    min-width: 0;
    width: auto;
    min-height: 116px;
    padding: 11px 8px 10px;
    flex: 0 0 min(42vw, 150px);
    gap: 8px;
    grid-column: auto;
    justify-self: auto;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .category-grid img {
    width: 58px;
    height: 58px;
  }

  .category-grid h3 {
    min-height: 2.5em;
    font-size: 8px;
  }

  .example-grid > .example-card,
  .example-grid > .example-card:last-child {
    width: 100%;
    flex: 0 0 100%;
    grid-column: auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .example-media {
    height: clamp(320px, 96vw, 360px);
  }

  .example-media img {
    object-position: center top;
  }

  .carousel-controls {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
  }

  .carousel-button {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(5, 19, 81, 0.14);
    border-radius: 50%;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 20px rgba(5, 19, 81, 0.06);
    cursor: pointer;
    touch-action: manipulation;
  }

  .carousel-button:active {
    transform: scale(0.96);
  }

  .carousel-prev::before,
  .carousel-next::before {
    width: 9px;
    height: 9px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    content: "";
  }

  .carousel-prev::before {
    transform: translateX(2px) rotate(-135deg);
  }

  .carousel-next::before {
    transform: translateX(-2px) rotate(45deg);
  }

  .carousel-status {
    min-width: 42px;
    color: var(--text-muted);
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
  }

  .audience-panel {
    order: 0;
  }

  .audience-radar {
    order: 1;
    margin: 4px auto;
  }

}

.hero-title-line {
  display: inline;
}

.hero-copy {
  min-width: 0;
}

.audience-node .audience-node-icon {
  width: 72px;
  height: 72px;
  max-width: none;
  flex: 0 0 72px;
  padding: 0;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 1px solid rgba(5, 19, 81, 0.1);
  border-radius: 50%;
  color: inherit;
  background: #fff;
  box-shadow: 0 12px 32px rgba(5, 19, 81, 0.08);
  font-size: 0;
  line-height: 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s var(--ease);
}

.audience-node .audience-node-icon img {
  width: 68%;
  height: 68%;
  max-width: 68%;
  max-height: 68%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  box-shadow: none;
  mix-blend-mode: multiply;
  transform: none;
}

.audience-node.node-purchases .audience-node-icon img {
  width: 58%;
  height: 58%;
  max-width: 58%;
  max-height: 58%;
  mix-blend-mode: normal;
}

.audience-node.node-technical .audience-node-icon img {
  width: 62%;
  height: 62%;
  max-width: 62%;
  max-height: 62%;
}

.audience-node.node-geo .audience-node-icon img {
  mix-blend-mode: normal;
}

.audience-node .audience-node-label {
  max-width: 154px;
  display: block;
  font-size: var(--type-caption);
  line-height: 1.35;
  text-align: center;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.audience-node:hover .audience-node-icon,
.audience-node.is-active .audience-node-icon {
  border-color: rgba(0, 108, 255, 0.42);
  box-shadow: 0 15px 38px rgba(0, 67, 255, 0.18), 0 0 0 6px rgba(0, 108, 255, 0.06);
  transform: translateY(-3px) scale(1.03);
}

.audience-node:hover .audience-node-icon img,
.audience-node.is-active .audience-node-icon img {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

@media (max-width: 1120px) and (min-width: 621px) {
  .audience-node .audience-node-icon {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }
}

@media (max-width: 620px) {
  .hero-panel {
    padding-inline: clamp(16px, 5.1vw, 20px);
  }

  .hero-copy h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(18px, calc(7vw - 4.5px), 26px);
    line-height: 1.22;
    letter-spacing: -0.04em;
  }

  .hero-title-line {
    display: block;
    max-width: 100%;
    white-space: nowrap;
  }

  .audience-panel {
    min-height: 0;
    padding: 18px 20px 14px;
  }

  .audience-panel-icon {
    top: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .audience-panel h3 {
    max-width: calc(100% - 66px);
    font-size: 18px;
    line-height: 1.22;
  }

  .audience-description {
    max-width: calc(100% - 66px);
    margin-top: 8px;
    line-height: 1.5;
  }

  .audience-hint {
    margin-top: 9px;
  }

  .audience-node .audience-node-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .audience-node .audience-node-label {
    max-width: 110px;
    font-size: 7px;
    line-height: 1.3;
  }
}

.partners {
  margin-top: clamp(42px, 6vw, 78px);
  padding-block: 0;
  color: var(--navy);
  background: transparent;
}

.partners-inner {
  padding: clamp(30px, 4vw, 54px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(5, 19, 81, 0.04);
  border-radius: 22px;
  background: linear-gradient(135deg, #edf7ff, #f8fbff);
}

.partners h2 {
  margin: 0;
  color: var(--navy);
  font-size: var(--type-section);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.035em;
  text-transform: none;
}

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

.partner-list > div {
  min-width: 0;
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(5, 19, 81, 0.07);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(5, 19, 81, 0.045);
}

.partner-list img {
  width: 100%;
  height: 100%;
  max-height: none;
  border-radius: 8px;
  object-fit: contain;
}

@media (max-width: 1000px) {
  .partner-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .partners {
    margin-top: 34px;
  }

  .partners-inner {
    padding: 26px 18px;
    gap: 20px;
    border-radius: 18px;
  }

  .partner-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .partner-list > div {
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 5px;
    border-radius: 10px;
  }

  .partner-list > div:last-child {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }
}

.inventory-points {
  margin-top: 30px;
  gap: 15px;
}

.partners h2 {
  max-width: 1050px;
  text-wrap: balance;
}

.partner-marquee {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.partner-track {
  width: max-content;
  display: flex;
  animation: partner-marquee 46s linear infinite;
  will-change: transform;
}

.partner-sequence {
  padding-right: 12px;
  display: flex;
  flex: none;
  gap: 12px;
}

.partner-card {
  width: clamp(118px, 11vw, 160px);
  aspect-ratio: 1 / 1;
  padding: 7px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(5, 19, 81, 0.07);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(5, 19, 81, 0.045);
}

.partner-card img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: contain;
}

@keyframes partner-marquee {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .partner-marquee:hover .partner-track {
    animation-play-state: paused;
  }
}

.audience-panel {
  min-height: 0;
  padding: 30px 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto auto;
  column-gap: 18px;
  row-gap: 0;
  align-content: start;
}

.audience-panel-icon {
  position: static;
  grid-column: 2;
  grid-row: 1 / span 3;
  width: 90px;
  height: 90px;
  padding: 2px;
  align-self: start;
  object-fit: contain;
}

.audience-panel h3 {
  max-width: none;
  min-height: 0;
  margin: 0;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

.audience-description {
  max-width: none;
  min-height: 0;
  margin-top: 7px;
  grid-column: 1;
  grid-row: 2;
}

.audience-detail-list {
  margin: 8px 0 0;
  padding: 0;
  grid-column: 1;
  grid-row: 3;
  display: grid;
  gap: 8px;
  list-style: none;
}

.audience-detail-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: var(--type-body);
  line-height: 1.5;
}

.audience-detail-list li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  content: "";
}

.audience-hint {
  grid-column: 1 / -1;
  grid-row: 4;
  margin-top: 18px;
}

.contact-actions {
  display: flex;
  align-items: center;
}

.contact-actions .button-primary {
  width: 100%;
  min-height: 80px;
  padding: 23px 27px;
  border-radius: 14px;
  font-size: clamp(15px, 1.2vw, 18px);
}

@media (max-width: 1000px) {
  .audience-panel-icon {
    width: 78px;
    height: 78px;
  }
}

@media (max-width: 620px) {
  .inventory-points {
    margin-top: 24px;
    gap: 11px;
  }

  .partners h2 {
    font-size: 20px;
    line-height: 1.22;
  }

  .partner-track {
    animation-duration: 36s;
  }

  .partner-sequence {
    padding-right: 9px;
    gap: 9px;
  }

  .partner-card {
    width: 112px;
    padding: 5px;
    border-radius: 10px;
  }

  .audience-panel {
    padding: 16px 18px 14px;
    column-gap: 12px;
  }

  .audience-panel-icon {
    width: 64px;
    height: 64px;
    padding: 0;
  }

  .audience-panel h3 {
    max-width: none;
    font-size: 18px;
    line-height: 1.22;
  }

  .audience-description {
    max-width: none;
    margin-top: 6px;
    line-height: 1.45;
  }

  .audience-detail-list {
    margin-top: 7px;
    gap: 5px;
  }

  .audience-detail-list li {
    padding-left: 15px;
    line-height: 1.4;
  }

  .audience-detail-list li::before {
    width: 6px;
    height: 6px;
  }

  .audience-hint {
    display: none;
  }

  .contact-actions .button-primary {
    min-height: 70px;
    padding: 19px 22px;
    font-size: 14px;
  }
}

@media (max-width: 430px) and (max-height: 900px) {
  .hero-panel {
    min-height: 0;
    padding-block: 20px 12px;
    grid-template-rows: auto auto auto;
    gap: 8px;
  }

  .hero-copy {
    top: 0;
  }

  .hero-tagline {
    margin-top: 14px;
  }

  .hero-lead {
    margin-top: 7px;
  }

  .hero-visual {
    min-height: 220px;
  }

  .hero-phone {
    width: min(62%, 160px);
  }

  .benefit-card {
    min-height: 54px;
  }
}

@media (max-width: 340px) {
  .audience-panel {
    padding-inline: 16px;
    column-gap: 8px;
  }

  .audience-panel-icon {
    width: 56px;
    height: 56px;
  }

  .audience-panel h3 {
    font-size: 17px;
  }
}

@media (max-width: 900px) {
  .site-header.menu-is-open {
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    border-color: transparent;
    color: #fff;
    background-color: #03103d;
    background-image: linear-gradient(155deg, #03103d 0%, #061b5a 100%);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
    overscroll-behavior: contain;
  }

  .site-header.menu-is-open .header-inner {
    position: relative;
    z-index: 3;
  }

  .mobile-menu {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100dvh;
    color: #fff;
    background-color: #03103d;
    background-image: linear-gradient(155deg, #03103d 0%, #061b5a 100%);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    isolation: isolate;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .partner-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .partner-track {
    animation: none !important;
    transform: none !important;
  }

  .partner-sequence[aria-hidden="true"] {
    display: none;
  }

  .contact-mark img {
    translate: 0 0 !important;
    transition: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
