:root {
  --ink: #070706;
  --text: #11100d;
  --paper: #f3eee6;
  --card: #fcf6ec;
  --muted: #70695f;
  --cream: #fdf7ed;
  --dark-muted: #c9c1b5;
  --line: #ddd2c2;
  --green: #62c479;
  --hero-accent: #62c479;
  --hero-accent-rgb: 98, 196, 121;
  --shadow: 0 100px 80px rgba(205, 196, 179, 0.07),
    0 41.778px 33.422px rgba(205, 196, 179, 0.05),
    0 22.336px 17.869px rgba(205, 196, 179, 0.04),
    0 12.522px 10.017px rgba(205, 196, 179, 0.04),
    0 6.65px 5.32px rgba(205, 196, 179, 0.03),
    0 2.767px 2.214px rgba(205, 196, 179, 0.02);
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@property --pointer-x {
  syntax: "<length-percentage>";
  inherits: true;
  initial-value: 50%;
}

@property --pointer-y {
  syntax: "<length-percentage>";
  inherits: true;
  initial-value: 50%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Noto Sans SC", system-ui, sans-serif;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

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

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

.site-header {
  align-items: center;
  background: rgba(7, 7, 6, 0.9);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 120px;
  left: 0;
  padding: 0 clamp(24px, 5.55vw, 80px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, color 180ms ease;
  z-index: 100;
}

.brand {
  display: block;
  height: 40px;
  justify-self: start;
  position: relative;
  width: 159px;
}

.brand-logo {
  height: 40px;
  inset: 0;
  object-fit: contain;
  position: absolute;
  transition: opacity 180ms ease;
  width: 159px;
}

.brand-logo-light {
  opacity: 0;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 40px;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.nav-contact-mobile {
  display: none;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: currentColor;
  display: none;
  height: 32px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 32px;
}

.menu-toggle span {
  background: currentColor;
  border-radius: 999px;
  height: 2px;
  left: 5px;
  position: absolute;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 22px;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-links a,
.header-action,
.button,
.tool-card a {
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease,
    background 180ms ease, border-color 180ms ease;
}

.nav-links a:hover,
.header-action:hover,
.button:hover,
.tool-card a:hover {
  opacity: 0.76;
}

.header-action {
  background: #fff;
  border-radius: 22px;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  justify-self: end;
  padding: 12px 20px;
  white-space: nowrap;
}

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

.language-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: currentColor;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  gap: 7px;
  height: 44px;
  justify-content: center;
  padding: 0 14px;
}

.language-toggle svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 18px;
}

.language-toggle:hover {
  opacity: 0.76;
}

.site-header.is-over-light {
  background: rgba(243, 238, 230, 0.9);
  color: var(--ink);
}

.site-header.is-over-light .brand-logo-dark {
  opacity: 0;
}

.site-header.is-over-light .brand-logo-light {
  opacity: 1;
}

.site-header.is-over-light .header-action {
  background: var(--ink);
  color: #fff;
}

.site-header.is-over-light .language-toggle {
  background: rgba(7, 7, 6, 0.08);
  border-color: rgba(7, 7, 6, 0.16);
}

.hero {
  background: var(--ink);
  color: var(--cream);
  min-height: 900px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  animation: hero-glow-slow 3s ease-in-out infinite alternate;
  background: radial-gradient(
      circle at 18% 62%,
      rgba(98, 196, 121, 0.32),
      transparent 28%
    ),
    radial-gradient(
      circle at 78% 34%,
      rgba(241, 82, 82, 0.28),
      transparent 30%
    ),
    radial-gradient(
      circle at 62% 72%,
      rgba(63, 112, 200, 0.32),
      transparent 32%
    );
  content: "";
  filter: blur(72px);
  inset: -22%;
  opacity: 0.78;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.hero.is-switching::before {
  animation: hero-glow-fast 600ms var(--motion-ease);
}

.hero[data-hero-state="green"] {
  --hero-accent: #62c479;
  --hero-accent-rgb: 98, 196, 121;
}

.hero[data-hero-state="red"] {
  --hero-accent: #f15252;
  --hero-accent-rgb: 241, 82, 82;
}

.hero[data-hero-state="blue"] {
  --hero-accent: #3f70c8;
  --hero-accent-rgb: 63, 112, 200;
}

.hero-inner,
.section-inner {
  margin: 0 auto;
  max-width: 1440px;
  padding-left: clamp(24px, 5.55vw, 80px);
  padding-right: clamp(24px, 5.55vw, 80px);
  position: relative;
}

.hero-inner {
  min-height: 900px;
  padding-top: 120px;
  z-index: 1;
}

.hero-copy {
  position: relative;
  top: 160px;
  z-index: 2;
}

.hero h1 {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: clamp(64px, 8.05vw, 116px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
  position: relative;
  z-index: 2;
}

.hero h1 span {
  display: block;
}

.hero-subtitle {
  color: rgba(253, 247, 237, 0.74);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.75;
  margin: 28px 0 0;
  max-width: 520px;
}

.hero-punk {
  position: relative;
  width: max-content;
}

.hero-stroke {
  background: var(--hero-accent);
  display: block;
  height: 1.28em;
  left: -0.13em;
  mask: url("./assets/hero-stroke.svg") center / contain no-repeat;
  -webkit-mask: url("./assets/hero-stroke.svg") center / contain no-repeat;
  position: absolute;
  top: calc(0.7em - 80px);
  transform: rotate(10.75deg);
  transition: background 520ms ease;
  width: 3.2em;
  z-index: -1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 46px;
}

.hero-lottie-slot {
  display: none;
}

.hero-motion {
  align-items: center;
  height: 480px;
  isolation: isolate;
  justify-items: center;
  pointer-events: none;
  position: relative;
  width: 480px;
}

.hero-motion-desktop {
  display: grid;
  position: absolute;
  right: clamp(64px, 8vw, 116px);
  top: 206px;
  z-index: 1;
}

.motion-glow {
  display: none;
  inset: -10%;
  position: absolute;
  z-index: 0;
}

.motion-glow span {
  border-radius: 50%;
  display: block;
  filter: blur(72px);
  height: 210px;
  opacity: 0.42;
  position: absolute;
  transition: transform 760ms var(--motion-ease), opacity 520ms ease;
  width: 210px;
}

.motion-glow-green {
  background: #62c479;
}

.motion-glow-red {
  background: #f15252;
}

.motion-glow-blue {
  background: #3f70c8;
}

.hero[data-hero-state="green"] .motion-glow-green {
  opacity: 0.72;
  transform: translate(48px, 154px) scale(1.12);
}

.hero[data-hero-state="green"] .motion-glow-red {
  transform: translate(282px, 70px) scale(0.74);
}

.hero[data-hero-state="green"] .motion-glow-blue {
  transform: translate(236px, 258px) scale(0.86);
}

.hero[data-hero-state="red"] .motion-glow-green {
  transform: translate(224px, 266px) scale(0.82);
}

.hero[data-hero-state="red"] .motion-glow-red {
  opacity: 0.72;
  transform: translate(178px, 56px) scale(1.14);
}

.hero[data-hero-state="red"] .motion-glow-blue {
  transform: translate(38px, 210px) scale(0.8);
}

.hero[data-hero-state="blue"] .motion-glow-green {
  transform: translate(74px, 76px) scale(0.76);
}

.hero[data-hero-state="blue"] .motion-glow-red {
  transform: translate(282px, 214px) scale(0.78);
}

.hero[data-hero-state="blue"] .motion-glow-blue {
  opacity: 0.72;
  transform: translate(146px, 160px) scale(1.18);
}

.motion-stage {
  animation: motion-slow-spin 8s linear infinite;
  height: 282px;
  position: relative;
  width: 282px;
  z-index: 1;
}

.hero.is-switching .motion-stage {
  animation: motion-fast-spin 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-form {
  --motion-color: #62c479;
  --motion-height: 238px;
  --motion-shape: polygon(
    50% 2%,
    61% 39%,
    98% 50%,
    61% 61%,
    50% 98%,
    39% 61%,
    2% 50%,
    39% 39%
  );
  --motion-width: 238px;
  background: var(--motion-color);
  clip-path: var(--motion-shape);
  display: block;
  height: var(--motion-height);
  inset: 0;
  margin: auto;
  position: absolute;
  transform: scale(1) rotate(0deg);
  transition: background 600ms ease, clip-path 600ms var(--motion-ease),
    height 600ms var(--motion-ease), transform 600ms var(--motion-ease),
    width 600ms var(--motion-ease);
  -webkit-clip-path: var(--motion-shape);
  width: var(--motion-width);
}

.hero[data-hero-state="green"] .motion-form {
  --motion-color: #62c479;
  --motion-height: 238px;
  --motion-shape: polygon(
    50% 2%,
    61% 39%,
    98% 50%,
    61% 61%,
    50% 98%,
    39% 61%,
    2% 50%,
    39% 39%
  );
  --motion-width: 238px;
}

.hero[data-hero-state="red"] .motion-form {
  --motion-color: #f15252;
  --motion-height: 232px;
  --motion-shape: polygon(
    28% 4%,
    72% 4%,
    96% 28%,
    96% 72%,
    72% 96%,
    28% 96%,
    4% 72%,
    4% 28%
  );
  --motion-width: 232px;
}

.hero[data-hero-state="blue"] .motion-form {
  --motion-color: #3f70c8;
  --motion-height: 254px;
  --motion-shape: polygon(
    50% 3%,
    91% 84%,
    91% 84%,
    66% 84%,
    50% 84%,
    34% 84%,
    9% 84%,
    9% 84%
  );
  --motion-width: 260px;
}

.hero.is-switching .motion-form {
  transition-duration: 600ms;
}

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

@keyframes motion-fast-spin {
  from {
    transform: rotate(0deg) scale(0.98);
  }

  to {
    transform: rotate(720deg) scale(1);
  }
}

@keyframes hero-glow-slow {
  from {
    transform: translate3d(-2%, 1%, 0) rotate(-2deg) scale(1);
  }

  to {
    transform: translate3d(2%, -2%, 0) rotate(2deg) scale(1.02);
  }
}

@keyframes hero-glow-fast {
  from {
    transform: translate3d(-4%, 3%, 0) rotate(-8deg) scale(0.98);
  }

  to {
    transform: translate3d(5%, -4%, 0) rotate(10deg) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-stage {
    animation: none;
  }

  .hero::before,
  .motion-glow span,
  .motion-form {
    animation: none;
    transition: none;
  }
}

.button {
  align-items: center;
  border-radius: 32px;
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 1.6px;
  min-height: 64px;
  padding: 20px 56px;
  white-space: nowrap;
}

.button-green {
  background: var(--hero-accent);
  color: var(--ink);
  box-shadow: 0 0 34px rgba(var(--hero-accent-rgb), 0.16);
}

.button-dark {
  background: rgba(var(--hero-accent-rgb), 0.18);
  border: 1px solid rgba(var(--hero-accent-rgb), 0.26);
  color: var(--cream);
}

.button-black {
  background: var(--ink);
  color: #fff;
}

.button-outline {
  border: 1px solid var(--line);
  color: var(--ink);
}

.button-arrow::after {
  content: "→";
  font-size: 1.05em;
  line-height: 1;
  margin-left: 10px;
  transform: translateY(-1px);
}

.reveal-card {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 720ms var(--motion-ease),
    transform 720ms var(--motion-ease), border-color 360ms ease,
    box-shadow 360ms ease, background 360ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.interactive-card {
  --pointer-x: 50%;
  --pointer-y: 50%;
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  transform-style: preserve-3d;
}

.interactive-card.is-visible:hover {
  transform: translateY(-10px) perspective(900px) rotateX(var(--rotate-x))
    rotateY(var(--rotate-y));
}

.interactive-card::after {
  background: radial-gradient(
    260px circle at var(--pointer-x) var(--pointer-y),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.08) 34%,
    transparent 68%
  );
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 300ms ease;
  z-index: 0;
}

.interactive-card:hover::after {
  opacity: 1;
}

.section {
  min-height: 900px;
  overflow: hidden;
  position: relative;
}

.section-light,
.section-labs {
  background: var(--paper);
}

.section-dark {
  background: var(--ink);
  color: var(--cream);
}

.section-inner {
  min-height: 900px;
  padding-bottom: 80px;
  padding-top: 136px;
}

.section-copy {
  align-items: start;
  display: grid;
  grid-template-columns: minmax(260px, 442px) minmax(280px, 570px);
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: rgba(0, 0, 0, 0.12);
  font-family: "Abril Fatface", Georgia, serif;
  font-size: clamp(76px, 8.05vw, 116px);
  font-weight: 400;
  grid-column: 1;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
  position: absolute;
  top: 0;
  white-space: nowrap;
  z-index: -1;
}

.section-dark .eyebrow {
  color: rgba(255, 255, 255, 0.1);
}

.support-card .eyebrow {
  left: 80px;
  top: 80px;
}

.section-copy h2,
.faq-copy h1,
.support-card h2 {
  font-size: clamp(40px, 4.45vw, 64px);
  font-weight: 700;
  line-height: 1.18;
  margin: 0;
}

html[lang="en"] #labs-title {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(40px, 4.05vw, 58px);
  white-space: nowrap;
}

html[lang="en"] #tools-title {
  grid-column: 1 / -1;
  max-width: 760px;
}

.section-copy > p:not(.eyebrow),
.support-card > p:not(.eyebrow) {
  align-self: end;
  color: var(--muted);
  font-size: 20px;
  line-height: 32px;
  margin: 0;
  max-width: 570px;
}

.section-copy > p.lab-progress {
  align-items: center;
  align-self: start;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: rgba(17, 16, 13, 0.58);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 7px;
  grid-column: 1;
  justify-self: start;
  line-height: 1;
  margin: 12px 0 0;
  max-width: none;
  min-height: 0;
  padding: 0;
  white-space: nowrap;
}

.lab-progress span {
  background: #62c479;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(98, 196, 121, 0.1);
  height: 5px;
  width: 5px;
}

.section-dark .section-copy > p:not(.eyebrow) {
  color: var(--dark-muted);
}

.cam-grid {
  display: grid;
  gap: 44px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 72px;
}

.cam-card {
  background: var(--card);
  border: 0.5px solid #fff;
  border-radius: 56px;
  box-shadow: var(--shadow);
  min-height: 512px;
  overflow: hidden;
  position: relative;
}

.cam-card::before {
  border-radius: 50%;
  content: "";
  height: 600px;
  left: -252px;
  position: absolute;
  top: -285px;
  transform-origin: center;
  transition: transform 620ms var(--motion-ease);
  width: 600px;
  z-index: 0;
}

.cam-card:hover,
.cam-card:focus-within {
  border-color: color-mix(in srgb, var(--cam-accent) 42%, white);
  box-shadow: 0 34px 90px rgba(126, 109, 81, 0.16),
    0 0 44px color-mix(in srgb, var(--cam-accent) 18%, transparent);
}

.cam-card:hover::before,
.cam-card:focus-within::before {
  transform: scale(3);
}

.cam-card.interactive-card::after {
  display: none;
}

.cam-green {
  --cam-accent: #62c479;
  --preview-left: 101px;
  --preview-top: 54px;
  --preview-rotate: -15deg;
  --preview-hover-left: 79px;
  --preview-hover-top: 82px;
  --preview-hover-rotate: -15deg;
}

.cam-green::before {
  background: var(--cam-accent);
}

.cam-red {
  --cam-accent: #f15252;
  --preview-left: 91px;
  --preview-top: 116px;
  --preview-rotate: 0deg;
  --preview-hover-left: -11px;
  --preview-hover-top: 87px;
  --preview-hover-rotate: 0deg;
}

.cam-red::before {
  background: var(--cam-accent);
}

.cam-blue {
  --cam-accent: #3f70c8;
  --preview-left: 132px;
  --preview-top: 44px;
  --preview-rotate: 90deg;
  --preview-hover-left: 24px;
  --preview-hover-top: -2px;
  --preview-hover-rotate: 82deg;
}

.cam-blue::before {
  background: var(--cam-accent);
}

.cam-preview {
  height: 156px;
  left: var(--preview-left);
  position: absolute;
  top: var(--preview-top);
  transform: rotate(var(--preview-rotate));
  transition: height 620ms var(--motion-ease), left 620ms var(--motion-ease),
    top 620ms var(--motion-ease), transform 620ms var(--motion-ease),
    width 620ms var(--motion-ease);
  width: 280px;
  z-index: 1;
}

.cam-card:hover .cam-preview,
.cam-card:focus-within .cam-preview {
  height: 234px;
  left: var(--preview-hover-left);
  top: var(--preview-hover-top);
  transform: rotate(var(--preview-hover-rotate));
  width: 420px;
}

.cam-preview img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cam-awards {
  color: var(--cam-accent);
  display: grid;
  gap: 11px;
  position: absolute;
  right: 32px;
  top: 279.5px;
  transition: color 360ms ease, opacity 260ms ease, transform 360ms ease;
  width: max-content;
  z-index: 2;
}

.cam-awards-double {
  top: 239.5px;
}

.cam-award {
  align-items: center;
  display: grid;
  gap: 2px;
  grid-template-columns: auto minmax(60px, max-content) auto;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.cam-award span:not(.award-mark) {
  display: grid;
  justify-items: center;
}

.cam-award small,
.cam-award strong {
  display: block;
}

.cam-award small {
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.cam-awards-double .cam-award small {
  font-size: 8px;
  font-weight: 900;
}

.cam-award strong {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.cam-awards-double .cam-award strong {
  font-size: 13px;
  line-height: 1.3;
}

html[lang="en"] .cam-award {
  gap: 4px;
  grid-template-columns: auto 88px auto;
}

html[lang="en"] .cam-awards-double .cam-award:first-child {
  grid-template-columns: auto 74px auto;
}

html[lang="en"] .cam-award small {
  font-size: 9px;
}

html[lang="en"] .cam-awards-double .cam-award strong {
  font-size: 12px;
}

html[lang="en"] .cam-awards-double .cam-award:first-child strong {
  font-size: 10px;
  line-height: 1.05;
  white-space: normal;
}

.award-mark {
  background: currentColor;
  display: block;
  height: 28px;
  mask: url("./assets/laurel.svg") center / contain no-repeat;
  -webkit-mask: url("./assets/laurel.svg") center / contain no-repeat;
  width: 16px;
}

.award-mark-right {
  transform: none;
}

.award-mark-left {
  transform: scaleX(-1);
}

.cam-card:hover .cam-awards,
.cam-card:focus-within .cam-awards {
  opacity: 0;
  transform: translateY(-8px);
}

.app-icon {
  border-radius: 28px;
  height: 100px;
  left: 31.5px;
  object-fit: cover;
  position: absolute;
  top: 31.5px;
  transform-origin: left top;
  transition: border-radius 420ms var(--motion-ease),
    transform 420ms var(--motion-ease), box-shadow 420ms ease;
  width: 100px;
  z-index: 3;
}

.cam-card:hover .app-icon,
.cam-card:focus-within .app-icon {
  box-shadow: 0 18px 34px rgba(7, 7, 6, 0.2);
  transform: scale(0.6);
}

.cam-content {
  left: 31.5px;
  position: absolute;
  right: 31.5px;
  top: 340.5px;
  transition: transform 520ms var(--motion-ease);
  z-index: 3;
}

.cam-card:hover .cam-content,
.cam-card:focus-within .cam-content {
  transform: translateY(-12px);
}

.kicker {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 2px;
  transition: color 360ms ease;
}

.cam-content h3,
.tool-card h3 {
  font-family: "Abril Fatface", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0;
}

.cam-content h3 {
  font-size: 36px;
  line-height: 1.32;
  transition: color 360ms ease;
}

.cam-content > p:not(.kicker) {
  color: var(--muted);
  font-size: 15px;
  line-height: 24px;
  margin: 8px 0 0;
  transition: color 360ms ease, opacity 260ms ease, transform 360ms ease;
}

.cam-card:hover .kicker,
.cam-card:hover .cam-content h3,
.cam-card:focus-within .kicker,
.cam-card:focus-within .cam-content h3 {
  color: var(--ink);
}

.cam-card:hover .cam-content > p:not(.kicker),
.cam-card:focus-within .cam-content > p:not(.kicker) {
  opacity: 0;
  transform: translateY(-8px);
}

.cam-actions {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  left: 32px;
  opacity: 0;
  position: absolute;
  right: 32px;
  top: 423.5px;
  transform: translateY(16px);
  transition: opacity 360ms ease 110ms, transform 420ms var(--motion-ease) 110ms;
  z-index: 2;
}

.cam-card:hover .cam-actions,
.cam-card:focus-within .cam-actions {
  opacity: 1;
  transform: translateY(0);
}

.cam-actions a {
  align-items: center;
  background: rgba(7, 7, 6, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 15px;
  font-weight: 400;
  justify-content: center;
  min-height: 56px;
  padding: 16px 32px;
  transition: background 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.cam-actions a:hover {
  background: #000;
  transform: translateY(-2px);
}

.lab-panel {
  background: var(--card);
  border: 0.5px solid #fff;
  border-radius: 56px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 72px;
  min-height: 456px;
  overflow: hidden;
  padding: 64px 56px;
  position: relative;
}

.lab-panel article {
  align-self: stretch;
  border: 1px solid rgba(112, 105, 95, 0.15);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  justify-content: space-between;
  min-height: 300px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.lab-panel article::before {
  background: radial-gradient(
    110px circle at 72px 72px,
    rgba(98, 196, 121, 0.18),
    rgba(98, 196, 121, 0.08) 48%,
    transparent 72%
  );
  border-radius: 50%;
  content: "";
  height: 144px;
  left: -18px;
  opacity: 0.72;
  position: absolute;
  top: -16px;
  width: 144px;
  z-index: 0;
}

.lab-panel article:hover {
  border-color: rgba(98, 196, 121, 0.32);
  box-shadow: 0 26px 72px rgba(126, 109, 81, 0.13),
    0 0 36px rgba(98, 196, 121, 0.1);
}

.lab-panel article > * {
  position: relative;
  z-index: 1;
}

.lab-panel article .lab-top {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.lab-icon {
  align-items: center;
  background: color-mix(in srgb, var(--card) 78%, #62c479);
  border: 1px solid rgba(98, 196, 121, 0.22);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(98, 196, 121, 0.12);
  color: #4f9f63;
  display: inline-flex;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.lab-icon svg {
  display: block;
  height: 28px;
  width: 28px;
}

.lab-icon path,
.lab-icon rect {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.lab-panel h3 {
  font-size: 24px;
  line-height: 1.35;
  margin: 0 0 12px;
}

.lab-panel p {
  color: var(--muted);
  font-size: 15px;
  line-height: 24px;
  margin: 0;
}

.lab-copy {
  max-width: 280px;
}

.lab-panel .lab-status {
  background: rgba(17, 16, 13, 0.05);
  border: 1px solid rgba(17, 16, 13, 0.08);
  border-radius: 999px;
  color: rgba(17, 16, 13, 0.58);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  padding: 9px 12px;
  white-space: nowrap;
}

.lab-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lab-tags span {
  background: rgba(98, 196, 121, 0.1);
  border: 1px solid rgba(98, 196, 121, 0.14);
  border-radius: 999px;
  color: rgba(17, 16, 13, 0.56);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  padding: 9px 12px;
}

.tool-grid {
  display: grid;
  gap: 56px 44px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 72px;
}

.tool-card {
  --pointer-x: 0px;
  --pointer-y: 0px;
  align-content: center;
  align-items: center;
  background-color: rgba(255, 249, 239, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  display: grid;
  grid-template-columns: 80px 1fr;
  min-height: 200px;
  overflow: hidden;
  padding: 27px;
  position: relative;
}

.tool-card::before {
  background: radial-gradient(
    260px circle at var(--pointer-x) var(--pointer-y),
    var(--accent),
    color-mix(in srgb, var(--accent) 42%, transparent) 38%,
    transparent 70%
  );
  content: "";
  inset: 0;
  opacity: 0.2;
  position: absolute;
  transition: --pointer-x 520ms var(--motion-ease),
    --pointer-y 520ms var(--motion-ease), opacity 320ms ease;
  z-index: 0;
}

.tool-card.interactive-card::after {
  display: none;
}

.tool-card:hover,
.tool-card:focus,
.tool-card:focus-within {
  border-color: color-mix(in srgb, var(--accent) 42%, rgba(255, 255, 255, 0.18));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32),
    0 0 54px color-mix(in srgb, var(--accent) 14%, transparent);
}

.tool-card:focus {
  outline: none;
}

.tool-card:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent) 68%, #fff);
  outline-offset: 5px;
}

.tool-card:hover::before,
.tool-card:focus::before,
.tool-card:focus-within::before {
  opacity: 0.32;
}

.support-card.is-visible:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 92px rgba(126, 109, 81, 0.14),
    0 0 36px rgba(98, 196, 121, 0.08);
}

.tool-blue {
  --accent: #0251ff;
}

.tool-cyan {
  --accent: #00c8be;
}

.tool-green {
  --accent: #00c850;
}

.tool-gold {
  --accent: #cea977;
}

.tool-orange {
  --accent: #c82b00;
}

.tool-purple {
  --accent: #7500c8;
}

.tool-card img,
.tool-card div,
.tool-card a,
.tool-status {
  position: relative;
  z-index: 1;
}

.tool-card img {
  border-radius: 20px;
  display: block;
  height: 80px;
  object-fit: cover;
  transition: transform 360ms var(--motion-ease);
  width: 80px;
}

.tool-pink {
  --accent: #ff5fa8;
}

.tool-card div {
  padding-left: 16px;
  transition: transform 360ms var(--motion-ease);
}

.tool-card:hover img,
.tool-card:focus img,
.tool-card:focus-within img,
.tool-card:hover div,
.tool-card:focus div,
.tool-card:focus-within div {
  transform: translateY(-34px);
}

.tool-card h3 {
  color: var(--cream);
  font-size: 28px;
  line-height: 1.25;
  white-space: nowrap;
}

.tool-card p {
  color: var(--dark-muted);
  font-size: 15px;
  line-height: 24px;
  margin: 4px 0 0;
}

.tool-card a,
.tool-status {
  align-items: center;
  background: #fff;
  border-radius: 999px;
  bottom: 24px;
  color: var(--ink);
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  left: 27px;
  line-height: 1;
  min-height: 44px;
  opacity: 0;
  padding: 12px 22px;
  position: absolute;
  transform: translateY(14px);
  transition: opacity 260ms ease, transform 360ms var(--motion-ease);
  width: calc(100% - 54px);
}

.tool-status {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--cream);
  pointer-events: none;
}

.tool-card:hover a,
.tool-card:focus a,
.tool-card:focus-within a,
.tool-card:hover .tool-status,
.tool-card:focus .tool-status,
.tool-card:focus-within .tool-status {
  opacity: 1;
  transform: translateY(0);
}

.tool-title-cn {
  font-family: inherit;
  font-weight: 700;
}

html[lang="en"] .tool-title-cn {
  font-family: "Abril Fatface", Georgia, serif;
  font-weight: 400;
}

.section-voices {
  background: var(--paper);
}

.voice-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 72px;
}

.voices-intro {
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
  margin: 48px auto 0;
  max-width: 620px;
  padding-top: 22px;
  position: relative;
  text-align: center;
}

.voices-intro::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(241, 82, 82, 0.58),
    transparent
  );
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 96px;
}

.voices-intro::after {
  background: #f15252;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(241, 82, 82, 0.08);
  content: "";
  height: 7px;
  left: 50%;
  position: absolute;
  top: -2px;
  transform: translateX(-50%);
  width: 7px;
}

.voice-card {
  background: var(--card);
  border: 0.5px solid #fff;
  border-radius: 44px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 380px;
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.voice-card::before {
  background: color-mix(in srgb, var(--voice-accent) 18%, transparent);
  border-radius: 50%;
  content: "";
  height: 280px;
  position: absolute;
  right: -112px;
  top: -118px;
  transition: transform 520ms var(--motion-ease);
  width: 280px;
  z-index: 0;
}

.voice-card:hover::before,
.voice-card:focus-within::before {
  transform: scale(1.28);
}

.voice-card > * {
  position: relative;
  z-index: 1;
}

.voice-green {
  --voice-accent: #62c479;
}

.voice-red {
  --voice-accent: #f15252;
}

.voice-blue {
  --voice-accent: #3f70c8;
}

.quote-mark {
  color: var(--voice-accent);
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 88px;
  line-height: 0.78;
}

.voice-card p {
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
  margin: 28px 0 0;
}

.voice-card div {
  margin-top: auto;
  padding-top: 42px;
}

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

.voice-card strong {
  font-size: 16px;
  line-height: 1.5;
}

.voice-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 2px;
}

.section-faq {
  background: var(--ink);
  color: var(--cream);
  min-height: auto;
  overflow: hidden;
  position: relative;
}

.faq-page {
  background: var(--ink);
}

.faq-page-section {
  min-height: 100vh;
  position: relative;
}

.faq-inner {
  min-height: auto;
  padding-bottom: 132px;
  position: relative;
  z-index: 1;
}

.faq-page-section .faq-inner {
  padding-top: 176px;
}

.faq-copy {
  align-items: start;
  min-height: 230px;
  position: relative;
}

.faq-copy h1 {
  font-size: clamp(58px, 7.5vw, 108px);
  line-height: 1.02;
  position: relative;
  z-index: 1;
}

.faq-copy .eyebrow {
  color: rgba(253, 247, 237, 0.1);
  font-size: clamp(104px, 14.6vw, 210px);
  left: clamp(18px, 4.2vw, 68px);
  line-height: 0.78;
  top: -18px;
  z-index: 0;
}

.faq-intro {
  color: rgba(253, 247, 237, 0.6);
  display: grid;
  font-size: 19px;
  gap: 14px;
  line-height: 1.75;
  max-width: 640px;
}

.faq-intro p {
  margin: 0;
}

.faq-list {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 74px;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.faq-item:first-child {
  border-top: 0;
}

.faq-item summary {
  align-items: center;
  color: var(--cream);
  cursor: pointer;
  display: grid;
  font-size: clamp(20px, 1.78vw, 27px);
  font-weight: 700;
  gap: 28px;
  grid-template-columns: 1fr 34px;
  line-height: 1.35;
  list-style: none;
  padding: 31px 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 8px;
}

.faq-icon {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  display: block;
  height: 34px;
  position: relative;
  transition: background 180ms ease, border-color 180ms ease;
  width: 34px;
}

.faq-icon::before,
.faq-icon::after {
  background: currentColor;
  content: "";
  height: 2px;
  left: 9px;
  position: absolute;
  top: 15px;
  transition: transform 180ms ease;
  width: 14px;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-icon {
  background: var(--green);
  border-color: var(--green);
  color: var(--ink);
}

.faq-item[open] .faq-icon::after {
  transform: rotate(0deg);
}

.faq-answer {
  color: rgba(253, 247, 237, 0.62);
  display: grid;
  font-size: 15px;
  gap: 11px;
  line-height: 1.9;
  max-width: 760px;
  padding: 0 72px 34px 0;
}

.faq-answer p,
.faq-answer ul {
  margin: 0;
}

.faq-answer ul {
  padding-left: 1.25em;
}

.faq-answer strong {
  color: rgba(253, 247, 237, 0.88);
  font-weight: 700;
}

.faq-answer a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-support {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 76px;
  padding: 46px 0;
}

.faq-support-copy {
  max-width: 650px;
}

.faq-support-kicker {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 12px;
}

.faq-support h2 {
  color: var(--cream);
  font-size: clamp(34px, 4.1vw, 64px);
  line-height: 1.05;
  margin: 0;
}

.faq-support p:not(.faq-support-kicker) {
  color: rgba(253, 247, 237, 0.62);
  font-size: 18px;
  line-height: 1.75;
  margin: 18px 0 0;
}

.faq-support-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.faq-support-mail {
  color: rgba(253, 247, 237, 0.74);
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(253, 247, 237, 0.34);
  text-underline-offset: 5px;
}

.faq-support-mail:hover,
.faq-support-mail:focus-visible {
  color: var(--green);
  text-decoration-color: var(--green);
}

.faq-footer {
  padding-top: 64px;
}

@media (max-width: 1080px), (pointer: coarse) {
  .cam-card.is-in-focus {
    border-color: color-mix(in srgb, var(--cam-accent) 42%, white);
    box-shadow: 0 34px 90px rgba(126, 109, 81, 0.16),
      0 0 44px color-mix(in srgb, var(--cam-accent) 18%, transparent);
  }

  .cam-card.is-in-focus::before {
    transform: scale(3);
  }

  .cam-card.is-in-focus .cam-preview {
    height: 234px;
    left: var(--preview-hover-left);
    top: var(--preview-hover-top);
    transform: rotate(var(--preview-hover-rotate));
    width: 420px;
  }

  .cam-card.is-in-focus .cam-awards {
    opacity: 0;
    transform: translateY(-8px);
  }

  .cam-card.is-in-focus .app-icon {
    box-shadow: 0 18px 34px rgba(7, 7, 6, 0.2);
    transform: scale(0.6);
  }

  .cam-card.is-in-focus .cam-content {
    transform: translateY(-12px);
  }

  .cam-card.is-in-focus .kicker,
  .cam-card.is-in-focus .cam-content h3 {
    color: var(--ink);
  }

  .cam-card.is-in-focus .cam-content > p:not(.kicker) {
    opacity: 0;
    transform: translateY(-8px);
  }

  .cam-card.is-in-focus .cam-actions {
    opacity: 1;
    transform: translateY(0);
  }

  .tool-card.is-in-focus {
    border-color: color-mix(in srgb, var(--accent) 42%, rgba(255, 255, 255, 0.18));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32),
      0 0 54px color-mix(in srgb, var(--accent) 14%, transparent);
  }

  .tool-card.is-in-focus::before {
    opacity: 0.32;
  }

  .tool-card.is-in-focus img,
  .tool-card.is-in-focus div {
    transform: translateY(-34px);
  }

  .tool-card.is-in-focus a,
  .tool-card.is-in-focus .tool-status {
    opacity: 1;
    transform: translateY(0);
  }
}

.support-band {
  background: var(--paper);
  padding: 120px clamp(24px, 5.55vw, 80px) 76px;
}

.support-card {
  background: var(--card);
  border: 0.5px solid #fff;
  border-radius: 56px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 1280px;
  min-height: 512px;
  overflow: hidden;
  padding: 155px 80px 80px;
  position: relative;
}

.support-card h2 {
  position: relative;
  z-index: 1;
}

.support-card > p:not(.eyebrow) {
  padding-top: 62px;
}

.support-copy {
  color: var(--muted);
  display: grid;
  font-size: 20px;
  gap: 18px;
  line-height: 32px;
  margin: 0;
  max-width: 650px;
  padding-top: 62px;
}

.support-copy p {
  margin: 0;
}

.support-actions {
  bottom: 80px;
  display: flex;
  gap: 24px;
  position: absolute;
  right: 80px;
}

.site-footer {
  background: var(--paper);
  color: var(--dark-muted);
  font-size: 15px;
  line-height: 28px;
  padding: 0 24px 64px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--muted);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    width: 130px;
  }

  .nav-links {
    gap: 24px;
    justify-self: center;
  }

  .hero-inner {
    padding-bottom: 96px;
    padding-top: 180px;
  }

  .hero-copy {
    left: 0;
    top: 20px;
  }

  .hero-motion-desktop {
    display: none;
  }

  .section-copy {
    align-items: flex-start;
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .section-copy > p:not(.eyebrow) {
    align-self: auto;
    padding-top: 0;
  }

  .faq-intro {
    max-width: 760px;
  }

  .faq-support {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .faq-support-actions {
    justify-content: flex-start;
  }

  .cam-grid,
  .lab-panel,
  .tool-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .cam-card {
    min-height: 560px;
  }

  .section,
  .section-inner {
    min-height: auto;
  }

  .support-actions {
    margin-top: 40px;
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: clamp(6px, 2vw, 8px);
    grid-template-columns: minmax(0, 1fr) auto auto;
    height: auto;
    padding-left: clamp(14px, 4.6vw, 18px);
    padding-right: clamp(14px, 4.6vw, 18px);
    padding-bottom: 16px;
    padding-top: 16px;
    position: fixed;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    width: clamp(104px, 31.2vw, 122px);
  }

  .brand,
  .brand-logo {
    height: clamp(28px, 8vw, 31px);
  }

  .brand-logo {
    width: clamp(104px, 31.2vw, 122px);
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .nav-links {
    background: transparent;
    border: 0;
    box-shadow: none;
    display: grid;
    gap: 12px;
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: 1fr;
    max-height: 0;
    opacity: 0;
    order: 4;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    text-align: center;
    transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-menu-open .nav-links {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    justify-self: center;
    padding: 8px 0;
  }

  .nav-contact-mobile {
    display: block;
  }

  .header-action {
    display: none;
  }

  .header-tools {
    display: contents;
  }

  .language-toggle {
    grid-column: 3;
    grid-row: 1;
    height: 36px;
    padding: 0;
    width: 36px;
  }

  .language-toggle span {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 860px;
  }

  .hero-inner {
    padding-top: 200px;
  }

  .hero-copy {
    left: 0;
    top: 0;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(38px, 10.2vw, 50px);
    text-align: center;
  }

  .hero-punk {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.75;
    margin: 24px auto 0;
    max-width: 320px;
  }

  .hero-stroke {
    top: calc(0.72em - 80px);
    width: 3.18em;
  }

  .hero-lottie-slot {
    display: grid;
    height: min(70vw, 300px);
    margin: 34px auto 0;
    max-width: 340px;
    width: min(76vw, 340px);
  }

  .hero-actions {
    justify-content: center;
    margin-top: 40px;
  }

  .button {
    min-height: 52px;
    padding: 15px 28px;
  }

  .section-inner {
    padding-bottom: 64px;
    padding-left: 28px;
    padding-right: 28px;
    padding-top: 92px;
    max-width: 100vw;
    overflow: hidden;
    width: 100%;
  }

  .eyebrow {
    font-size: clamp(58px, 18vw, 82px);
    top: -20px;
  }

  .section-copy h2,
  .faq-copy h1,
  .faq-support h2,
  .support-card h2 {
    font-size: 40px;
  }

  .section-copy > p:not(.eyebrow),
  .support-card > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 28px;
  }

  .cam-grid,
  .tool-grid,
  .voice-grid {
    gap: 24px;
    justify-items: start;
    margin-top: 48px;
    min-width: 0;
  }

  .cam-card,
  .lab-panel,
  .voice-card,
  .support-card {
    border-radius: 32px;
  }

  .cam-card {
    max-width: 100%;
    min-height: 560px;
    min-width: 0;
    width: min(342px, 100%);
  }

  .cam-card::before {
    height: 480px;
    left: -230px;
    top: -260px;
    width: 480px;
  }

  .cam-card:hover::before,
  .cam-card:focus-within::before,
  .cam-card.is-in-focus::before {
    transform: scale(2.2);
  }

  .cam-preview {
    height: 128px;
    width: 230px;
  }

  .cam-card:hover .cam-preview,
  .cam-card:focus-within .cam-preview,
  .cam-card.is-in-focus .cam-preview {
    height: 174px;
    width: 312px;
  }

  .cam-green {
    --preview-left: 82px;
    --preview-top: 50px;
    --preview-hover-left: 58px;
    --preview-hover-top: 80px;
  }

  .cam-red {
    --preview-left: 74px;
    --preview-top: 92px;
    --preview-hover-left: 20px;
    --preview-hover-top: 96px;
  }

  .cam-blue {
    --preview-left: 104px;
    --preview-top: 38px;
    --preview-hover-left: 42px;
    --preview-hover-top: 34px;
  }

  .app-icon {
    border-radius: 20px;
    height: 72px;
    left: 24px;
    top: 24px;
    width: 72px;
  }

  .cam-awards {
    right: 24px;
    top: 216px;
    transform: scale(0.92);
    transform-origin: right top;
  }

  .cam-awards-double {
    top: 184px;
  }

  .cam-content {
    left: 24px;
    min-width: 0;
    right: 24px;
    top: 338px;
  }

  .cam-card:hover .cam-content,
  .cam-card:focus-within .cam-content,
  .cam-card.is-in-focus .cam-content {
    transform: translateY(-10px);
  }

  .cam-content h3 {
    font-size: 34px;
  }

  .cam-content > p:not(.kicker) {
    line-height: 23px;
    margin-top: 6px;
    overflow-wrap: anywhere;
  }

  .cam-actions {
    bottom: 24px;
    gap: 8px;
    left: 24px;
    min-width: 0;
    opacity: 1;
    right: 24px;
    top: auto;
    transform: none;
  }

  .cam-card:hover .cam-actions,
  .cam-card:focus-within .cam-actions,
  .cam-card.is-in-focus .cam-actions {
    transform: none;
  }

  .cam-actions a {
    font-size: 14px;
    min-width: 0;
    min-height: 48px;
    padding: 13px 8px;
  }

  .lab-panel {
    gap: 18px;
    margin-top: 48px;
    min-height: 0;
    padding: 20px;
  }

  .lab-panel article {
    min-height: 230px;
    padding: 24px;
  }

  .tool-card {
    grid-template-columns: 64px 1fr;
    min-height: 180px;
    padding: 22px;
  }

  .tool-card img {
    border-radius: 16px;
    height: 64px;
    width: 64px;
  }

  .tool-card h3 {
    font-size: clamp(22px, 6.4vw, 28px);
    white-space: normal;
  }

  .voice-card {
    min-height: 320px;
    padding: 28px;
    width: 100%;
  }

  .voices-intro {
    font-size: 15px;
    margin-top: 32px;
    max-width: 100%;
  }

  .faq-inner {
    min-width: 0;
    padding-bottom: 84px;
  }

  .faq-copy,
  .faq-intro,
  .faq-list,
  .faq-item,
  .faq-answer,
  .faq-support,
  .faq-support-copy {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .faq-intro,
  .faq-list,
  .faq-answer,
  .faq-support {
    width: calc(100vw - 56px);
  }

  .faq-copy {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-page-section .faq-inner {
    padding-top: 150px;
  }

  .faq-intro {
    font-size: 16px;
    line-height: 1.72;
    overflow-wrap: anywhere;
    white-space: normal;
    word-break: break-all;
  }

  .faq-copy {
    min-height: 250px;
  }

  .faq-copy h1 {
    font-size: clamp(54px, 15vw, 62px);
    line-height: 1.04;
  }

  .faq-copy .eyebrow {
    color: rgba(253, 247, 237, 0.09);
    font-size: clamp(112px, 35vw, 148px);
    left: 34px;
    top: 24px;
  }

  .faq-intro p,
  .faq-answer p,
  .faq-answer li {
    max-width: 100%;
    white-space: normal;
  }

  .faq-list {
    margin-top: 52px;
  }

  .faq-item summary {
    font-size: 20px;
    gap: 18px;
    grid-template-columns: 1fr 30px;
    min-width: 0;
    padding: 26px 0;
  }

  .faq-item summary span:first-child,
  .faq-answer,
  .faq-answer li,
  .faq-support p {
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .faq-icon {
    height: 30px;
    width: 30px;
  }

  .faq-icon::before,
  .faq-icon::after {
    left: 8px;
    top: 14px;
    width: 12px;
  }

  .faq-answer {
    font-size: 15px;
    padding: 0 0 28px;
  }

  .faq-support {
    gap: 24px;
    margin-top: 54px;
    padding: 34px 0;
  }

  .faq-support p:not(.faq-support-kicker) {
    font-size: 16px;
    line-height: 1.7;
  }

  .faq-support-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .faq-support-mail {
    overflow-wrap: anywhere;
  }

  .voice-card p {
    font-size: 18px;
    line-height: 1.62;
    margin-top: 22px;
  }

  .quote-mark {
    font-size: 72px;
  }

  .support-band {
    padding-bottom: 56px;
    padding-top: 76px;
  }

  .support-card {
    min-height: 0;
    padding: 96px 28px 32px;
  }

  .support-copy {
    font-size: 17px;
    gap: 14px;
    line-height: 28px;
    padding-top: 38px;
  }

  .support-actions {
    flex-direction: column;
    gap: 14px;
  }
}
