:root {
  --paper: #f4f4f2;
  --paper-soft: #fbfbfa;
  --ink: #0a0a0a;
  --ink-soft: #242424;
  --muted: #676767;
  --muted-2: #8a8a8a;
  --line: rgba(10, 10, 10, 0.11);
  --line-strong: rgba(255, 255, 255, 0.24);
  --glass: rgba(255, 255, 255, 0.62);
  --glass-dark: rgba(20, 20, 20, 0.42);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.14);
  --max: 1180px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --paper: #080808;
  --paper-soft: #111111;
  --ink: #f6f6f4;
  --ink-soft: #dededb;
  --muted: #b6b6b0;
  --muted-2: #878782;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --glass: rgba(24, 24, 24, 0.62);
  --glass-dark: rgba(255, 255, 255, 0.1);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 244, 242, 0.94) 28%, rgba(251, 251, 250, 1)),
    var(--paper);
  font-family: "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #090909, #111111 42%, #080808);
}

body.menu-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--paper-soft);
  color: var(--ink);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 32px), var(--max));
  min-height: 64px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(250, 250, 249, 0.64);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(22px) saturate(132%);
  -webkit-backdrop-filter: blur(22px) saturate(132%);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(250, 250, 249, 0.82);
  border-color: var(--line);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #111;
  font-size: 13px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-copy strong {
  overflow: hidden;
  font-size: 15px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy span {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desktop-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.42);
}

.desktop-nav a {
  border-radius: 6px;
  padding: 9px 13px;
  color: rgba(0, 0, 0, 0.68);
  font-size: 13px;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: rgba(0, 0, 0, 0.07);
  color: #000;
  outline: none;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 70px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.74);
  outline: none;
  transform: translateY(-1px);
}

.theme-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #111;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.menu-toggle {
  display: none;
  justify-self: end;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: #111;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

html[data-theme="dark"] .site-header {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(18, 18, 18, 0.64);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
}

html[data-theme="dark"] .site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(18, 18, 18, 0.82);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.42);
}

html[data-theme="dark"] .brand-mark {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

html[data-theme="dark"] .desktop-nav {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
}

html[data-theme="dark"] .desktop-nav a {
  color: rgba(255, 255, 255, 0.72);
}

html[data-theme="dark"] .desktop-nav a:hover,
html[data-theme="dark"] .desktop-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .menu-toggle {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

html[data-theme="dark"] .theme-toggle:hover,
html[data-theme="dark"] .theme-toggle:focus-visible,
html[data-theme="dark"] .menu-toggle:hover,
html[data-theme="dark"] .menu-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
}

html[data-theme="dark"] .theme-dot {
  background: #f6f6f4;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .menu-toggle span {
  background: #f6f6f4;
}

.mobile-nav {
  position: fixed;
  inset: 92px 16px auto;
  z-index: 45;
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  padding: 8px;
  background: rgba(250, 250, 249, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(135%);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  border-radius: 7px;
  padding: 16px 14px;
  color: var(--ink-soft);
  font-size: 15px;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: rgba(0, 0, 0, 0.07);
  outline: none;
}

html[data-theme="dark"] .mobile-nav {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(18, 18, 18, 0.9);
}

html[data-theme="dark"] .mobile-nav a {
  color: var(--ink-soft);
}

html[data-theme="dark"] .mobile-nav a:hover,
html[data-theme="dark"] .mobile-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  min-height: 88vh;
  overflow: hidden;
  padding: 104px 24px 72px;
  background: #111;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: -5%;
  z-index: -4;
  background-image: url("./assets/activity/opencoai-hero-community-localfix-20260602-af.jpg");
  background-position: 50% 50%;
  background-size: cover;
  content: "";
  filter: blur(18px) brightness(0.34) saturate(0.9);
  transform: scale(1.06);
}

.hero-stage {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-rows: auto clamp(292px, 29vw, 348px);
  width: min(1060px, calc(100% - 48px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: #090909;
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px) saturate(112%);
  -webkit-backdrop-filter: blur(18px) saturate(112%);
}

.hero-stage::before {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 -1px 0 rgba(255, 255, 255, 0.06);
  content: "";
  pointer-events: none;
}

.hero-stage::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, #090909 0%, rgba(9, 9, 9, 0.76) 25%, rgba(9, 9, 9, 0.1) 46%, rgba(4, 4, 4, 0) 60%, rgba(4, 4, 4, 0.18) 100%),
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.1), transparent 48%);
  content: "";
  pointer-events: none;
}

.hero-photo {
  position: relative;
  order: 2;
  z-index: 0;
  display: grid;
  width: 100%;
  height: clamp(292px, 29vw, 348px);
  min-height: 0;
  margin-top: 0;
  padding: 0;
  place-items: center;
  overflow: hidden;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

.hero-photo::before {
  position: absolute;
  inset: -16%;
  z-index: -2;
  background-image: url("./assets/activity/opencoai-hero-community-localfix-20260602-af.jpg");
  background-position: 50% 50%;
  background-size: cover;
  content: "";
  filter: blur(20px) brightness(0.42) saturate(0.96);
  transform: scale(1.08);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.58), rgba(8, 8, 8, 0.16) 9%, rgba(8, 8, 8, 0) 18%, rgba(8, 8, 8, 0) 82%, rgba(8, 8, 8, 0.16) 91%, rgba(8, 8, 8, 0.58)),
    linear-gradient(180deg, rgba(8, 8, 8, 0), rgba(8, 8, 8, 0) 16%, rgba(8, 8, 8, 0.01) 52%, rgba(8, 8, 8, 0.28)),
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.1), transparent 50%);
  content: "";
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  min-width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 52% 0%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: brightness(0.86) saturate(1);
  -webkit-mask-image:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.58) 2.5%, #000 5.5%, #000 100%),
    linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.58) 2.5%, #000 5.5%, #000 100%),
    linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-composite: intersect;
  transform: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.3) 44%, rgba(0, 0, 0, 0.76)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.02) 48%, rgba(0, 0, 0, 0.44));
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(180deg, rgba(244, 244, 242, 0), var(--paper));
  content: "";
}

.hero-content {
  position: relative;
  order: 1;
  z-index: 2;
  width: 100%;
  margin-bottom: -34px;
  padding: 74px 48px 96px;
  color: #fff;
  text-align: center;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.98), rgba(9, 9, 9, 0.78) 54%, rgba(9, 9, 9, 0.2) 82%, rgba(9, 9, 9, 0) 100%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.09), transparent 58%);
}

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

.hero-content::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  z-index: 3;
  height: 84px;
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.1), rgba(9, 9, 9, 0.045) 48%, rgba(9, 9, 9, 0)),
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.028), transparent 68%);
  backdrop-filter: blur(96px) saturate(106%);
  -webkit-backdrop-filter: blur(96px) saturate(106%);
  content: "";
  filter: blur(8px);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 26%, #000 58%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 26%, #000 58%, transparent 100%);
  pointer-events: none;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--muted);
}

.hero h1 {
  margin: 0;
  font-size: 88px;
  font-weight: 860;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.48);
}

.title-word {
  display: inline-block;
}

.title-nowrap {
  white-space: nowrap;
}

.hero-lede {
  width: min(100%, 760px);
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 24px;
  line-height: 1.42;
}

.hero-actions,
.survey-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.button-dark {
  border-color: #0a0a0a;
  background: #0a0a0a;
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #242424;
  border-color: #242424;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.86);
  color: #111;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.button-glass {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.button-glass:hover,
.button-glass:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.hero-trust {
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  text-decoration: none;
  transition: transform 180ms ease;
}

.hero-trust span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 180ms ease, background 180ms ease;
}

.hero-trust:hover,
.hero-trust:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.hero-trust:hover span,
.hero-trust:focus-visible span {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.16);
}

html[data-theme="light"] .hero {
  background: #f4f4f2;
}

html[data-theme="light"] .hero::before {
  opacity: 0.34;
  filter: blur(26px) brightness(1.04) saturate(0.94);
}

html[data-theme="light"] .hero-overlay {
  background:
    linear-gradient(180deg, rgba(244, 244, 242, 0.72), rgba(255, 255, 255, 0.42) 45%, rgba(244, 244, 242, 0.94)),
    linear-gradient(90deg, rgba(244, 244, 242, 0.72), rgba(255, 255, 255, 0.08) 48%, rgba(244, 244, 242, 0.62));
}

html[data-theme="light"] .hero-stage {
  border-color: rgba(10, 10, 10, 0.1);
  background: rgba(250, 250, 249, 0.72);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.13);
}

html[data-theme="light"] .hero-stage::before {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -1px 0 rgba(10, 10, 10, 0.06);
}

html[data-theme="light"] .hero-stage::after {
  background:
    linear-gradient(180deg, rgba(250, 250, 249, 0.95) 0%, rgba(250, 250, 249, 0.76) 25%, rgba(250, 250, 249, 0.12) 46%, rgba(250, 250, 249, 0) 60%, rgba(250, 250, 249, 0.16) 100%),
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.42), transparent 48%);
}

html[data-theme="light"] .hero-photo::before {
  opacity: 0.4;
  filter: blur(24px) brightness(1.04) saturate(0.96);
}

html[data-theme="light"] .hero-photo::after {
  background:
    linear-gradient(90deg, rgba(244, 244, 242, 0.5), rgba(244, 244, 242, 0.14) 9%, rgba(244, 244, 242, 0) 18%, rgba(244, 244, 242, 0) 82%, rgba(244, 244, 242, 0.14) 91%, rgba(244, 244, 242, 0.5)),
    linear-gradient(180deg, rgba(244, 244, 242, 0), rgba(244, 244, 242, 0) 16%, rgba(244, 244, 242, 0.01) 52%, rgba(244, 244, 242, 0.22)),
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.16), transparent 50%);
}

html[data-theme="light"] .hero-image {
  filter: brightness(0.98) saturate(1);
}

html[data-theme="light"] .hero-content {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(250, 250, 249, 0.98), rgba(250, 250, 249, 0.78) 54%, rgba(250, 250, 249, 0.2) 82%, rgba(250, 250, 249, 0) 100%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.5), transparent 58%);
}

html[data-theme="light"] .hero-content::after {
  background:
    linear-gradient(180deg, rgba(250, 250, 249, 0.18), rgba(250, 250, 249, 0.08) 48%, rgba(250, 250, 249, 0)),
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.22), transparent 68%);
}

html[data-theme="light"] .eyebrow {
  color: rgba(10, 10, 10, 0.54);
}

html[data-theme="light"] .hero h1 {
  color: var(--ink);
  text-shadow: 0 18px 48px rgba(255, 255, 255, 0.48);
}

html[data-theme="light"] .hero-lede,
html[data-theme="light"] .hero-trust {
  color: rgba(10, 10, 10, 0.72);
}

html[data-theme="light"] .button-glass {
  border-color: rgba(10, 10, 10, 0.14);
  background: rgba(10, 10, 10, 0.045);
  color: #111;
}

html[data-theme="light"] .button-glass:hover,
html[data-theme="light"] .button-glass:focus-visible {
  background: rgba(10, 10, 10, 0.08);
}

html[data-theme="light"] .hero-trust span {
  border-color: rgba(10, 10, 10, 0.12);
  background: rgba(255, 255, 255, 0.56);
}

.section {
  padding: 108px 24px;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

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

.section-silver {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(238, 238, 236, 0.78)),
    #ececea;
}

html[data-theme="dark"] .section-silver {
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.9), rgba(8, 8, 8, 0.96)),
    #0a0a0a;
}

.section-ink {
  background:
    linear-gradient(180deg, #0c0c0c, #161616 56%, #0d0d0d),
    #111;
  color: #fff;
}

.statement {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: end;
}

.statement h2,
.split-heading h2,
.panel h2,
.survey-layout h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 720;
  line-height: 1.08;
  letter-spacing: 0;
}

.statement p,
.split-heading p,
.panel p,
.survey-lede {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 58px;
}

.principle {
  min-height: 260px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(20px) saturate(118%);
  -webkit-backdrop-filter: blur(20px) saturate(118%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.principle:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.72);
}

html[data-theme="dark"] .principle,
html[data-theme="dark"] .glass-panel,
html[data-theme="dark"] .cobuild-item {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 56px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .principle:hover,
html[data-theme="dark"] .cobuild-item:hover,
html[data-theme="dark"] .cobuild-item:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.09);
}

.principle span,
.cobuild-item span {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
}

.principle h3,
.event-card h3,
.cobuild-item h3 {
  margin: 56px 0 12px;
  font-size: 21px;
  line-height: 1.25;
}

.principle p,
.event-card span,
.cobuild-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 48px;
  align-items: end;
  margin-bottom: 46px;
}

.section-ink .section-kicker,
.section-ink .split-heading p,
.section-ink .activity-copy p,
.section-ink .event-card span {
  color: rgba(255, 255, 255, 0.68);
}

.activity-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.activity-feature figure,
.media-panel {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.22);
}

.activity-feature figure img,
.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.activity-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px) saturate(122%);
  -webkit-backdrop-filter: blur(22px) saturate(122%);
}

.event-date {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.activity-copy h3 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.15;
}

.activity-copy > p {
  margin: 0;
  line-height: 1.8;
}

.activity-copy .button {
  align-self: flex-start;
  margin-top: 28px;
}

.activity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.activity-meta span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

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

.event-card {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
}

.event-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.event-card div {
  padding: 20px;
}

.event-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
}

.event-card h3 {
  margin-top: 34px;
  color: #fff;
}

html[data-theme="light"] .section-ink {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 238, 236, 0.9) 58%, rgba(250, 250, 249, 0.98)),
    #f4f4f2;
  color: var(--ink);
}

html[data-theme="light"] .section-ink .section-kicker,
html[data-theme="light"] .section-ink .split-heading p,
html[data-theme="light"] .section-ink .activity-copy p,
html[data-theme="light"] .section-ink .event-card span {
  color: var(--muted);
}

html[data-theme="light"] .activity-feature figure,
html[data-theme="light"] .media-panel {
  border-color: rgba(10, 10, 10, 0.1);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.1);
}

html[data-theme="light"] .activity-copy,
html[data-theme="light"] .event-card {
  border-color: rgba(10, 10, 10, 0.1);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

html[data-theme="light"] .event-card:hover {
  border-color: rgba(10, 10, 10, 0.18);
  background: rgba(255, 255, 255, 0.76);
}

html[data-theme="light"] .event-date,
html[data-theme="light"] .event-card p {
  color: var(--muted-2);
}

html[data-theme="light"] .activity-meta span {
  border-color: rgba(10, 10, 10, 0.12);
  color: rgba(10, 10, 10, 0.64);
  background: rgba(255, 255, 255, 0.5);
}

html[data-theme="light"] .event-card h3 {
  color: var(--ink);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.panel {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.glass-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
  background: var(--glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 18px 56px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(24px) saturate(122%);
  -webkit-backdrop-filter: blur(24px) saturate(122%);
}

.panel h2 {
  margin-bottom: 22px;
}

.quiet-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.quiet-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

.quiet-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #111;
  content: "";
}

html[data-theme="dark"] .quiet-list li::before {
  background: #f6f6f4;
}

.media-panel {
  min-height: 560px;
  background: #111;
}

.media-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.media-caption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-transform: uppercase;
}

.media-caption strong {
  font-size: 22px;
  line-height: 1.25;
}

.survey-layout {
  display: grid;
  justify-items: center;
  text-align: center;
}

.survey-layout h2 {
  width: min(100%, 820px);
  font-size: 56px;
}

.survey-lede {
  width: min(100%, 760px);
  margin-top: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
  color: #111;
  font-size: 14px;
  font-weight: 650;
  transition: transform 180ms ease, border-color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: #111;
}

html[data-theme="dark"] .text-link {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

html[data-theme="dark"] .text-link:hover,
html[data-theme="dark"] .text-link:focus-visible {
  border-color: #fff;
}

.cobuild-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cobuild-item {
  min-height: 270px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cobuild-item:hover,
.cobuild-item:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.76);
  outline: none;
}

.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 34px 24px 44px;
  background: #f8f8f7;
}

html[data-theme="dark"] .site-footer {
  border-top-color: rgba(255, 255, 255, 0.1);
  background: #080808;
}

.footer-inner {
  display: flex;
  width: min(100%, var(--max));
  margin: 0 auto;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner strong {
  font-size: 17px;
}

.footer-inner p,
.footer-links {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #111;
  outline: none;
}

html[data-theme="dark"] .footer-links a:hover,
html[data-theme="dark"] .footer-links a:focus-visible {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.project-page {
  background: var(--paper);
}

.project-hero {
  position: relative;
  display: grid;
  min-height: 86vh;
  overflow: hidden;
  padding: 128px 24px 96px;
  place-items: center;
  background: #080808;
  color: #fff;
  isolation: isolate;
}

.project-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 28%;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0), var(--paper));
  content: "";
}

.project-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.42), rgba(8, 8, 8, 0.78)),
    linear-gradient(90deg, rgba(8, 8, 8, 0.84), rgba(8, 8, 8, 0.24) 48%, rgba(8, 8, 8, 0.82));
  background-position: center;
  background-size: cover;
  filter: saturate(0.82) brightness(0.86);
  transform: scale(1.04);
}

.project-hero-bg::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.2), rgba(8, 8, 8, 0.88)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px);
  content: "";
}

.project-hero-inner {
  width: min(100%, 1060px);
  text-align: center;
}

.project-hero h1 {
  margin: 0;
  font-size: 88px;
  font-weight: 860;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 20px 64px rgba(0, 0, 0, 0.52);
}

.project-hero h1 span {
  display: inline-block;
}

.project-hero-lede {
  width: min(100%, 860px);
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 23px;
  line-height: 1.6;
}

.project-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.project-hero-tags span,
.demo-label {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 650;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.project-statement {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 52px;
  align-items: end;
}

.project-statement h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 720;
  line-height: 1.08;
}

.project-statement p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.project-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 46px;
}

.project-metric,
.project-feature-grid article,
.project-roadmap,
.signal-demo,
.flow-node,
.product-secondary-shots figure {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 18px 56px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(22px) saturate(118%);
  -webkit-backdrop-filter: blur(22px) saturate(118%);
}

.project-metric {
  min-height: 190px;
  padding: 24px;
}

.project-metric span,
.project-roadmap span,
.flow-node span,
.product-screen figcaption span,
.product-secondary-shots figcaption {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.project-metric strong {
  display: block;
  margin-top: 34px;
  font-size: 42px;
  line-height: 1;
}

.project-metric p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

html[data-theme="dark"] .project-metric,
html[data-theme="dark"] .project-feature-grid article,
html[data-theme="dark"] .project-roadmap,
html[data-theme="dark"] .signal-demo,
html[data-theme="dark"] .flow-node,
html[data-theme="dark"] .product-secondary-shots figure {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 56px rgba(0, 0, 0, 0.22);
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 16px;
}

.product-screen {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 86px rgba(0, 0, 0, 0.32);
}

.product-screen img {
  width: 100%;
  background: #101010;
}

.product-screen-large img {
  min-height: 480px;
  object-fit: cover;
  object-position: left top;
}

.product-screen figcaption {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.product-screen figcaption strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.6;
}

.product-screen-stack {
  display: grid;
  gap: 16px;
}

.project-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.project-feature-grid article {
  padding: 24px;
}

.project-feature-grid h3,
.flow-node strong,
.project-roadmap h3 {
  display: block;
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.25;
}

.project-feature-grid p,
.flow-node p,
.project-roadmap p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.76;
}

.section-ink .project-feature-grid p {
  color: rgba(255, 255, 255, 0.66);
}

.architecture-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr);
  gap: 0;
  align-items: center;
}

.flow-node {
  min-height: 224px;
  padding: 24px;
}

.flow-node span {
  display: block;
  margin-bottom: 54px;
}

.flow-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(143, 216, 189, 0.16), rgba(143, 216, 189, 0.78), rgba(143, 216, 189, 0.16));
}

.product-secondary-shots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.product-secondary-shots figure {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.product-secondary-shots img {
  width: 100%;
}

.product-secondary-shots figcaption {
  padding: 16px 18px 18px;
}

.project-roadmap {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.project-roadmap div {
  min-height: 168px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.34);
}

html[data-theme="dark"] .project-roadmap div {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.project-roadmap h3 {
  margin-top: 42px;
}

.signal-demo {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 16px;
  padding: 16px;
}

.star-stage {
  position: relative;
  display: grid;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 24px;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(143, 216, 189, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
}

.star-stage strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 120px;
  font-size: 76px;
  line-height: 1;
}

.star-stage p {
  position: relative;
  z-index: 1;
  width: min(100%, 280px);
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.7;
}

.star-orbit {
  position: absolute;
  inset: 32px 28px auto auto;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  animation: starOrbit 12s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.star-orbit span {
  position: absolute;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #f0d37a;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
  animation: starPop 2.8s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

.star-orbit span:nth-child(1) {
  top: -12px;
  left: 82px;
}

.star-orbit span:nth-child(2) {
  top: 76px;
  right: -12px;
  animation-delay: 0.3s;
}

.star-orbit span:nth-child(3) {
  bottom: -12px;
  left: 82px;
  animation-delay: 0.6s;
}

.star-orbit span:nth-child(4) {
  top: 76px;
  left: -12px;
  animation-delay: 0.9s;
}

.review-rail {
  display: grid;
  gap: 12px;
}

.review-rail article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  animation: reviewFloat 5.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.review-rail article:nth-child(2) {
  animation-delay: 0.45s;
}

.review-rail article:nth-child(3) {
  animation-delay: 0.9s;
}

.review-rail span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.review-rail p {
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
  line-height: 1.55;
}

html[data-theme="light"] .project-hero::after {
  background: linear-gradient(180deg, rgba(244, 244, 242, 0), var(--paper));
}

html[data-theme="light"] .product-screen {
  border-color: rgba(10, 10, 10, 0.1);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.12);
}

html[data-theme="light"] .product-screen figcaption strong {
  color: var(--ink);
}

html[data-theme="light"] .section-ink .project-feature-grid p,
html[data-theme="light"] .star-stage p,
html[data-theme="light"] .review-rail p {
  color: var(--muted);
}

html[data-theme="light"] .star-stage,
html[data-theme="light"] .review-rail article {
  border-color: rgba(10, 10, 10, 0.1);
  background: rgba(255, 255, 255, 0.58);
}

html[data-theme="light"] .review-rail span {
  color: var(--muted-2);
}

@keyframes starOrbit {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes starPop {
  0%,
  100% {
    transform: scale(0.88);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes reviewFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 980px) {
  .project-hero h1 {
    font-size: 64px;
  }

  .project-hero-lede {
    font-size: 20px;
  }

  .project-statement,
  .product-showcase,
  .signal-demo {
    grid-template-columns: 1fr;
  }

  .project-metric-row,
  .project-feature-grid,
  .product-secondary-shots {
    grid-template-columns: 1fr;
  }

  .architecture-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .flow-line {
    width: 1px;
    height: 32px;
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .project-hero {
    min-height: 84vh;
    padding: 108px 18px 78px;
  }

  .project-hero h1 {
    font-size: 38px;
    line-height: 1.05;
    text-wrap: balance;
  }

  .project-hero h1 span {
    display: block;
  }

  .project-hero-lede {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.68;
  }

  .project-hero .eyebrow {
    max-width: 100%;
    font-size: 11px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .theme-toggle {
    width: 42px;
    min-width: 42px;
    padding: 0;
  }

  .theme-toggle [data-theme-label] {
    display: none;
  }

  .project-hero-tags {
    justify-content: stretch;
  }

  .project-hero-tags span {
    flex: 1 1 42%;
    text-align: center;
  }

  .project-statement h2 {
    font-size: 34px;
  }

  .project-metric strong {
    font-size: 36px;
  }

  .product-screen-large img {
    min-height: 300px;
  }

  .project-feature-grid article,
  .flow-node,
  .product-secondary-shots figcaption,
  .review-rail article,
  .star-stage {
    padding: 20px;
  }

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

  .star-stage strong {
    margin-top: 132px;
    font-size: 58px;
  }

  .star-orbit {
    right: 18px;
    width: 170px;
    height: 170px;
  }

  .star-orbit span {
    width: 38px;
    height: 38px;
  }

  .star-orbit span:nth-child(1),
  .star-orbit span:nth-child(3) {
    left: 66px;
  }

  .star-orbit span:nth-child(2),
  .star-orbit span:nth-child(4) {
    top: 62px;
  }

  .review-rail p {
    margin-top: 26px;
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .theme-toggle {
    width: 42px;
    min-width: 42px;
    padding: 0;
  }

  .theme-toggle [data-theme-label] {
    display: none;
  }

  .brand-copy strong {
    max-width: 148px;
  }
}

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

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-lede {
    font-size: 21px;
  }

  .statement,
  .split-heading,
  .activity-feature,
  .two-column {
    grid-template-columns: 1fr;
  }

  .principle-grid,
  .event-grid {
    grid-template-columns: 1fr;
  }

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

  .activity-feature figure img,
  .media-panel img {
    min-height: 360px;
  }

  .media-panel {
    min-height: 430px;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
    min-height: 60px;
    padding: 8px;
  }

  .brand-copy span {
    display: none;
  }

  .mobile-nav {
    inset: 80px 10px auto;
  }

  .hero {
    min-height: 86vh;
    padding: 88px 18px 70px;
  }

  .hero-stage {
    grid-template-rows: auto minmax(178px, 24vh);
    width: min(100%, 430px);
  }

  .hero-photo {
    height: clamp(178px, 48vw, 216px);
    min-height: 0;
    margin-top: 0;
    padding: 0;
  }

  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% 0%;
  }

  .hero-content {
    width: 100%;
    margin-bottom: -24px;
    padding: 50px 18px 66px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.05;
  }

  .hero h1 .title-word {
    display: block;
  }

  .hero-lede {
    margin-top: 18px;
    font-size: 18px;
  }

  .hero-actions,
  .survey-actions {
    display: grid;
    width: 100%;
    gap: 10px;
    justify-content: stretch;
    margin-top: 28px;
  }

  .button,
  .text-link {
    width: 100%;
    justify-self: stretch;
  }

  .hero-trust {
    width: 100%;
    margin-top: 16px;
  }

  .hero-trust span {
    padding: 7px 9px;
  }

  .section {
    padding: 78px 18px;
  }

  .statement h2,
  .split-heading h2,
  .panel h2 {
    font-size: 34px;
  }

  .survey-layout h2 {
    font-size: 38px;
  }

  .statement p,
  .split-heading p,
  .panel p,
  .survey-lede {
    font-size: 16px;
    line-height: 1.78;
  }

  .principle,
  .cobuild-item {
    min-height: auto;
  }

  .principle h3,
  .cobuild-item h3 {
    margin-top: 34px;
  }

  .activity-copy,
  .glass-panel {
    padding: 24px;
  }

  .activity-copy h3 {
    font-size: 28px;
  }

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

  .footer-inner {
    display: grid;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

body.project-shell {
  color: #111;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 238, 236, 0.78)),
    #f4f4f2;
}

body.project-shell .site-header {
  border-color: rgba(10, 10, 10, 0.12);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
}

body.project-shell .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.1);
}

body.project-shell .brand-mark {
  border-color: rgba(10, 10, 10, 0.14);
  background: rgba(255, 255, 255, 0.7);
  color: #111;
}

body.project-shell .brand-copy strong,
body.project-shell .desktop-nav a,
body.project-shell .theme-toggle {
  color: #111;
}

body.project-shell .brand-copy span {
  color: rgba(10, 10, 10, 0.58);
}

body.project-shell .desktop-nav,
body.project-shell .theme-toggle,
body.project-shell .menu-toggle {
  border-color: rgba(10, 10, 10, 0.1);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

body.project-shell .desktop-nav a:hover,
body.project-shell .desktop-nav a:focus-visible,
body.project-shell .theme-toggle:hover,
body.project-shell .theme-toggle:focus-visible {
  background: rgba(10, 10, 10, 0.08);
  color: #000;
}

body.project-shell .theme-dot,
body.project-shell .menu-toggle span {
  background: #111;
}

body.project-shell .mobile-nav {
  border-color: rgba(10, 10, 10, 0.12);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(26px) saturate(170%);
  -webkit-backdrop-filter: blur(26px) saturate(170%);
}

body.project-shell .mobile-nav a {
  color: #111;
}

body.project-shell .project-page {
  --paper: #f4f4f2;
  --paper-soft: #fbfbfa;
  --ink: #101010;
  --ink-soft: #2a2a2a;
  --muted: #62625e;
  --muted-2: #858580;
  --line: rgba(10, 10, 10, 0.1);
  --line-strong: rgba(10, 10, 10, 0.16);
  --glass: rgba(255, 255, 255, 0.62);
  background: #f4f4f2;
  color: #111;
}

.project-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  height: 2px;
  background: #111;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 120ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.project-shell .project-hero {
  min-height: 92vh;
  padding: 130px 24px 112px;
  background:
    linear-gradient(180deg, #f9f9f6, #efefeb 74%, #f4f4f2),
    #f4f4f2;
  color: #111;
}

body.project-shell .project-hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(10, 10, 10, 0.045) 1px, transparent 1px);
  background-size: 96px 96px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 84%);
}

body.project-shell .project-hero::after {
  background: linear-gradient(180deg, rgba(244, 244, 242, 0), #f4f4f2);
}

body.project-shell .project-hero-bg {
  inset: 84px 0 auto;
  height: 62vh;
  background-image:
    linear-gradient(90deg, rgba(244, 244, 242, 0.92), rgba(244, 244, 242, 0.22) 50%, rgba(244, 244, 242, 0.92)),
    linear-gradient(180deg, rgba(10, 10, 10, 0.04), rgba(10, 10, 10, 0.02)),
    repeating-linear-gradient(90deg, rgba(10, 10, 10, 0.07) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(180deg, rgba(10, 10, 10, 0.055) 0 1px, transparent 1px 96px);
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
  filter: none;
  opacity: 0.62;
  transform: none;
}

body.project-shell .project-hero-bg::after {
  background:
    linear-gradient(180deg, rgba(244, 244, 242, 0.18), rgba(244, 244, 242, 0.94)),
    repeating-linear-gradient(90deg, rgba(10, 10, 10, 0.035) 0 1px, transparent 1px 120px);
}

body.project-shell .project-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1040px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  padding: 72px 56px 62px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 40px 120px rgba(10, 10, 10, 0.14);
  backdrop-filter: blur(34px) saturate(180%);
  -webkit-backdrop-filter: blur(34px) saturate(180%);
  transform:
    perspective(1200px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    translate3d(0, var(--lift, 0px), 0);
  transform-style: preserve-3d;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.project-shell .project-hero-inner:hover {
  --lift: -4px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 46px 130px rgba(10, 10, 10, 0.18);
}

body.project-shell .project-hero-inner::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.62) 42%, transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  opacity: 0.42;
  pointer-events: none;
}

body.project-shell .project-hero-inner::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10, 10, 10, 0.28), transparent);
  content: "";
  transform: translateZ(18px);
}

body.project-shell .project-hero .eyebrow {
  color: rgba(10, 10, 10, 0.58);
}

body.project-shell .project-hero h1 {
  color: #090909;
  text-shadow: none;
}

body.project-shell .project-hero-lede {
  color: rgba(10, 10, 10, 0.72);
}

body.project-shell .project-hero-tags span,
body.project-shell .demo-label {
  border-color: rgba(10, 10, 10, 0.12);
  background: rgba(255, 255, 255, 0.52);
  color: rgba(10, 10, 10, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.project-shell .project-hero .button-light,
body.project-shell .button-dark {
  border-color: #111;
  background: #111;
  color: #fff;
  box-shadow: 0 16px 34px rgba(10, 10, 10, 0.14);
}

body.project-shell .project-hero .button-glass,
body.project-shell .button-light {
  border-color: rgba(10, 10, 10, 0.12);
  background: rgba(255, 255, 255, 0.5);
  color: #111;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 16px 34px rgba(10, 10, 10, 0.08);
}

body.project-shell .button,
body.project-shell .project-bridge a,
body.project-shell .project-metric,
body.project-shell .principle,
body.project-shell .product-screen,
body.project-shell .project-feature-grid article,
body.project-shell .flow-node,
body.project-shell .project-roadmap div,
body.project-shell .review-rail article {
  position: relative;
  overflow: hidden;
}

body.project-shell .button:hover,
body.project-shell .button:focus-visible,
body.project-shell .project-bridge a:hover,
body.project-shell .project-bridge a:focus-visible,
body.project-shell .project-metric:hover,
body.project-shell .principle:hover,
body.project-shell .product-screen:hover,
body.project-shell .project-feature-grid article:hover,
body.project-shell .flow-node:hover,
body.project-shell .project-roadmap div:hover,
body.project-shell .review-rail article:hover {
  transform: translateY(-4px);
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.tap-ripple {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.18);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: tapRipple 680ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.project-shell .button-dark .tap-ripple,
body.project-shell .project-hero .button-light .tap-ripple {
  background: rgba(255, 255, 255, 0.28);
}

.project-motion-frame {
  position: absolute;
  inset: 118px 8% auto;
  z-index: -1;
  height: 54vh;
  pointer-events: none;
}

.project-motion-frame span {
  position: absolute;
  display: block;
  background: rgba(10, 10, 10, 0.18);
  opacity: 0.46;
}

.project-motion-frame span:nth-child(1),
.project-motion-frame span:nth-child(2) {
  right: 0;
  left: 0;
  height: 1px;
  transform-origin: left center;
  animation: remotionLineX 4.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.project-motion-frame span:nth-child(1) {
  top: 0;
}

.project-motion-frame span:nth-child(2) {
  bottom: 0;
  animation-delay: 0.6s;
}

.project-motion-frame span:nth-child(3),
.project-motion-frame span:nth-child(4) {
  top: 0;
  bottom: 0;
  width: 1px;
  transform-origin: center top;
  animation: remotionLineY 5.6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.project-motion-frame span:nth-child(3) {
  left: 10%;
}

.project-motion-frame span:nth-child(4) {
  right: 10%;
  animation-delay: 0.8s;
}

.project-bridge {
  padding: 0 24px 42px;
  background: #f4f4f2;
}

.project-bridge-inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: -54px;
}

.project-bridge a {
  min-height: 118px;
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 18px 48px rgba(10, 10, 10, 0.08);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), border-color 420ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-bridge a:hover,
.project-bridge a:focus-visible {
  border-color: rgba(10, 10, 10, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 24px 70px rgba(10, 10, 10, 0.12);
  outline: none;
}

.project-bridge span {
  color: rgba(10, 10, 10, 0.54);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.project-bridge strong {
  display: block;
  margin-top: 26px;
  color: #111;
  font-size: 21px;
  line-height: 1.25;
}

body.project-shell .section-light,
body.project-shell .section-silver,
body.project-shell .section-ink {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(244, 244, 242, 0.82)),
    #f4f4f2;
  color: #111;
}

body.project-shell .section-ink .section-kicker,
body.project-shell .section-ink .split-heading p,
body.project-shell .section-ink .activity-copy p,
body.project-shell .section-ink .event-card span,
body.project-shell .section-ink .project-feature-grid p {
  color: var(--muted);
}

body.project-shell .project-metric,
body.project-shell .project-feature-grid article,
body.project-shell .project-roadmap,
body.project-shell .signal-demo,
body.project-shell .flow-node,
body.project-shell .product-secondary-shots figure,
body.project-shell .glass-panel,
body.project-shell .principle,
body.project-shell .cobuild-item {
  border-color: rgba(10, 10, 10, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84), 0 20px 58px rgba(10, 10, 10, 0.08);
  backdrop-filter: blur(26px) saturate(170%);
  -webkit-backdrop-filter: blur(26px) saturate(170%);
}

body.project-shell .product-screen {
  border-color: rgba(10, 10, 10, 0.1);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 22px 66px rgba(10, 10, 10, 0.12);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}

body.project-shell .product-screen figcaption strong {
  color: #111;
}

body.project-shell .product-screen figcaption span,
body.project-shell .project-metric span,
body.project-shell .project-roadmap span,
body.project-shell .flow-node span,
body.project-shell .product-secondary-shots figcaption {
  color: rgba(10, 10, 10, 0.52);
}

body.project-shell .flow-line {
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.05), rgba(10, 10, 10, 0.36), rgba(10, 10, 10, 0.05));
  animation: remotionLineX 4.2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

body.project-shell .project-roadmap div,
body.project-shell .star-stage,
body.project-shell .review-rail article {
  border-color: rgba(10, 10, 10, 0.1);
  background: rgba(255, 255, 255, 0.44);
}

body.project-shell .star-stage {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.36)),
    repeating-linear-gradient(90deg, rgba(10, 10, 10, 0.05) 0 1px, transparent 1px 42px);
}

body.project-shell .star-stage strong,
body.project-shell .review-rail p {
  color: #111;
}

body.project-shell .star-stage p,
body.project-shell .review-rail span {
  color: rgba(10, 10, 10, 0.58);
}

body.project-shell .star-orbit {
  border-color: rgba(10, 10, 10, 0.12);
}

body.project-shell .star-orbit span {
  border-color: rgba(10, 10, 10, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: #111;
}

body.project-shell .site-footer {
  background: #f4f4f2;
  color: #111;
}

body.project-shell .footer-links,
body.project-shell .footer-links a {
  color: rgba(10, 10, 10, 0.62);
}

body.project-shell .footer-links a:hover,
body.project-shell .footer-links a:focus-visible {
  color: #111;
}

html[data-theme="dark"] body.project-shell {
  color: #f6f6f4;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 0.98)),
    #0b0b0b;
}

html[data-theme="dark"] body.project-shell .site-header {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(18, 18, 18, 0.62);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] body.project-shell .site-header.is-scrolled {
  background: rgba(18, 18, 18, 0.78);
}

html[data-theme="dark"] body.project-shell .brand-mark,
html[data-theme="dark"] body.project-shell .desktop-nav,
html[data-theme="dark"] body.project-shell .theme-toggle,
html[data-theme="dark"] body.project-shell .menu-toggle {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #f6f6f4;
}

html[data-theme="dark"] body.project-shell .brand-copy strong,
html[data-theme="dark"] body.project-shell .desktop-nav a,
html[data-theme="dark"] body.project-shell .theme-toggle {
  color: #f6f6f4;
}

html[data-theme="dark"] body.project-shell .brand-copy span {
  color: rgba(255, 255, 255, 0.58);
}

html[data-theme="dark"] body.project-shell .desktop-nav a:hover,
html[data-theme="dark"] body.project-shell .desktop-nav a:focus-visible,
html[data-theme="dark"] body.project-shell .theme-toggle:hover,
html[data-theme="dark"] body.project-shell .theme-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

html[data-theme="dark"] body.project-shell .theme-dot,
html[data-theme="dark"] body.project-shell .menu-toggle span {
  background: #fff;
}

html[data-theme="dark"] body.project-shell .mobile-nav {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(18, 18, 18, 0.84);
}

html[data-theme="dark"] body.project-shell .mobile-nav a {
  color: #f6f6f4;
}

html[data-theme="dark"] body.project-shell .project-page {
  --paper: #0b0b0b;
  --paper-soft: #151515;
  --ink: #f6f6f4;
  --ink-soft: #dededb;
  --muted: #b6b6b0;
  --muted-2: #878782;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.18);
  --glass: rgba(20, 20, 20, 0.62);
  background: #0b0b0b;
  color: #f6f6f4;
}

html[data-theme="dark"] .project-scroll-progress {
  background: #fff;
}

html[data-theme="dark"] body.project-shell .project-hero {
  background:
    linear-gradient(180deg, #171717, #0f0f0f 70%, #0b0b0b),
    #0b0b0b;
  color: #f6f6f4;
}

html[data-theme="dark"] body.project-shell .project-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

html[data-theme="dark"] body.project-shell .project-hero::after {
  background: linear-gradient(180deg, rgba(11, 11, 11, 0), #0b0b0b);
}

html[data-theme="dark"] body.project-shell .project-hero-bg {
  background-image:
    linear-gradient(90deg, rgba(15, 15, 15, 0.92), rgba(15, 15, 15, 0.2) 50%, rgba(15, 15, 15, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 96px);
  opacity: 0.46;
}

html[data-theme="dark"] body.project-shell .project-hero-bg::after {
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0.1), rgba(11, 11, 11, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 120px);
}

html[data-theme="dark"] body.project-shell .project-hero-inner,
html[data-theme="dark"] body.project-shell .project-bridge a,
html[data-theme="dark"] body.project-shell .project-metric,
html[data-theme="dark"] body.project-shell .project-feature-grid article,
html[data-theme="dark"] body.project-shell .project-roadmap,
html[data-theme="dark"] body.project-shell .signal-demo,
html[data-theme="dark"] body.project-shell .flow-node,
html[data-theme="dark"] body.project-shell .product-secondary-shots figure,
html[data-theme="dark"] body.project-shell .glass-panel,
html[data-theme="dark"] body.project-shell .principle,
html[data-theme="dark"] body.project-shell .cobuild-item {
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(20, 20, 20, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 70px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] body.project-shell .project-hero-inner::before {
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.12) 42%, transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
}

html[data-theme="dark"] body.project-shell .project-hero-inner::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
}

html[data-theme="dark"] body.project-shell .project-hero .eyebrow,
html[data-theme="dark"] body.project-shell .project-hero-lede,
html[data-theme="dark"] body.project-shell .project-statement p,
html[data-theme="dark"] body.project-shell .project-metric p,
html[data-theme="dark"] body.project-shell .project-feature-grid p,
html[data-theme="dark"] body.project-shell .flow-node p,
html[data-theme="dark"] body.project-shell .project-roadmap p {
  color: rgba(255, 255, 255, 0.66);
}

html[data-theme="dark"] body.project-shell .project-hero h1,
html[data-theme="dark"] body.project-shell .project-bridge strong,
html[data-theme="dark"] body.project-shell .product-screen figcaption strong,
html[data-theme="dark"] body.project-shell .project-statement h2,
html[data-theme="dark"] body.project-shell .project-metric strong,
html[data-theme="dark"] body.project-shell .star-stage strong,
html[data-theme="dark"] body.project-shell .review-rail p,
html[data-theme="dark"] body.project-shell .project-feature-grid h3,
html[data-theme="dark"] body.project-shell .flow-node strong,
html[data-theme="dark"] body.project-shell .project-roadmap h3 {
  color: #f6f6f4;
}

html[data-theme="dark"] body.project-shell .project-hero-tags span,
html[data-theme="dark"] body.project-shell .demo-label,
html[data-theme="dark"] body.project-shell .project-hero .button-glass,
html[data-theme="dark"] body.project-shell .button-light {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #f6f6f4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 16px 34px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] body.project-shell .project-hero .button-light,
html[data-theme="dark"] body.project-shell .button-dark {
  border-color: #f6f6f4;
  background: #f6f6f4;
  color: #111;
}

html[data-theme="dark"] body.project-shell .project-bridge,
html[data-theme="dark"] body.project-shell .section-light,
html[data-theme="dark"] body.project-shell .section-silver,
html[data-theme="dark"] body.project-shell .section-ink,
html[data-theme="dark"] body.project-shell .site-footer {
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(11, 11, 11, 0.98)),
    #0b0b0b;
  color: #f6f6f4;
}

html[data-theme="dark"] body.project-shell .project-bridge span,
html[data-theme="dark"] body.project-shell .project-metric span,
html[data-theme="dark"] body.project-shell .project-roadmap span,
html[data-theme="dark"] body.project-shell .flow-node span,
html[data-theme="dark"] body.project-shell .product-screen figcaption span,
html[data-theme="dark"] body.project-shell .product-secondary-shots figcaption,
html[data-theme="dark"] body.project-shell .review-rail span,
html[data-theme="dark"] body.project-shell .star-stage p,
html[data-theme="dark"] body.project-shell .footer-links,
html[data-theme="dark"] body.project-shell .footer-links a {
  color: rgba(255, 255, 255, 0.58);
}

html[data-theme="dark"] body.project-shell .product-screen {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(20, 20, 20, 0.56);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

html[data-theme="dark"] body.project-shell .flow-line {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.04));
}

html[data-theme="dark"] body.project-shell .star-stage,
html[data-theme="dark"] body.project-shell .review-rail article,
html[data-theme="dark"] body.project-shell .project-roadmap div {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] body.project-shell .star-orbit {
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] body.project-shell .star-orbit span {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: #f6f6f4;
}

html[data-theme="dark"] body.project-shell .footer-links a:hover,
html[data-theme="dark"] body.project-shell .footer-links a:focus-visible {
  color: #fff;
}

@keyframes remotionLineX {
  0% {
    transform: scaleX(0.08);
    opacity: 0.2;
  }
  48% {
    transform: scaleX(1);
    opacity: 0.52;
  }
  100% {
    transform: scaleX(0.08);
    opacity: 0.2;
  }
}

@keyframes remotionLineY {
  0% {
    transform: scaleY(0.12);
    opacity: 0.18;
  }
  52% {
    transform: scaleY(1);
    opacity: 0.48;
  }
  100% {
    transform: scaleY(0.12);
    opacity: 0.18;
  }
}

@keyframes tapRipple {
  0% {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@media (max-width: 980px) {
  body.project-shell .project-hero-inner {
    padding: 58px 34px 50px;
  }

  .project-bridge-inner {
    grid-template-columns: 1fr;
    margin-top: -40px;
  }
}

@media (max-width: 680px) {
  body.project-shell .project-hero {
    min-height: 88vh;
    padding: 104px 18px 86px;
  }

  body.project-shell .project-hero-inner {
    padding: 42px 18px 34px;
  }

  body.project-shell .project-hero-bg {
    height: 56vh;
    background-size: auto;
    background-position: center;
  }

  .project-motion-frame {
    inset: 100px 18px auto;
    height: 46vh;
  }

  .project-bridge {
    padding: 0 18px 34px;
  }

  .project-bridge strong {
    margin-top: 18px;
    font-size: 18px;
  }
}

/* Apple-inspired product story page */
body.apple-product-page {
  --apple-bg: #f5f5f7;
  --apple-surface: rgba(255, 255, 255, 0.74);
  --apple-surface-strong: #fff;
  --apple-ink: #1d1d1f;
  --apple-muted: #6e6e73;
  --apple-soft: #86868b;
  --apple-line: rgba(29, 29, 31, 0.12);
  --apple-shadow: 0 34px 86px rgba(0, 0, 0, 0.12);
  background: var(--apple-bg);
  color: var(--apple-ink);
}

body.apple-product-page .site-header {
  border-color: rgba(29, 29, 31, 0.1);
  background: rgba(251, 251, 253, 0.68);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
}

body.apple-product-page .site-header.is-scrolled {
  background: rgba(251, 251, 253, 0.82);
}

body.apple-product-page .project-scroll-progress {
  background: var(--apple-ink);
}

body.apple-product-page .project-page,
body.apple-product-page .apple-story {
  background: var(--apple-bg);
  color: var(--apple-ink);
  overflow: clip;
}

body.apple-product-page .apple-hero {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 142px 24px 92px;
  text-align: center;
}

body.apple-product-page .apple-eyebrow {
  margin: 0 0 18px;
  color: var(--apple-muted);
  font-size: 20px;
  font-weight: 760;
  letter-spacing: 0;
}

body.apple-product-page .apple-hero h1,
body.apple-product-page .apple-section-heading h2,
body.apple-product-page .apple-split h2,
body.apple-product-page .apple-signal-inner h2 {
  margin: 0;
  color: var(--apple-ink);
  font-weight: 820;
  letter-spacing: 0;
}

body.apple-product-page .apple-hero h1 {
  max-width: 1120px;
  font-size: clamp(58px, 9.2vw, 132px);
  line-height: 0.96;
  text-wrap: balance;
  word-break: keep-all;
}

body.apple-product-page .apple-subhead {
  max-width: 760px;
  margin: 26px auto 0;
  color: var(--apple-muted);
  font-size: clamp(23px, 3vw, 38px);
  font-weight: 680;
  line-height: 1.22;
}

body.apple-product-page .apple-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

body.apple-product-page .apple-actions .button {
  min-height: 46px;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 15px;
  box-shadow: none;
}

body.apple-product-page .apple-actions .button-dark {
  border-color: #1d1d1f;
  background: #1d1d1f;
  color: #fff;
}

body.apple-product-page .apple-actions .button-light {
  border-color: rgba(29, 29, 31, 0.2);
  background: rgba(255, 255, 255, 0.74);
  color: #1d1d1f;
}

body.apple-product-page .apple-device {
  position: relative;
  width: min(1180px, 94vw);
  margin: 58px auto 0;
  border: 1px solid rgba(29, 29, 31, 0.12);
  border-radius: 8px;
  padding: 10px;
  background: linear-gradient(180deg, #202024, #09090b);
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transform: perspective(1300px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition:
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.apple-product-page .apple-device:hover {
  box-shadow: 0 48px 124px rgba(0, 0, 0, 0.26);
}

body.apple-product-page .apple-device::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, rgba(255, 255, 255, 0.22), transparent 34%, transparent 72%, rgba(255, 255, 255, 0.08));
  content: "";
  pointer-events: none;
}

body.apple-product-page .apple-device img,
body.apple-product-page .apple-shot img,
body.apple-product-page .apple-cinematic-screen img,
body.apple-product-page .apple-settings figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

body.apple-product-page .remotion-loop {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: contain;
}

body.apple-product-page .remotion-video-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  place-items: center;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}

body.apple-product-page .apple-story-nav {
  position: sticky;
  top: 96px;
  z-index: 20;
  display: flex;
  width: max-content;
  max-width: calc(100% - 32px);
  gap: 6px;
  margin: -42px auto 0;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 999px;
  padding: 6px;
  background: rgba(251, 251, 253, 0.72);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

body.apple-product-page .apple-story-nav a {
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--apple-muted);
  font-size: 13px;
  font-weight: 760;
  transition:
    background 280ms cubic-bezier(0.16, 1, 0.3, 1),
    color 280ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.apple-product-page .apple-story-nav a:hover,
body.apple-product-page .apple-story-nav a:focus-visible {
  background: rgba(29, 29, 31, 0.08);
  color: var(--apple-ink);
  outline: none;
  transform: translateY(-1px);
}

body.apple-product-page .apple-story-nav a[aria-current="page"] {
  background: rgba(29, 29, 31, 0.1);
  color: var(--apple-ink);
}

body.apple-product-page .apple-section {
  padding: 154px 24px;
  scroll-margin-top: 132px;
}

body.apple-product-page .apple-section-heading h2[id],
body.apple-product-page .apple-split h2[id] {
  scroll-margin-top: 150px;
}

body.apple-product-page .apple-section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 54px;
  text-align: center;
}

body.apple-product-page .apple-section-heading span,
body.apple-product-page .apple-split span,
body.apple-product-page .apple-stat-grid span,
body.apple-product-page .apple-card-grid span,
body.apple-product-page .apple-signal-inner > span {
  display: block;
  color: var(--apple-soft);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.apple-product-page .apple-section-heading h2,
body.apple-product-page .apple-split h2 {
  margin-top: 14px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
}

body.apple-product-page .apple-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  width: min(1240px, 100%);
  gap: 18px;
  margin: 0 auto;
  align-items: stretch;
}

body.apple-product-page .apple-shot,
body.apple-product-page .apple-cinematic-screen,
body.apple-product-page .apple-card-grid article,
body.apple-product-page .apple-stat-grid article,
body.apple-product-page .apple-split,
body.apple-product-page .apple-signal-inner {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--apple-line);
  border-radius: 8px;
  background: var(--apple-surface);
  box-shadow: var(--apple-shadow);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.apple-product-page .apple-shot:hover,
body.apple-product-page .apple-shot:focus-within,
body.apple-product-page .apple-card-grid article:hover,
body.apple-product-page .apple-stat-grid article:hover,
body.apple-product-page .apple-signal-inner:hover {
  border-color: rgba(29, 29, 31, 0.22);
  box-shadow: 0 40px 96px rgba(0, 0, 0, 0.16);
  transform: translateY(-6px);
}

body.apple-product-page .apple-shot {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
}

body.apple-product-page .apple-shot-wide {
  grid-row: span 2;
}

body.apple-product-page .apple-shot figcaption {
  margin: 14px 4px 2px;
  color: var(--apple-muted);
  font-size: 13px;
  font-weight: 780;
}

body.apple-product-page .apple-dark-band {
  margin: 0;
  background: #000;
  color: #f5f5f7;
}

body.apple-product-page .apple-dark-band .apple-section-heading h2,
body.apple-product-page .apple-dark-band .apple-section-heading span {
  color: #f5f5f7;
}

body.apple-product-page .apple-cinematic-screen {
  width: min(1220px, 100%);
  margin: 0 auto;
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, #17171a, #050506);
  box-shadow: 0 48px 130px rgba(0, 0, 0, 0.48);
  padding: 12px;
}

body.apple-product-page .apple-feature-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(760px, 100%);
  margin: 34px auto 0;
}

body.apple-product-page .apple-feature-row span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 760;
}

body.apple-product-page .apple-cards,
body.apple-product-page .apple-open-source {
  background: #fff;
}

body.apple-product-page .apple-card-grid,
body.apple-product-page .apple-stat-grid {
  display: grid;
  width: min(1120px, 100%);
  gap: 16px;
  margin: 0 auto;
}

body.apple-product-page .apple-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.apple-product-page .apple-stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.apple-product-page .apple-card-grid article,
body.apple-product-page .apple-stat-grid article {
  min-height: 214px;
  padding: 26px;
  background: #f5f5f7;
  box-shadow: none;
}

body.apple-product-page .apple-card-grid strong,
body.apple-product-page .apple-stat-grid strong {
  display: block;
  margin-top: 72px;
  color: var(--apple-ink);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  overflow-wrap: anywhere;
}

body.apple-product-page .apple-stat-grid p {
  margin: 18px 0 0;
  color: var(--apple-muted);
  font-size: 14px;
  line-height: 1.5;
}

body.apple-product-page .apple-settings {
  background: linear-gradient(180deg, #f5f5f7, #ededf0);
}

body.apple-product-page .apple-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  width: min(1240px, 100%);
  min-height: 620px;
  gap: 28px;
  margin: 0 auto;
  padding: 38px;
  align-items: center;
}

body.apple-product-page .apple-split p {
  max-width: 430px;
  margin: 24px 0 0;
  color: var(--apple-muted);
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 680;
  line-height: 1.24;
}

body.apple-product-page .apple-settings figure {
  margin: 0;
  border-radius: 8px;
  background: #0b0b0d;
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.18);
  padding: 10px;
}

body.apple-product-page .apple-signal {
  display: grid;
  min-height: 620px;
  place-items: center;
  background: #f5f5f7;
}

body.apple-product-page .apple-signal-inner {
  width: min(760px, 100%);
  padding: 72px 34px;
  text-align: center;
}

body.apple-product-page .apple-signal-inner::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  content: "";
  pointer-events: none;
  transform: scaleX(0.94);
  animation: appleSignalLine 5.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

body.apple-product-page .apple-signal-inner h2 {
  margin-top: 18px;
  font-size: clamp(76px, 12vw, 166px);
  line-height: 0.9;
}

body.apple-product-page .apple-signal-inner p {
  margin: 20px 0 0;
  color: var(--apple-muted);
  font-size: 16px;
  font-weight: 720;
}

body.smart-prompt-page .apple-actions .button-dark,
body.smart-prompt-page .apple-feature-row span:nth-child(1) {
  border-color: #0b7f78;
  background: #0b7f78;
  color: #fff;
}

body.smart-prompt-page .apple-device {
  background: linear-gradient(180deg, #f7fbfb, #dce9e8);
}

body.smart-prompt-page .smart-motion-device {
  width: min(920px, 92vw);
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(235, 241, 241, 0.8)),
    #f5f5f7;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.13);
}

body.smart-prompt-page .smart-motion-device::before {
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.92), transparent 44%),
    radial-gradient(circle at 78% 18%, rgba(11, 127, 120, 0.12), transparent 34%);
}

body.smart-prompt-page .smart-product-shot img {
  height: 100%;
  max-height: 560px;
  aspect-ratio: 16 / 9;
  background: #f5f5f7;
  object-fit: cover;
  object-position: center;
}

body.smart-prompt-page .smart-card-shot {
  min-height: 430px;
}

body.smart-prompt-page .smart-card-shot img {
  height: 360px;
  max-height: 100%;
  aspect-ratio: 8 / 9;
  background: #f5f5f7;
  object-fit: contain;
}

body.smart-prompt-page .smart-insert-panel {
  display: grid;
  min-height: 520px;
  place-items: center;
}

.smart-insert-window {
  display: grid;
  width: min(960px, 100%);
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.smart-insert-window div {
  min-height: 186px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.smart-insert-window span {
  display: block;
  color: rgba(245, 245, 247, 0.56);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.smart-insert-window strong {
  display: block;
  margin-top: 64px;
  color: #f5f5f7;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
}

.smart-insert-window i {
  width: 46px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgba(245, 245, 247, 0.52), transparent);
}

body.smart-prompt-page .smart-boundary-panel {
  display: grid;
  min-height: 420px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.smart-boundary-panel div {
  display: grid;
  align-content: space-between;
  min-height: 100%;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 8px;
  padding: 22px;
  background: rgba(245, 245, 247, 0.84);
}

.smart-boundary-panel span {
  color: var(--apple-muted);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.smart-boundary-panel strong {
  color: var(--apple-ink);
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1;
  overflow-wrap: anywhere;
}

body.token-product-page {
  --token-panel: rgba(255, 255, 255, 0.78);
  --token-ink: #171719;
  --token-muted: #6e6e73;
  --token-line: rgba(29, 29, 31, 0.12);
}

body.token-product-page .token-native-hero {
  display: grid;
  gap: 16px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 239, 242, 0.78)),
    #f5f5f7;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.13);
}

body.token-product-page .token-native-hero::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), transparent 42%),
    radial-gradient(circle at 72% 22%, rgba(29, 29, 31, 0.08), transparent 32%);
}

.token-glass-bar,
.token-mini-window,
.token-mini-hud,
.token-protocol-grid section,
.token-local-panel > div {
  border: 1px solid var(--token-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 22px 58px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}

.token-glass-bar {
  display: grid;
  grid-template-columns: 1.1fr 1.35fr 1fr 1fr 1fr;
  gap: 10px;
  min-height: 118px;
  padding: 18px;
  align-items: center;
}

.token-brand-lockup,
.token-tool-pill,
.token-meter,
.token-system {
  display: grid;
  min-height: 74px;
  align-content: center;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(245, 245, 247, 0.72);
}

.token-brand-lockup {
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}

.token-brand-lockup span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #1d1d1f;
}

.token-brand-lockup strong,
.token-tool-pill span,
.token-meter strong,
.token-mini-window strong,
.token-mini-hud strong,
.token-protocol-grid strong,
.token-local-panel strong {
  color: var(--token-ink);
  font-weight: 820;
  letter-spacing: 0;
}

.token-brand-lockup strong {
  font-size: clamp(20px, 2.2vw, 32px);
}

.token-tool-pill span,
.token-system span,
.token-protocol-grid span,
.token-local-panel span,
.token-mini-hud span,
.token-window-head span {
  color: var(--token-muted);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.token-tool-pill strong {
  margin-top: 8px;
  font-size: 18px;
}

.token-meter {
  gap: 8px;
}

.token-meter span {
  color: var(--token-muted);
  font-size: 12px;
  font-weight: 820;
}

.token-meter i,
.token-line {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.09);
}

.token-meter i::before,
.token-line span {
  display: block;
  width: var(--meter);
  height: 100%;
  border-radius: inherit;
  background: #1d1d1f;
  content: "";
}

.token-meter strong {
  font-size: 28px;
}

.token-system {
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.token-system span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 8px;
  background: rgba(29, 29, 31, 0.06);
}

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

.token-motion-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 12px;
  align-items: stretch;
}

.token-mascot-card {
  min-height: 148px;
  padding: 0;
}

.token-mascot-card .remotion-loop {
  width: 112%;
  max-width: none;
}

.token-hero-grid div {
  min-height: 148px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.56);
}

.token-hero-grid span {
  color: var(--token-muted);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.token-hero-grid strong {
  display: block;
  margin-top: 52px;
  color: var(--token-ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

body.token-product-page .token-interface-card {
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.78);
}

.token-mini-window {
  min-height: 410px;
  padding: 22px;
}

.token-window-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.token-window-head i {
  width: 42px;
  height: 10px;
  border-radius: 999px;
  background: #1d1d1f;
}

.token-window-body {
  display: grid;
  gap: 16px;
  margin-top: 108px;
}

.token-window-body strong {
  font-size: clamp(72px, 8vw, 128px);
  line-height: 0.9;
}

.token-window-body p,
.token-mini-hud p,
.token-protocol-grid p {
  margin: 0;
  color: var(--token-muted);
  font-size: 15px;
  font-weight: 720;
}

.token-mini-hud {
  min-height: 250px;
  padding: 22px;
}

.token-mini-hud strong {
  display: block;
  margin-top: 12px;
  font-size: 30px;
}

.token-hud-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 46px 0 18px;
}

.token-hud-row b {
  border-radius: 8px;
  padding: 18px 12px;
  background: rgba(29, 29, 31, 0.06);
  color: var(--token-ink);
  font-size: 26px;
}

body.token-product-page .token-protocol-screen {
  background:
    linear-gradient(180deg, #f5f5f7, #e8e8ec),
    #f5f5f7;
  color: #1d1d1f;
}

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

.token-protocol-grid section {
  min-height: 230px;
  padding: 26px;
}

.token-protocol-grid strong {
  display: block;
  margin: 72px 0 14px;
  font-size: clamp(30px, 3.6vw, 56px);
  line-height: 1;
}

.token-protocol-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
  color: rgba(29, 29, 31, 0.72);
  font-size: 15px;
  font-weight: 820;
  text-transform: uppercase;
}

.token-protocol-flow i {
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(29, 29, 31, 0.42), transparent);
  animation: appleSignalLine 4.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

body.token-product-page .token-local-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-height: 420px;
  place-items: stretch;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.token-local-panel > div {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 26px;
}

.token-local-panel strong {
  border-bottom: 1px solid rgba(29, 29, 31, 0.1);
  padding: 18px 0;
  font-size: clamp(26px, 2.8vw, 42px);
  line-height: 1;
}

html[data-theme="dark"] body.token-product-page {
  --token-panel: rgba(24, 24, 26, 0.78);
  --token-ink: #f5f5f7;
  --token-muted: #a1a1a6;
  --token-line: rgba(255, 255, 255, 0.13);
}

html[data-theme="dark"] body.token-product-page .token-native-hero,
html[data-theme="dark"] body.token-product-page .token-protocol-screen {
  background:
    linear-gradient(180deg, rgba(28, 28, 30, 0.94), rgba(8, 8, 10, 0.92)),
    #08080a;
}

html[data-theme="dark"] .token-glass-bar,
html[data-theme="dark"] .token-mini-window,
html[data-theme="dark"] .token-mini-hud,
html[data-theme="dark"] .token-protocol-grid section,
html[data-theme="dark"] .token-local-panel > div,
html[data-theme="dark"] .token-brand-lockup,
html[data-theme="dark"] .token-tool-pill,
html[data-theme="dark"] .token-meter,
html[data-theme="dark"] .token-system,
html[data-theme="dark"] .token-hero-grid div {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 60px rgba(0, 0, 0, 0.26);
}

html[data-theme="dark"] .token-brand-lockup span,
html[data-theme="dark"] .token-meter i::before,
html[data-theme="dark"] .token-line span,
html[data-theme="dark"] .token-window-head i {
  background: #f5f5f7;
}

html[data-theme="dark"] .token-meter i,
html[data-theme="dark"] .token-line,
html[data-theme="dark"] .token-system span,
html[data-theme="dark"] .token-hud-row b {
  background: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .token-protocol-flow {
  color: rgba(245, 245, 247, 0.78);
}

html[data-theme="dark"] .token-protocol-flow i {
  background: linear-gradient(90deg, transparent, rgba(245, 245, 247, 0.42), transparent);
}

html[data-theme="dark"] .token-local-panel strong {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

body.smart-prompt-page .apple-settings figure {
  display: grid;
  place-items: center;
}

body.smart-prompt-page .apple-settings figure img {
  width: min(680px, 100%);
}

body.apple-product-page .tap-ripple {
  background: rgba(29, 29, 31, 0.18);
}

html[data-theme="dark"] body.apple-product-page {
  --apple-bg: #000;
  --apple-surface: rgba(28, 28, 30, 0.74);
  --apple-surface-strong: #101012;
  --apple-ink: #f5f5f7;
  --apple-muted: #a1a1a6;
  --apple-soft: #7b7b82;
  --apple-line: rgba(255, 255, 255, 0.13);
  --apple-shadow: 0 34px 86px rgba(0, 0, 0, 0.36);
  background: #000;
  color: #f5f5f7;
}

html[data-theme="dark"] body.apple-product-page .site-header {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(20, 20, 22, 0.68);
}

html[data-theme="dark"] body.apple-product-page .site-header.is-scrolled {
  background: rgba(20, 20, 22, 0.82);
}

html[data-theme="dark"] body.apple-product-page .apple-story-nav {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(28, 28, 30, 0.72);
}

html[data-theme="dark"] body.apple-product-page .apple-story-nav a:hover,
html[data-theme="dark"] body.apple-product-page .apple-story-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] body.apple-product-page .apple-story-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.14);
  color: #f5f5f7;
}

html[data-theme="dark"] body.apple-product-page .apple-actions .button-dark {
  border-color: #f5f5f7;
  background: #f5f5f7;
  color: #111;
}

html[data-theme="dark"] body.apple-product-page .apple-actions .button-light {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #f5f5f7;
}

html[data-theme="dark"] body.apple-product-page .apple-device,
html[data-theme="dark"] body.apple-product-page .apple-settings figure {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.58);
}

html[data-theme="dark"] body.apple-product-page .remotion-loop {
  filter: none;
}

html[data-theme="dark"] body.apple-product-page .remotion-video-card {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(28, 28, 30, 0.72);
}

html[data-theme="dark"] body.smart-prompt-page .smart-motion-device {
  background:
    linear-gradient(180deg, rgba(28, 28, 30, 0.86), rgba(10, 10, 12, 0.92)),
    #101012;
}

html[data-theme="dark"] body.smart-prompt-page .smart-boundary-panel {
  background: rgba(20, 20, 22, 0.76);
}

html[data-theme="dark"] .smart-boundary-panel div {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] body.apple-product-page .apple-cards,
html[data-theme="dark"] body.apple-product-page .apple-open-source,
html[data-theme="dark"] body.apple-product-page .apple-settings,
html[data-theme="dark"] body.apple-product-page .apple-signal {
  background: #000;
}

html[data-theme="dark"] body.apple-product-page .apple-card-grid article,
html[data-theme="dark"] body.apple-product-page .apple-stat-grid article {
  background: #101012;
}

html[data-theme="dark"] body.apple-product-page .apple-shot:hover,
html[data-theme="dark"] body.apple-product-page .apple-shot:focus-within,
html[data-theme="dark"] body.apple-product-page .apple-card-grid article:hover,
html[data-theme="dark"] body.apple-product-page .apple-stat-grid article:hover,
html[data-theme="dark"] body.apple-product-page .apple-signal-inner:hover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 40px 96px rgba(0, 0, 0, 0.44);
}

html[data-theme="dark"] body.apple-product-page .apple-signal-inner::before {
  border-color: rgba(255, 255, 255, 0.1);
}

@keyframes appleSignalLine {
  0%,
  100% {
    opacity: 0.26;
    transform: scaleX(0.9);
  }

  50% {
    opacity: 0.78;
    transform: scaleX(1);
  }
}

@media (max-width: 980px) {
  body.apple-product-page .apple-hero {
    min-height: auto;
    padding-top: 128px;
  }

  body.apple-product-page .apple-story-nav {
    top: 84px;
  }

  body.apple-product-page .apple-section {
    padding: 118px 20px;
  }

  body.apple-product-page .apple-showcase-grid,
  body.apple-product-page .apple-split {
    grid-template-columns: 1fr;
  }

  body.apple-product-page .apple-card-grid,
  body.apple-product-page .apple-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.apple-product-page .apple-split {
    min-height: 0;
    padding: 26px;
  }
}

@media (max-width: 680px) {
  body.apple-product-page .apple-hero {
    padding: 116px 16px 72px;
  }

  body.apple-product-page .apple-hero h1 {
    font-size: clamp(48px, 13vw, 64px);
  }

  body.apple-product-page .apple-subhead {
    font-size: 22px;
  }

  body.apple-product-page .apple-device {
    width: 100%;
    margin-top: 42px;
    padding: 6px;
  }

  body.apple-product-page .apple-story-nav {
    justify-content: flex-start;
    width: calc(100% - 24px);
    overflow-x: auto;
    scrollbar-width: none;
  }

  body.apple-product-page .apple-section {
    padding: 92px 16px;
  }

  body.apple-product-page .apple-section-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  body.apple-product-page .apple-section-heading h2,
  body.apple-product-page .apple-split h2 {
    font-size: clamp(44px, 14vw, 64px);
  }

  body.apple-product-page .apple-card-grid,
  body.apple-product-page .apple-stat-grid {
    grid-template-columns: 1fr;
  }

  body.apple-product-page .apple-card-grid article,
  body.apple-product-page .apple-stat-grid article {
    min-height: 168px;
    padding: 22px;
  }

  body.apple-product-page .apple-card-grid strong,
  body.apple-product-page .apple-stat-grid strong {
    margin-top: 48px;
  }

  body.apple-product-page .apple-split {
    padding: 18px;
  }

  body.smart-prompt-page .smart-motion-device {
    padding: 10px;
  }

  body.smart-prompt-page .smart-card-shot {
    min-height: 300px;
  }

  body.smart-prompt-page .smart-card-shot img {
    height: 260px;
  }

  body.smart-prompt-page .smart-insert-panel {
    min-height: 0;
    padding: 18px;
  }

  .smart-insert-window {
    grid-template-columns: 1fr;
  }

  .smart-insert-window div {
    min-height: 138px;
    padding: 20px;
  }

  .smart-insert-window strong {
    margin-top: 40px;
  }

  .smart-insert-window i {
    width: 2px;
    height: 28px;
    justify-self: center;
    background: linear-gradient(180deg, transparent, rgba(245, 245, 247, 0.52), transparent);
  }

  body.smart-prompt-page .smart-boundary-panel {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  body.apple-product-page .apple-signal {
    min-height: 520px;
  }

  body.apple-product-page .apple-signal-inner {
    padding: 56px 22px;
  }
}

@media (max-width: 980px) {
  .token-glass-bar,
  .token-hero-grid,
  .token-motion-stage,
  .token-protocol-grid,
  body.token-product-page .token-local-panel {
    grid-template-columns: 1fr;
  }

  .token-glass-bar {
    min-height: 0;
  }

  .token-brand-lockup,
  .token-tool-pill,
  .token-meter,
  .token-system {
    min-height: 62px;
  }

  .token-mini-window {
    min-height: 340px;
  }
}

@media (max-width: 680px) {
  body.token-product-page .token-native-hero {
    gap: 10px;
    padding: 10px;
  }

  body.token-product-page .token-hero-grid {
    display: none;
  }

  body.token-product-page .token-mascot-card {
    min-height: 180px;
  }

  .token-glass-bar,
  .token-mini-window,
  .token-mini-hud,
  .token-protocol-grid section,
  .token-local-panel > div {
    padding: 16px;
  }

  .token-brand-lockup strong {
    font-size: 20px;
  }

  body.token-product-page .token-glass-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.token-product-page .token-brand-lockup,
  body.token-product-page .token-tool-pill {
    grid-column: 1 / -1;
  }

  body.token-product-page .token-system {
    display: none;
  }

  .token-meter strong,
  .token-hud-row b {
    font-size: 22px;
  }

  .token-hero-grid div {
    min-height: 116px;
    padding: 18px;
  }

  .token-hero-grid strong {
    margin-top: 34px;
    font-size: 30px;
  }

  .token-mini-window {
    min-height: 270px;
  }

  .token-window-body {
    margin-top: 54px;
  }

  .token-window-body strong {
    font-size: 72px;
  }

  .token-hud-row {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .token-protocol-flow {
    flex-wrap: wrap;
    font-size: 12px;
  }

  .token-protocol-flow i {
    width: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Premium product-page refinement layer */
body.apple-product-page {
  --premium-measure: min(1080px, calc(100% - 48px));
  --premium-wide: min(1180px, calc(100% - 48px));
  --premium-max: min(1240px, calc(100% - 48px));
}

body.apple-product-page .apple-hero {
  min-height: auto;
  padding: 126px 24px 64px;
  place-items: start center;
}

body.apple-product-page .apple-eyebrow {
  margin-bottom: 12px;
  font-size: 18px;
}

body.apple-product-page .apple-hero h1 {
  max-width: 1040px;
  font-size: 92px;
  line-height: 0.98;
}

body.apple-product-page .apple-subhead {
  max-width: 620px;
  margin-top: 16px;
  font-size: 26px;
  line-height: 1.2;
}

body.apple-product-page .apple-actions {
  margin-top: 26px;
}

body.apple-product-page .apple-actions .button {
  min-height: 44px;
  padding: 12px 22px;
}

body.apple-product-page .apple-device {
  width: var(--premium-wide);
  margin-top: 34px;
  border-color: rgba(29, 29, 31, 0.1);
  box-shadow: 0 36px 96px rgba(0, 0, 0, 0.16);
}

body.apple-product-page .apple-device:hover {
  box-shadow: 0 42px 108px rgba(0, 0, 0, 0.2);
}

body.apple-product-page .apple-story-nav {
  margin-top: -22px;
}

body.apple-product-page .apple-section {
  padding: 132px 24px;
}

body.apple-product-page .apple-section-heading {
  width: var(--premium-measure);
  margin-bottom: 42px;
}

body.apple-product-page .apple-section-heading h2,
body.apple-product-page .apple-split h2 {
  font-size: 72px;
  line-height: 0.98;
}

body.apple-product-page .apple-showcase-grid {
  width: var(--premium-wide);
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.58fr);
  gap: 22px;
  align-items: start;
}

body.apple-product-page .apple-shot {
  min-height: auto;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 245, 247, 0.72)),
    var(--apple-surface);
}

body.apple-product-page .apple-shot::after,
body.apple-product-page .apple-cinematic-screen::after,
body.apple-product-page .apple-split::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.38), transparent 28%, transparent 76%, rgba(255, 255, 255, 0.08));
  content: "";
  opacity: 0.55;
  pointer-events: none;
}

body.apple-product-page .apple-shot-wide {
  grid-row: auto;
}

body.apple-product-page .apple-shot figcaption {
  margin-top: 12px;
}

body.apple-product-page .apple-cinematic-screen {
  width: var(--premium-wide);
  padding: 16px;
}

body.apple-product-page .apple-card-grid,
body.apple-product-page .apple-stat-grid {
  width: var(--premium-measure);
  gap: 18px;
}

body.apple-product-page .apple-card-grid article,
body.apple-product-page .apple-stat-grid article {
  display: grid;
  min-height: 188px;
  align-content: space-between;
  padding: 24px;
}

body.apple-product-page .apple-card-grid strong,
body.apple-product-page .apple-stat-grid strong {
  margin-top: 0;
  font-size: 34px;
}

body.apple-product-page .apple-stat-grid p {
  margin-top: 14px;
}

body.apple-product-page .apple-split {
  width: var(--premium-wide);
  min-height: 520px;
  gap: 24px;
  padding: 30px;
}

body.apple-product-page .apple-split > * {
  position: relative;
  z-index: 1;
}

body.apple-product-page .apple-split p {
  font-size: 24px;
}

body.apple-product-page .apple-settings figure {
  padding: 12px;
}

body.apple-product-page .apple-signal {
  min-height: 540px;
}

body.apple-product-page .apple-signal-inner {
  width: min(680px, calc(100% - 48px));
  padding: 64px 32px;
}

body.apple-product-page .apple-signal-inner h2 {
  font-size: 128px;
}

body.apple-product-page .apple-metaphors {
  background:
    linear-gradient(180deg, #fff, #f5f5f7 78%, #ededf0),
    #fff;
}

body.apple-product-page .metaphor-grid {
  display: grid;
  width: var(--premium-wide);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 0 auto;
}

body.apple-product-page .metaphor-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--apple-line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--apple-shadow);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.apple-product-page .metaphor-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.42), transparent 28%, transparent 76%, rgba(255, 255, 255, 0.08));
  content: "";
  opacity: 0.55;
  pointer-events: none;
}

body.apple-product-page .metaphor-card:hover {
  border-color: rgba(29, 29, 31, 0.22);
  box-shadow: 0 40px 96px rgba(0, 0, 0, 0.16);
  transform: translateY(-6px);
}

body.apple-product-page .metaphor-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  background: #fbf7ef;
  object-fit: cover;
}

body.apple-product-page .metaphor-card figcaption {
  position: relative;
  z-index: 1;
  margin: 14px 4px 2px;
  color: var(--apple-muted);
  font-size: 13px;
  font-weight: 780;
}

body.smart-prompt-page .smart-motion-device {
  width: min(780px, 88vw);
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 245, 244, 0.82)),
    #f5f5f7;
}

body.smart-prompt-page .smart-product-shot img {
  height: auto;
  max-height: none;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

body.smart-prompt-page .smart-card-shot {
  min-height: auto;
}

body.smart-prompt-page .smart-card-shot img {
  height: auto;
  max-height: 392px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

body.smart-prompt-page .smart-insert-panel {
  min-height: 480px;
}

body.smart-prompt-page .smart-boundary-panel {
  min-height: 360px;
}

body.smart-prompt-page .apple-settings .smart-boundary-panel {
  border-color: rgba(29, 29, 31, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 245, 247, 0.72)),
    rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 24px 72px rgba(0, 0, 0, 0.1);
}

body.smart-prompt-page .apple-settings .smart-boundary-panel div {
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

body.smart-prompt-page .smart-boundary-panel strong {
  overflow-wrap: normal;
  word-break: normal;
}

body.smart-prompt-page .smart-boundary-panel strong:first-of-type {
  font-size: 32px;
}

body.token-product-page .token-native-hero {
  width: min(980px, 92vw);
  gap: 14px;
  padding: 16px;
}

body.token-product-page .token-glass-bar {
  min-height: 92px;
  grid-template-columns: 1fr 1.18fr 0.74fr 0.74fr 0.86fr;
  padding: 14px;
}

body.token-product-page .token-brand-lockup,
body.token-product-page .token-tool-pill,
body.token-product-page .token-meter,
body.token-product-page .token-system {
  min-height: 60px;
  padding: 12px 14px;
}

body.token-product-page .token-brand-lockup strong {
  font-size: 24px;
}

body.token-product-page .token-meter strong {
  font-size: 24px;
}

body.token-product-page .token-motion-stage {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.74fr);
  gap: 14px;
}

body.token-product-page .token-hero-grid div,
body.token-product-page .token-mascot-card {
  min-height: 124px;
}

body.token-product-page .token-hero-grid div {
  padding: 20px;
}

body.token-product-page .token-hero-grid strong {
  margin-top: 34px;
  font-size: 30px;
}

body.token-product-page .token-mini-window,
body.token-product-page .token-mini-hud {
  min-height: 340px;
}

body.token-product-page .token-window-body {
  margin-top: 74px;
}

body.token-product-page .token-window-body strong {
  font-size: 104px;
}

body.token-product-page .token-mini-hud {
  display: grid;
  align-content: space-between;
}

body.token-product-page .token-hud-row {
  margin: 28px 0 14px;
}

body.token-product-page .apple-settings .token-local-panel {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

body.token-product-page .apple-settings .token-local-panel > div {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 24px 72px rgba(0, 0, 0, 0.1);
}

html[data-theme="dark"] body.apple-product-page .apple-shot {
  background:
    linear-gradient(180deg, rgba(28, 28, 30, 0.84), rgba(14, 14, 16, 0.78)),
    var(--apple-surface);
}

html[data-theme="dark"] body.apple-product-page .apple-shot::after,
html[data-theme="dark"] body.apple-product-page .apple-cinematic-screen::after,
html[data-theme="dark"] body.apple-product-page .apple-split::after {
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 28%, transparent 76%, rgba(255, 255, 255, 0.06));
}

html[data-theme="dark"] body.apple-product-page .apple-metaphors {
  background: #000;
}

html[data-theme="dark"] body.apple-product-page .metaphor-card {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(28, 28, 30, 0.74);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.36);
}

html[data-theme="dark"] body.apple-product-page .metaphor-card::after {
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 28%, transparent 76%, rgba(255, 255, 255, 0.05));
}

html[data-theme="dark"] body.apple-product-page .metaphor-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 40px 96px rgba(0, 0, 0, 0.44);
}

html[data-theme="dark"] body.apple-product-page .apple-device {
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.54);
}

html[data-theme="dark"] body.smart-prompt-page .smart-motion-device {
  background:
    linear-gradient(180deg, rgba(26, 27, 28, 0.9), rgba(9, 10, 11, 0.94)),
    #101012;
}

html[data-theme="dark"] body.smart-prompt-page .apple-settings .smart-boundary-panel {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(28, 28, 30, 0.78), rgba(14, 14, 16, 0.78)),
    rgba(28, 28, 30, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 30px 90px rgba(0, 0, 0, 0.42);
}

html[data-theme="dark"] body.smart-prompt-page .apple-settings .smart-boundary-panel div,
html[data-theme="dark"] body.token-product-page .apple-settings .token-local-panel > div {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 70px rgba(0, 0, 0, 0.28);
}

@media (max-width: 980px) {
  body.apple-product-page {
    --premium-measure: min(100% - 40px, 760px);
    --premium-wide: min(100% - 40px, 820px);
    --premium-max: min(100% - 40px, 820px);
  }

  body.apple-product-page .apple-hero {
    padding-top: 116px;
  }

  body.apple-product-page .apple-hero h1 {
    font-size: 72px;
  }

  body.apple-product-page .apple-subhead {
    font-size: 24px;
  }

  body.apple-product-page .apple-section {
    padding: 108px 20px;
  }

  body.apple-product-page .apple-section-heading h2,
  body.apple-product-page .apple-split h2 {
    font-size: 58px;
  }

  body.apple-product-page .apple-showcase-grid,
  body.apple-product-page .apple-split,
  body.apple-product-page .metaphor-grid,
  body.token-product-page .token-motion-stage {
    grid-template-columns: 1fr;
  }

  body.token-product-page .token-native-hero {
    width: var(--premium-wide);
  }

  body.token-product-page .token-glass-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.token-product-page .token-brand-lockup,
  body.token-product-page .token-tool-pill {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body.apple-product-page {
    --premium-measure: calc(100% - 32px);
    --premium-wide: calc(100% - 32px);
    --premium-max: calc(100% - 32px);
  }

  body.apple-product-page .apple-hero {
    padding: 104px 16px 58px;
  }

  body.apple-product-page .apple-eyebrow {
    font-size: 16px;
  }

  body.apple-product-page .apple-hero h1 {
    font-size: 50px;
  }

  body.apple-product-page .apple-subhead {
    font-size: 21px;
  }

  body.apple-product-page .apple-device {
    width: var(--premium-wide);
    margin-top: 30px;
  }

  body.apple-product-page .apple-section {
    padding: 84px 16px;
  }

  body.apple-product-page .apple-section-heading {
    width: var(--premium-wide);
    margin-bottom: 30px;
  }

  body.apple-product-page .apple-section-heading h2,
  body.apple-product-page .apple-split h2 {
    font-size: 44px;
  }

  body.apple-product-page .apple-card-grid article,
  body.apple-product-page .apple-stat-grid article {
    min-height: 156px;
  }

  body.apple-product-page .apple-card-grid strong,
  body.apple-product-page .apple-stat-grid strong {
    font-size: 30px;
  }

  body.apple-product-page .apple-split {
    padding: 18px;
  }

  body.apple-product-page .apple-split p {
    font-size: 20px;
  }

  body.apple-product-page .apple-signal-inner {
    width: var(--premium-wide);
    padding: 50px 22px;
  }

  body.apple-product-page .apple-signal-inner h2 {
    font-size: 86px;
  }

  body.smart-prompt-page .smart-motion-device {
    width: var(--premium-wide);
    padding: 8px;
  }

  body.smart-prompt-page .smart-card-shot img {
    max-height: 280px;
  }

  body.token-product-page .token-native-hero {
    width: var(--premium-wide);
    padding: 10px;
  }

  body.token-product-page .token-glass-bar {
    grid-template-columns: 1fr;
  }

  body.token-product-page .token-meter {
    grid-template-columns: 36px 1fr auto;
    align-items: center;
  }

  body.token-product-page .token-system {
    display: none;
  }

  body.token-product-page .token-mini-window,
  body.token-product-page .token-mini-hud {
    min-height: 280px;
  }

  body.token-product-page .token-window-body {
    margin-top: 48px;
  }

  body.token-product-page .token-window-body strong {
    font-size: 76px;
  }
}

body.token-product-page .apple-settings .token-privacy-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) 72px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 200, 98, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 245, 247, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 32px 90px rgba(0, 0, 0, 0.1);
  padding: 18px;
}

body.token-product-page .apple-settings .token-privacy-stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(29, 29, 31, 0.05);
  border-radius: 8px;
}

body.token-product-page .apple-settings .token-privacy-stage .privacy-column,
body.token-product-page .apple-settings .token-privacy-stage .privacy-boundary {
  position: relative;
  z-index: 1;
}

body.token-product-page .apple-settings .token-privacy-stage .privacy-column {
  display: grid;
  grid-template-rows: auto repeat(3, minmax(0, 1fr));
  gap: 0;
  min-width: 0;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 18px 48px rgba(0, 0, 0, 0.06);
  padding: clamp(18px, 2.2vw, 28px);
}

body.token-product-page .apple-settings .token-privacy-stage .privacy-column-muted {
  opacity: 0.46;
  filter: saturate(0.2);
}

body.token-product-page .apple-settings .token-privacy-stage .privacy-column-live {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.66)),
    rgba(255, 255, 255, 0.72);
}

body.token-product-page .apple-settings .token-privacy-stage .privacy-column span {
  margin-bottom: 18px;
  color: #86868b;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.token-product-page .apple-settings .token-privacy-stage .privacy-column strong {
  display: flex;
  min-width: 0;
  align-items: center;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
  color: #1d1d1f;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.98;
  overflow-wrap: normal;
  padding: 0;
  white-space: nowrap;
}

body.token-product-page .apple-settings .token-privacy-stage .privacy-column.privacy-column-muted strong {
  color: #6e6e73;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 720;
  line-height: 1;
}

body.token-product-page .apple-settings .token-privacy-stage .privacy-column strong:last-child {
  border-bottom: 0;
}

body.token-product-page .apple-settings .token-privacy-stage .privacy-column-live strong::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-right: 14px;
  border-radius: 999px;
  background: #1d1d1f;
  box-shadow: 0 0 0 6px rgba(29, 29, 31, 0.06);
}

body.token-product-page .apple-settings .token-privacy-stage .privacy-boundary {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #86868b;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.14em;
  line-height: 1;
  padding: 0;
  text-transform: uppercase;
}

body.token-product-page .apple-settings .token-privacy-stage .privacy-boundary i {
  display: block;
  width: 1px;
  height: 118px;
  background: linear-gradient(180deg, transparent, rgba(29, 29, 31, 0.24), transparent);
}

body.token-product-page .apple-settings .token-privacy-stage .privacy-boundary em {
  color: #1d1d1f;
  font-style: normal;
  letter-spacing: 0.2em;
}

html[data-theme="dark"] body.token-product-page .apple-settings .token-privacy-stage {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 200, 98, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(28, 28, 30, 0.84), rgba(10, 10, 12, 0.76));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 32px 90px rgba(0, 0, 0, 0.42);
}

html[data-theme="dark"] body.token-product-page .apple-settings .token-privacy-stage::before,
html[data-theme="dark"] body.token-product-page .apple-settings .token-privacy-stage .privacy-column {
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] body.token-product-page .apple-settings .token-privacy-stage .privacy-column {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 70px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] body.token-product-page .apple-settings .token-privacy-stage .privacy-column-muted {
  opacity: 0.42;
}

html[data-theme="dark"] body.token-product-page .apple-settings .token-privacy-stage .privacy-column span,
html[data-theme="dark"] body.token-product-page .apple-settings .token-privacy-stage .privacy-boundary {
  color: #a1a1a6;
}

html[data-theme="dark"] body.token-product-page .apple-settings .token-privacy-stage .privacy-column strong {
  border-color: rgba(255, 255, 255, 0.12);
  color: #f5f5f7;
}

html[data-theme="dark"] body.token-product-page .apple-settings .token-privacy-stage .privacy-column-live strong::before {
  background: #f5f5f7;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] body.token-product-page .apple-settings .token-privacy-stage .privacy-boundary i {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

html[data-theme="dark"] body.token-product-page .apple-settings .token-privacy-stage .privacy-boundary em {
  color: #f5f5f7;
}

body.smart-prompt-page .smart-mechanism-grid {
  display: grid;
  width: var(--premium-wide);
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 24px;
  margin: 0 auto;
}

body.smart-prompt-page #mechanism {
  scroll-margin-top: 150px;
}

body.smart-prompt-page .smart-mechanism-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 18%, rgba(61, 132, 121, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 245, 247, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 30px 86px rgba(0, 0, 0, 0.1);
  padding: clamp(22px, 2.6vw, 34px);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.smart-prompt-page .smart-mechanism-card::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(29, 29, 31, 0.05);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

body.smart-prompt-page .smart-mechanism-card:hover {
  border-color: rgba(29, 29, 31, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 40px 104px rgba(0, 0, 0, 0.14);
  transform: translateY(-5px);
}

body.smart-prompt-page .smart-mechanism-card > * {
  position: relative;
  z-index: 1;
}

body.smart-prompt-page .mechanism-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #86868b;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.smart-prompt-page .mechanism-label strong {
  color: #1d1d1f;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
}

body.smart-prompt-page .mechanism-flow-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr);
  gap: 0;
  align-items: center;
  margin-top: 48px;
}

body.smart-prompt-page .mechanism-flow-stage i {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(29, 29, 31, 0.08), rgba(29, 29, 31, 0.34), rgba(29, 29, 31, 0.08));
}

body.smart-prompt-page .flow-step {
  display: grid;
  min-height: 118px;
  align-content: space-between;
  border: 1px solid rgba(29, 29, 31, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 18px 48px rgba(0, 0, 0, 0.06);
  padding: 18px;
}

body.smart-prompt-page .flow-step span,
body.smart-prompt-page .boundary-window span,
body.smart-prompt-page .boundary-insert span {
  color: #86868b;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.smart-prompt-page .flow-step strong,
body.smart-prompt-page .boundary-window strong,
body.smart-prompt-page .boundary-insert strong {
  color: #1d1d1f;
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 760;
  line-height: 1;
}

body.smart-prompt-page .flow-step.is-active {
  border-color: rgba(29, 29, 31, 0.88);
  background: #1d1d1f;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.18);
}

body.smart-prompt-page .flow-step.is-active span,
body.smart-prompt-page .flow-step.is-active strong {
  color: #f5f5f7;
}

body.smart-prompt-page .mechanism-compose {
  display: grid;
  min-height: 126px;
  align-content: center;
  margin-top: 32px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
  padding: 24px;
}

body.smart-prompt-page .mechanism-compose span,
body.smart-prompt-page .mechanism-compose b {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(29, 29, 31, 0.08), rgba(29, 29, 31, 0.18), transparent);
}

body.smart-prompt-page .mechanism-compose p {
  margin: 14px 0;
  color: #1d1d1f;
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.05;
}

body.smart-prompt-page .mechanism-boundary-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px minmax(0, 0.86fr);
  align-items: stretch;
  margin-top: 48px;
}

body.smart-prompt-page .boundary-window,
body.smart-prompt-page .boundary-insert {
  display: grid;
  min-height: 244px;
  align-content: center;
  border: 1px solid rgba(29, 29, 31, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84), 0 18px 48px rgba(0, 0, 0, 0.06);
  padding: 24px;
}

body.smart-prompt-page .boundary-window {
  gap: 22px;
}

body.smart-prompt-page .boundary-window em {
  color: #86868b;
  font-size: clamp(22px, 2vw, 32px);
  font-style: normal;
  font-weight: 720;
  letter-spacing: 0;
}

body.smart-prompt-page .boundary-rail {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  color: #86868b;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

body.smart-prompt-page .boundary-rail i {
  width: 1px;
  height: 74px;
  background: linear-gradient(180deg, transparent, rgba(29, 29, 31, 0.26), transparent);
}

body.smart-prompt-page .boundary-insert {
  min-height: 184px;
  align-self: center;
}

body.smart-prompt-page .boundary-insert strong {
  display: block;
  width: min(100%, 180px);
  height: 1px;
  margin-top: 28px;
  background: #1d1d1f;
}

body.smart-prompt-page .smart-mechanism-card h3 {
  margin: 28px 0 0;
  color: #6e6e73;
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0;
}

html[data-theme="dark"] body.smart-prompt-page .smart-mechanism-card {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 82% 18%, rgba(78, 164, 150, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(28, 28, 30, 0.84), rgba(10, 10, 12, 0.76));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 32px 90px rgba(0, 0, 0, 0.42);
}

html[data-theme="dark"] body.smart-prompt-page .smart-mechanism-card::before,
html[data-theme="dark"] body.smart-prompt-page .flow-step,
html[data-theme="dark"] body.smart-prompt-page .mechanism-compose,
html[data-theme="dark"] body.smart-prompt-page .boundary-window,
html[data-theme="dark"] body.smart-prompt-page .boundary-insert {
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] body.smart-prompt-page .flow-step,
html[data-theme="dark"] body.smart-prompt-page .mechanism-compose,
html[data-theme="dark"] body.smart-prompt-page .boundary-window,
html[data-theme="dark"] body.smart-prompt-page .boundary-insert {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 70px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] body.smart-prompt-page .mechanism-label,
html[data-theme="dark"] body.smart-prompt-page .flow-step span,
html[data-theme="dark"] body.smart-prompt-page .boundary-window span,
html[data-theme="dark"] body.smart-prompt-page .boundary-insert span,
html[data-theme="dark"] body.smart-prompt-page .boundary-window em,
html[data-theme="dark"] body.smart-prompt-page .boundary-rail,
html[data-theme="dark"] body.smart-prompt-page .smart-mechanism-card h3 {
  color: #a1a1a6;
}

html[data-theme="dark"] body.smart-prompt-page .mechanism-label strong,
html[data-theme="dark"] body.smart-prompt-page .flow-step strong,
html[data-theme="dark"] body.smart-prompt-page .boundary-window strong,
html[data-theme="dark"] body.smart-prompt-page .mechanism-compose p {
  color: #f5f5f7;
}

html[data-theme="dark"] body.smart-prompt-page .mechanism-flow-stage i,
html[data-theme="dark"] body.smart-prompt-page .boundary-rail i {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

html[data-theme="dark"] body.smart-prompt-page .mechanism-flow-stage i {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.06));
}

html[data-theme="dark"] body.smart-prompt-page .boundary-insert strong {
  background: #f5f5f7;
}

body.token-product-page .token-signal-grid {
  display: grid;
  width: var(--premium-wide);
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 24px;
  margin: 0 auto;
}

body.token-product-page .token-signals-section {
  scroll-margin-top: 150px;
}

body.token-product-page .token-signal-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 200, 98, 0.13), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 245, 247, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 30px 86px rgba(0, 0, 0, 0.1);
  padding: clamp(22px, 2.6vw, 34px);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.token-product-page .token-signal-card::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(29, 29, 31, 0.05);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

body.token-product-page .token-signal-card:hover {
  border-color: rgba(29, 29, 31, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 40px 104px rgba(0, 0, 0, 0.14);
  transform: translateY(-5px);
}

body.token-product-page .token-signal-card > * {
  position: relative;
  z-index: 1;
}

body.token-product-page .token-signal-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #86868b;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.12em;
}

body.token-product-page .token-signal-label strong {
  color: #1d1d1f;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
}

body.token-product-page .token-source-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px minmax(0, 0.92fr) 46px minmax(0, 0.78fr);
  align-items: center;
  min-height: 270px;
  margin-top: 46px;
}

body.token-product-page .signal-source-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.token-product-page .signal-source-list span,
body.token-product-page .signal-hub,
body.token-product-page .signal-hud,
body.token-product-page .local-muted-stack,
body.token-product-page .local-live-stack {
  border: 1px solid rgba(29, 29, 31, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84), 0 18px 48px rgba(0, 0, 0, 0.06);
}

body.token-product-page .signal-source-list span {
  display: grid;
  min-height: 82px;
  place-items: center;
  color: #1d1d1f;
  font-size: 18px;
  font-weight: 760;
}

body.token-product-page .token-source-map > i {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(29, 29, 31, 0.08), rgba(29, 29, 31, 0.32), rgba(29, 29, 31, 0.08));
}

body.token-product-page .signal-hub,
body.token-product-page .signal-hud {
  display: grid;
  min-height: 164px;
  align-content: center;
  padding: 22px;
}

body.token-product-page .signal-hub span,
body.token-product-page .signal-hud span,
body.token-product-page .local-muted-stack span,
body.token-product-page .local-live-stack span {
  color: #86868b;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

body.token-product-page .signal-hub strong,
body.token-product-page .signal-hud strong {
  margin-top: 16px;
  color: #1d1d1f;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 760;
  line-height: 1;
}

body.token-product-page .signal-hud strong {
  color: #6e6e73;
}

body.token-product-page .token-local-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) 74px minmax(0, 1fr);
  align-items: stretch;
  min-height: 270px;
  margin-top: 46px;
}

body.token-product-page .local-muted-stack,
body.token-product-page .local-live-stack {
  display: grid;
  grid-template-rows: auto repeat(3, minmax(0, 1fr));
  padding: 24px;
}

body.token-product-page .local-muted-stack {
  opacity: 0.46;
  filter: saturate(0.2);
}

body.token-product-page .local-muted-stack strong,
body.token-product-page .local-live-stack strong {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
  color: #1d1d1f;
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 760;
  line-height: 1;
}

body.token-product-page .local-muted-stack strong {
  color: #6e6e73;
  font-size: clamp(19px, 1.7vw, 27px);
}

body.token-product-page .local-muted-stack strong:last-child,
body.token-product-page .local-live-stack strong:last-child {
  border-bottom: 0;
}

body.token-product-page .local-live-stack strong::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-right: 14px;
  border-radius: 999px;
  background: #1d1d1f;
  box-shadow: 0 0 0 6px rgba(29, 29, 31, 0.06);
}

body.token-product-page .local-gate {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  color: #86868b;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.12em;
}

body.token-product-page .local-gate i {
  width: 1px;
  height: 92px;
  background: linear-gradient(180deg, transparent, rgba(29, 29, 31, 0.26), transparent);
}

body.token-product-page .token-signal-card h3 {
  margin: 28px 0 0;
  color: #6e6e73;
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0;
}

html[data-theme="dark"] body.token-product-page .token-signal-card {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 200, 98, 0.13), transparent 28%),
    linear-gradient(180deg, rgba(28, 28, 30, 0.84), rgba(10, 10, 12, 0.76));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 32px 90px rgba(0, 0, 0, 0.42);
}

html[data-theme="dark"] body.token-product-page .token-signal-card::before,
html[data-theme="dark"] body.token-product-page .signal-source-list span,
html[data-theme="dark"] body.token-product-page .signal-hub,
html[data-theme="dark"] body.token-product-page .signal-hud,
html[data-theme="dark"] body.token-product-page .local-muted-stack,
html[data-theme="dark"] body.token-product-page .local-live-stack {
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] body.token-product-page .signal-source-list span,
html[data-theme="dark"] body.token-product-page .signal-hub,
html[data-theme="dark"] body.token-product-page .signal-hud,
html[data-theme="dark"] body.token-product-page .local-muted-stack,
html[data-theme="dark"] body.token-product-page .local-live-stack {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 70px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] body.token-product-page .token-signal-label,
html[data-theme="dark"] body.token-product-page .signal-hub span,
html[data-theme="dark"] body.token-product-page .signal-hud span,
html[data-theme="dark"] body.token-product-page .local-muted-stack span,
html[data-theme="dark"] body.token-product-page .local-live-stack span,
html[data-theme="dark"] body.token-product-page .local-gate,
html[data-theme="dark"] body.token-product-page .token-signal-card h3 {
  color: #a1a1a6;
}

html[data-theme="dark"] body.token-product-page .token-signal-label strong,
html[data-theme="dark"] body.token-product-page .signal-source-list span,
html[data-theme="dark"] body.token-product-page .signal-hub strong,
html[data-theme="dark"] body.token-product-page .local-muted-stack strong,
html[data-theme="dark"] body.token-product-page .local-live-stack strong {
  color: #f5f5f7;
}

html[data-theme="dark"] body.token-product-page .signal-hud strong,
html[data-theme="dark"] body.token-product-page .local-muted-stack strong {
  color: #a1a1a6;
}

html[data-theme="dark"] body.token-product-page .token-source-map > i {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.06));
}

html[data-theme="dark"] body.token-product-page .local-gate i {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

html[data-theme="dark"] body.token-product-page .local-live-stack strong::before {
  background: #f5f5f7;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
  body.smart-prompt-page .smart-mechanism-grid {
    grid-template-columns: 1fr;
  }

  body.smart-prompt-page .smart-mechanism-card {
    min-height: 0;
  }

  body.token-product-page .token-signal-grid {
    grid-template-columns: 1fr;
  }

  body.token-product-page .token-signal-card {
    min-height: 0;
  }

  body.token-product-page .apple-settings .token-privacy-stage {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body.token-product-page .apple-settings .token-privacy-stage .privacy-boundary {
    grid-template-columns: 1fr auto auto 1fr;
    justify-content: stretch;
    min-height: 42px;
  }

  body.token-product-page .apple-settings .token-privacy-stage .privacy-boundary i {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(29, 29, 31, 0.24), transparent);
  }

  html[data-theme="dark"] body.token-product-page .apple-settings .token-privacy-stage .privacy-boundary i {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  }
}

@media (max-width: 560px) {
  body.smart-prompt-page .smart-mechanism-grid {
    width: var(--premium-wide);
    gap: 14px;
  }

  body.smart-prompt-page .smart-mechanism-card {
    padding: 18px;
  }

  body.smart-prompt-page .smart-mechanism-card::before {
    inset: 12px;
  }

  body.smart-prompt-page .mechanism-flow-stage {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }

  body.smart-prompt-page .mechanism-flow-stage i {
    width: 1px;
    height: 28px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(29, 29, 31, 0.08), rgba(29, 29, 31, 0.32), rgba(29, 29, 31, 0.08));
  }

  html[data-theme="dark"] body.smart-prompt-page .mechanism-flow-stage i {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.06));
  }

  body.smart-prompt-page .flow-step {
    min-height: 96px;
  }

  body.smart-prompt-page .mechanism-compose {
    min-height: 104px;
    margin-top: 18px;
  }

  body.smart-prompt-page .mechanism-boundary-stage {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }

  body.smart-prompt-page .boundary-window,
  body.smart-prompt-page .boundary-insert {
    min-height: 156px;
  }

  body.smart-prompt-page .boundary-rail {
    grid-template-columns: 1fr auto 1fr;
    min-height: 30px;
  }

  body.smart-prompt-page .boundary-rail i {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(29, 29, 31, 0.26), transparent);
  }

  html[data-theme="dark"] body.smart-prompt-page .boundary-rail i {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  }

  body.token-product-page .token-signal-grid {
    width: var(--premium-wide);
    gap: 14px;
  }

  body.token-product-page .token-signal-card {
    padding: 18px;
  }

  body.token-product-page .token-signal-card::before {
    inset: 12px;
  }

  body.token-product-page .token-source-map,
  body.token-product-page .token-local-flow {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    margin-top: 32px;
  }

  body.token-product-page .signal-source-list {
    grid-template-columns: 1fr;
  }

  body.token-product-page .signal-source-list span {
    min-height: 58px;
  }

  body.token-product-page .signal-hub,
  body.token-product-page .signal-hud {
    min-height: 120px;
  }

  body.token-product-page .token-source-map > i {
    width: 1px;
    height: 28px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(29, 29, 31, 0.08), rgba(29, 29, 31, 0.32), rgba(29, 29, 31, 0.08));
  }

  html[data-theme="dark"] body.token-product-page .token-source-map > i {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.06));
  }

  body.token-product-page .local-muted-stack,
  body.token-product-page .local-live-stack {
    min-height: 220px;
    padding: 18px;
  }

  body.token-product-page .local-gate {
    grid-template-columns: 1fr auto 1fr;
    min-height: 30px;
  }

  body.token-product-page .local-gate i {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(29, 29, 31, 0.26), transparent);
  }

  html[data-theme="dark"] body.token-product-page .local-gate i {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  }

  body.token-product-page .apple-settings .token-privacy-stage {
    gap: 12px;
    padding: 12px;
  }

  body.token-product-page .apple-settings .token-privacy-stage::before {
    inset: 12px;
  }

  body.token-product-page .apple-settings .token-privacy-stage .privacy-column {
    min-height: 280px;
    padding: 18px;
  }

  body.token-product-page .apple-settings .token-privacy-stage .privacy-column strong {
    font-size: clamp(28px, 10vw, 42px);
  }
}

body.apple-product-page .product-spec-grid {
  display: grid;
  width: var(--premium-wide);
  gap: 24px;
  margin: 0 auto;
}

body.apple-product-page .product-spec-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.apple-product-page .product-spec-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 16%, rgba(29, 29, 31, 0.05), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 245, 247, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 30px 84px rgba(0, 0, 0, 0.09);
  padding: clamp(28px, 3vw, 44px);
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.apple-product-page .product-spec-card::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(29, 29, 31, 0.045);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

body.apple-product-page .product-spec-card:hover {
  border-color: rgba(29, 29, 31, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 40px 104px rgba(0, 0, 0, 0.13);
  transform: translateY(-5px);
}

body.apple-product-page .product-spec-card > span,
body.apple-product-page .product-boundary-sheet .boundary-sheet-row span {
  display: block;
  color: #86868b;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
}

body.apple-product-page .product-spec-card h3 {
  max-width: 10.5em;
  margin: clamp(40px, 5.6vw, 72px) 0 0;
  color: #1d1d1f;
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1.04;
  text-wrap: balance;
}

body.apple-product-page .product-spec-card p {
  max-width: 34em;
  margin: 20px 0 0;
  color: #6e6e73;
  font-size: 17px;
  font-weight: 560;
  line-height: 1.58;
}

body.apple-product-page .spec-list {
  display: grid;
  margin: clamp(36px, 4.2vw, 56px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(29, 29, 31, 0.1);
}

body.apple-product-page .spec-list li {
  display: grid;
  grid-template-columns: minmax(80px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  min-width: 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
}

body.apple-product-page .spec-list span {
  color: #86868b;
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0;
}

body.apple-product-page .spec-list strong {
  color: #1d1d1f;
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.18;
}

body.apple-product-page .product-boundary-sheet {
  display: grid;
  align-content: center;
  min-height: 430px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 16%, rgba(29, 29, 31, 0.05), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 245, 247, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 30px 84px rgba(0, 0, 0, 0.09);
  padding: clamp(28px, 3vw, 44px);
}

body.apple-product-page .apple-settings .product-boundary-sheet {
  display: grid;
  align-content: center;
  min-height: 430px;
  margin: 0;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 16%, rgba(29, 29, 31, 0.05), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 245, 247, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 30px 84px rgba(0, 0, 0, 0.09);
  padding: clamp(28px, 3vw, 44px);
}

body.apple-product-page .product-boundary-sheet .boundary-sheet-row {
  display: grid;
  grid-template-columns: minmax(70px, 0.24fr) minmax(0, 1fr) minmax(150px, 0.7fr);
  gap: 22px;
  align-items: baseline;
  min-width: 0;
  padding: 24px 0;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
}

body.apple-product-page .product-boundary-sheet .boundary-sheet-row:first-child {
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

body.apple-product-page .product-boundary-sheet strong {
  color: #1d1d1f;
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1.05;
}

body.apple-product-page .product-boundary-sheet em {
  color: #86868b;
  font-size: 15px;
  font-style: normal;
  font-weight: 640;
  letter-spacing: 0;
  line-height: 1.4;
}

body.apple-product-page .product-boundary-sheet .is-muted strong {
  color: #86868b;
}

html[data-theme="dark"] body.apple-product-page .product-spec-card,
html[data-theme="dark"] body.apple-product-page .product-boundary-sheet,
html[data-theme="dark"] body.apple-product-page .apple-settings .product-boundary-sheet {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(28, 28, 30, 0.84), rgba(10, 10, 12, 0.76));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 32px 90px rgba(0, 0, 0, 0.42);
}

html[data-theme="dark"] body.apple-product-page .product-spec-card::before {
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] body.apple-product-page .product-spec-card > span,
html[data-theme="dark"] body.apple-product-page .product-spec-card p,
html[data-theme="dark"] body.apple-product-page .spec-list span,
html[data-theme="dark"] body.apple-product-page .product-boundary-sheet .boundary-sheet-row span,
html[data-theme="dark"] body.apple-product-page .product-boundary-sheet em {
  color: #a1a1a6;
}

html[data-theme="dark"] body.apple-product-page .product-spec-card h3,
html[data-theme="dark"] body.apple-product-page .spec-list strong,
html[data-theme="dark"] body.apple-product-page .product-boundary-sheet strong {
  color: #f5f5f7;
}

html[data-theme="dark"] body.apple-product-page .spec-list,
html[data-theme="dark"] body.apple-product-page .spec-list li,
html[data-theme="dark"] body.apple-product-page .product-boundary-sheet .boundary-sheet-row,
html[data-theme="dark"] body.apple-product-page .product-boundary-sheet .boundary-sheet-row:first-child {
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] body.apple-product-page .product-boundary-sheet .is-muted strong {
  color: #a1a1a6;
}

@media (max-width: 980px) {
  body.apple-product-page .product-spec-grid-two {
    grid-template-columns: 1fr;
  }

  body.apple-product-page .product-spec-card,
  body.apple-product-page .product-boundary-sheet {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  body.apple-product-page .product-spec-grid {
    width: var(--premium-wide);
    gap: 14px;
  }

  body.apple-product-page .product-spec-card,
  body.apple-product-page .product-boundary-sheet {
    padding: 22px;
  }

  body.apple-product-page .product-spec-card::before {
    inset: 12px;
  }

  body.apple-product-page .product-spec-card h3 {
    margin-top: 34px;
    font-size: clamp(32px, 9.6vw, 40px);
  }

  body.apple-product-page .product-spec-card p {
    font-size: 15px;
  }

  body.apple-product-page .spec-list {
    margin-top: 30px;
  }

  body.apple-product-page .spec-list li,
  body.apple-product-page .product-boundary-sheet .boundary-sheet-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.apple-product-page .product-boundary-sheet strong {
    font-size: clamp(26px, 9vw, 38px);
  }
}

body.smart-prompt-page .smart-hero-composition {
  width: min(1040px, calc(100% - 48px));
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 246, 244, 0.84)),
    #f5f5f7;
  box-shadow: 0 38px 104px rgba(0, 0, 0, 0.14);
}

body.smart-prompt-page .smart-hero-board {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: clamp(300px, 34vw, 410px);
  grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.72fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 8px;
  padding: clamp(40px, 5.4vw, 70px) clamp(42px, 6.2vw, 84px);
  background:
    radial-gradient(circle at 78% 22%, rgba(11, 127, 120, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 250, 0.84));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 22px 60px rgba(27, 51, 50, 0.08);
}

body.smart-prompt-page .smart-hero-board::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.54), transparent 30%, transparent 78%, rgba(255, 255, 255, 0.08));
  content: "";
  pointer-events: none;
}

body.smart-prompt-page .smart-hero-copy,
body.smart-prompt-page .smart-hero-mascot {
  position: relative;
  z-index: 1;
}

body.smart-prompt-page .smart-hero-copy {
  display: grid;
  gap: clamp(20px, 2.4vw, 28px);
  justify-items: start;
}

body.smart-prompt-page .smart-hero-copy > span {
  color: #6e6e73;
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 780;
  line-height: 0.98;
}

body.smart-prompt-page .smart-hero-input {
  width: min(520px, 100%);
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 18px 48px rgba(0, 0, 0, 0.08);
}

body.smart-prompt-page .smart-hero-input small {
  display: block;
  color: #86868b;
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0;
}

body.smart-prompt-page .smart-hero-input strong {
  display: block;
  margin-top: 12px;
  color: #1d1d1f;
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 780;
  line-height: 1.05;
}

body.smart-prompt-page .smart-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

body.smart-prompt-page .smart-hero-actions b {
  display: inline-grid;
  min-width: 126px;
  min-height: 52px;
  place-items: center;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: #1d1d1f;
  font-size: 16px;
  font-weight: 760;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

body.smart-prompt-page .smart-hero-actions b:first-child {
  border-color: rgba(11, 127, 120, 0.32);
  background: rgba(11, 127, 120, 0.1);
  color: #0b6f69;
}

body.smart-prompt-page .smart-hero-mascot {
  display: grid;
  min-height: 230px;
  place-items: center;
}

body.smart-prompt-page .smart-hero-mascot span {
  position: absolute;
  top: 4px;
  left: 50%;
  display: inline-grid;
  min-width: 128px;
  min-height: 46px;
  place-items: center;
  border-radius: 999px;
  background: #161a1a;
  color: #fff;
  font-size: 18px;
  font-weight: 780;
  transform: translateX(-50%);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.14);
}

body.smart-prompt-page .smart-hero-mascot img {
  width: clamp(150px, 18vw, 230px);
  margin-top: 52px;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.12));
  animation: smartHeroMascotFloat 5s ease-in-out infinite;
}

@keyframes smartHeroMascotFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

html[data-theme="dark"] body.smart-prompt-page .smart-hero-composition {
  background:
    linear-gradient(180deg, rgba(29, 29, 31, 0.92), rgba(11, 17, 17, 0.86)),
    #101112;
  box-shadow: 0 42px 112px rgba(0, 0, 0, 0.42);
}

html[data-theme="dark"] body.smart-prompt-page .smart-hero-board {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 78% 22%, rgba(43, 174, 166, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(30, 31, 33, 0.92), rgba(13, 14, 15, 0.86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 70px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] body.smart-prompt-page .smart-hero-copy > span,
html[data-theme="dark"] body.smart-prompt-page .smart-hero-input small {
  color: #a1a1a6;
}

html[data-theme="dark"] body.smart-prompt-page .smart-hero-input,
html[data-theme="dark"] body.smart-prompt-page .smart-hero-actions b {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 18px 48px rgba(0, 0, 0, 0.26);
}

html[data-theme="dark"] body.smart-prompt-page .smart-hero-input strong,
html[data-theme="dark"] body.smart-prompt-page .smart-hero-actions b {
  color: #f5f5f7;
}

html[data-theme="dark"] body.smart-prompt-page .smart-hero-actions b:first-child {
  border-color: rgba(43, 174, 166, 0.4);
  background: rgba(43, 174, 166, 0.14);
  color: #8ee2db;
}

@media (max-width: 760px) {
  body.smart-prompt-page .smart-hero-composition {
    width: var(--premium-wide);
    padding: 10px;
  }

  body.smart-prompt-page .smart-hero-board {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: 0;
    padding: 28px 22px;
  }

  body.smart-prompt-page .smart-hero-copy {
    justify-items: stretch;
  }

  body.smart-prompt-page .smart-hero-copy > span {
    font-size: clamp(30px, 10vw, 40px);
  }

  body.smart-prompt-page .smart-hero-input strong {
    font-size: clamp(26px, 8.5vw, 34px);
  }

  body.smart-prompt-page .smart-hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.smart-prompt-page .smart-hero-actions b {
    min-width: 0;
  }

  body.smart-prompt-page .smart-hero-mascot {
    min-height: 180px;
  }

  body.smart-prompt-page .smart-hero-mascot img {
    width: min(170px, 48vw);
  }
}

body.apple-product-page .project-video-device {
  width: min(1160px, calc(100% - 48px));
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 243, 242, 0.82)),
    #f5f5f7;
  box-shadow: 0 42px 112px rgba(0, 0, 0, 0.14);
}

body.apple-product-page .project-demo-video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: #f5f5f7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  object-fit: cover;
}

body.apple-product-page .motion-showcase-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
}

body.apple-product-page .motion-video-shot {
  padding: 12px;
}

body.apple-product-page .motion-video-shot .project-demo-video {
  min-height: 420px;
}

body.apple-product-page .motion-cinematic-video {
  padding: 12px;
}

body.apple-product-page .motion-cinematic-video .project-demo-video {
  border-color: rgba(255, 255, 255, 0.12);
  background: #050506;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

body.apple-product-page .motion-proof-grid {
  display: grid;
  width: min(1120px, 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

body.apple-product-page .motion-proof-grid article {
  position: relative;
  overflow: hidden;
  min-height: 248px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 8px;
  padding: 26px;
  background:
    radial-gradient(circle at 82% 18%, rgba(11, 127, 120, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 28px 76px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.apple-product-page .motion-proof-grid article::after {
  position: absolute;
  inset: 1px;
  border-radius: 7px;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.72), transparent 38%);
  content: "";
  pointer-events: none;
}

body.apple-product-page .motion-proof-grid article:hover {
  border-color: rgba(29, 29, 31, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 38px 92px rgba(0, 0, 0, 0.14);
  transform: translateY(-6px);
}

body.apple-product-page .motion-proof-grid span,
body.apple-product-page .motion-proof-grid strong {
  position: relative;
  z-index: 1;
  display: block;
}

body.apple-product-page .motion-proof-grid span {
  color: #86868b;
  font-size: 13px;
  font-weight: 820;
}

body.apple-product-page .motion-proof-grid strong {
  margin-top: 86px;
  color: #1d1d1f;
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 860;
  line-height: 1;
  overflow-wrap: anywhere;
}

body.token-product-page .token-video-device {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 240, 235, 0.82)),
    #f5f5f7;
}

body.token-product-page .token-proof-grid article {
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 151, 47, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.74);
}

html[data-theme="dark"] body.apple-product-page .project-video-device,
html[data-theme="dark"] body.apple-product-page .motion-proof-grid article {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(28, 28, 30, 0.9), rgba(12, 12, 14, 0.82));
  box-shadow: 0 42px 112px rgba(0, 0, 0, 0.44);
}

html[data-theme="dark"] body.apple-product-page .project-demo-video {
  border-color: rgba(255, 255, 255, 0.1);
  background: #111114;
  box-shadow: none;
}

html[data-theme="dark"] body.apple-product-page .motion-proof-grid span {
  color: #a1a1a6;
}

html[data-theme="dark"] body.apple-product-page .motion-proof-grid strong {
  color: #f5f5f7;
}

@media (max-width: 980px) {
  body.apple-product-page .motion-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.apple-product-page .motion-proof-grid article {
    min-height: 210px;
  }

  body.apple-product-page .motion-proof-grid strong {
    margin-top: 58px;
  }
}

@media (max-width: 760px) {
  body.apple-product-page .project-video-device {
    width: var(--premium-wide);
    overflow: hidden;
    padding: 0;
  }

  body.apple-product-page .project-video-device .project-demo-video {
    border: 0;
    border-radius: 8px;
    transform: scale(1.28);
  }

  body.token-product-page .project-video-device .project-demo-video {
    transform: scale(1.14);
  }

  body.apple-product-page .motion-video-shot {
    padding: 10px;
  }

  body.apple-product-page .motion-video-shot .project-demo-video {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  body.apple-product-page .motion-proof-grid {
    width: var(--premium-wide);
    grid-template-columns: 1fr;
  }

  body.apple-product-page .motion-proof-grid article {
    min-height: 168px;
    padding: 22px;
  }

  body.apple-product-page .motion-proof-grid strong {
    margin-top: 34px;
    font-size: clamp(34px, 11vw, 48px);
  }
}
