/* Screenshot-led story, product, and campaign layouts. */
.hero-prelude {
  font-size: 12px;
  margin: 26px 0 22px;
}
.hero-v2 #hero-title {
  font-size: clamp(36px, 4.5vw, 76px);
  line-height: 1.23;
  letter-spacing: -0.06em;
}
.hero-v2 #hero-title em {
  background: linear-gradient(180deg, #91b8e0 0%, #b8dee3 55%, #f1e7c5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
/* Story reference: 1461px-wide spread, scaled proportionally on desktop. */
#story {
  padding: 4.1vw 5.2% 4.3vw;
}
#story .section-label {
  font-size: clamp(7px, 0.62vw, 10px);
  margin-bottom: 2.25vw;
}
.story-stat-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22%;
  gap: 4.6%;
  align-items: start;
}
#story h2 {
  font-size: clamp(26px, 3.8vw, 76px);
  line-height: 1.25;
  letter-spacing: -0.055em;
  font-weight: 400;
  white-space: nowrap;
}
#story h2 .story-white {
  color: #fff;
  -webkit-text-fill-color: #fff;
}
.stat-line {
  display: flex;
  gap: 3.3vw;
  align-items: baseline;
  margin: 5.2vw 0 3.7vw;
  color: #000;
}
.stat-line p {
  font-size: clamp(15px, 1.6vw, 32px);
  white-space: nowrap;
  letter-spacing: -0.055em;
}
.stat-line > span {
  flex: 1;
  height: 1px;
  background: #668b9480;
}
.stat-line > strong {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: 'Geist Mono', monospace;
  font-size: clamp(60px, 7.1vw, 142px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.08em;
  white-space: nowrap;
}
.stat-line small {
  font-size: 0.48em;
  letter-spacing: -0.08em;
}
.stat-note {
  font-size: clamp(9px, 0.82vw, 16px);
  line-height: 1.5;
  color: #000;
  letter-spacing: -0.055em;
  white-space: nowrap;
}
.scroll-pie {
  margin-top: 0.6vw;
}
.scroll-pie svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
  border-radius: 50%;
}
.values-section {
  background: #000;
  color: #fff;
}
.values-section > .mono {
  font-size: 9px;
  color: #b8dee3;
  margin-bottom: 25px;
}
.values-section h2 {
  font-size: clamp(28px, 3.5vw, 54px);
  letter-spacing: -0.055em;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 55px;
  text-align: center;
}
.values-grid img {
  width: 100%;
  height: 210px;
  object-fit: contain;
}
.values-grid figcaption span {
  font-size: clamp(16px, 1.7vw, 27px);
  letter-spacing: -0.035em;
}
.values-grid figcaption p {
  font-size: 12px;
  color: #b6cbd0;
  margin-top: 12px;
}
.device-layout {
  grid-template-columns: 1fr 1.2fr;
  align-items: stretch;
  gap: 4%;
}
.product-figure > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}
.device-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 5px;
}
.device-copy h2 {
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1.3;
}
.device-copy h2 .text-accent {
  background: var(--brand-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.device-copy .body-copy {
  font-size: 13px;
  margin-top: 22px;
  line-height: 1.9;
  max-width: 560px;
}
.device-three-views {
  width: 68%;
  height: auto;
  margin-top: auto;
  align-self: flex-end;
  padding-top: 50px;
}
.interaction {
  grid-template-columns: 1.2fr 1fr;
  gap: 5%;
}
.interaction-image {
  background: #f6f6f6;
}
.interaction-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.315;
  object-fit: contain;
  mix-blend-mode: normal;
}
#interaction-description {
  white-space: pre-line;
  word-break: keep-all;
}
.campaign-heading h2 {
  font-size: clamp(30px, 3.5vw, 56px);
}
.campaign-posters {
  grid-template-columns: 1fr 1.852fr;
  gap: 22px;
}
.campaign-poster {
  isolation: isolate;
}
.campaign-poster > .poster-silhouette {
  width: 100%;
  height: auto;
  display: block;
}
.campaign-poster > .poster-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.65s ease;
}
.poster-reveal {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.campaign-poster figcaption {
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.campaign-poster::after {
  transition: opacity 0.4s ease;
}
.campaign-poster.is-revealed > .poster-photo,
.campaign-poster:has(.poster-reveal:focus-visible) > .poster-photo {
  opacity: 1;
}
.campaign-poster.is-revealed figcaption,
.campaign-poster:has(.poster-reveal:focus-visible) figcaption,
.campaign-poster.is-revealed::after,
.campaign-poster:has(.poster-reveal:focus-visible)::after {
  opacity: 0;
}
.poster-reveal:focus-visible {
  outline: 3px solid #94bfd6;
  outline-offset: -5px;
}
@media (hover: hover) {
  .campaign-poster:hover > .poster-photo {
    opacity: 1;
  }
  .campaign-poster:hover figcaption,
  .campaign-poster:hover::after {
    opacity: 0;
  }
}
@media (max-width: 760px) {
  .story-stat-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .scroll-pie {
    width: 150px;
    justify-self: end;
  }
  .stat-line {
    margin: 30px 0 18px;
    gap: 16px;
  }
  .stat-line p {
    font-size: 13px;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
    margin-top: 30px;
  }
  .values-grid img {
    height: 150px;
  }
  .device-layout,
  .interaction {
    grid-template-columns: 1fr;
  }
  .device-three-views {
    width: 80%;
    margin-top: 25px;
    padding-top: 0;
  }
  .campaign-posters {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .campaign-profile {
    width: 75%;
  }
  .campaign-poster figcaption > p {
    font-size: clamp(22px, 5.5vw, 32px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .campaign-poster > .poster-photo,
  .campaign-poster figcaption,
  .campaign-poster::after {
    transition: none;
  }
}

.product-figure {
  background: #f5f5f5;
}
.product-figure > img {
  mix-blend-mode: normal;
}

/* Reference product spread: square render and right-aligned orthographic views. */
.device-layout {
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5%;
}
.device-copy h2 {
  font-size: clamp(28px, 3.4vw, 60px);
  letter-spacing: -0.065em;
  white-space: nowrap;
}
.device-copy .eyebrow {
  color: #000;
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
}
.device-copy .body-copy {
  max-width: none;
  font-size: 12px;
  line-height: 1.6;
}
.device-three-views {
  width: 63%;
}
.product-figure {
  border-radius: 0;
  box-shadow: none;
}
.values-grid figure {
  position: relative;
}
.values-grid img {
  transition:
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.7s;
}
.value-toggle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.value-toggle:focus-visible {
  outline: 1px solid #b8dee3;
  outline-offset: 10px;
}
.values-grid figure.is-active img {
  transform: translateY(-14px) rotate(9deg) scale(1.1);
  filter: drop-shadow(0 0 12px #b8dee350);
}
@media (hover: hover) {
  .values-grid figure:hover img {
    transform: translateY(-14px) rotate(-6deg) scale(1.08);
    filter: drop-shadow(0 0 12px #b8dee350);
  }
}
@media (max-width: 760px) {
  .device-layout {
    grid-template-columns: 1fr;
  }
  .device-copy h2 {
    white-space: normal;
  }
  .device-three-views {
    width: 80%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .values-grid img {
    transition: none;
  }
  .values-grid figure:hover img,
  .values-grid figure.is-active img {
    transform: none;
  }
}

.device-copy .body-copy {
  color: #000;
}
.device-spread-footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #10182025;
  padding-top: 26px;
  margin-top: 48px;
  color: #7c8a96;
  font-size: 9px;
}

@media (forced-colors: active) {
  .hero-v2 #hero-title em {
    background: none;
    color: CanvasText;
    -webkit-text-fill-color: CanvasText;
  }
}

@media (max-width: 760px) {
  #story {
    padding: 42px 6%;
  }
  #story .section-label {
    margin-bottom: 28px;
  }
  #story h2 {
    white-space: normal;
    font-size: 28px;
  }
  .story-stat-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .stat-line {
    gap: 16px;
    margin: 30px 0 24px;
  }
  .stat-line p {
    font-size: 13px;
  }
  .stat-line > strong {
    font-size: 58px;
  }
  .stat-note {
    white-space: normal;
    font-size: 10px;
    line-height: 1.8;
  }
  .scroll-pie {
    width: 150px;
    justify-self: end;
    margin-top: 0;
  }
}
