:root {
  color-scheme: light;
  --bg: #fbfaf7;
  --surface: #ffffff;
  --surface-soft: #f3f1eb;
  --ink: #090909;
  --muted: #73706a;
  --faint: #aaa59b;
  --line: #e6e2da;
  --line-soft: rgba(9, 9, 9, 0.055);
  --accent: #ff4a3d;
  --accent-dark: #df2f26;
  --display-font: Georgia, "Times New Roman", serif;
  --headline-size: clamp(44px, 4.7vw, 64px);
  --headline-size-mobile: clamp(34px, 9.6vw, 44px);
  --gallery-headline-size: clamp(36px, 3.7vw, 50px);
  --gallery-headline-size-mobile: clamp(31px, 8.1vw, 36px);
  --copy-size: clamp(18px, 1.55vw, 22px);
  --copy-size-mobile: 18px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: auto;
  background: var(--bg);
  color: var(--ink);
  -webkit-tap-highlight-color: transparent;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

body.is-demo-modal-open {
  overflow: hidden;
}

main {
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body,
  main {
    overflow-x: clip;
  }
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1260px, calc(100% - 48px));
  height: 72px;
  margin: 0 auto;
}

.brand,
.nav-links,
.sign-in {
  display: flex;
  align-items: center;
}

.brand {
  gap: 9px;
  font-size: 15px;
  font-weight: 800;
}

.brand img {
  width: 28px;
  height: 24px;
}

.nav-links {
  justify-content: center;
  gap: 40px;
  color: #67645f;
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.nav-links a,
.sign-in {
  transition: color 160ms ease;
}

.nav-links a:hover,
.sign-in:hover {
  color: var(--ink);
}

.sign-in {
  justify-self: end;
  color: #67645f;
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

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

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

.home-page .site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 20;
  grid-template-columns: 1fr auto;
  width: min(1060px, calc(100% - 64px));
  height: 104px;
  transform: translateX(-50%);
}

.home-page .brand {
  gap: 10px;
  font-size: 28px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.home-page .brand img {
  width: 38px;
  height: 34px;
}

.home-page .nav-links {
  display: none;
}

.home-page .sign-in {
  justify-self: end;
  margin-right: 12px;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, #2d2d2c, #0a0a0a);
  color: #fffefa;
  font-size: 15px;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 14px 34px rgba(9, 9, 9, 0.22);
}

.frame-hero {
  position: relative;
  display: grid;
  min-height: min(790px, 100vh);
  place-items: center;
  overflow: hidden;
  padding: 188px 24px 148px;
  background: #eeeeec;
  isolation: isolate;
}

.frame-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(180, 174, 165, 0.18), transparent 24%, transparent 76%, rgba(180, 174, 165, 0.16)),
    linear-gradient(180deg, #f1f1ef 0%, #e9e8e5 100%);
}

.frame-hero::after {
  content: "";
  position: absolute;
  inset: 18% 12%;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent, rgba(135, 126, 112, 0.22), transparent),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  filter: blur(54px);
  pointer-events: none;
}

.frame-hero-center {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(760px, 100%);
  text-align: center;
}

.frame-pill,
.frame-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 0 16px;
  border: 1px solid rgba(9, 9, 9, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(9, 9, 9, 0.68);
  font-size: 13px;
  font-weight: 720;
}

.frame-pill {
  min-height: 42px;
  padding: 0 20px;
  color: rgba(9, 9, 9, 0.68);
  font-family: var(--display-font);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  box-shadow: 0 12px 24px rgba(9, 9, 9, 0.06);
}

.frame-kicker {
  color: var(--accent-dark);
  font-size: 12px;
  font-style: normal;
  text-transform: uppercase;
}

.frame-kicker-dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.frame-hero-center h1,
.frame-section-head h2,
.frame-dark-copy h2,
.frame-split-copy h2,
.frame-agent-copy h2 {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-weight: 830;
  letter-spacing: -0.04em;
}

.frame-hero-center h1 {
  max-width: 760px;
  font-size: clamp(54px, 5vw, 72px);
  line-height: 0.96;
  white-space: normal;
}

.frame-hero-center h1 em {
  display: inline;
  font-family: var(--display-font);
  font-size: 0.9em;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.frame-hero-center > p:not(.frame-pill) {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(9, 9, 9, 0.64);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
}

.frame-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 62px;
}

.frame-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 194px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 780;
  box-shadow: 0 18px 44px rgba(9, 9, 9, 0.14);
}

.frame-button-dark {
  border: 1px solid rgba(0, 0, 0, 0.9);
  background: linear-gradient(180deg, #2c2c2a, #090909);
  color: #fffefa;
}

.frame-button-light {
  border: 1px solid rgba(9, 9, 9, 0.08);
  background: rgba(255, 255, 255, 0.88);
  color: #121212;
}

.frame-float-card {
  position: absolute;
  z-index: 1;
  width: clamp(150px, 13.6vw, 194px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: #101010;
  box-shadow: 0 24px 70px rgba(9, 9, 9, 0.22);
}

.frame-float-card video,
.frame-style-strip video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-float-left {
  top: 70px;
  left: max(8px, calc(50% - 632px));
  transform: rotate(-3deg);
}

.frame-float-top {
  top: -132px;
  left: calc(50% - 78px);
  transform: rotate(2deg);
}

.frame-float-right {
  top: 52px;
  right: max(18px, calc(50% - 624px));
  transform: rotate(5deg);
}

.frame-float-bottom {
  bottom: -150px;
  left: calc(50% - 78px);
  transform: rotate(-2deg);
}

.frame-float-lower-left {
  bottom: -138px;
  left: max(112px, calc(50% - 514px));
  transform: rotate(2deg);
}

.frame-float-lower-right {
  right: max(92px, calc(50% - 502px));
  bottom: -130px;
  transform: rotate(-3deg);
}

.frame-section {
  padding: 96px 24px;
}

.frame-section-head,
.frame-workflow-grid,
.frame-split,
.frame-feature-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.frame-section-head {
  margin-bottom: 34px;
}

.frame-section-head-center {
  display: grid;
  justify-items: center;
  text-align: center;
}

.frame-section-head h2,
.frame-dark-copy h2,
.frame-split-copy h2,
.frame-agent-copy h2 {
  max-width: 880px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
}

.frame-workflow {
  background: var(--bg);
}

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

.frame-step-card,
.frame-feature-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffefa;
  box-shadow: 0 20px 54px rgba(9, 9, 9, 0.06);
}

.frame-step-card {
  padding: 16px;
}

.frame-step-visual {
  display: grid;
  align-content: space-between;
  min-height: 300px;
  margin-bottom: 18px;
  padding: 20px;
  overflow: hidden;
  border-radius: 14px;
  color: #fffefa;
}

.frame-step-visual span {
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 820;
}

.frame-step-visual strong {
  font-size: 30px;
  line-height: 1;
}

.frame-step-visual p {
  margin: 10px 0 0;
  color: rgba(255, 250, 241, 0.68);
  line-height: 1.36;
}

.frame-step-style {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(135deg, #111, #3b3731);
}

.frame-step-offer {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, #2d5c49, #10100f);
  background-size: 34px 34px, auto;
}

.frame-step-review {
  background:
    linear-gradient(135deg, rgba(244, 200, 78, 0.2), transparent 40%),
    linear-gradient(135deg, #111, #4c1915);
}

.frame-step-card h3,
.frame-feature-grid h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
}

.frame-step-card > p,
.frame-feature-grid p,
.frame-split-copy p,
.frame-agent-copy p,
.frame-dark-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.48;
}

.frame-dark-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: 108px max(24px, calc((100vw - 1160px) / 2));
  background: #080808;
  color: #fffefa;
}

.frame-dark-copy p {
  max-width: 560px;
  color: rgba(255, 250, 241, 0.62);
  font-size: 19px;
}

.frame-dark-board {
  display: grid;
  gap: 12px;
}

.frame-board-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 78px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.frame-board-row.is-active {
  background: rgba(255, 74, 61, 0.16);
}

.frame-board-row span {
  color: rgba(255, 250, 241, 0.48);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.frame-board-row strong {
  font-size: 20px;
}

.frame-showcase {
  overflow: hidden;
  background: #eeeeec;
}

.frame-style-strip {
  display: grid;
  grid-auto-columns: minmax(248px, 300px);
  grid-auto-flow: column;
  gap: 18px;
  width: min(1196px, calc(100% + 36px));
  margin: 0 auto;
  padding: 0 18px 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
}

.frame-style-strip article {
  display: grid;
  grid-template-rows: 420px auto;
  overflow: hidden;
  border: 1px solid rgba(9, 9, 9, 0.1);
  border-radius: 18px;
  background: #fffefa;
  box-shadow: 0 22px 58px rgba(9, 9, 9, 0.12);
  scroll-snap-align: start;
}

.frame-style-strip div {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.frame-style-strip span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.frame-style-strip strong {
  font-size: 22px;
}

.frame-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.frame-split-copy p,
.frame-agent-copy p {
  max-width: 560px;
  font-size: 19px;
}

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

.frame-input-grid span {
  display: grid;
  min-height: 104px;
  place-items: center;
  border: 1px solid rgba(9, 9, 9, 0.09);
  border-radius: 16px;
  background: #fffefa;
  font-size: 18px;
  font-weight: 820;
}

.frame-input-grid span:nth-child(2),
.frame-input-grid span:nth-child(5) {
  background: #090909;
  color: #fffefa;
}

.frame-agent-section {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: 110px max(24px, calc((100vw - 1160px) / 2));
  background: #10100f;
  color: #fffefa;
}

.frame-agent-panel {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.frame-chat-window {
  display: grid;
  gap: 12px;
  min-height: 440px;
  align-content: center;
  padding: clamp(18px, 4vw, 38px);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  background-size: 36px 36px, auto;
}

.frame-chat-window p {
  width: fit-content;
  max-width: 82%;
  margin: 0;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 250, 241, 0.78);
  line-height: 1.35;
}

.frame-chat-window p:nth-child(even) {
  justify-self: end;
  background: var(--accent);
  color: #fffefa;
}

.frame-agent-copy p {
  color: rgba(255, 250, 241, 0.62);
}

.frame-feature-wall {
  background: var(--bg);
}

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

.frame-feature-grid article {
  min-height: 220px;
  padding: 22px;
}

.frame-feature-grid span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.frame-feature-grid h3 {
  margin-top: 54px;
  font-size: 22px;
}

.arc-model-section {
  padding: 42px max(24px, calc((100vw - 1100px) / 2)) 106px;
  background: #eeeeec;
}

.arc-section-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  margin: 0 auto 12px;
  padding: 0 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 40px rgba(9, 9, 9, 0.08);
}

.arc-section-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.arc-section-logo img {
  width: 30px;
  height: 26px;
}

.arc-section-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, #2c2c2a, #090909);
  color: #fffefa;
  font-size: 15px;
  font-weight: 780;
  box-shadow: 0 14px 34px rgba(9, 9, 9, 0.2);
}

.arc-section-bar-dark {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 3;
  width: min(1096px, calc(100% - 48px));
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.48);
  color: #101010;
  backdrop-filter: blur(14px);
}

.arc-model-copy,
.arc-social-copy,
.arc-feature-hero,
.arc-agent-copy {
  width: min(1000px, 100%);
}

.arc-model-copy {
  margin: 0 auto 34px;
}

.arc-model-copy h2,
.arc-social-copy h2,
.arc-feature-hero h2,
.arc-agent-copy h2 {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 820;
  line-height: 1;
  letter-spacing: -0.04em;
}

.arc-model-copy h2 em,
.arc-social-copy h2 em,
.arc-feature-hero h2 em,
.arc-agent-copy h2 em {
  font-family: var(--display-font);
  font-size: 0.92em;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.arc-model-copy p,
.arc-social-copy p,
.arc-feature-hero p,
.arc-agent-copy p {
  max-width: 820px;
  margin: 18px 0 0;
  color: rgba(9, 9, 9, 0.68);
  font-size: 20px;
  line-height: 1.45;
}

.arc-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(1000px, 100%);
  margin: 0 auto;
}

.arc-tool-grid article h3 {
  margin: 18px 0 0;
  font-family: var(--display-font);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
}

.arc-tool-grid article p {
  margin: 12px 0 0;
  color: rgba(9, 9, 9, 0.66);
  line-height: 1.45;
}

.arc-tool-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 14px;
  background: #0a0a0a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.arc-tool-model {
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #020202, #141414);
  background-size: 32px 32px, auto;
}

.arc-tool-model strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  width: min(280px, calc(100% - 32px));
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.36);
  color: #fffefa;
  backdrop-filter: blur(12px);
}

.arc-tool-model > span {
  position: absolute;
  top: 42%;
  left: 44px;
  color: rgba(255, 255, 255, 0.76);
}

.arc-tool-edit video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.arc-tool-edit > span:not(.video-poster-reveal) {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(146px, calc((100% - 72px) / 2));
  min-width: 0;
  min-height: 52px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.28);
  color: #fffefa;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.12;
  text-align: center;
  backdrop-filter: blur(12px);
}

.arc-tool-edit > span:not(.video-poster-reveal):nth-last-of-type(4) { left: 28px; bottom: 96px; }
.arc-tool-edit > span:not(.video-poster-reveal):nth-last-of-type(3) { right: 28px; bottom: 96px; }
.arc-tool-edit > span:not(.video-poster-reveal):nth-last-of-type(2) { left: 28px; bottom: 30px; }
.arc-tool-edit > span:not(.video-poster-reveal):nth-last-of-type(1) { right: 28px; bottom: 30px; }

.arc-tool-formats {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    #111;
}

.arc-tool-formats span {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.3);
  color: #fffefa;
  font-size: 24px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.arc-workflow-panel,
.arc-social-panel,
.arc-feature-panel,
.arc-agent-panel {
  background: #101010;
  color: #fffefa;
}

.arc-workflow-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 40px;
  min-height: 620px;
  padding: 126px max(24px, calc((100vw - 1100px) / 2)) 84px;
}

.arc-workflow-copy h2,
.arc-workflow-copy p {
  max-width: 430px;
}

.arc-workflow-copy h2 {
  margin: 0;
  font-size: clamp(42px, 4.6vw, 58px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.arc-workflow-copy h2 em {
  display: block;
  font-family: var(--display-font);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.arc-workflow-title-note {
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  margin-left: 0.18em;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.12em;
}

.arc-workflow-title-note path,
.arc-workflow-title-note circle {
  vector-effect: non-scaling-stroke;
}

.arc-workflow-copy p {
  margin: 22px 0 34px;
  color: rgba(255, 250, 241, 0.58);
  font-size: 20px;
  line-height: 1.48;
}

.arc-workflow-canvas {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    #080808;
  background-size: 18px 18px, auto;
}

.arc-canvas-node {
  position: absolute;
  display: grid;
  min-width: 150px;
  min-height: 74px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 250, 241, 0.82);
  font-weight: 780;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
}

.node-1 { top: 64px; left: 64px; }
.node-2 { top: 162px; right: 82px; }
.node-3 { bottom: 92px; left: 118px; }
.node-4 { right: 118px; bottom: 36px; background: rgba(255, 74, 61, 0.24); }

.arc-social-panel {
  padding: 96px max(24px, calc((100vw - 1100px) / 2)) 118px;
  overflow: hidden;
}

.arc-social-copy {
  display: grid;
  justify-items: center;
  margin: 0 auto;
  text-align: center;
}

.arc-social-copy h2 {
  color: #fffefa;
}

.arc-social-copy p {
  color: rgba(255, 250, 241, 0.58);
}

.arc-social-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 38px auto 48px;
  max-width: 100%;
}

.arc-social-tabs button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  min-width: 300px;
  min-height: 88px;
  padding: 18px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: #fffefa;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.arc-social-tabs button:hover,
.arc-social-tabs button[aria-selected="true"] {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
}

.arc-social-tabs button:focus-visible {
  outline: 2px solid rgba(248, 246, 239, 0.86);
  outline-offset: 4px;
}

.arc-social-tabs button > span {
  display: grid;
  gap: 5px;
}

.arc-social-tabs i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: conic-gradient(from 90deg, #ff4a3d, #f4c84e, #6e8df0, #ff4a3d);
}

.arc-social-tabs small {
  display: block;
  color: rgba(255, 250, 241, 0.46);
  font-size: 0.86em;
}

.arc-social-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 260px);
  justify-content: center;
  gap: 26px;
  min-height: 520px;
  width: min(1000px, 100%);
  margin: 0 auto;
  padding: 44px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #161616, #0c0c0c);
}

.arc-social-stage::before {
  content: none;
}

.arc-social-stage article {
  position: relative;
  height: 410px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: #202020;
}

.arc-social-stage [data-social-clone] {
  display: none;
}

.arc-social-stage.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.arc-social-stage video,
.arc-feature-grid video,
.arc-wide-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arc-social-stage article:nth-child(1) { transform: translateY(34px); }
.arc-social-stage article:nth-child(2) { transform: translateY(74px); }
.arc-social-stage article:nth-child(3) { transform: translateY(20px); }
.arc-social-stage article:nth-child(4) { transform: translateY(54px); }

.arc-social-stage article span {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(47, 184, 121, 0.18);
  color: #a8f0cc;
  font-size: 11px;
  font-weight: 820;
}

.arc-thought-panel {
  padding: 106px max(24px, calc((100vw - 1100px) / 2)) 118px;
  overflow: hidden;
  background: #EFEEEA;
}

.arc-social-copy-light h2 {
  color: #090909;
}

.arc-social-copy-light p {
  color: rgba(9, 9, 9, 0.6);
}

.arc-agent-logo-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 14px;
  margin: 24px 0 0;
}

.arc-agent-logo-row img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.arc-quote-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin: 42px auto 72px;
  width: min(980px, 100%);
}

.arc-quote-row article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(9, 9, 9, 0.07);
}

.arc-quote-row article > span {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 74, 61, 0.18), rgba(9, 9, 9, 0.12));
}

.arc-quote-row p {
  margin: 4px 0 0;
  color: rgba(9, 9, 9, 0.58);
  font-size: 14px;
}

.arc-wide-video {
  width: min(1000px, 100%);
  height: min(560px, 58vw);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
  box-shadow: 0 28px 80px rgba(9, 9, 9, 0.16);
}

.arc-feature-panel {
  padding: 88px max(24px, calc((100vw - 1100px) / 2)) 118px;
}

.arc-feature-hero {
  min-height: 470px;
  padding: 86px 60px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #030303, #181818);
}

.arc-feature-hero h2,
.arc-agent-copy h2 {
  max-width: 620px;
  color: #fffefa;
}

.arc-feature-hero p,
.arc-agent-copy p {
  max-width: 560px;
  color: rgba(255, 250, 241, 0.58);
}

.arc-feature-hero .frame-button,
.arc-agent-copy .frame-button {
  width: fit-content;
  margin-top: 34px;
}

.arc-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 26px;
  margin-top: 26px;
}

.arc-feature-grid article {
  height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: #060606;
}

.arc-agent-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
  padding: 110px max(24px, calc((100vw - 1100px) / 2));
}

.arc-agent-window {
  display: grid;
  gap: 12px;
  min-height: 520px;
  align-content: center;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    #080808;
  background-size: 18px 18px, auto;
}

.arc-agent-window > p {
  width: fit-content;
  max-width: 82%;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 250, 241, 0.78);
}

.arc-agent-window > p:nth-of-type(odd) {
  justify-self: end;
  background: var(--accent);
  color: #fffefa;
}

.hero {
  position: relative;
  z-index: 1;
  width: min(1088px, calc(100% - 48px));
  margin: 126px auto 0;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin: 0 0 22px;
  padding: 0 12px;
  border: 1px solid rgba(255, 74, 61, 0.18);
  border-radius: 999px;
  background: rgba(255, 74, 61, 0.055);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: var(--display-font);
  font-size: var(--gallery-headline-size);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
  white-space: nowrap;
}

h1 span {
  display: inline;
}

.hero-copy {
  max-width: 780px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: var(--copy-size);
  line-height: 1.42;
}

.watch-link {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.watch-text {
  padding-bottom: 3px;
  background-image: radial-gradient(circle, var(--accent) 1.6px, transparent 1.9px);
  background-repeat: repeat-x;
  background-position: 0 100%;
  background-size: 9px 4px;
}

.watch-link svg {
  width: 18px;
  height: 18px;
  margin-left: 6px;
  color: var(--accent);
  vertical-align: -3px;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px) saturate(1.05);
}

.demo-modal[hidden] {
  display: none;
}

.demo-modal-panel {
  position: relative;
  width: min(920px, 100%);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: #050505;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.52);
}

.demo-video-frame,
.demo-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
}

.demo-video-frame video {
  background: #050505;
}

.demo-video-fallback,
.demo-video-loading {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 28px;
  border-radius: inherit;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
}

.demo-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.68);
  color: #fffefa;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px) saturate(1.08);
}

.demo-modal-close:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #111;
}

.demo-modal-close svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
}

.morph-strip {
  --morph-track-pad: 34px;
  --morph-duration: 10.2s;
  --morph-start-x: -344px;
  --morph-approach-x: -86px;
  --morph-focus-x: -29px;
  --morph-exit-x: 33px;
  --morph-end-x: 344px;
  --morph-reduced-x: -24px;
  position: relative;
  width: min(520px, 100%);
  height: 86px;
  margin: 30px auto 0;
  overflow: visible;
  border-radius: 999px;
  background: transparent;
  contain: layout;
  container-type: inline-size;
}

.morph-strip::before {
  content: none;
}

.morph-strip::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -28px;
  left: 50%;
  width: min(760px, 100vw);
  height: 164px;
  background:
    radial-gradient(ellipse at 50% 52%, rgba(255, 74, 61, 0.075) 0 36%, rgba(255, 198, 71, 0.038) 56%, rgba(251, 250, 247, 0) 82%);
  opacity: 0.9;
  mask-image: radial-gradient(ellipse at center, #000 0 48%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 48%, transparent 76%);
  pointer-events: none;
  transform: translateX(-50%);
}

.morph-track {
  position: absolute;
  z-index: 1;
  top: calc(var(--morph-track-pad) * -1);
  right: 0;
  bottom: calc(var(--morph-track-pad) * -1);
  left: 0;
  overflow: hidden;
  contain: layout paint;
  mask-image: linear-gradient(90deg, transparent 0%, #000 13%, #000 87%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 13%, #000 87%, transparent 100%);
}

.morph-tile {
  position: absolute;
  top: calc(var(--morph-track-pad) + 19px);
  left: 50%;
  width: 48px;
  height: 48px;
  --morph-tile-half: 24px;
  --scatter-start-y: -12px;
  --scatter-mid-y: 8px;
  --scatter-start-rotate: -9deg;
  --scatter-mid-rotate: -4deg;
  overflow: hidden;
  border-radius: 18px 13px 16px 14px / 14px 18px 13px 17px;
  box-shadow:
    0 10px 24px rgba(9, 9, 9, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
  animation: morph-tile-flow var(--morph-duration) linear infinite;
  backface-visibility: hidden;
  transform: translate3d(var(--morph-start-x), var(--scatter-start-y), 0) scale(0.78) rotate(var(--scatter-start-rotate));
  will-change: transform, opacity;
}

@supports (width: 1cqw) {
  .morph-tile {
    --morph-start-x: calc(-50cqw - 84px);
    --morph-approach-x: calc(-12cqw - var(--morph-tile-half));
    --morph-focus-x: calc(-1cqw - var(--morph-tile-half));
    --morph-exit-x: calc(11cqw - var(--morph-tile-half));
    --morph-end-x: calc(50cqw + 84px);
  }
}

.morph-media {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 70% 25%, rgba(255, 255, 255, 0.78) 0 8%, transparent 9%),
    linear-gradient(150deg, var(--concept-start), var(--concept-end));
  transition: opacity 180ms ease;
}

.morph-media::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 9px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 -10px 0 rgba(255, 255, 255, 0.58);
}

.morph-media::after {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 9px;
  width: 16px;
  height: 22px;
  border-radius: 10px 10px 5px 5px;
  background: rgba(255, 255, 255, 0.58);
}

.morph-media-before {
  opacity: 1;
  animation: morph-before-flow var(--morph-duration) linear infinite;
}

.morph-media-after {
  opacity: 0;
  background:
    radial-gradient(circle at 70% 25%, rgba(255, 255, 255, 0.78) 0 8%, transparent 9%),
    linear-gradient(150deg, #ff4a3d 0%, #9f2626 58%, #111 100%);
  animation: morph-after-flow var(--morph-duration) linear infinite;
}

.morph-tile-1 {
  --concept-start: #69c08d;
  --concept-end: #f0c961;
  --scatter-start-y: -13px;
  --scatter-mid-y: 9px;
  --scatter-start-rotate: -12deg;
  --scatter-mid-rotate: -6deg;
  animation-delay: -0.6s;
}

.morph-tile-1 .morph-media {
  animation-delay: -0.6s;
}

.morph-tile-2 {
  --concept-start: #6e8df0;
  --concept-end: #d25d54;
  --scatter-start-y: 12px;
  --scatter-mid-y: -8px;
  --scatter-start-rotate: 9deg;
  --scatter-mid-rotate: 5deg;
  animation-delay: -2.4s;
}

.morph-tile-2 .morph-media {
  animation-delay: -2.4s;
}

.morph-tile-3 {
  --concept-start: #f1b85c;
  --concept-end: #5b3f78;
  --scatter-start-y: -4px;
  --scatter-mid-y: 15px;
  --scatter-start-rotate: -5deg;
  --scatter-mid-rotate: 7deg;
  animation-delay: -4.2s;
}

.morph-tile-3 .morph-media {
  animation-delay: -4.2s;
}

.morph-tile-4 {
  --concept-start: #78d6c6;
  --concept-end: #293d62;
  --scatter-start-y: 16px;
  --scatter-mid-y: 4px;
  --scatter-start-rotate: 13deg;
  --scatter-mid-rotate: -3deg;
  animation-delay: -6s;
}

.morph-tile-4 .morph-media {
  animation-delay: -6s;
}

.morph-tile-5 {
  --concept-start: #ef7f5a;
  --concept-end: #322b2b;
  --scatter-start-y: -17px;
  --scatter-mid-y: -12px;
  --scatter-start-rotate: -10deg;
  --scatter-mid-rotate: 4deg;
  animation-delay: -7.8s;
}

.morph-tile-5 .morph-media {
  animation-delay: -7.8s;
}

.morph-tile-6 {
  --concept-start: #8cb5ff;
  --concept-end: #f5d06d;
  --scatter-start-y: 7px;
  --scatter-mid-y: -15px;
  --scatter-start-rotate: 6deg;
  --scatter-mid-rotate: -7deg;
  animation-delay: -9.6s;
}

.morph-tile-6 .morph-media {
  animation-delay: -9.6s;
}

.morph-lens {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 50%;
  width: 104px;
  height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 46% 54% 43% 57% / 56% 41% 59% 44%;
  background:
    repeating-linear-gradient(108deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(18deg, rgba(255, 74, 61, 0.12) 0 1px, transparent 1px 13px),
    radial-gradient(ellipse at 26% 76%, rgba(255, 198, 71, 0.2), transparent 40%),
    radial-gradient(ellipse at 82% 24%, rgba(255, 74, 61, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.1));
  box-shadow:
    0 14px 38px rgba(255, 74, 61, 0.14),
    inset 0 1px 12px rgba(255, 255, 255, 0.58),
    inset 0 -16px 24px rgba(255, 255, 255, 0.14);
  pointer-events: none;
  transform: translateX(-50%);
  backdrop-filter: blur(8px) saturate(1.45);
  animation: morph-lens-pulse 8.6s ease-in-out infinite;
  will-change: transform, opacity;
}

.morph-lens::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: inherit;
  background: conic-gradient(from 120deg, transparent, rgba(255, 74, 61, 0.18), rgba(255, 198, 71, 0.18), transparent 72%);
  filter: blur(6px);
  opacity: 0.62;
  animation: morph-lens-orbit 11.5s ease-in-out infinite;
  will-change: transform, opacity;
}

.morph-lens::after {
  content: "";
  position: absolute;
  inset: 8px 13px;
  border-radius: 58% 42% 51% 49% / 47% 60% 40% 53%;
  background:
    repeating-linear-gradient(96deg, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px 7px),
    linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  filter: blur(0.25px);
  opacity: 0.56;
  mix-blend-mode: screen;
  animation: morph-lens-ripple 9.4s ease-in-out infinite;
  will-change: transform, opacity;
}

.morph-lens span {
  position: absolute;
  inset: 13px 18px;
  border-radius: 54% 46% 48% 52% / 44% 53% 47% 56%;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent),
    repeating-linear-gradient(172deg, rgba(255, 255, 255, 0.17) 0 1px, transparent 1px 8px);
  filter: blur(1.2px);
  opacity: 0.58;
  animation: morph-lens-core 10.2s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes morph-tile-flow {
  0% {
    opacity: 0;
    transform: translate3d(var(--morph-start-x), var(--scatter-start-y), 0) scale(0.78) rotate(var(--scatter-start-rotate));
  }

  7% {
    opacity: 0;
  }

  14% {
    opacity: 1;
  }

  38% {
    transform: translate3d(var(--morph-approach-x), var(--scatter-mid-y), 0) scale(0.94) rotate(var(--scatter-mid-rotate));
  }

  49% {
    transform: translate3d(var(--morph-focus-x), 0, 0) scale(1.12, 0.96) rotate(1deg) skewX(-2deg);
  }

  61% {
    transform: translate3d(var(--morph-exit-x), 0, 0) scale(1) rotate(0deg);
  }

  87% {
    opacity: 1;
  }

  96% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--morph-end-x), 0, 0) scale(0.86) rotate(0deg);
  }
}

@keyframes morph-before-flow {
  0%,
  43% {
    opacity: 1;
  }

  50% {
    opacity: 0.38;
  }

  58%,
  100% {
    opacity: 0;
  }
}

@keyframes morph-after-flow {
  0%,
  44% {
    opacity: 0;
  }

  50% {
    opacity: 0.46;
  }

  58%,
  100% {
    opacity: 1;
  }
}

@keyframes morph-lens-pulse {
  0% {
    transform: translateX(-50%) translateY(0) scale(1) rotate(-1.5deg) skewX(1.5deg);
  }

  18% {
    transform: translateX(-50%) translateY(-2px) scale(1.04, 0.98) rotate(1.8deg) skewX(-2deg);
  }

  43% {
    transform: translateX(-50%) translateY(2px) scale(0.98, 1.05) rotate(-2deg) skewX(2.2deg);
  }

  72% {
    transform: translateX(-50%) translateY(-1px) scale(1.04, 0.99) rotate(1.4deg) skewX(-1.8deg);
  }

  100% {
    transform: translateX(-50%) translateY(0) scale(1) rotate(-1.5deg) skewX(1.5deg);
  }
}

@keyframes morph-lens-orbit {
  0% {
    transform: translate(-5px, 2px) rotate(0deg) scale(0.96, 1.05);
    opacity: 0.62;
  }

  35% {
    transform: translate(6px, -4px) rotate(48deg) scale(1.07, 0.96);
    opacity: 0.9;
  }

  70% {
    transform: translate(-3px, 5px) rotate(104deg) scale(0.98, 1.06);
    opacity: 0.76;
  }

  100% {
    transform: translate(-5px, 2px) rotate(360deg) scale(0.96, 1.05);
    opacity: 0.62;
  }
}

@keyframes morph-lens-core {
  0%,
  100% {
    opacity: 0.44;
    transform: translate(-7px, 2px) scale(0.92, 1.08) rotate(-6deg);
  }

  50% {
    opacity: 0.82;
    transform: translate(8px, -3px) scale(1.12, 0.94) rotate(7deg);
  }
}

@keyframes morph-lens-ripple {
  0% {
    transform: translate(-8px, 3px) scale(0.9, 1.08) rotate(-7deg);
    opacity: 0.34;
  }

  38% {
    transform: translate(8px, -4px) scale(1.12, 0.94) rotate(9deg);
    opacity: 0.76;
  }

  72% {
    transform: translate(-2px, 6px) scale(0.98, 1.07) rotate(-4deg);
    opacity: 0.52;
  }

  100% {
    transform: translate(-8px, 3px) scale(0.9, 1.08) rotate(-7deg);
    opacity: 0.34;
  }
}

@media (prefers-reduced-motion: reduce) {
  .morph-tile,
  .morph-media,
  .morph-lens,
  .morph-lens::before,
  .morph-lens::after,
  .morph-lens span {
    animation: none;
  }

  .morph-tile {
    opacity: 0;
    transform: translate3d(var(--morph-reduced-x), 0, 0) scale(0.92);
  }

  .morph-tile-2 {
    opacity: 1;
    transform: translate3d(var(--morph-reduced-x), 0, 0) scale(1);
  }

  .morph-tile-2 .morph-media-before {
    opacity: 0;
  }

  .morph-tile-2 .morph-media-after {
    opacity: 1;
  }

  .morph-lens {
    transform: translateX(-50%);
  }

  .morph-lens::before {
    opacity: 0.5;
    transform: rotate(0deg) scale(1);
  }

  .morph-lens::after,
  .morph-lens span {
    opacity: 0.48;
    transform: none;
  }
}

.prompt-box {
  isolation: isolate;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  width: min(540px, 100%);
  min-height: 58px;
  margin: 26px auto 0;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 28px 70px rgba(9, 9, 9, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
}

.email-nudge {
  position: absolute;
  left: clamp(18px, 18%, 88px);
  bottom: calc(100% + 12px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 14px;
  background: var(--accent);
  color: #fffefa;
  font-size: 13px;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
  box-shadow:
    0 16px 34px rgba(255, 74, 61, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.96);
  transition:
    opacity 220ms ease 80ms,
    transform 240ms ease 80ms;
}

.email-nudge::after {
  content: "";
  position: absolute;
  left: 26px;
  bottom: -6px;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--accent);
  transform: rotate(45deg);
}

.email-nudge span {
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 150ms ease;
}

.prompt-box::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 2;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #ffcf57, var(--accent), #ff856d);
  background-size: 220% 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.prompt-box.is-nudging .email-nudge {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0ms;
}

.prompt-box.is-nudging .email-nudge span {
  opacity: 1;
  transition-delay: 90ms;
}

.prompt-box:focus-within::after {
  opacity: 1;
  animation: prompt-border-flow 12s linear infinite;
}

.prompt-panel {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 0 0 0 18px;
  text-align: left;
}

.domain-entry {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 46px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.prompt-panel input {
  display: block;
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: var(--ink);
  font-size: 18px;
  font-weight: 680;
  line-height: 46px;
}

.prompt-panel input::placeholder {
  color: #98938a;
}

.prompt-box button {
  position: relative;
  z-index: 1;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  min-width: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #fffefa;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(255, 74, 61, 0.24);
}

.prompt-box button:hover {
  background: var(--accent-dark);
}

.prompt-box button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.prompt-box button svg {
  width: 21px;
  height: 21px;
}

@keyframes prompt-border-flow {
  to {
    background-position: 220% 0;
  }
}

.waitlist-note {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 560;
  line-height: 1.35;
}

.waitlist-note[hidden] {
  display: none;
}

.waitlist-note.is-success {
  color: #169a53;
}

.waitlist-note.is-error {
  color: var(--accent-dark);
}

.waitlist-x-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 26px;
  margin-left: 4px;
  padding: 0 10px 0 8px;
  border-radius: 8px;
  background: var(--ink);
  color: #fffefa;
  font-size: 13px;
  font-weight: 720;
  line-height: 1;
  text-decoration: none;
  vertical-align: 2px;
  box-shadow: 0 8px 20px rgba(9, 9, 9, 0.14);
}

.waitlist-x-link img {
  width: 11px;
  height: 11px;
  display: block;
}

.review-section {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 68px 24px 90px;
  background: #101010;
  color: #fffefa;
}

.review-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
}

.review-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
  max-width: 100%;
  margin: 0 auto 18px;
  font-size: 12px;
  font-weight: 820;
  line-height: 1.15;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.review-kicker span:first-child {
  color: var(--accent);
}

.review-kicker span:last-child {
  color: #fffefa;
}

.review-inner h2 {
  max-width: 1180px;
  margin: 0 auto;
  font-family: var(--display-font);
  font-size: var(--gallery-headline-size);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
  white-space: nowrap;
}

.review-inner h2 em {
  display: inline;
  font-style: italic;
  font-weight: 500;
}

#legacy-examples-title {
  max-width: min(100%, 1120px);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 64px;
  font-weight: 850;
  line-height: 0.94;
  text-align: left;
  text-wrap: balance;
  white-space: normal;
}

#legacy-examples-title em {
  display: block;
  font-family: var(--display-font);
  font-weight: 500;
}

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

.review-copy {
  max-width: 780px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--copy-size);
  line-height: 1.42;
}

.review-line {
  display: inline;
  white-space: nowrap;
}

.review-line + .review-line {
  margin-left: 12px;
}

.review-line span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: inherit;
}

.review-demo {
  display: grid;
  justify-items: center;
  margin-top: 40px;
}

.video-stack {
  position: relative;
  width: min(340px, 76vw);
  aspect-ratio: 9 / 16;
  --swipe-strength: 0;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

@media (min-width: 980px) {
  .review-section {
    padding: 96px 24px 104px;
  }

  .review-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
    gap: clamp(48px, 7vw, 108px);
    align-items: center;
    width: min(1040px, 100%);
    text-align: left;
  }

  #legacy-examples-title {
    max-width: 560px;
    margin: 0;
    font-size: clamp(64px, 7vw, 92px);
  }

  .review-demo {
    justify-self: end;
    margin-top: 0;
  }

  .review-actions {
    margin-top: 38px;
  }
}

.video-stack:active {
  cursor: grabbing;
}

.video-stack.is-swiping .stack-card-front {
  pointer-events: none;
}

.video-stack.is-resetting .stack-card {
  transition: none;
}

.video-stack.is-complete {
  cursor: default;
}

.video-stack.is-complete .decline-feedback {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.96);
}

.video-stack.is-complete .stack-card {
  opacity: 0;
  pointer-events: none;
  transition: none;
}

.stack-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.08) 38%, rgba(0, 0, 0, 0.78) 100%),
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.72) 0 7%, transparent 8%),
    radial-gradient(circle at 54% 42%, rgba(255, 255, 255, 0.46) 0 12%, transparent 13%),
    linear-gradient(150deg, var(--card-start, #6fc093) 0%, var(--card-mid, #f4d36f) 44%, var(--card-end, #d96d39) 100%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
  text-align: left;
  transform-origin: 50% 95%;
  transition:
    transform 360ms cubic-bezier(0.18, 0.82, 0.2, 1),
    opacity 300ms ease,
    filter 360ms ease;
  will-change: transform, opacity, filter;
}

.stack-card-back {
  z-index: 1;
  opacity: 0.76;
  filter: blur(4px) brightness(0.48) saturate(0.72);
  transform: translate(48px, 54px) scale(0.94) rotate(5deg);
}

.stack-card-mid {
  z-index: 2;
  opacity: 0.92;
  filter: blur(2px) brightness(0.66) saturate(0.86);
  transform: translate(25px, 29px) scale(0.98) rotate(2.5deg);
}

.stack-card-front {
  z-index: 3;
  opacity: 1;
  filter: none;
  transform: translate(0, 0) scale(1) rotate(0deg);
}

.stack-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.stack-card.has-media {
  background: #111;
}

.stack-card.has-media .stack-card-media {
  opacity: 1;
}

.stack-restart,
.stack-sound-toggle {
  position: absolute;
  top: 9px;
  z-index: 9;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background: rgba(9, 9, 9, 0.34);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  touch-action: manipulation;
}

.stack-restart {
  left: 9px;
  opacity: 0;
  filter: blur(8px);
  pointer-events: none;
  transform: scale(0.86);
  transform-origin: center;
  transition:
    opacity 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.stack-sound-toggle {
  right: 9px;
}

.stack-restart.is-restart-visible {
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
  transform: scale(1);
}

.stack-restart:disabled {
  cursor: default;
}

.stack-sound-toggle[hidden] {
  display: none;
}

.stack-restart svg,
.stack-sound-toggle .sound-icon {
  display: block;
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stack-sound-toggle .sound-icon-on {
  display: none;
}

.stack-sound-toggle.is-sound-on .sound-icon-off {
  display: none;
}

.stack-sound-toggle.is-sound-on .sound-icon-on {
  display: block;
}

.video-stack.is-approve .stack-card.is-exiting {
  opacity: 0;
  transform: translate3d(190px, 8px, 0) rotate(13deg);
}

.video-stack.is-decline .stack-card.is-exiting {
  opacity: 0;
  transform: translate3d(-190px, 8px, 0) rotate(-13deg);
}

.video-stack.is-approve,
.video-stack.is-decline {
  --swipe-strength: 1;
}

.video-stack.is-swiping .stack-card-mid {
  opacity: 1;
  filter: none;
  transform: translate(0, 0) scale(1) rotate(0deg);
}

.video-stack.is-swiping .stack-card-back {
  opacity: 0.92;
  filter: blur(2px) brightness(0.66) saturate(0.86);
  transform: translate(25px, 29px) scale(0.98) rotate(2.5deg);
}

.swipe-signal {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 160ms ease,
    background 160ms ease;
}

.video-stack.is-drag-approve .stack-card-front .swipe-signal,
.video-stack.is-approve .stack-card.is-exiting .swipe-signal {
  opacity: calc(var(--swipe-strength) * 0.86);
  background: linear-gradient(135deg, rgba(18, 166, 88, 0.1), rgba(18, 166, 88, 0.82));
}

.video-stack.is-drag-decline .stack-card-front .swipe-signal,
.video-stack.is-decline .stack-card.is-exiting .swipe-signal {
  opacity: calc(var(--swipe-strength) * 0.86);
  background: linear-gradient(225deg, rgba(224, 48, 43, 0.1), rgba(224, 48, 43, 0.82));
}

.signal-icon {
  display: grid;
  grid-area: 1 / 1;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #15a45a;
  opacity: 0;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
  transform: scale(0.84);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.signal-icon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.video-stack.is-drag-approve .stack-card-front .signal-approve,
.video-stack.is-approve .stack-card.is-exiting .signal-approve,
.video-stack.is-drag-decline .stack-card-front .signal-decline,
.video-stack.is-decline .stack-card.is-exiting .signal-decline {
  opacity: var(--swipe-strength);
  transform: scale(1);
}

.signal-decline {
  color: #e0302b;
}

.swipe-try-prompt {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -46%) scale(0.94);
  transition:
    opacity 240ms ease,
    top 430ms cubic-bezier(0.18, 0.82, 0.2, 1),
    left 430ms cubic-bezier(0.18, 0.82, 0.2, 1),
    transform 430ms cubic-bezier(0.18, 0.82, 0.2, 1);
}

.video-stack.is-try-prompt-visible .swipe-try-prompt {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.video-stack.is-try-prompt-collapsed .swipe-try-prompt {
  top: calc(100% - 62px);
  left: calc(100% - 62px);
  gap: 0;
  width: 42px;
  height: 42px;
  transform: translate(0, 0) scale(1);
}

.video-stack.is-complete .swipe-try-prompt,
.video-stack.has-feedback .swipe-try-prompt,
.video-stack.is-swiping .swipe-try-prompt,
.video-stack.is-tutorial-visible .swipe-try-prompt {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -46%) scale(0.94);
}

.try-prompt-badge {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 8, 8, 0.68);
  color: #fffefa;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px) saturate(1.12);
}

.try-prompt-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(360px, 78vw);
  min-height: 42px;
  padding: 0 16px 0 10px;
  border-radius: 999px;
  appearance: none;
  border-color: rgba(255, 255, 255, 0.16);
  font-family: inherit;
  font-size: 14px;
  font-weight: 620;
  line-height: 1;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  transform-origin: center;
  transition:
    max-width 430ms cubic-bezier(0.18, 0.82, 0.2, 1),
    min-height 430ms cubic-bezier(0.18, 0.82, 0.2, 1),
    padding 430ms cubic-bezier(0.18, 0.82, 0.2, 1),
    border-radius 430ms cubic-bezier(0.18, 0.82, 0.2, 1),
    transform 430ms cubic-bezier(0.18, 0.82, 0.2, 1);
  will-change: transform;
}

.video-stack.is-try-prompt-collapsed .try-prompt-badge {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  justify-content: center;
  width: 42px;
  max-width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.video-stack.is-try-prompt-collapsed .try-prompt-bolt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.try-prompt-text {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  overflow: hidden;
  max-width: 220px;
  opacity: 1;
  transition:
    max-width 300ms ease,
    opacity 180ms ease,
    transform 300ms cubic-bezier(0.18, 0.82, 0.2, 1);
}

.video-stack.is-try-prompt-collapsed .try-prompt-text {
  max-width: 0;
  opacity: 0;
  transform: translateX(-6px) scale(0.86);
}

.try-prompt-text span {
  font-weight: 560;
}

.try-prompt-text strong {
  font-weight: 850;
}

.video-stack.is-try-prompt-entering .try-prompt-badge {
  animation: tryPromptBadgeGrow 2.05s cubic-bezier(0.18, 0.82, 0.2, 1) 1;
}

.try-prompt-bolt {
  position: relative;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 198, 71, 0.16);
  color: #ffc647;
}

.try-prompt-bolt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(255, 198, 71, 0.48);
  transform: translate(-50%, -50%);
  animation: tryBoltPulse 1.05s ease-out infinite;
}

.try-prompt-bolt svg {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
}

.try-prompt-bolt svg {
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.swipe-tutorial {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 7;
  display: grid;
  justify-items: center;
  gap: 6px;
  width: min(224px, 72%);
  padding: 11px 14px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  background: rgba(8, 8, 8, 0.56);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: #fffefa;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translate(-50%, -44%) scale(0.94);
  transition:
    opacity 150ms ease,
    transform 180ms cubic-bezier(0.18, 0.82, 0.2, 1),
    border-color 150ms ease,
    background 150ms ease;
  backdrop-filter: blur(14px) saturate(1.12);
}

.video-stack.is-tutorial-visible .swipe-tutorial {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.video-stack.has-feedback .swipe-tutorial,
.video-stack.is-complete .swipe-tutorial,
.video-stack.is-swiping .swipe-tutorial {
  opacity: 0;
  transform: translate(-50%, -44%) scale(0.94);
}

.swipe-tutorial-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
}

.swipe-tutorial-icon {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  color: #fffefa;
  font-size: 16px;
  font-weight: 760;
  line-height: 1;
  will-change: transform;
}

.video-stack.is-tutorial-approve .swipe-tutorial-icon {
  order: 2;
}

.video-stack.is-tutorial-decline .swipe-tutorial-icon {
  order: 0;
}

.video-stack.is-tutorial-visible.is-tutorial-approve .swipe-tutorial-icon {
  animation: tutorialArrowApprove 2.05s ease-in-out infinite;
}

.video-stack.is-tutorial-visible.is-tutorial-decline .swipe-tutorial-icon {
  animation: tutorialArrowDecline 2.05s ease-in-out infinite;
}

.swipe-tutorial strong {
  color: #fffefa;
  font-size: 14px;
  font-weight: 820;
  line-height: 1;
  white-space: nowrap;
}

.swipe-tutorial span:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 520;
  line-height: 1.15;
  white-space: nowrap;
}

.video-stack.is-tutorial-approve .swipe-tutorial {
  border-color: rgba(32, 189, 106, 0.25);
  background: linear-gradient(145deg, rgba(13, 92, 52, 0.58), rgba(8, 8, 8, 0.58));
}

.video-stack.is-tutorial-decline .swipe-tutorial {
  border-color: rgba(224, 48, 43, 0.25);
  background: linear-gradient(145deg, rgba(92, 22, 20, 0.58), rgba(8, 8, 8, 0.58));
}

.video-stack.is-tutorial-visible.is-tutorial-approve:not(.is-swiping):not(.has-feedback):not(.is-complete) .stack-card-front {
  animation: tutorialSwipeApprove 2.05s ease-in-out infinite;
}

.video-stack.is-tutorial-visible.is-tutorial-decline:not(.is-swiping):not(.has-feedback):not(.is-complete) .stack-card-front {
  animation: tutorialSwipeDecline 2.05s ease-in-out infinite;
}

.video-stack.is-try-prompt-entering:not(.is-swiping):not(.has-feedback):not(.is-complete):not(.is-tutorial-visible) .stack-card-front {
  animation: tryPromptCardTilt 2.05s ease-in-out 1;
}

@keyframes tutorialSwipeApprove {
  0%,
  12%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  34%,
  54% {
    transform: translate3d(44px, 0, 0) rotate(3.5deg);
  }
}

@keyframes tutorialSwipeDecline {
  0%,
  12%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  34%,
  54% {
    transform: translate3d(-44px, 0, 0) rotate(-3.5deg);
  }
}

@keyframes tryPromptCardTilt {
  0%,
  12%,
  78%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  30% {
    transform: translate3d(7px, 0, 0) rotate(0.65deg);
  }
  46% {
    transform: translate3d(-4px, 0, 0) rotate(-0.4deg);
  }
  62% {
    transform: translate3d(3px, 0, 0) rotate(0.25deg);
  }
}

@keyframes tryPromptBadgeGrow {
  0%,
  68%,
  100% {
    transform: scale(1);
  }
  82% {
    transform: scale(1.065);
  }
  91% {
    transform: scale(1.025);
  }
}

@keyframes tutorialArrowApprove {
  0%,
  14%,
  100% {
    transform: translateX(0);
  }
  34%,
  54% {
    transform: translateX(4px);
  }
}

@keyframes tutorialArrowDecline {
  0%,
  14%,
  100% {
    transform: translateX(0);
  }
  34%,
  54% {
    transform: translateX(-4px);
  }
}

@keyframes tryBoltPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 198, 71, 0.5);
  }
  72%,
  100% {
    box-shadow: 0 0 0 10px rgba(255, 198, 71, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-stack.is-tutorial-visible.is-tutorial-approve .stack-card-front,
  .video-stack.is-tutorial-visible.is-tutorial-approve .swipe-tutorial-icon,
  .video-stack.is-tutorial-visible.is-tutorial-decline .stack-card-front,
  .video-stack.is-tutorial-visible.is-tutorial-decline .swipe-tutorial-icon,
  .video-stack.is-try-prompt-entering .stack-card-front,
  .video-stack.is-try-prompt-entering .try-prompt-badge,
  .try-prompt-bolt::before {
    animation: none;
  }

  .swipe-tutorial {
    transition: none;
  }
}

.stack-card::before {
  content: "";
  position: absolute;
  right: 42px;
  bottom: 110px;
  width: 116px;
  height: 248px;
  border-radius: 54px 54px 28px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.2)),
    var(--card-figure, #111);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.32);
}

.stack-card.has-media::before {
  display: none;
}

.stack-card::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 92px;
  width: 80%;
  height: 46%;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.82) 0 8%, transparent 9%),
    radial-gradient(circle at 68% 40%, rgba(255, 255, 255, 0.42) 0 10%, transparent 11%);
  opacity: 0.38;
}

.stack-card.has-media::after {
  inset: 0;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.16) 42%, rgba(0, 0, 0, 0.86) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.02) 54%);
  opacity: 1;
  pointer-events: none;
}

.video-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.46);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 780;
}

.stack-card strong,
.stack-card p {
  position: relative;
  z-index: 2;
}

.stack-card strong {
  display: block;
  max-width: 280px;
  color: #fffefa;
  font-size: clamp(38px, 4.2vw, 54px);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.stack-card p {
  max-width: 260px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.3;
}

.review-actions {
  display: grid;
  grid-template-columns: repeat(2, 94px);
  justify-content: center;
  gap: 12px 26px;
  margin-top: 58px;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.review-action {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border: 0;
  border-radius: 50%;
  background: #fffefa;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
}

.review-action svg {
  width: 36px;
  height: 36px;
}

.review-action.decline {
  color: #e0302b;
}

.review-action.approve {
  color: #15a45a;
}

.review-actions span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  font-weight: 840;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.decline-feedback {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 8;
  width: min(318px, 88%);
  min-height: 250px;
  padding: 44px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(16, 16, 16, 0.92);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.95);
}

.decline-feedback.is-visible {
  display: block;
  animation: feedbackIn 220ms ease forwards;
}

@keyframes feedbackIn {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.feedback-skip {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 760;
}

.decline-feedback p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 760;
}

.feedback-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.feedback-options button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 720;
}

.feedback-options button:hover,
.feedback-options button.is-selected {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
  color: #fffefa;
}

.feedback-detail {
  display: none;
  width: 100%;
  min-height: 76px;
  margin-top: 10px;
  padding: 11px 12px;
  resize: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  outline: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fffefa;
  font: inherit;
  font-size: 13px;
  line-height: 1.35;
}

.feedback-detail::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.feedback-submit {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 38px;
  margin-top: 8px;
  border: 0;
  border-radius: 8px;
  background: #fffefa;
  color: #0b0b0b;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 780;
}

.feedback-submit:hover {
  background: rgba(255, 255, 255, 0.86);
}

.decline-feedback.has-detail .feedback-detail,
.decline-feedback.has-detail .feedback-submit {
  display: block;
}

.examples {
  position: relative;
  z-index: 1;
  width: min(1088px, calc(100% - 48px));
  margin: 86px auto 78px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
}

.section-heading a {
  color: #67645f;
  font-size: 13px;
  font-weight: 700;
}

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

.example-card {
  min-width: 0;
}

.preview {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1.16 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.16)),
    var(--surface-soft);
}

.format-pill {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 10px;
  border: 1px solid rgba(9, 9, 9, 0.05);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 12px;
  font-weight: 780;
}

.phone-frame {
  width: 118px;
  aspect-ratio: 9 / 16;
  padding: 9px;
  border-radius: 24px;
  background: var(--ink);
  box-shadow: 0 22px 46px rgba(9, 9, 9, 0.18);
}

.video-scene {
  display: flex;
  align-items: end;
  height: 100%;
  padding: 13px;
  border-radius: 17px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.34)),
    linear-gradient(150deg, #ff8a41, #b24828);
}

.video-scene span,
.ad-board strong,
.ad-board span {
  display: block;
}

.video-scene span {
  color: #fffefa;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.02;
}

.ad-board {
  width: min(278px, 76%);
  padding: 28px;
  border-radius: 10px;
  background: #fffefa;
  box-shadow: 0 22px 54px rgba(9, 9, 9, 0.12);
  text-align: left;
}

.ad-board strong {
  max-width: 230px;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 0.94;
  letter-spacing: 0;
}

.ad-board span {
  margin-top: 17px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 760;
}

.dashboard-card {
  position: relative;
  display: grid;
  align-content: center;
  gap: 14px;
  width: min(288px, 76%);
  height: 58%;
  padding: 34px;
  border-radius: 10px;
  background: #0c0c0d;
  box-shadow: 0 22px 54px rgba(9, 9, 9, 0.18);
}

.dashboard-card::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 10px solid rgba(255, 74, 61, 0.95);
  border-left-color: rgba(255, 74, 61, 0.22);
}

.bar {
  display: block;
  width: 72%;
  height: 14px;
  border-radius: 999px;
  background: #fffefa;
}

.bar.wide {
  width: 100%;
  background: var(--accent);
}

.bar.short {
  width: 48%;
}

.example-card h3 {
  margin: 13px 0 5px;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0;
}

.example-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.gallery-section {
  position: relative;
  z-index: 1;
  padding: 94px 24px 104px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
}

@supports (overflow: clip) {
  .gallery-section {
    overflow-x: clip;
  }
}

.gallery-inner {
  width: min(1088px, 100%);
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.gallery-inner h2 {
  max-width: 1088px;
  margin: 0 auto;
  font-family: var(--display-font);
  font-size: var(--gallery-headline-size);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
  white-space: nowrap;
}

.gallery-inner h2 em {
  font-style: italic;
  font-weight: 500;
}

.gallery-shell {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 690px) 44px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  margin-top: 42px;
}

.gallery-stage {
  grid-column: 2;
  grid-row: 1;
  max-width: 100%;
  min-width: 0;
}

.gallery-section.is-single-example .gallery-shell {
  grid-template-columns: minmax(0, 690px);
}

.gallery-section.is-single-example .gallery-stage {
  grid-column: 1;
}

.gallery-section.is-single-example .gallery-nav,
.gallery-section.is-single-example .gallery-dots {
  display: none;
}

.gallery-pair {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
  gap: 12px;
  min-width: 0;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.gallery-card-frame {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.gallery-card-caption {
  max-width: min(100%, 230px);
  margin: 0 auto;
  color: rgba(43, 41, 38, 0.58);
  font-size: 12px;
  font-weight: 540;
  line-height: 1.28;
  letter-spacing: 0.01em;
  text-align: center;
}

.gallery-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(52px, 1fr) auto;
  align-items: center;
  gap: clamp(10px, 1.6vw, 20px);
  margin-bottom: 12px;
}

.gallery-beam {
  display: block;
  justify-self: stretch;
  height: 30px;
  pointer-events: none;
}

.gallery-beam svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.gallery-beam path {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-beam-base {
  stroke: rgba(9, 9, 9, 0.1);
  stroke-width: 2;
}

.gallery-beam-light {
  filter: drop-shadow(0 0 8px rgba(255, 74, 61, 0.18));
  stroke: url("#gallery-beam-gradient");
  stroke-width: 3;
  stroke-dasharray: 34 142;
  animation: beamTravel 2200ms linear infinite;
}

@keyframes beamTravel {
  to {
    stroke-dashoffset: -176;
  }
}

.gallery-pair:active {
  cursor: grabbing;
}

.gallery-pair.is-changing {
  animation: gallerySwap 260ms ease;
}

@keyframes gallerySwap {
  50% {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }
}

.gallery-card {
  position: relative;
  display: grid;
  align-content: end;
  min-width: 0;
  aspect-ratio: 9 / 16;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.06) 40%, rgba(0, 0, 0, 0.8) 100%),
    radial-gradient(circle at 74% 28%, rgba(255, 255, 255, 0.64) 0 8%, transparent 9%),
    linear-gradient(135deg, var(--gallery-start, #ff7a50), var(--gallery-end, #0b0b0b));
  box-shadow: 0 28px 70px rgba(9, 9, 9, 0.12);
  text-align: left;
}

.gallery-card.has-gallery-media {
  padding: 0;
  background: #111;
}

.gallery-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  pointer-events: none;
  transition: filter 180ms ease;
}

.gallery-card.has-gallery-media.is-gallery-inactive .gallery-card-media {
  filter: grayscale(1) saturate(0.35) brightness(0.94);
}

.gallery-sound-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.56);
  color: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px) saturate(1.12);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.gallery-sound-toggle[hidden] {
  display: none;
}

.gallery-sound-toggle:hover {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fffefa;
  transform: translateY(-1px);
}

.gallery-sound-toggle.is-sound-on {
  background: rgba(255, 255, 255, 0.86);
  color: #141414;
}

.gallery-sound-toggle .sound-icon {
  grid-area: 1 / 1;
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
}

.gallery-sound-toggle:not(.is-sound-on) .sound-icon-off,
.gallery-sound-toggle.is-sound-on .sound-icon-on {
  opacity: 1;
}

.gallery-source {
  box-shadow: 0 20px 46px rgba(9, 9, 9, 0.09);
}

.gallery-output {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.06) 40%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(circle at 74% 28%, rgba(255, 255, 255, 0.64) 0 8%, transparent 9%),
    linear-gradient(135deg, var(--gallery-start, #0b0b0b), var(--gallery-end, #ff4a3d));
  box-shadow:
    0 34px 82px rgba(9, 9, 9, 0.18),
    0 0 48px rgba(255, 74, 61, 0.16),
    0 0 88px rgba(255, 198, 71, 0.1);
}

.gallery-card::before {
  content: "";
  position: absolute;
  right: 18%;
  bottom: 23%;
  width: 27%;
  height: 35%;
  border-radius: 999px 999px 42px 42px;
  background: rgba(255, 255, 255, 0.5);
}

.gallery-card.has-gallery-media::before {
  content: none;
}

.gallery-card.has-gallery-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: rgba(245, 244, 241, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.gallery-card.has-gallery-media.is-gallery-inactive::after {
  opacity: 1;
}

.gallery-section.is-single-example .gallery-card strong,
.gallery-section.is-single-example .gallery-card p {
  display: none;
}

.gallery-label {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  min-height: 38px;
  min-width: 0;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 520;
  text-align: left;
  white-space: nowrap;
}

.gallery-label:last-child {
  justify-self: end;
}

.gallery-label svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.gallery-label svg path {
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-label-approved {
  padding-right: 13px;
  border: 1px solid rgba(24, 169, 92, 0.24);
  color: var(--ink);
}

.gallery-label-approved svg {
  color: #18a95c;
}

.gallery-label-output {
  min-height: 40px;
  padding: 0 14px;
  background: #090909;
  color: #fffefa;
  box-shadow:
    0 13px 28px rgba(9, 9, 9, 0.16),
    0 0 18px rgba(255, 198, 71, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.gallery-label-output svg {
  color: #ffc647;
}

.gallery-label-output svg path {
  stroke-width: 2;
}

.gallery-card strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 280px;
  color: #fffefa;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gallery-card p {
  position: relative;
  z-index: 1;
  max-width: 240px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.35;
}

.gallery-nav {
  display: grid;
  place-items: center;
  width: 44px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.gallery-prev {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.gallery-next {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}

.gallery-nav svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-dots {
  display: flex;
  grid-column: 2;
  grid-row: 2;
  justify-content: center;
  justify-self: center;
  gap: 0;
  margin-top: 24px;
}

.gallery-dots button {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.gallery-dots button::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: inherit;
  background: rgba(9, 9, 9, 0.18);
}

.gallery-dots button.is-active::before {
  width: 24px;
  background: var(--accent);
}

.gallery-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 38px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 720;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.gallery-cta:hover {
  background: var(--ink);
  color: #fffefa;
  transform: translateY(-1px);
}

.section-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 34px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 720;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    border-color 160ms ease;
}

.section-cta:hover {
  background: var(--ink);
  color: #fffefa;
  transform: translateY(-1px);
}

.section-cta-dark {
  color: #fffefa;
}

.section-cta-dark:hover {
  background: #fffefa;
  color: #050505;
}

.hero-cta-stack {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 26px;
}

.hero-cta-stack .section-cta {
  margin-top: 0;
}

.hero-pricing-cta {
  min-height: 54px;
  padding: 0 30px;
  border-color: var(--accent);
  background: var(--accent);
  color: #fffefa;
  box-shadow: 0 18px 38px rgba(255, 74, 61, 0.22);
}

.hero-pricing-cta:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: #fffefa;
}

.hero-examples-cta {
  gap: 6px;
  min-height: 38px;
  padding: 0 18px;
  border-color: transparent;
  color: #67645f;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.42;
}

.hero-examples-cta:hover {
  border-color: transparent;
  background: transparent;
  color: var(--ink);
  transform: none;
}

.hero-examples-arrow {
  line-height: 1;
  transform: translateY(1px);
}

.approval-section {
  position: relative;
  z-index: 1;
  padding: 84px 24px 92px;
  background: #050505;
  color: #fffefa;
}

.approval-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 5.2vw, 72px);
  width: min(1000px, 100%);
  margin: 0 auto;
}

.approval-copy {
  text-align: left;
}

.approval-inner h2 {
  max-width: 560px;
  margin: 0;
  font-family: var(--display-font);
  font-size: var(--gallery-headline-size);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
}

.approval-copy p {
  max-width: 470px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.42;
}

.approval-board {
  justify-self: end;
  width: min(422px, 100%);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.approval-cta {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 4px;
}

.review-demo.is-complete .review-actions {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.completion-card {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 24px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 198, 71, 0.28), transparent 32%),
    radial-gradient(circle at 18% 78%, rgba(255, 74, 61, 0.18), transparent 34%),
    linear-gradient(145deg, #161616, #050505);
  box-shadow:
    0 32px 88px rgba(0, 0, 0, 0.46),
    0 0 80px rgba(255, 74, 61, 0.14);
  color: #fffefa;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(25px, 29px) scale(0.98) rotate(2.5deg);
  transition:
    opacity 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: blur(2px) brightness(0.72) saturate(0.9);
}

.video-stack.is-final-swipe .completion-card {
  z-index: 2;
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
  filter: none;
}

.video-stack.is-final-swipe .stack-card-mid,
.video-stack.is-final-swipe .stack-card-back {
  opacity: 0;
  pointer-events: none;
}

.video-stack.is-complete .completion-card {
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  filter: none;
}

.video-stack.is-final-swipe.is-completion-handoff .completion-card,
.video-stack.is-complete.is-completion-handoff .completion-card {
  opacity: 0.74;
  pointer-events: none;
  transform: translateY(0) scale(0.985);
  filter: blur(5px) brightness(0.72) saturate(0.88);
}

.video-stack.is-complete.is-completion-handoff.is-completion-ready .completion-card {
  opacity: 1;
  pointer-events: none;
  transform: translateY(0) scale(1);
  filter: none;
}

.completion-burst {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 34px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 18px 46px rgba(0, 0, 0, 0.24);
}

.completion-card strong {
  max-width: 290px;
  font-size: clamp(30px, 3.4vw, 43px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.completion-queue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
  color: #fffefa;
  cursor: pointer;
  font-size: 16px;
  font-weight: 820;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 44px rgba(0, 0, 0, 0.2);
}

.completion-queue svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.approval-list {
  display: grid;
  gap: 8px;
}

.approval-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.approval-row.is-processing {
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 255, 255, 0.06), transparent 36%),
    rgba(255, 255, 255, 0.06);
}

.approval-preview {
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 255, 255, 0.7) 0 14%, transparent 15%),
    linear-gradient(145deg, var(--approval-start, #ff8a41), var(--approval-end, #151515));
}

.approval-preview::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: 19px 0 0 20px;
  border-radius: 50% 50% 7px 7px;
  background: rgba(255, 255, 255, 0.44);
}

.approval-preview-warm {
  --approval-start: #f7c66b;
  --approval-end: #d75c3e;
}

.approval-preview-green {
  --approval-start: #78d6c6;
  --approval-end: #243f39;
}

.approval-preview-cool {
  --approval-start: #6e8df0;
  --approval-end: #171823;
}

.approval-preview-processing {
  position: relative;
  border-color: rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 62%),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 18px rgba(255, 255, 255, 0.035);
  filter: none;
}

.approval-preview-processing::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 198, 71, 0.2), transparent 58%),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.08),
    inset 0 0 12px rgba(255, 255, 255, 0.04);
  animation: approvalThumbGlow 4200ms ease-in-out infinite;
}

.approval-preview-processing::after {
  display: none;
}

.approval-lines {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.approval-lines > span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.approval-lines-processing {
  gap: 0;
  align-items: center;
}

.approval-lines > span:last-child {
  width: 62%;
  background: rgba(255, 255, 255, 0.25);
}

.approval-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.approval-countdown {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 198, 71, 0.24);
  border-radius: 999px;
  background: rgba(255, 198, 71, 0.1);
  color: #ffc647;
  font-size: 12px;
  font-weight: 780;
  white-space: nowrap;
}

.approval-countdown svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.approval-terminal {
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: min(100%, 222px);
  min-height: 24px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: none;
}

.terminal-spark {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 0;
  color: #ffc647;
  background: transparent;
}

.approval-preview-processing .terminal-spark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 22px;
  height: 22px;
  color: #ffc647;
  transform: translate(-50%, -50%);
}

.approval-preview-processing .terminal-spark::before {
  inset: 3px;
}

.approval-preview-processing .terminal-spark svg {
  inset: 1px;
  width: 20px;
  height: 20px;
}

.terminal-spark::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.64;
  animation: terminalSparkDot 3200ms ease-in-out infinite;
}

.terminal-spark svg {
  position: absolute;
  inset: 1px;
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform-origin: 50% 50%;
  animation: terminalSparkIcon 12800ms ease-in-out infinite;
}

.terminal-spark svg:nth-of-type(2) {
  animation-name: terminalSparkPlayIcon;
  animation-delay: 3200ms;
}

.terminal-spark svg:nth-of-type(3) {
  animation-delay: 6400ms;
}

.terminal-spark svg:nth-of-type(4) {
  animation-delay: 9600ms;
}

.terminal-word {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 160px;
  min-height: 1.2em;
  overflow: hidden;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", monospace;
}

.terminal-text {
  overflow: hidden;
  text-overflow: clip;
}

.terminal-caret {
  display: inline-block;
  flex: 0 0 auto;
  width: 1px;
  height: 1.08em;
  margin-left: 2px;
  background: currentColor;
  animation: terminalCaret 800ms steps(1) infinite;
}

@keyframes terminalCaret {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@keyframes approvalThumbGlow {
  0%,
  100% {
    border-radius: 50%;
    opacity: 0.34;
    transform: scale(0.82);
  }

  50% {
    border-radius: 44% 56% 52% 48%;
    opacity: 0.78;
    transform: scale(1.06);
  }
}

@keyframes terminalSparkDot {
  0%,
  100% {
    border-radius: 50%;
    opacity: 0.5;
    transform: scale(1.12);
  }

  30%,
  72% {
    border-radius: 50%;
    opacity: 0.72;
    transform: scale(0.34);
  }

  46%,
  58% {
    opacity: 0;
    transform: scale(0.22);
  }
}

@keyframes terminalSparkIcon {
  0%,
  7.5%,
  24%,
  100% {
    opacity: 0;
    transform: rotate(-30deg) scale(0.4);
  }

  11%,
  20% {
    opacity: 1;
    transform: rotate(22deg) scale(1);
  }
}

@keyframes terminalSparkPlayIcon {
  0%,
  7.5%,
  24%,
  100% {
    opacity: 0;
    transform: rotate(0deg) scale(0.4);
  }

  11%,
  20% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

.approval-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.62);
}

.approval-icon.is-check {
  color: #20bd6a;
}

.approval-icon.is-edit {
  color: #ffc647;
}

.approval-icon.is-selected {
  color: #050505;
}

.approval-icon.is-check.is-selected {
  border-color: #20bd6a;
  background: #20bd6a;
}

.approval-icon.is-edit.is-selected {
  border-color: #ffc647;
  background: #ffc647;
}

.approval-icon svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.posting-section {
  position: relative;
  z-index: 1;
  padding: 88px 24px 96px;
  background: var(--bg);
  color: var(--ink);
}

.posting-inner {
  width: min(1088px, 100%);
  margin: 0 auto;
  text-align: center;
}

.posting-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.posting-inner h2 {
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--display-font);
  font-size: var(--gallery-headline-size);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
}

.posting-copy {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 20px);
  font-weight: 540;
  line-height: 1.42;
}

.posting-platforms {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(920px, 100%);
  max-width: 900px;
  margin: 34px auto 0;
}

.posting-logo-row {
  position: relative;
  display: flex;
  gap: 10px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.posting-logo-row:nth-child(2) {
  width: min(820px, 96%);
  margin: 0 auto;
}

.posting-logo-row:nth-child(3) {
  width: min(760px, 92%);
  margin: 0 auto;
}

.posting-logo-track {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  animation: posting-logo-scroll 52s linear infinite;
}

.posting-logo-row.is-reverse .posting-logo-track {
  animation-name: posting-logo-scroll-reverse;
  animation-duration: 48s;
}

.posting-logo-row:nth-child(3) .posting-logo-track {
  animation-duration: 56s;
}

.posting-logo-track > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 15px 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
  white-space: nowrap;
}

.posting-platforms img {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  display: block;
}

.posting-platforms svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  display: block;
  fill: currentColor;
}

.posting-logo-linkedin svg {
  color: #0a66c2;
}

.posting-logo-hermes-mark {
  display: inline-block;
  color: rgba(5, 5, 5, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 520;
  line-height: 1;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.posting-platforms b {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #050505;
  color: #fffefa;
  font-size: 9px;
  font-weight: 820;
  letter-spacing: 0;
}

@keyframes posting-logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 10px));
  }
}

@keyframes posting-logo-scroll-reverse {
  from {
    transform: translateX(calc(-100% - 10px));
  }

  to {
    transform: translateX(0);
  }
}

.comparison-section {
  position: relative;
  z-index: 1;
  isolation: isolate;
  margin-top: -1px;
  padding: 96px 24px 112px;
  border-top: 0;
  overflow: hidden;
  background: #101010;
  box-shadow: none;
  color: #fffefa;
}

.comparison-section::before,
.comparison-section::after {
  content: none;
}

.comparison-inner {
  position: relative;
  z-index: 1;
  width: min(1088px, 100%);
  margin: 0 auto;
}

.comparison-inner h2 {
  max-width: 760px;
  margin: 0 auto 50px;
  font-family: var(--display-font);
  font-style: italic;
  font-size: clamp(44px, 5.3vw, 64px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.02em;
  text-align: center;
}

.comparison-inner h2 span {
  display: block;
}

.comparison-title-strike {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin: 0 auto;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-style: normal;
  font-weight: 820;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.42);
}

.comparison-title-strike::after {
  content: "";
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  top: 52%;
  height: 0.08em;
  border-radius: 999px;
  background: var(--accent);
  transform: rotate(-2deg);
}

.comparison-picker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 820px;
  margin: 0 auto 28px;
}

.comparison-picker button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  font-size: 13px;
  font-weight: 720;
  transition:
    border-color 170ms ease,
    background 170ms ease,
    color 170ms ease,
    transform 170ms ease;
}

.comparison-picker button:hover,
.comparison-picker button.is-active {
  border-color: rgba(255, 74, 61, 0.46);
  background: rgba(255, 74, 61, 0.14);
  color: #fffefa;
}

.comparison-picker button.is-active {
  transform: none;
}

.comparison-picker svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comparison-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
  min-height: 300px;
  cursor: grab;
  outline: 0;
  touch-action: pan-y;
  user-select: none;
}

.comparison-stage.is-dragging {
  cursor: grabbing;
}

.comparison-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  overflow: hidden;
  padding: 28px;
  border-radius: 18px;
  text-align: left;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.comparison-stage.is-changing .comparison-card {
  animation: comparison-pop 260ms ease;
}

.comparison-card::before {
  content: none;
  position: absolute;
  inset: auto 24px 24px auto;
  width: 128px;
  height: 128px;
  border-radius: 38px;
  opacity: 0.2;
  transform: rotate(10deg);
}

.comparison-card span,
.comparison-card strong,
.comparison-card p {
  position: relative;
  z-index: 1;
}

.comparison-card span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.comparison-card .comparison-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.comparison-brand img {
  width: 22px;
  height: auto;
  display: block;
}

.comparison-card strong {
  display: block;
  max-width: min(100%, 460px);
  margin-top: 58px;
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 820;
  line-height: 0.9;
  letter-spacing: 0;
  overflow-wrap: normal;
  white-space: normal;
}

.comparison-card strong.is-compact {
  max-width: min(100%, 520px);
  font-size: clamp(38px, 4.1vw, 58px);
}

.comparison-card p {
  max-width: 300px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 560;
  line-height: 1.25;
}

.comparison-card-manual {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #0d0d0d;
  color: rgba(255, 255, 255, 0.7);
}

.comparison-card-manual::before {
  background: rgba(255, 255, 255, 0.42);
}

.comparison-card-ahoy {
  border: 0;
  background:
    radial-gradient(circle at 88% 22%, rgba(255, 198, 71, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(255, 74, 61, 0.98), rgba(96, 18, 18, 0.86) 72%, rgba(12, 12, 12, 0.92));
  color: #fffefa;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.34),
    0 22px 90px rgba(255, 74, 61, 0.26),
    0 0 120px rgba(255, 74, 61, 0.14);
}

.comparison-card-ahoy::before {
  background: #fffefa;
}

.comparison-card-ahoy span,
.comparison-card-ahoy p {
  color: rgba(255, 255, 255, 0.78);
}

.comparison-transform {
  display: grid;
  place-items: center;
  align-self: center;
}

.comparison-transform svg {
  width: 126px;
  max-width: 100%;
  filter: drop-shadow(0 0 18px rgba(255, 74, 61, 0.28));
}

.comparison-arrow-line,
.comparison-arrow-head {
  stroke: url("#comparison-arrow-gradient");
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comparison-arrow-head {
  fill: none;
}

.comparison-caption {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 560;
  line-height: 1.38;
  text-align: center;
}

.section-heading {
  display: block;
  max-width: 740px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2,
.final-cta-inner h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: var(--gallery-headline-size);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
}

.section-heading > p:not(.section-kicker),
.final-cta-inner p {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 20px);
  font-weight: 540;
  line-height: 1.42;
}

.pricing-section {
  position: relative;
  z-index: 1;
  padding: 96px 24px 106px;
  background: var(--bg);
  color: var(--ink);
}

.pricing-inner,
.roadmap-inner,
.faq-inner,
.final-cta-inner {
  width: min(1088px, 100%);
  margin: 0 auto;
}

.pricing-billing-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: fit-content;
  margin: -14px auto 24px;
  padding: 4px;
  border: 1px solid rgba(9, 9, 9, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 40px rgba(9, 9, 9, 0.06);
}

.pricing-billing-toggle button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.pricing-billing-toggle button.is-active {
  background: var(--accent);
  color: #fffefa;
  box-shadow: 0 10px 22px rgba(255, 74, 61, 0.22);
}

.billing-save-badge {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 7px;
  border: 1px solid rgba(9, 9, 9, 0.12);
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.045);
  color: rgba(9, 9, 9, 0.46);
  font-size: 11px;
  font-weight: 760;
  opacity: 0.82;
}

.pricing-billing-toggle button.is-active .billing-save-badge {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-dark);
  opacity: 1;
}

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

.pricing-card {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.52)),
    var(--surface);
  box-shadow: 0 22px 60px rgba(9, 9, 9, 0.045);
}

.pricing-card:hover,
.pricing-card:focus-within {
  z-index: 12;
}

.pricing-card-featured {
  border-color: rgba(255, 74, 61, 0.34);
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 198, 71, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 243, 0.76)),
    var(--surface);
  box-shadow:
    0 24px 72px rgba(255, 74, 61, 0.12),
    0 0 0 1px rgba(255, 74, 61, 0.06);
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 74, 61, 0.11);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 760;
}

.pricing-card-head span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 4px;
  margin-top: 26px;
}

.pricing-card-head strong {
  display: inline-block;
  margin-top: 0;
  font-size: 27px;
  font-weight: 850;
  line-height: 1.05;
  vertical-align: baseline;
}

.pricing-card-head .pricing-original {
  display: inline;
  margin: 0;
  color: rgba(9, 9, 9, 0.38);
  font-size: 24px;
  font-weight: 650;
  line-height: 1;
}

.pricing-card-head .pricing-original[hidden] {
  display: none;
}

.pricing-card-head .pricing-original s {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.pricing-card-head .pricing-original s::after {
  content: "";
  position: absolute;
  left: -0.05em;
  right: -0.05em;
  top: 52%;
  height: 0.08em;
  border-radius: 999px;
  background: rgba(255, 74, 61, 0.7);
  transform: rotate(-2deg);
}

.pricing-card-head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.pricing-card-head [data-price-unit] {
  display: inline;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  vertical-align: baseline;
}

.pricing-card-head .pricing-save {
  display: block;
  width: auto;
  min-height: 0;
  margin: 10px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(9, 9, 9, 0.5);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

.pricing-card-head .pricing-save span {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.pricing-card-head .pricing-save[hidden] {
  display: none;
}

.pricing-card ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 24px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #2b2926;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.pricing-card li svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
  color: #18a95c;
}

.pricing-card li.pricing-credit-box {
  position: relative;
  display: block;
  width: 100%;
  margin: 2px 0 8px;
  padding: 16px 18px;
  border: 1px solid rgba(9, 9, 9, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.64)),
    rgba(9, 9, 9, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.pricing-card-featured li.pricing-credit-box {
  border-color: rgba(255, 74, 61, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 246, 0.72)),
    rgba(255, 74, 61, 0.035);
}

.pricing-credit-amount {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
  color: rgba(43, 41, 38, 0.58);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.05;
}

.pricing-credit-amount strong {
  color: #1f1d1a;
  font-size: inherit;
  font-weight: 850;
  line-height: inherit;
}

.pricing-credit-tooltip-anchor {
  margin-left: 2px;
  transform: translateY(2px);
}

.pricing-credit-box .pricing-tooltip-trigger {
  width: 18px;
  height: 18px;
  color: rgba(43, 41, 38, 0.48);
}

.pricing-credit-box .pricing-tooltip-trigger svg {
  width: 15px;
  height: 15px;
}

.pricing-tooltip-panel.pricing-credit-tooltip-panel {
  top: calc(100% + 9px);
  bottom: auto;
  width: min(278px, calc(100vw - 48px));
  transform: translate(-50%, -4px);
}

.pricing-tooltip-panel.pricing-credit-tooltip-panel::after {
  top: auto;
  bottom: 100%;
  transform: translate(-50%, 4px) rotate(45deg);
}

.pricing-tooltip-anchor:hover .pricing-credit-tooltip-panel,
.pricing-tooltip-anchor:focus-within .pricing-credit-tooltip-panel {
  transform: translate(-50%, 0);
}

.pricing-credit-estimate {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
}

.pricing-credit-rate {
  display: inline;
  white-space: normal;
}

.pricing-credit-rate s {
  position: relative;
  display: inline-block;
  color: rgba(43, 41, 38, 0.42);
  font-weight: 650;
  text-decoration: none;
}

.pricing-credit-rate s::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 52%;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 74, 61, 0.72);
  transform: rotate(-8deg);
}

.pricing-credit-rate strong {
  color: #1f1d1a;
  font-weight: 760;
}

.pricing-card li.pricing-note {
  align-items: flex-start;
  color: #2b2926;
  font-weight: 500;
  gap: 10px;
  white-space: nowrap;
}

.pricing-card li.pricing-note > svg {
  color: #2b2926;
  margin-top: 1px;
}

.pricing-note-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.pricing-note-line {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.pricing-note-nowrap {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.pricing-card li.pricing-feature-highlight {
  color: #1f1d1a;
}

.pricing-card li.pricing-feature-highlight > svg {
  color: #ffc647;
}

.pricing-card li.pricing-feature-tooltip {
  position: relative;
  align-items: center;
}

.pricing-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.pricing-tooltip-anchor {
  position: relative;
  display: inline-grid;
  place-items: center;
}

.pricing-tooltip-trigger {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #6f6a63;
  cursor: help;
  transition: background 160ms ease, color 160ms ease;
}

.pricing-tooltip-trigger:hover,
.pricing-tooltip-trigger:focus-visible {
  background: rgba(9, 9, 9, 0.055);
  color: #1f1d1a;
  outline: none;
}

.pricing-tooltip-trigger svg {
  width: 16px;
  height: 16px;
  margin: 0;
  color: currentColor;
}

.pricing-card li .pricing-tooltip-trigger svg {
  color: currentColor;
}

.pricing-card li .pricing-tooltip-trigger circle,
.pricing-card li .pricing-tooltip-trigger path {
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-tooltip-panel {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 9px);
  z-index: 8;
  width: min(230px, calc(100vw - 48px));
  white-space: normal;
  overflow-wrap: break-word;
  padding: 7px 9px;
  border-radius: 6px;
  background: rgba(17, 17, 17, 0.95);
  box-shadow: 0 10px 24px rgba(9, 9, 9, 0.2);
  color: #fffefa;
  font-size: 12px;
  font-weight: 620;
  line-height: 1.3;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translate(-50%, 4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 0s linear 160ms;
}

.pricing-tooltip-panel::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 8px;
  height: 8px;
  background: rgba(17, 17, 17, 0.95);
  transform: translate(-50%, -4px) rotate(45deg);
}

.pricing-tooltip-anchor:hover .pricing-tooltip-panel,
.pricing-tooltip-anchor:focus-within .pricing-tooltip-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

@media (max-width: 860px) {
  .pricing-tooltip-panel {
    right: 0;
    left: auto;
    text-align: left;
    transform: translateY(4px);
  }

  .pricing-tooltip-panel::after {
    right: 7px;
    left: auto;
    transform: translateY(-4px) rotate(45deg);
  }

  .pricing-tooltip-anchor:hover .pricing-tooltip-panel,
  .pricing-tooltip-anchor:focus-within .pricing-tooltip-panel {
    transform: translateY(0);
  }

  .pricing-credit-tooltip-anchor {
    position: relative;
  }

  .pricing-tooltip-panel.pricing-credit-tooltip-panel {
    right: 0;
    left: auto;
    width: min(276px, calc(100vw - 72px));
    max-width: none;
    transform: translateY(-4px);
  }

  .pricing-tooltip-panel.pricing-credit-tooltip-panel::after {
    right: 6px;
    left: auto;
    transform: translateY(4px) rotate(45deg);
  }

  .pricing-tooltip-anchor:hover .pricing-credit-tooltip-panel,
  .pricing-tooltip-anchor:focus-within .pricing-credit-tooltip-panel {
    transform: translateY(0);
  }

}

.pricing-card li path,
.roadmap-icon path,
.roadmap-icon rect,
.roadmap-icon circle {
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 780;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.pricing-cta:hover {
  transform: translateY(-1px);
  background: var(--ink);
  color: #fffefa;
}

.pricing-cta-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fffefa;
  box-shadow: 0 16px 32px rgba(255, 74, 61, 0.2);
}

.pricing-cta-primary:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: #fffefa;
}

.usage-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
  padding: 18px 18px 18px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.usage-strip span {
  font-size: 17px;
  font-weight: 780;
}

.usage-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.35;
}

.enterprise-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
  padding: 18px 18px 18px 22px;
  border: 1px solid rgba(255, 74, 61, 0.2);
  border-radius: 16px;
  background:
    radial-gradient(circle at 0 50%, rgba(255, 74, 61, 0.07), transparent 42%),
    rgba(255, 255, 255, 0.78);
}

.enterprise-strip span {
  font-size: 17px;
  font-weight: 780;
}

.enterprise-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.35;
}

.enterprise-strip .section-cta {
  align-self: center;
  margin-top: 0;
}

.roadmap-section {
  position: relative;
  z-index: 1;
  padding: 88px 24px 96px;
  background: #050505;
  color: #fffefa;
}

.roadmap-section .section-heading h2 {
  color: #fffefa;
}

.roadmap-list {
  --roadmap-rail: 96px;
  --roadmap-rail-x: 48px;
  position: relative;
  display: grid;
  gap: 0;
  width: fit-content;
  max-width: min(880px, 100%);
  margin: 0 auto;
  padding: 0;
  justify-self: center;
  list-style: none;
}

.roadmap-list::before {
  content: "";
  position: absolute;
  top: 19px;
  bottom: 19px;
  left: var(--roadmap-rail-x);
  width: 1px;
  background:
    linear-gradient(
      180deg,
      rgba(32, 189, 106, 0.78),
      rgba(255, 74, 61, 0.42) 64%,
      rgba(255, 255, 255, 0.13)
    );
}

.roadmap-list > li {
  position: relative;
  display: grid;
  grid-template-columns: var(--roadmap-rail) minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  min-height: 46px;
  padding: 0 0 26px;
}

.roadmap-list > li:last-child {
  padding-bottom: 0;
}

.roadmap-list > .roadmap-phase-marker {
  display: block;
  min-height: 48px;
  padding: 4px 0 28px;
}

.roadmap-phase-label {
  position: absolute;
  top: 0;
  left: var(--roadmap-rail-x);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: #050505;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}

.roadmap-icon {
  position: relative;
  z-index: 1;
  display: grid;
  justify-self: center;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: #101010;
  color: rgba(255, 255, 255, 0.5);
}

.roadmap-icon svg {
  width: 16px;
  height: 16px;
}

.roadmap-list > li.is-live > .roadmap-icon {
  border-color: rgba(24, 169, 92, 0.42);
  background:
    linear-gradient(rgba(24, 169, 92, 0.14), rgba(24, 169, 92, 0.14)),
    #101010;
  color: #20bd6a;
}

.roadmap-list > li.roadmap-later > .roadmap-icon {
  color: rgba(255, 255, 255, 0.36);
}

.roadmap-list > li > div {
  min-width: 0;
  padding: 5px 0 0;
}

@media (min-width: 861px) {
  .roadmap-list > li:not(.roadmap-item-expandable):not(.roadmap-phase-marker) > div {
    padding-top: 7px;
  }
}

.roadmap-title-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-width: 0;
  width: 100%;
  flex-wrap: nowrap;
}

.roadmap-details {
  min-width: 0;
  max-width: 100%;
}

.roadmap-details summary {
  display: flex;
  align-items: center;
  width: 100%;
  list-style: none;
  cursor: pointer;
}

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

.roadmap-expand-icon {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.48);
  font-size: 17px;
  font-weight: 520;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.roadmap-details summary:hover .roadmap-expand-icon {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
}

.roadmap-expand-icon::before,
.roadmap-expand-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: opacity 160ms ease, transform 160ms ease;
}

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

.roadmap-details.is-open .roadmap-expand-icon::after {
  opacity: 0;
  transform: rotate(90deg) scaleX(0.4);
}

.roadmap-details.is-open .roadmap-expand-icon {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
}

.roadmap-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition:
    grid-template-rows 340ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.roadmap-details.is-open .roadmap-panel {
  grid-template-rows: 1fr;
}

.roadmap-panel-inner {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 180ms ease,
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.roadmap-details.is-open .roadmap-panel-inner {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 260ms ease 40ms,
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.roadmap-details ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 100%;
  margin: 14px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  font-weight: 540;
  line-height: 1.34;
  list-style: none;
}

.roadmap-detail-copy {
  width: 100%;
  max-width: 100%;
  margin: 14px 0 0;
  contain: inline-size;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  font-weight: 540;
  line-height: 1.42;
  overflow-wrap: break-word;
}

.roadmap-details li {
  position: relative;
  padding-left: 15px;
}

.roadmap-details li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 74, 61, 0.62);
}

.roadmap-list span:not(.roadmap-icon):not(.roadmap-expand-icon):not(.roadmap-phase-label) {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roadmap-list > li:not(.is-live) span:not(.roadmap-icon):not(.roadmap-expand-icon):not(.roadmap-phase-label) {
  color: rgba(255, 255, 255, 0.42);
}

.roadmap-list strong {
  display: block;
  min-width: 0;
  font-size: clamp(20px, 1.9vw, 27px);
  font-weight: 680;
  line-height: 1.05;
  white-space: normal;
}

.roadmap-list > li:not(.is-live) strong {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 520;
}

.roadmap-list > li.roadmap-later strong {
  color: rgba(255, 255, 255, 0.52);
}

.faq-section {
  position: relative;
  z-index: 1;
  padding: 96px 24px 106px;
  background: var(--bg);
  color: var(--ink);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  padding-inline: clamp(14px, 2vw, 22px);
  border-top: 1px solid rgba(9, 9, 9, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(9, 9, 9, 0.1);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.faq-item.is-open {
  border-color: rgba(9, 9, 9, 0.14);
  background: transparent;
}

.faq-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 88px;
  gap: 18px;
  padding: 27px 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 650;
  line-height: 1.12;
  text-align: left;
}

.faq-item.is-open .faq-trigger {
  padding-bottom: 18px;
}

.faq-index {
  flex: 0 0 auto;
  min-width: 34px;
  color: rgba(9, 9, 9, 0.34);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
}

.faq-question {
  min-width: 0;
}

.faq-toggle {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: auto;
  border: 1px solid rgba(9, 9, 9, 0.1);
  border-radius: 50%;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

.faq-item.is-open .faq-toggle {
  border-color: rgba(255, 74, 61, 0.2);
  background: rgba(255, 74, 61, 0.08);
  transform: rotate(180deg);
}

.faq-item.is-open .faq-toggle::after {
  opacity: 0;
  transform: rotate(90deg) scaleX(0.4);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    grid-template-rows 340ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 240ms ease,
    transform 340ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.faq-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-panel p {
  max-width: 600px;
  margin: 0 74px 32px 56px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 540;
  line-height: 1.48;
}

.final-cta-section {
  position: relative;
  z-index: 1;
  padding: 92px 24px 108px;
  background: #050505;
  color: #fffefa;
  text-align: center;
}

.final-cta-inner h2 {
  color: #fffefa;
}

.final-cta-inner p {
  color: rgba(255, 255, 255, 0.62);
}

.final-cta-inner .section-cta {
  margin-top: 30px;
  border-color: rgba(255, 255, 255, 0.72);
  color: #fffefa;
}

.final-cta-inner .section-cta:hover {
  background: #fffefa;
  color: #050505;
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: -1px;
  padding: 0 24px 28px;
  background: #050505;
  color: #fffefa;
}

.footer-inner,
.footer-bottom {
  width: min(1088px, 100%);
  margin: 0 auto;
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
}

.footer-inner::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  pointer-events: none;
}

.footer-inner::after {
  bottom: 0;
  background: #171717;
}

.footer-logo,
.footer-links,
.footer-actions,
.footer-socials,
.footer-social-icon {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  gap: 9px;
  color: #fffefa;
  font-size: 16px;
  font-weight: 820;
}

.footer-logo span,
.brand-smallcaps {
  font-variant-caps: normal;
  text-transform: none;
}

.footer-logo img {
  width: 26px;
  height: 22px;
}

.footer-brand p {
  max-width: 330px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 540;
  line-height: 1.35;
}

.footer-links {
  gap: 22px;
  justify-self: start;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 680;
}

.footer-actions {
  gap: 10px;
  justify-self: end;
}

.footer-actions button,
.footer-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  font: inherit;
  font-size: 13px;
  font-weight: 740;
  cursor: pointer;
}

.footer-actions button,
.footer-actions .footer-primary-action {
  border-color: rgba(255, 255, 255, 0.82);
  color: #fffefa;
}

.footer-links a,
.footer-actions button,
.footer-actions a,
.footer-social-icon {
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.footer-links a:hover,
.footer-actions a:hover {
  color: #fffefa;
}

.footer-actions button:hover,
.footer-actions a:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.06);
}

.footer-socials {
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer-socials-mobile {
  display: none;
}

.footer-social-icon {
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.76);
  opacity: 0.62;
}

.footer-social-placeholder {
  cursor: default;
}

.footer-social-icon:hover {
  background: transparent;
  color: #fffefa;
  opacity: 0.92;
}

.footer-social-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.footer-social-icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-icon svg path,
.footer-social-icon svg rect,
.footer-social-icon svg circle {
  vector-effect: non-scaling-stroke;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  font-weight: 620;
  text-align: left;
}

.footer-copyright {
  flex: 0 0 auto;
}

.footer-legal-links {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-left: auto;
  white-space: nowrap;
}

.footer-legal-separator {
  opacity: 0.54;
}

.footer-bottom a,
.cookie-settings-link {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color 180ms ease;
}

.cookie-settings-link {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.footer-bottom a:hover,
.cookie-settings-link:hover {
  color: #fffefa;
}

body.has-cookie-consent {
  overflow: hidden;
}

.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 5, 5, 0.46);
  color: var(--ink);
  backdrop-filter: blur(9px) saturate(0.96);
}

.cookie-consent-panel {
  display: grid;
  gap: 18px;
  width: min(460px, 100%);
  padding: 17px;
  border: 1px solid rgba(9, 9, 9, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(9, 9, 9, 0.18);
  backdrop-filter: blur(18px) saturate(1.06);
}

.cookie-consent-panel:focus {
  outline: none;
}

.cookie-consent.is-settings .cookie-consent-panel {
  width: min(540px, 100%);
}

.cookie-consent-copy {
  min-width: 0;
}

.cookie-consent-copy strong {
  display: block;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.25;
}

.cookie-consent-copy p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.42;
}

.cookie-consent-preferences {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.cookie-choice-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid rgba(9, 9, 9, 0.08);
  border-radius: 12px;
  background: rgba(9, 9, 9, 0.025);
}

.cookie-choice-row span {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.2;
}

.cookie-choice-row p {
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.32;
}

.cookie-choice-row strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.08);
  color: rgba(9, 9, 9, 0.58);
  font-size: 11px;
  font-weight: 780;
  white-space: nowrap;
}

.cookie-choice-toggle {
  cursor: pointer;
}

.cookie-choice-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 26px;
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.18);
  transition: background 180ms ease;
}

.cookie-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fffefa;
  box-shadow: 0 2px 8px rgba(9, 9, 9, 0.18);
  transition: transform 180ms ease;
}

.cookie-choice-toggle input:checked + .cookie-switch {
  background: var(--accent);
}

.cookie-choice-toggle input:checked + .cookie-switch::after {
  transform: translateX(18px);
}

.cookie-switch-disabled {
  background: rgba(255, 74, 61, 0.58);
  box-shadow: inset 0 0 0 1px rgba(255, 74, 61, 0.08);
  cursor: not-allowed;
  opacity: 1;
}

.cookie-switch-disabled::after {
  background: rgba(255, 255, 250, 0.96);
  transform: translateX(18px);
}

.cookie-consent-actions {
  display: grid;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.cookie-consent:not(.is-settings) .cookie-consent-actions {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px;
}

.cookie-consent.is-settings .cookie-consent-actions {
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  gap: 12px;
}

.cookie-consent-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.cookie-consent-link {
  padding-right: 8px;
  padding-left: 8px;
  font-weight: 500;
}

.cookie-consent-actions button:hover {
  transform: translateY(-1px);
}

.cookie-consent-link {
  background: transparent;
  color: var(--muted);
}

.cookie-consent-link:hover {
  background: rgba(9, 9, 9, 0.06);
  color: var(--ink);
}

.cookie-consent-save {
  padding-right: 18px;
  padding-left: 18px;
  background: #2a2a2a;
  color: #fffefa;
  font-weight: 720;
}

.cookie-consent-save:hover {
  background: #090909;
  color: #fffefa;
}

.cookie-consent-accept {
  min-width: 146px;
  padding-right: 24px;
  padding-left: 24px;
  background: var(--accent);
  color: #fffefa;
}

.cookie-consent-accept:hover {
  background: var(--accent-dark);
}

@keyframes comparison-pop {
  0% {
    opacity: 0.55;
    transform: translateY(8px) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.toast {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.9);
  color: #fffefa;
  font-size: 14px;
  font-weight: 720;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transform: translate(-50%, calc(-50% + 10px)) scale(0.96);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.toast-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
}

.toast-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.queue-icon {
  color: #19a15b;
}

.learn-icon {
  color: #ffc647;
}

@media (max-width: 860px) {
  .demo-modal {
    padding: 14px;
  }

  .demo-modal-panel {
    border-radius: 14px;
  }

  .demo-modal-close {
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    width: min(100% - 28px, 1260px);
    height: 64px;
  }

  .home-page .site-header {
    width: min(100% - 52px, 1060px);
    height: 116px;
  }

  .home-page .brand {
    font-size: 42px;
  }

  .home-page .brand img {
    width: 48px;
    height: 42px;
  }

  .home-page .sign-in {
    display: none;
  }

  .nav-links,
  .sign-in {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
  }

  .home-page .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    margin: 3px 0;
    border-radius: 999px;
    background: currentColor;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

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

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

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

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: block;
    background: rgba(9, 9, 9, 0.18);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .mobile-menu {
    position: fixed;
    top: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 31;
    display: flex;
    flex-direction: column;
    width: min(330px, calc(100vw - 20px));
    padding: 14px;
    border: 1px solid rgba(9, 9, 9, 0.08);
    border-radius: 18px;
    background: rgba(251, 250, 247, 0.94);
    box-shadow: 0 28px 90px rgba(9, 9, 9, 0.24);
    backdrop-filter: blur(20px);
    visibility: hidden;
    pointer-events: none;
    transform: translateX(calc(100% + 18px));
    transition:
      transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
      visibility 0s linear 280ms;
  }

  .mobile-menu[aria-hidden="true"] {
    display: none;
  }

  .mobile-menu.is-open {
    display: flex;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0s;
  }

  .mobile-menu-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open {
    overflow: hidden;
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 44px;
  }

  .menu-close {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(9, 9, 9, 0.08);
    border-radius: 50%;
    background: #fffefa;
    color: var(--ink);
    cursor: pointer;
  }

  .menu-close span {
    position: absolute;
    width: 16px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
  }

  .menu-close span:first-child {
    transform: rotate(45deg);
  }

  .menu-close span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-menu-links {
    display: grid;
    gap: 8px;
    margin-top: 34px;
  }

  .mobile-menu-links a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 16px;
    border-radius: 12px;
    color: var(--ink);
    font-size: 30px;
    font-family: var(--display-font);
    line-height: 1;
    transition:
      background 160ms ease,
      transform 160ms ease;
  }

  .mobile-menu-links a:hover {
    background: rgba(255, 74, 61, 0.08);
    transform: translateX(2px);
  }

  .mobile-menu-actions {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
  }

  .mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    width: 100%;
    border: 1px solid var(--accent);
    border-radius: 999px;
    background: var(--accent);
    color: #fffefa;
    cursor: pointer;
    font-size: 14px;
    font-weight: 760;
    transition:
      background 160ms ease,
      color 160ms ease,
      transform 160ms ease;
  }

  .mobile-menu-cta:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fffefa;
    transform: translateY(-1px);
  }

  .mobile-menu-actions a:not(.mobile-menu-cta) {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    color: var(--muted);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .frame-hero {
    min-height: 790px;
    padding: 214px 18px 92px;
  }

  .frame-hero-center h1 {
    max-width: 560px;
    font-size: clamp(42px, 12vw, 58px);
    line-height: 0.94;
  }

  .frame-hero-center h1 em {
    display: block;
    margin-top: 2px;
    font-size: 1.02em;
  }

  .frame-hero-center > p:not(.frame-pill) {
    max-width: 560px;
    font-size: 20px;
    line-height: 1.45;
  }

  .frame-hero-actions {
    display: grid;
    width: min(360px, 100%);
    gap: 12px;
    margin-top: 34px;
  }

  .frame-button {
    min-width: 0;
    width: 100%;
    min-height: 54px;
    border-radius: 16px;
  }

  .frame-float-card {
    width: 136px;
    border-radius: 14px;
    opacity: 0.9;
  }

  .frame-float-left {
    top: 128px;
    left: -106px;
  }

  .frame-float-top {
    top: -80px;
    left: calc(50% - 48px);
  }

  .frame-float-right {
    top: 128px;
    right: -108px;
  }

  .frame-float-bottom {
    bottom: -120px;
    left: calc(50% - 54px);
  }

  .frame-float-lower-left,
  .frame-float-lower-right {
    display: none;
  }

  .frame-section {
    padding: 76px 18px;
  }

  .frame-section-head h2,
  .frame-dark-copy h2,
  .frame-split-copy h2,
  .frame-agent-copy h2 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .frame-workflow-grid,
  .frame-dark-section,
  .frame-split,
  .frame-agent-section,
  .frame-feature-grid {
    grid-template-columns: 1fr;
  }

  .frame-dark-section,
  .frame-agent-section {
    padding: 78px 18px;
  }

  .frame-step-visual {
    min-height: 250px;
  }

  .frame-style-strip {
    width: calc(100% + 18px);
    margin-left: -9px;
    grid-auto-columns: minmax(238px, 76vw);
  }

  .frame-style-strip article {
    grid-template-rows: minmax(300px, 48vh) auto;
  }

  .frame-input-grid {
    grid-template-columns: 1fr;
  }

  .frame-chat-window {
    min-height: 360px;
  }

  .frame-feature-grid article {
    min-height: 180px;
  }

  .arc-model-section {
    padding: 18px 18px 78px;
  }

  .arc-section-bar {
    height: 60px;
    margin-bottom: 24px;
    border-radius: 14px;
  }

  .arc-section-logo {
    font-size: 22px;
  }

  .arc-section-login {
    display: none;
  }

  .arc-model-copy h2,
  .arc-social-copy h2,
  .arc-feature-hero h2,
  .arc-agent-copy h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .arc-model-copy p,
  .arc-social-copy p,
  .arc-feature-hero p,
  .arc-agent-copy p {
    font-size: 18px;
  }

  .arc-tool-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .arc-tool-visual {
    min-height: 286px;
  }

  .arc-workflow-panel {
    grid-template-columns: 1fr;
    min-height: 780px;
    padding: 102px 18px 78px;
  }

  .arc-section-bar-dark {
    width: calc(100% - 36px);
  }

  .arc-workflow-canvas {
    min-height: 360px;
  }

  .arc-canvas-node {
    min-width: 124px;
    min-height: 62px;
  }

  .node-1 { top: 42px; left: 18px; }
  .node-2 { top: 122px; right: 20px; }
  .node-3 { bottom: 84px; left: 32px; }
  .node-4 { right: 30px; bottom: 26px; }

  .arc-social-panel,
  .arc-thought-panel,
  .arc-feature-panel,
  .arc-agent-panel {
    padding-right: 18px;
    padding-left: 18px;
  }

  .arc-social-tabs {
    justify-content: flex-start;
    gap: 12px;
    width: calc(100% + 36px);
    margin-right: -18px;
    margin-left: -18px;
    padding: 0 18px 6px;
    overflow-x: auto;
    scroll-padding: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .arc-social-tabs::-webkit-scrollbar {
    display: none;
  }

  .arc-social-tabs button {
    flex: 0 0 min(270px, 78vw);
    min-width: 0;
    scroll-snap-align: center;
  }

  .arc-social-stage {
    grid-template-columns: repeat(4, 220px);
    justify-content: start;
    gap: 16px;
    min-height: 500px;
    margin-right: -18px;
    margin-left: -18px;
    padding-left: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
    border-radius: 0;
    border-right: 0;
    border-left: 0;
  }

  .arc-social-stage article {
    height: 390px;
    scroll-snap-align: start;
  }

  .arc-quote-row {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 42px;
  }

  .arc-wide-video {
    height: 420px;
    border-radius: 16px;
  }

  .arc-feature-hero {
    min-height: 430px;
    padding: 46px 24px;
  }

  .arc-feature-grid,
  .arc-agent-panel {
    grid-template-columns: 1fr;
  }

  .arc-feature-grid article {
    height: 380px;
  }

  .arc-agent-window {
    min-height: 390px;
    padding: 22px;
  }

  .hero {
    width: min(100% - 6px, 1000px);
    margin-top: 76px;
  }

  .eyebrow {
    max-width: 300px;
    margin-bottom: 18px;
    line-height: 1.25;
  }

  h1 {
    display: block;
    max-width: min(100%, 690px);
    margin-right: auto;
    margin-left: auto;
    font-size: var(--gallery-headline-size-mobile);
    line-height: 0.95;
    white-space: normal;
  }

  h1 span {
    display: inline;
  }

  .hero-copy {
    max-width: min(100%, 620px);
    margin-top: 22px;
    font-size: 16px;
  }

  .morph-strip {
    --morph-track-pad: 28px;
    --morph-duration: 10.8s;
    --morph-reduced-x: -20px;
    width: min(420px, 100%);
    height: 72px;
    margin-top: 24px;
  }

  .morph-strip::after {
    top: -26px;
    height: 132px;
    opacity: 0.72;
  }

  .morph-tile {
    top: calc(var(--morph-track-pad) + 16px);
    width: 40px;
    height: 40px;
    --morph-tile-half: 20px;
    border-radius: 10px;
  }

  .morph-media::before {
    left: 7px;
    right: 7px;
    bottom: 8px;
    height: 6px;
    box-shadow: 0 -9px 0 rgba(255, 255, 255, 0.58);
  }

  .morph-media::after {
    right: 8px;
    bottom: 8px;
    width: 14px;
    height: 19px;
  }

  .morph-lens {
    top: 9px;
    width: 86px;
    height: 54px;
    backdrop-filter: blur(6px) saturate(1.35);
  }

  .morph-lens::before {
    inset: -9px;
    filter: blur(5px);
    opacity: 0.48;
  }

  .morph-lens::after {
    opacity: 0.42;
  }

  .prompt-box {
    width: min(620px, 100%);
    min-height: 56px;
    margin-top: 24px;
    padding: 6px;
  }

  .prompt-panel {
    min-height: 44px;
    padding-left: 14px;
  }

  .prompt-panel input {
    font-size: 16px;
  }

  .email-nudge {
    left: 18px;
    bottom: calc(100% + 10px);
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }

  .prompt-box button {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .waitlist-note {
    max-width: 320px;
    margin-top: 12px;
    font-size: 13px;
  }

  .review-section {
    margin-top: 0;
    padding: 54px 10px 70px;
  }

  .review-kicker {
    margin-bottom: 18px;
    gap: 6px;
    font-size: clamp(9px, 2.75vw, 11px);
    letter-spacing: 0.12em;
  }

  .review-inner h2 {
    max-width: min(100%, 690px);
    font-size: var(--gallery-headline-size-mobile);
    white-space: normal;
    text-wrap: balance;
  }

  #legacy-examples-title {
    max-width: min(100%, 520px);
    margin-right: auto;
    margin-left: auto;
    font-size: 42px;
    line-height: 0.98;
    text-align: center;
  }

  .review-copy {
    max-width: min(100%, 620px);
    margin-top: 24px;
    font-size: clamp(14px, 3.9vw, 18px);
  }

  .review-line {
    display: block;
    margin-left: 0;
    white-space: nowrap;
  }

  .review-line + .review-line {
    margin-top: 4px;
    margin-left: 0;
  }

  .review-demo {
    margin-top: 40px;
  }

  .video-stack {
    width: min(300px, 78vw);
  }

  .stack-card-back {
    transform: translate(22px, 34px) scale(0.94) rotate(4deg);
  }

  .stack-card-mid {
    transform: translate(12px, 18px) scale(0.98) rotate(2deg);
  }

  .stack-card {
    padding: 22px;
  }

  .stack-card strong {
    max-width: 220px;
    font-size: 38px;
  }

  .stack-card p {
    max-width: 210px;
    font-size: 14px;
  }

  .decline-feedback {
    width: min(248px, 88%);
    min-height: 230px;
    padding: 42px 16px 18px;
  }

  .video-stack.is-try-prompt-collapsed .swipe-try-prompt {
    top: calc(100% - 53px);
    left: calc(100% - 56px);
  }

  .swipe-try-prompt {
    gap: 7px;
  }

  .try-prompt-badge {
    min-height: 39px;
    padding: 0 13px 0 9px;
    font-size: 13px;
  }

  .try-prompt-bolt {
    width: 25px;
    height: 25px;
  }

  .swipe-tutorial {
    width: min(218px, 76%);
    padding: 10px 13px 9px;
  }

  .swipe-tutorial strong {
    font-size: 13px;
  }

  .review-actions {
    grid-template-columns: repeat(2, 78px);
    gap: 10px 22px;
    margin-top: 30px;
  }

  .review-action {
    width: 78px;
    height: 78px;
  }

  .review-action svg {
    width: 30px;
    height: 30px;
  }

  .examples {
    width: min(100% - 28px, 1088px);
    margin-top: 76px;
  }

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

  .preview {
    aspect-ratio: 1.12 / 1;
  }

  .gallery-section {
    padding: 72px 10px 78px;
  }

  .gallery-inner {
    width: 100%;
    max-width: 760px;
  }

  .gallery-inner h2 {
    max-width: min(100%, 720px);
    font-size: var(--gallery-headline-size-mobile);
    white-space: normal;
  }

  .gallery-shell {
    display: grid;
    grid-template-columns: 1fr 20px auto 20px 1fr;
    align-items: center;
    justify-content: center;
    gap: 24px 10px;
    margin-top: 34px;
  }

  .gallery-nav {
    z-index: 5;
    width: 20px;
    height: 20px;
    transform: none;
  }

  .gallery-nav svg {
    width: 18px;
    height: 18px;
  }

  .gallery-stage {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
    width: min(calc(100vw - 20px), 390px);
    margin: 0;
  }

  .gallery-pair {
    width: 100%;
    gap: 7px;
  }

  .gallery-prev {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
  }

  .gallery-next {
    grid-column: 4;
    grid-row: 2;
    justify-self: start;
  }

  .gallery-dots {
    grid-column: 3;
    grid-row: 2;
    margin-top: 0;
  }

  .gallery-cta {
    min-height: 42px;
    margin-top: 34px;
    padding: 0 18px;
    font-size: 13px;
  }

  .gallery-flow {
    grid-template-columns: auto minmax(44px, 1fr) auto;
    gap: 7px;
    margin-bottom: 10px;
  }

  .gallery-beam {
    height: 24px;
  }

  .gallery-card {
    padding: 17px;
  }

  .gallery-label {
    min-height: 34px;
    padding: 0 8px;
    font-size: 12px;
  }

  .gallery-label-approved {
    padding-right: 9px;
  }

  .gallery-label-output {
    min-height: 36px;
    padding: 0 10px;
  }

  .toast {
    font-size: 13px;
  }

  .gallery-card strong {
    max-width: 132px;
    font-size: clamp(20px, 6.7vw, 28px);
  }

  .gallery-card p {
    display: none;
  }

  .approval-section {
    padding: 72px 10px 78px;
  }

  .approval-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    width: min(100%, 520px);
  }

  .approval-copy {
    text-align: center;
  }

  .approval-inner h2 {
    max-width: min(100%, 620px);
    margin: 0 auto;
    font-size: var(--gallery-headline-size-mobile);
  }

  .approval-copy p {
    max-width: 340px;
    margin: 14px auto 0;
    font-size: 16px;
  }

  .approval-board {
    justify-self: center;
    width: min(100%, 370px);
    padding: 8px;
  }

  .approval-list {
    gap: 7px;
  }

  .approval-row {
    grid-template-columns: 36px minmax(0, 1fr) auto;
    gap: 8px;
    min-height: 52px;
    padding: 7px;
  }

  .approval-preview {
    width: 36px;
    height: 36px;
  }

  .approval-preview::after {
    width: 15px;
    height: 15px;
    margin: 17px 0 0 17px;
  }

  .approval-lines {
    gap: 7px;
  }

  .approval-icon {
    width: 28px;
    height: 28px;
  }

  .posting-section {
    padding: 72px 10px 78px;
  }

  .posting-inner h2 {
    max-width: min(100%, 620px);
    font-size: var(--gallery-headline-size-mobile);
  }

  .posting-copy {
    max-width: min(100%, 560px);
    margin-top: 16px;
    font-size: 16px;
  }

  .posting-platforms {
    gap: 8px;
    margin-top: 28px;
  }

  .posting-logo-track {
    gap: 8px;
    animation-duration: 42s;
  }

  .posting-logo-row.is-reverse .posting-logo-track {
    animation-duration: 38s;
  }

  .posting-logo-row:nth-child(3) .posting-logo-track {
    animation-duration: 46s;
  }

  .posting-logo-track > span {
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
  }

  .posting-platforms img,
  .posting-platforms svg {
    width: 15px;
    height: 15px;
  }

  .posting-platforms b {
    width: 19px;
    height: 19px;
    border-radius: 5px;
    font-size: 8px;
  }

  .comparison-section {
    padding: 72px 10px 82px;
  }

  .comparison-section::before {
    bottom: -84px;
    width: 132vw;
    height: 300px;
    filter: blur(22px);
  }

  .comparison-section::after {
    height: 168px;
  }

  .comparison-inner h2 {
    max-width: min(100%, 620px);
    margin-bottom: 36px;
    font-size: clamp(38px, 11vw, 50px);
  }

  .comparison-picker {
    position: relative;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 22px;
    padding: 2px 0 8px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-picker::after {
    content: none;
  }

  .comparison-picker::-webkit-scrollbar {
    display: none;
  }

  .comparison-picker button {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .comparison-stage {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
  }

  .comparison-card {
    min-height: 188px;
    padding: 22px;
    border-radius: 15px;
  }

  .comparison-card::before {
    right: 18px;
    bottom: 18px;
    width: 86px;
    height: 86px;
    border-radius: 28px;
  }

  .comparison-card strong {
    max-width: min(100%, 400px);
    margin-top: 34px;
    font-size: clamp(38px, 11vw, 54px);
  }

  .comparison-card strong.is-compact {
    max-width: calc(100% - 44px);
    font-size: clamp(32px, 8.5vw, 42px);
  }

  .comparison-card p {
    max-width: 100%;
    margin-top: 14px;
    font-size: 15px;
  }

  .comparison-transform {
    display: flex;
    justify-content: center;
    min-height: 42px;
  }

  .comparison-transform svg {
    width: 82px;
  }

  .comparison-transform svg {
    transform: rotate(90deg);
  }

  .comparison-caption {
    max-width: min(100%, 440px);
    margin-top: 20px;
    font-size: 15px;
  }

  .pricing-section,
  .roadmap-section,
  .faq-section,
  .final-cta-section {
    padding: 72px 10px 82px;
  }

  .site-footer {
    padding: 0 10px 24px;
  }

  .section-heading {
    max-width: min(100%, 620px);
    margin-bottom: 32px;
  }

  .section-heading h2,
  .final-cta-inner h2 {
    font-size: var(--gallery-headline-size-mobile);
  }

  .section-heading > p:not(.section-kicker),
  .final-cta-inner p {
    max-width: min(100%, 560px);
    font-size: 16px;
  }

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

  .pricing-billing-toggle {
    position: sticky;
    top: 10px;
    z-index: 40;
    width: min(100%, 360px);
    margin: -10px auto 22px;
    backdrop-filter: blur(14px) saturate(1.08);
  }

  .pricing-billing-toggle button {
    flex-direction: column;
    gap: 1px;
    min-height: 46px;
    padding: 0 12px;
    font-size: 13px;
  }

  .billing-save-badge {
    font-size: 10px;
  }

  .pricing-card {
    min-height: 0;
    padding: 21px;
    border-radius: 15px;
  }

  .pricing-badge {
    top: 16px;
    right: 16px;
  }

  .pricing-card-head strong {
    margin-top: 0;
    font-size: 27px;
  }

  .pricing-card ul {
    margin-top: 24px;
  }

  .usage-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 10px;
    padding: 18px;
    text-align: left;
  }

  .usage-strip .section-cta {
    width: fit-content;
  }

  .enterprise-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 10px;
    padding: 18px;
    text-align: left;
  }

  .enterprise-strip .section-cta {
    width: fit-content;
  }

  .roadmap-list {
    --roadmap-rail: 68px;
    --roadmap-rail-x: 34px;
    max-width: min(100%, 620px);
  }

  .roadmap-list > li {
    gap: 10px;
    min-height: 42px;
    padding-bottom: 24px;
  }

  .roadmap-list > .roadmap-phase-marker {
    min-height: 44px;
    padding: 2px 0 24px;
  }

  .roadmap-phase-label {
    min-height: 22px;
    padding: 0 8px;
    font-size: 9px;
  }

  .roadmap-icon {
    width: 34px;
    height: 34px;
  }

  .roadmap-icon svg {
    width: 14px;
    height: 14px;
  }

  .roadmap-list > li > div {
    padding-top: 3px;
  }

  .roadmap-title-row {
    gap: 10px;
  }

  .roadmap-expand-icon {
    width: 28px;
    height: 28px;
  }

  .roadmap-list strong {
    font-size: clamp(20px, 5vw, 27px);
  }

  .roadmap-details ul {
    gap: 8px;
    margin-top: 12px;
    font-size: 14px;
  }

  .roadmap-detail-copy {
    margin-top: 12px;
    font-size: 14px;
  }

  .faq-list {
    max-width: min(100%, 620px);
    padding-inline: 14px;
  }

  .faq-trigger {
    min-height: 76px;
    gap: 12px;
    padding: 22px 0;
    font-size: clamp(20px, 5.6vw, 24px);
  }

  .faq-index {
    min-width: 28px;
    font-size: 11px;
  }

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

  .faq-toggle::before,
  .faq-toggle::after {
    width: 11px;
  }

  .faq-panel p {
    margin: 0 42px 24px 40px;
    font-size: 16px;
  }

  .final-cta-inner .section-cta {
    margin-top: 26px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
    padding: 26px 0;
    text-align: center;
  }

  .footer-brand {
    display: grid;
    justify-items: center;
    width: 100%;
  }

  .footer-brand p {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px 20px;
    justify-content: center;
    justify-self: center;
  }

  .footer-actions {
    flex-wrap: wrap;
    justify-content: center;
    justify-self: center;
  }

  .footer-socials-mobile {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 16px;
  }

  .footer-socials-desktop {
    display: none;
  }

  .footer-bottom {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 18px;
    text-align: left;
  }

  .footer-bottom .footer-social-icon {
    width: 18px;
    height: 18px;
  }

  .footer-bottom .footer-social-icon img {
    width: 15px;
    height: 15px;
  }

  .cookie-consent {
    padding: 10px;
  }

  .cookie-consent-panel,
  .cookie-consent.is-settings .cookie-consent-panel {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
  }

  .cookie-choice-row {
    gap: 10px;
    padding: 10px;
  }

  .cookie-consent:not(.is-settings) .cookie-consent-actions {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 6px;
  }

  .cookie-consent.is-settings .cookie-consent-actions {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    gap: 10px;
  }

  .cookie-consent-actions button {
    width: 100%;
    min-height: 42px;
  }

  .cookie-consent:not(.is-settings) .cookie-consent-link {
    width: auto;
    padding-right: 8px;
    padding-left: 8px;
  }

  .cookie-consent.is-settings .cookie-consent-link {
    width: auto;
    padding-right: 8px;
    padding-left: 8px;
  }

  .cookie-consent.is-settings .cookie-consent-save {
    width: auto;
    padding-right: 14px;
    padding-left: 14px;
  }

  .cookie-consent.is-settings .cookie-consent-accept {
    width: auto;
    min-width: 132px;
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (max-width: 520px) {
  .frame-hero {
    min-height: 790px;
    padding: 206px 16px 74px;
  }

  .frame-pill {
    min-height: 32px;
    margin-bottom: 16px;
    font-size: 13px;
  }

  .frame-hero-center h1 {
    max-width: 350px;
    font-size: clamp(40px, 11.6vw, 50px);
  }

  .frame-hero-center > p:not(.frame-pill) {
    font-size: 18px;
  }

  .frame-button {
    min-height: 54px;
  }

  .frame-board-row {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
  }

  .roadmap-list > li:not(.roadmap-item-expandable):not(.roadmap-phase-marker) > div {
    padding-top: 6px;
  }
}

@media (max-width: 374px) {
  .hero-copy {
    font-size: 15px;
  }
}

@media (max-width: 340px) {
  .hero-copy {
    font-size: 14px;
  }
}

/* Arcads-modeled homepage frames. */
.home-page {
  background: #eeeeec;
}

.home-page .site-header {
  width: min(1096px, calc(100% - 92px));
}

.home-page .brand,
.home-page .footer-logo,
.home-page .arc-section-logo {
  letter-spacing: -0.045em;
}

.home-page .sign-in {
  border-radius: 17px;
  background: linear-gradient(180deg, #30302f, #0b0b0b);
}

.home-page .frame-hero.arc-hero {
  min-height: 862px;
  padding: 190px 24px 160px;
  background: #eeeeec;
}

.home-page .frame-hero.arc-hero::before {
  background:
    radial-gradient(circle at 50% 38%, rgba(170, 160, 146, 0.36), transparent 18%),
    radial-gradient(circle at 50% 68%, rgba(170, 160, 146, 0.18), transparent 22%),
    linear-gradient(180deg, #f0f0ee 0%, #ebebe8 100%);
}

.home-page .frame-hero.arc-hero::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(238, 238, 236, 0.94), transparent 22%, transparent 78%, rgba(238, 238, 236, 0.94)),
    linear-gradient(180deg, transparent 0%, rgba(238, 238, 236, 0.72) 82%, #eeeeec 100%);
  filter: none;
}

.home-page .frame-hero-center {
  width: min(780px, 100%);
}

.home-page .frame-pill {
  min-height: 44px;
  margin-bottom: 15px;
  padding: 0 19px;
  border-color: rgba(9, 9, 9, 0.06);
  background: rgba(255, 255, 255, 0.54);
  color: #141414;
  font-size: 18px;
  box-shadow: 0 18px 42px rgba(9, 9, 9, 0.08);
}

.home-page .frame-hero-center h1 {
  max-width: 820px;
  font-size: clamp(62px, 6.4vw, 92px);
  font-weight: 760;
  line-height: 0.92;
}

.home-page .frame-hero-center h1 em {
  font-size: 0.86em;
  font-weight: 760;
}

.home-page .frame-hero-center > p:not(.frame-pill) {
  max-width: 720px;
  margin-top: 14px;
  color: rgba(9, 9, 9, 0.68);
  font-size: clamp(19px, 1.65vw, 22px);
}

.home-page .frame-hero-actions {
  gap: 28px;
  margin-top: 62px;
}

.home-page .frame-button {
  min-width: 206px;
  min-height: 58px;
  border-radius: 16px;
}

.home-page .frame-button-dark {
  background: linear-gradient(180deg, #30302f, #090909);
}

.home-page .frame-float-card {
  width: clamp(154px, 13.2vw, 188px);
  border-radius: 12px;
  box-shadow: 0 30px 90px rgba(9, 9, 9, 0.26);
}

.home-page .frame-float-card span {
  position: absolute;
  right: 12px;
  bottom: 14px;
  left: 12px;
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 0 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.88);
  color: #0b0b0b;
  font-size: 12px;
  font-weight: 820;
  line-height: 1.1;
  text-align: center;
}

.home-page .frame-float-left {
  top: 72px;
  left: max(4px, calc(50% - 638px));
  transform: rotate(-2deg);
}

.home-page .frame-float-top {
  top: -126px;
  left: calc(50% - 86px);
  transform: rotate(1deg);
}

.home-page .frame-float-right {
  top: 50px;
  right: max(8px, calc(50% - 635px));
  transform: rotate(5deg);
}

.home-page .frame-float-bottom {
  bottom: -126px;
  left: calc(50% - 82px);
}

.home-page .frame-float-lower-left {
  bottom: -116px;
  left: max(94px, calc(50% - 540px));
}

.home-page .frame-float-lower-right {
  right: max(78px, calc(50% - 530px));
  bottom: -118px;
}

.home-page .arc-model-section {
  padding: 8px 24px 112px;
  background: #eeeeec;
}

.home-page .arc-section-bar {
  width: min(1096px, calc(100vw - 92px));
  height: 70px;
  margin: 0 auto 14px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 16px 42px rgba(9, 9, 9, 0.06);
}

.home-page .arc-section-bar-dark {
  position: absolute;
  top: 8px;
  width: min(1096px, calc(100% - 92px));
  background: rgba(255, 255, 255, 0.48);
  color: #090909;
}

.home-page .arc-section-logo {
  font-size: 26px;
}

.home-page .arc-section-login {
  min-height: 46px;
  border-radius: 16px;
  background: linear-gradient(180deg, #30302f, #090909);
}

.home-page .arc-model-copy {
  width: min(1000px, 100%);
  margin: 0 auto 34px;
}

.home-page .arc-model-copy h2,
.home-page .arc-social-copy h2,
.home-page .arc-feature-hero h2,
.home-page .arc-agent-copy h2 {
  font-size: clamp(44px, 5.3vw, 64px);
  line-height: 0.98;
}

.home-page .arc-model-copy h2 em,
.home-page .arc-social-copy h2 em,
.home-page .arc-feature-hero h2 em,
.home-page .arc-agent-copy h2 em,
.home-page .final-cta-inner h2 em {
  font-family: var(--display-font);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.home-page .arc-model-copy p {
  max-width: 840px;
  margin-top: 14px;
  font-size: 21px;
  line-height: 1.34;
}

.home-page .arc-tool-grid {
  width: min(1000px, 100%);
  gap: 24px;
}

.home-page .arc-tool-card {
  min-width: 0;
}

.home-page .arc-tool-visual {
  min-height: 322px;
  border-radius: 14px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 46px rgba(9, 9, 9, 0.08);
}

.home-page .arc-tool-grid article h3 {
  margin-top: 18px;
  font-size: 23px;
  line-height: 1.1;
}

.home-page .arc-tool-grid article p {
  max-width: 290px;
  margin-top: 11px;
  color: rgba(9, 9, 9, 0.67);
  font-size: 15px;
}

.home-page .arc-inline-tooltip {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: baseline;
}

.home-page .arc-inline-tooltip-trigger {
  appearance: none;
  padding: 0;
  border: 0;
  border-bottom: 1px dotted currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: inherit;
  cursor: help;
}

.home-page .arc-inline-tooltip-trigger:focus-visible {
  outline: 2px solid rgba(9, 9, 9, 0.3);
  outline-offset: 3px;
}

.home-page .arc-inline-tooltip-panel {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  z-index: 12;
  width: min(280px, calc(100vw - 48px));
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(14, 14, 14, 0.94);
  box-shadow: 0 12px 30px rgba(9, 9, 9, 0.22);
  color: #fffefa;
  filter: blur(6px);
  font-family: var(--body-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.34;
  opacity: 0;
  overflow-wrap: break-word;
  pointer-events: none;
  text-align: left;
  transform: translateY(4px);
  transition: opacity 160ms ease, filter 160ms ease, transform 160ms ease, visibility 0s linear 160ms;
  visibility: hidden;
  white-space: normal;
}

.home-page .arc-inline-tooltip-panel::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 24px;
  width: 9px;
  height: 9px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(14, 14, 14, 0.94);
  transform: translateY(-5px) rotate(45deg);
}

.home-page .arc-inline-tooltip:hover .arc-inline-tooltip-panel,
.home-page .arc-inline-tooltip:focus-within .arc-inline-tooltip-panel,
.home-page .arc-inline-tooltip.is-tooltip-open .arc-inline-tooltip-panel {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
  visibility: visible;
}

.home-page .arc-tool-model {
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 83%, rgba(255, 255, 255, 0.2), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #050505, #0f0f0f);
  background-size: auto, 34px 34px, auto;
}

.home-page .arc-tool-model:has(.arc-tool-model-video) {
  background: #050505;
}

.home-page .arc-tool-model:has(.arc-tool-model-video)::before {
  content: none;
}

.home-page .arc-tool-model-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: center 10%;
}

.home-page .arc-tool-model::before {
  content: "Style";
  position: absolute;
  top: 4px;
  left: 14px;
  color: rgba(255, 255, 255, 0.12);
  font-size: 86px;
  font-weight: 850;
  letter-spacing: -0.08em;
}

.home-page .arc-tool-model strong,
.home-page .arc-tool-model > span {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  min-height: 60px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.34);
  color: #fffefa;
  font-size: 16px;
  font-weight: 760;
  backdrop-filter: blur(16px);
  transform: translateY(-50%);
}

.home-page .arc-tool-model strong {
  left: 16px;
  width: 36%;
  border-radius: 8px 0 0 8px;
}

.home-page .arc-tool-model > span {
  right: 16px;
  left: auto;
  width: calc(64% - 32px);
  border-left: 0;
  border-radius: 0 8px 8px 0;
}

.home-page .arc-tool-model i {
  position: absolute;
  right: 10px;
  bottom: -16px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 48% 52% 46% 54%;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(0.2px);
}

.home-page .arc-tool-edit video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  --video-reveal-ready-filter: saturate(0.78) contrast(1.08);
  --video-reveal-ready-opacity: 0.82;
  opacity: 0.82;
  filter: saturate(0.78) contrast(1.08);
}

.home-page .arc-tool-edit > span:not(.video-poster-reveal) {
  min-width: 120px;
  min-height: 54px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.26);
  font-size: 15px;
}

.home-page video[data-video-reveal]:not([data-product-example-slide]) {
  opacity: var(--video-reveal-pending-opacity, 0.68);
  filter: var(--video-reveal-pending-filter, blur(10px));
  transition:
    opacity 320ms ease,
    filter 360ms ease;
}

.home-page video[data-video-reveal].is-video-frame-ready:not([data-product-example-slide]) {
  opacity: var(--video-reveal-ready-opacity, 1);
  filter: var(--video-reveal-ready-filter, none);
}

.home-page [data-video-poster-host] {
  position: relative;
}

.home-page .video-poster-reveal {
  position: absolute;
  display: block;
  overflow: hidden;
  background-repeat: no-repeat;
  filter: blur(10px);
  opacity: 1;
  pointer-events: none;
  transform: scale(1.02);
  transition:
    opacity 320ms ease,
    filter 360ms ease,
    visibility 0s;
  visibility: visible;
}

.home-page .video-poster-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
}

.home-page video.is-video-frame-ready + .video-poster-reveal,
.home-page [data-product-example-slide]:not(.is-active) + .video-poster-reveal {
  filter: blur(0);
  opacity: 0;
  transition:
    opacity 320ms ease,
    filter 360ms ease,
    visibility 0s linear 360ms;
  visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .home-page video[data-video-reveal]:not([data-product-example-slide]) {
    filter: var(--video-reveal-ready-filter, none);
    transition: none;
  }

  .home-page .video-poster-reveal {
    transition: none;
  }
}

.home-page .arc-tool-formats {
  padding: 0 24px;
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(255, 255, 255, 0.05) 16% 17%, transparent 17%),
    #080808;
}

.home-page .arc-tool-formats span {
  min-height: 86px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.34);
  font-size: 24px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
}

.home-page .arc-tool-formats span:nth-child(1) {
  margin-right: 12px;
}

.home-page .arc-tool-formats span:nth-child(2) {
  margin-left: 18px;
}

.home-page .arc-tool-formats span:nth-child(3) {
  margin-right: -22px;
}

.home-page .arc-tool-variations {
  isolation: isolate;
  padding: 28px 22px;
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.12), transparent 20%),
    radial-gradient(circle at 18% 82%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(90deg, transparent 0 20%, rgba(255, 255, 255, 0.06) 20% calc(20% + 1px), transparent calc(20% + 1px)),
    linear-gradient(180deg, #080808, #030303);
}

.home-page .arc-tool-variations::before {
  content: "";
  position: absolute;
  top: 88px;
  bottom: 62px;
  left: 50%;
  z-index: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
  transform: translateX(-50%);
}

.home-page .arc-tool-variations::after {
  content: "Variations";
  position: absolute;
  right: 14px;
  bottom: 2px;
  z-index: 0;
  color: rgba(255, 255, 255, 0.08);
  font-size: 48px;
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1;
}

.home-page .arc-variation-source,
.home-page .arc-variation-grid {
  position: relative;
  z-index: 1;
}

.home-page .arc-variation-source {
  padding: 14px 16px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  color: #fffefa;
  backdrop-filter: blur(16px);
}

.home-page .arc-variation-source span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.home-page .arc-variation-source strong {
  display: block;
  margin-top: 7px;
  font-size: 21px;
  font-weight: 820;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.home-page .arc-variation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.home-page .arc-variation-grid::before {
  content: "";
  position: absolute;
  top: -26px;
  left: 50%;
  width: min(184px, 70%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-50%);
}

.home-page .arc-variation-grid span {
  display: grid;
  min-height: 58px;
  align-content: center;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  color: #fffefa;
  backdrop-filter: blur(14px);
}

.home-page .arc-variation-grid b,
.home-page .arc-variation-grid small {
  display: block;
  overflow-wrap: anywhere;
  letter-spacing: 0;
}

.home-page .arc-variation-grid b {
  font-size: 14px;
  font-weight: 820;
  line-height: 1.05;
}

.home-page .arc-variation-grid small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 680;
  line-height: 1.1;
}

.home-page .arc-variation-grid span:nth-child(odd) {
  transform: translateY(-5px);
}

.home-page .arc-variation-grid span:nth-child(even) {
  transform: translateY(7px);
}

.home-page .arc-workflow-panel {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  min-height: 668px;
  padding: 126px max(24px, calc((100vw - 1096px) / 2)) 100px;
  background: #101010;
}

.home-page .arc-workflow-copy {
  align-self: center;
}

.home-page .arc-workflow-copy h2 {
  max-width: 450px;
  font-size: clamp(44px, 4.8vw, 62px);
}

.home-page .arc-workflow-copy p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.52);
}

.home-page .arc-workflow-copy .frame-button,
.home-page .arc-feature-hero .frame-button,
.home-page .arc-feature-mobile-cta,
.home-page .arc-agent-copy .frame-button {
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.16), 0 16px 38px rgba(0, 0, 0, 0.24);
}

.home-page .arc-workflow-canvas {
  min-height: 438px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, #0c0c0c, #060606);
  background-size: 18px 18px, auto;
  box-shadow: inset 1px 0 rgba(255, 255, 255, 0.08), inset 0 -1px rgba(255, 255, 255, 0.08);
}

.home-page .arc-workflow-canvas.arc-workflow-video-canvas {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 536px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-page .arc-workflow-canvas::before,
.home-page .arc-workflow-canvas::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-page .arc-workflow-canvas.arc-workflow-video-canvas::before,
.home-page .arc-workflow-canvas.arc-workflow-video-canvas::after {
  content: none;
}

.home-page .arc-workflow-canvas::before {
  inset: 42px 56px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
}

.home-page .arc-workflow-canvas::after {
  top: 48%;
  right: 72px;
  left: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}

.home-page .arc-workflow-video {
  position: absolute;
  right: 54px;
  bottom: 34px;
  z-index: 1;
  width: 156px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px 16px 0 0;
  background: #111;
  opacity: 0.86;
}

.home-page .arc-workflow-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-page .arc-workflow-demo-video {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 316px);
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #111;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  object-fit: cover;
}

.home-page .arc-canvas-node {
  z-index: 2;
  min-width: 158px;
  min-height: 74px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.home-page .node-1 { top: 58px; left: 58px; }
.home-page .node-2 { top: 152px; right: 90px; }
.home-page .node-3 { bottom: 96px; left: 116px; }
.home-page .node-4 { right: 170px; bottom: 34px; }

.home-page .arc-social-panel {
  display: none;
  padding: 102px 24px 124px;
  background: #101010;
}

.home-page .arc-social-copy h2 {
  max-width: 920px;
}

.home-page .arc-social-copy p {
  max-width: 760px;
}

.home-page .arc-social-tabs {
  gap: 32px;
  margin: 40px auto 48px;
}

.home-page .arc-social-tabs button {
  min-width: 305px;
  min-height: 90px;
  border-radius: 16px;
}

.home-page .arc-social-stage {
  grid-template-columns: repeat(4, 248px);
  gap: 24px;
  width: min(1000px, 100%);
  min-height: 544px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-page .arc-social-stage article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto minmax(0, 1fr);
  column-gap: 10px;
  height: 470px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  filter: none;
  opacity: 1;
  transform: translateY(var(--social-card-y, 0px)) rotate(var(--social-card-rotate, 0deg));
  transition:
    opacity 220ms ease,
    filter 220ms ease,
    transform 260ms ease,
    box-shadow 180ms ease;
  will-change: opacity, filter, transform;
}

.home-page .arc-social-stage [data-social-clone] {
  display: none;
}

.home-page .arc-social-stage [data-social-index="0"] { --social-card-y: 34px; --social-card-rotate: 0deg; }
.home-page .arc-social-stage [data-social-index="1"] { --social-card-y: 74px; --social-card-rotate: 0deg; }
.home-page .arc-social-stage [data-social-index="2"] { --social-card-y: 20px; --social-card-rotate: 0deg; }
.home-page .arc-social-stage [data-social-index="3"] { --social-card-y: 54px; --social-card-rotate: 0deg; }

.home-page .arc-social-stage.is-transitioning article[data-social-index] {
  opacity: 0;
  filter: blur(12px);
  pointer-events: none;
  transform: translateY(calc(var(--social-card-y, 0px) + 8px)) scale(0.98) rotate(var(--social-card-rotate, 0deg));
}

.home-page .arc-social-stage b {
  display: none;
}

.home-page .arc-social-stage p {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.3;
}

.home-page .arc-social-stage video {
  grid-column: 1 / -1;
  grid-row: 2;
  min-height: 0;
  border-radius: 12px;
}

.home-page .arc-social-stage article span {
  position: static;
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  justify-self: end;
  white-space: nowrap;
}

.home-page .arc-thought-panel {
  padding: 108px 24px 122px;
  background: #EFEEEA;
}

.home-page .arc-quote-row {
  width: min(980px, 100%);
  gap: 32px;
  margin: 44px auto 74px;
}

.home-page .arc-quote-row article {
  min-height: 92px;
  border: 1px solid rgba(9, 9, 9, 0.04);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.78);
}

.home-page .arc-wide-video {
  position: relative;
  display: grid;
  align-items: end;
  width: min(504px, 100%);
  height: auto;
  aspect-ratio: 968 / 1080;
  margin-top: 56px;
  border-radius: 14px;
}

.home-page .arc-thought-cta {
  display: flex;
  width: fit-content;
  margin: 34px auto 0;
}

.home-page .arc-thought-panel .frame-button-dark {
  border-color: rgba(9, 9, 9, 0.88);
  background: linear-gradient(180deg, #30302f, #090909);
  color: #fffefa;
}

.home-page .arc-wide-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 968 / 1080;
  object-fit: contain;
}

.home-page .arc-wide-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.74));
  pointer-events: none;
}

.home-page .arc-wide-video div {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 5px;
  padding: 32px;
  color: #fffefa;
  text-align: left;
}

.home-page .arc-wide-video strong {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.home-page .arc-wide-video span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
}

.home-page .arc-realism-panel {
  display: grid;
  gap: 24px;
  padding: 96px max(24px, calc((100vw - 1000px) / 2)) 118px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 74, 61, 0.08), transparent 34%),
    #fbfaf7;
  color: var(--ink);
}

.home-page .arc-realism-hero {
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.home-page .arc-realism-hero h2 {
  width: 100%;
  max-width: 1000px;
  margin: 0;
  font-size: clamp(44px, 5.2vw, 70px);
  font-weight: 820;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.home-page .arc-realism-hero h2 em {
  margin-left: 0.08em;
  font-family: var(--display-font);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.home-page .arc-realism-hero p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 560;
  line-height: 1.38;
}

.home-page .arc-realism-hero .frame-button {
  margin-top: 6px;
}

.home-page .arc-realism-hero .frame-button-dark {
  border-color: rgba(9, 9, 9, 0.16);
  background: linear-gradient(180deg, #30302f, #090909);
  color: #fffefa;
  box-shadow: 0 20px 58px rgba(9, 9, 9, 0.22);
}

.home-page .arc-section-bottom-cta {
  justify-self: center;
  width: fit-content;
  margin: 14px auto 0;
}

.home-page .arc-section-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 14px auto 0;
}

.home-page .arc-section-bottom-actions .frame-button {
  flex: 0 1 auto;
}

.home-page .arc-section-bottom-actions .arc-section-bottom-cta {
  margin: 0;
}

.home-page .arc-section-bottom-actions p.frame-risk-note {
  flex: 1 0 100%;
  justify-self: center;
  margin: 0 auto;
}

.home-page .arc-workflow-copy .frame-risk-note,
.home-page .arc-feature-hero .frame-risk-note,
.home-page .arc-feature-panel > .frame-risk-note,
.home-page .arc-agent-copy .frame-risk-note,
.home-page .arc-thought-panel > .frame-risk-note,
.home-page .final-cta-inner .frame-risk-note {
  margin-top: 14px;
}

@media (max-width: 860px) {
  .home-page .arc-section-bottom-actions {
    display: grid;
    justify-items: center;
    gap: 10px;
    width: min(100%, 320px);
  }

  .home-page .arc-section-bottom-actions .frame-button {
    width: min(100%, 300px);
  }

  .home-page .arc-section-bottom-actions p.frame-risk-note {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    gap: 8px 14px;
    white-space: normal;
  }
}

.home-page .arc-realism-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 22px;
}

.home-page .arc-realism-grid article {
  --arc-realism-text-offset: 288px;
  position: relative;
  display: grid;
  align-content: start;
  min-height: 430px;
  overflow: hidden;
  padding: var(--arc-realism-text-offset) 30px 30px;
  border: 1px solid rgba(9, 9, 9, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36)),
    #f0eee8;
  box-shadow: 0 24px 70px rgba(9, 9, 9, 0.08);
}

.home-page .arc-realism-grid article:has(.arc-feature-character-image) {
  --arc-realism-text-offset: 238px;
}

.home-page .arc-realism-grid article::after {
  content: "";
  position: absolute;
  inset: 34% 0 0;
  background: linear-gradient(180deg, transparent, rgba(251, 250, 247, 0.96));
  pointer-events: none;
}

.home-page .arc-realism-grid h3,
.home-page .arc-realism-grid p {
  position: relative;
  z-index: 2;
}

.home-page .arc-realism-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(25px, 2.45vw, 34px);
  font-weight: 820;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.home-page .arc-realism-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 540;
  line-height: 1.28;
}

.home-page .arc-realism-grid .arc-feature-visual {
  top: 28px;
  right: 28px;
  left: 28px;
  height: 188px;
}

.home-page .arc-realism-grid .arc-feature-characters {
  border-color: rgba(9, 9, 9, 0.08);
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 74, 61, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(9, 9, 9, 0.04));
}

.home-page .arc-realism-grid .arc-feature-characters span {
  border-color: rgba(9, 9, 9, 0.08);
  background:
    radial-gradient(circle at 50% 27%, rgba(255, 250, 241, 0.96) 0 18%, transparent 19%),
    linear-gradient(180deg, rgba(255, 74, 61, 0.22), rgba(9, 9, 9, 0.04)),
    #d8d4cb;
}

.home-page .arc-realism-grid .arc-feature-characters span:nth-child(2) {
  background:
    radial-gradient(circle at 52% 27%, rgba(255, 250, 241, 0.96) 0 17%, transparent 18%),
    linear-gradient(180deg, rgba(79, 135, 237, 0.2), rgba(9, 9, 9, 0.04)),
    #d8d4cb;
}

.home-page .arc-realism-grid .arc-feature-characters i {
  background: rgba(9, 9, 9, 0.12);
}

.home-page .arc-realism-grid .arc-feature-assets img {
  aspect-ratio: 9 / 16;
  height: auto;
  border-color: rgba(9, 9, 9, 0.08);
  box-shadow: 0 20px 50px rgba(9, 9, 9, 0.14);
}

.home-page .arc-realism-grid .arc-feature-assets img:nth-child(2) {
  height: auto;
}

.home-page .arc-realism-grid .arc-feature-assets-generated {
  display: block;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(9, 9, 9, 0.08);
  border-radius: 18px;
  background: #101010;
  box-shadow: 0 20px 50px rgba(9, 9, 9, 0.14);
}

.home-page .arc-realism-grid .arc-feature-assets-generated img,
.home-page .arc-realism-grid .arc-feature-assets-generated img:nth-child(2) {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center top;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-page .arc-realism-grid .arc-feature-character-image {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(9, 9, 9, 0.08);
  border-radius: 18px;
  background: #101010;
  box-shadow: 0 20px 50px rgba(9, 9, 9, 0.14);
}

.home-page .arc-realism-grid .arc-feature-character-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-page .arc-realism-grid .arc-feature-characters span {
  height: 128px;
}

.home-page .arc-realism-grid .arc-feature-characters span:nth-child(2) {
  height: 106px;
}

.home-page .arc-feature-product-showcase {
  --feature-product-stack-width: 104px;
  --feature-product-grid-gap: 12px;
  --feature-product-media-width: 142px;
  --feature-product-media-height: 252px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--feature-product-stack-width);
  grid-template-rows: 1fr;
  column-gap: var(--feature-product-grid-gap);
  align-content: center;
  align-items: center;
}

.home-page .arc-realism-grid .arc-feature-product-showcase {
  height: var(--feature-product-media-height);
}

.home-page .arc-feature-product-showcase video {
  grid-row: 1 / -1;
  justify-self: center;
  width: min(var(--feature-product-media-width), 100%);
  height: var(--feature-product-media-height);
  border: 1px solid rgba(9, 9, 9, 0.08);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(9, 9, 9, 0.14);
}

.home-page .arc-feature-product-showcase img {
  align-self: end;
  width: 66px;
  height: 66px;
  margin: 0 auto 4px;
  border: 1px solid rgba(9, 9, 9, 0.08);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(9, 9, 9, 0.12);
}

.home-page .arc-feature-product-option {
  appearance: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 0;
  height: 34px;
  min-height: 0;
  max-height: 34px;
  padding: 0 7px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: rgba(9, 9, 9, 0.7);
  font: inherit;
  font-size: 10px;
  font-weight: 820;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.home-page .arc-feature-product-option::before {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  background: currentColor;
  opacity: 0.84;
  -webkit-mask: var(--product-option-icon) center / contain no-repeat;
  mask: var(--product-option-icon) center / contain no-repeat;
}

.home-page .arc-feature-product-option span {
  display: block;
  min-width: 0;
  line-height: 1.05;
  text-wrap: balance;
}

.home-page .arc-feature-product-option-apply {
  --product-option-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3s6 6.2 6 10a6 6 0 0 1-12 0c0-3.8 6-10 6-10Z'/%3E%3Cpath d='M9.5 14.5c.7 1 1.5 1.5 2.5 1.5s1.8-.5 2.5-1.5'/%3E%3C/svg%3E");
}

.home-page .arc-feature-product-option-hold {
  --product-option-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 4 7 4-7 4-7-4 7-4Z'/%3E%3Cpath d='M5 8v8l7 4 7-4V8'/%3E%3Cpath d='M12 12v8'/%3E%3C/svg%3E");
}

.home-page .arc-feature-product-option-phone {
  --product-option-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='3' width='10' height='18' rx='2'/%3E%3Cpath d='M11 17h2'/%3E%3Cpath d='M10 6h4'/%3E%3C/svg%3E");
}

.home-page .arc-feature-product-option-talking {
  --product-option-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z'/%3E%3Cpath d='M5 21a7 7 0 0 1 14 0'/%3E%3Cpath d='M18 8h2'/%3E%3Cpath d='M19 5v6'/%3E%3C/svg%3E");
}

.home-page .arc-feature-product-option-consume {
  --product-option-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 4h10l-1 10.5a4 4 0 0 1-8 0L7 4Z'/%3E%3Cpath d='M8 8h8'/%3E%3Cpath d='M8 20h8'/%3E%3C/svg%3E");
}

.home-page .arc-feature-product-option-complex {
  --product-option-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8a2 2 0 0 1 2-2h3l1.4-2h3.2L15 6h3a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8Z'/%3E%3Ccircle cx='12' cy='12.5' r='3'/%3E%3C/svg%3E");
}

.home-page .arc-feature-product-option-lifestyle {
  --product-option-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 11 9-7 9 7'/%3E%3Cpath d='M5 10v9h14v-9'/%3E%3Cpath d='M9 19v-5h6v5'/%3E%3C/svg%3E");
}

.home-page .arc-feature-product-option-closeups {
  --product-option-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='6'/%3E%3Cpath d='m16 16 4 4'/%3E%3Cpath d='M11 8v6'/%3E%3Cpath d='M8 11h6'/%3E%3C/svg%3E");
}

.home-page .arc-feature-product-option.is-active {
  border-color: rgba(9, 9, 9, 0.1);
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(9, 9, 9, 0.12);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
}

.home-page .arc-feature-product-option:focus-visible {
  outline: 3px solid rgba(16, 83, 169, 0.64);
  outline-offset: 3px;
}

.home-page .arc-feature-visual.arc-feature-product-carousel {
  pointer-events: auto;
}

.home-page .arc-feature-product-carousel .arc-feature-product-media {
  position: relative;
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: center;
  min-width: 0;
  justify-self: center;
  width: min(var(--feature-product-media-width), 100%);
  height: var(--feature-product-media-height);
  overflow: hidden;
  border: 1px solid rgba(9, 9, 9, 0.08);
  border-radius: 18px;
  background: #101010;
  box-shadow: 0 20px 50px rgba(9, 9, 9, 0.14);
}

.home-page .arc-feature-product-main-carousel,
.home-page .arc-feature-brand-carousel {
  --product-option-count: 4;
}

.home-page .arc-feature-product-options {
  position: relative;
  z-index: 3;
  grid-column: 2;
  grid-row: 1;
  width: var(--feature-product-stack-width);
  height: var(--feature-product-media-height);
  display: grid;
  grid-template-rows: repeat(var(--product-option-count, 3), 34px);
  gap: 8px;
  align-content: space-between;
  align-self: center;
  pointer-events: auto;
}

.home-page .arc-feature-product-carousel .arc-feature-product-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.home-page .arc-feature-product-carousel .arc-feature-product-media [data-product-example-slide] {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.025);
  box-shadow: none;
  transition:
    opacity 360ms ease,
    filter 360ms ease,
    transform 520ms ease;
}

.home-page .arc-feature-product-carousel .arc-feature-product-media [data-product-example-slide].is-active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.home-page .arc-feature-product-dots {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.home-page .arc-feature-product-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.home-page .arc-feature-product-dots button.is-active {
  width: 20px;
  background: #fffefa;
}

.home-page .arc-playful-panel {
  display: grid;
  gap: 24px;
  padding: 96px max(24px, calc((100vw - 1000px) / 2)) 118px;
  background: #101010;
  color: #fffefa;
}

.home-page .arc-playful-hero {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.home-page .arc-playful-hero h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(44px, 5.2vw, 70px);
  font-weight: 820;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.home-page .arc-playful-hero h2 em {
  margin-left: 0.08em;
  font-family: var(--display-font);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.home-page .arc-playful-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 250, 241, 0.62);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 560;
  line-height: 1.38;
}

.home-page .arc-playful-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.home-page .arc-playful-grid article {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 318px;
  overflow: visible;
  padding: 30px;
  border: 1px solid transparent;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    #060606;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.home-page .arc-playful-grid article.arc-playful-variant-card {
  min-height: 356px;
}

.home-page .arc-playful-grid article::after {
  content: "";
  position: absolute;
  inset: 36% 1px 1px;
  border-radius: 0 0 17px 17px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.9));
  pointer-events: none;
}

.home-page .arc-playful-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 180ms ease;
}

.home-page .arc-playful-grid h3,
.home-page .arc-playful-grid p {
  position: relative;
  z-index: 2;
}

.home-page .arc-playful-grid h3 {
  margin: 0;
  color: #fffefa;
  font-size: clamp(25px, 2.45vw, 34px);
  font-weight: 820;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.home-page .arc-playful-grid p {
  margin: 12px 0 0;
  color: rgba(255, 250, 241, 0.62);
  font-size: 17px;
  font-weight: 540;
  line-height: 1.28;
}

.home-page .arc-playful-visual {
  --arc-playful-stack-width: 104px;
  --arc-playful-grid-gap: 12px;
  --arc-playful-media-width: 142px;
  --arc-playful-media-height: 252px;
  --arc-playful-control-size: 38px;
  --arc-playful-sound-inset: 10px;
  --arc-playful-media-left: calc((100% - var(--arc-playful-stack-width) - var(--arc-playful-grid-gap) - var(--arc-playful-media-width)) / 2);
  position: absolute;
  top: 28px;
  right: 28px;
  left: 28px;
  z-index: 1;
  height: var(--arc-playful-media-height);
  pointer-events: auto;
}

.home-page .arc-playful-visual.arc-feature-visual {
  top: 28px;
  right: 28px;
  left: 28px;
  height: var(--arc-playful-media-height);
  pointer-events: auto;
}

.home-page .arc-playful-visual-character {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  grid-template-rows: minmax(0, 1fr);
  column-gap: 12px;
}

.home-page .arc-playful-visual-character > img,
.home-page .arc-playful-visual-character > video {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  width: var(--arc-playful-media-width);
  height: var(--arc-playful-media-height);
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.34);
  transition:
    border-color 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.home-page .arc-playful-visual-explainer span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 250, 241, 0.9);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.1;
}

.home-page .arc-playful-visual-explainer span:nth-child(2) {
  background: rgba(255, 74, 61, 0.18);
}

.home-page .arc-playful-visual-explainer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 82px);
  gap: 12px;
  align-content: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 74, 61, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.home-page .arc-playful-product-build {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  grid-template-rows: minmax(0, 1fr);
  column-gap: 12px;
}

.home-page .arc-playful-product-build video {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  display: block;
  width: var(--arc-playful-media-width);
  height: var(--arc-playful-media-height);
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.34);
  transition:
    border-color 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.home-page .arc-playful-restart,
.home-page .arc-playful-sound {
  position: absolute;
  top: 10px;
  z-index: 8;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background: rgba(9, 9, 9, 0.34);
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  touch-action: manipulation;
}

.home-page .arc-playful-restart {
  right: auto;
  left: 10px;
  opacity: 0;
  filter: blur(8px);
  pointer-events: none;
  transform: scale(0.86);
  transform-origin: center;
  transition:
    opacity 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.home-page .arc-playful-sound {
  right: auto;
  left: calc(var(--arc-playful-media-left) + var(--arc-playful-media-width) - var(--arc-playful-control-size) - var(--arc-playful-sound-inset));
}

.home-page .arc-playful-restart {
  left: calc(var(--arc-playful-media-left) + var(--arc-playful-sound-inset));
}

.home-page .arc-playful-restart svg,
.home-page .arc-playful-sound .mobile-hero-sound-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .arc-playful-sound .mobile-hero-sound-on {
  display: none;
}

.home-page .arc-playful-sound.is-sound-on .mobile-hero-sound-muted {
  display: none;
}

.home-page .arc-playful-sound.is-sound-on .mobile-hero-sound-on {
  display: block;
}

.home-page .arc-playful-product-highlight {
  position: relative;
  align-self: start;
  display: block;
  width: 68px;
  height: 68px;
  margin: 0 auto;
  border-radius: 18px;
}

.home-page .arc-playful-product-highlight img {
  display: block;
  width: 100%;
  height: 100%;
  border: 1.5px solid #d8b45f;
  border-radius: inherit;
  object-fit: cover;
  box-shadow:
    0 0 0 3px rgba(216, 180, 95, 0.22),
    0 16px 36px rgba(0, 0, 0, 0.34);
}

.home-page .arc-playful-product-highlight::after {
  content: "\2726";
  position: absolute;
  right: -6px;
  bottom: -6px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(248, 246, 239, 0.9);
  border-radius: 50%;
  background: #d8b45f;
  color: #101010;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.24);
}

.home-page .arc-playful-source-stack {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  z-index: 7;
  display: flex;
  min-width: 0;
  height: 252px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.home-page .arc-playful-source-stack > .arc-playful-app-tile,
.home-page .arc-playful-source-stack > .arc-playful-product-highlight {
  align-self: center;
}

.home-page .arc-playful-source-stack > span:not(.arc-playful-app-tile):not(.arc-playful-product-highlight):not(.arc-playful-product-plus) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: transparent;
  color: rgba(255, 250, 241, 0.9);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.1;
  text-align: center;
}

.home-page .arc-playful-product-build .arc-playful-product-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 250, 241, 0.92);
  font-size: 22px;
  font-weight: 760;
  line-height: 1;
}

.home-page .arc-playful-visual-character .arc-playful-product-plus,
.home-page .arc-playful-visual-remix .arc-playful-product-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 250, 241, 0.92);
  font-size: 22px;
  font-weight: 760;
  line-height: 1;
}

.home-page .arc-playful-visual-remix {
  --arc-playful-stack-width: 120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  grid-template-rows: minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
}

.home-page .arc-playful-visual-remix > video,
.home-page .arc-playful-visual-remix > img {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  display: block;
  width: var(--arc-playful-media-width);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.34);
  transition:
    border-color 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.home-page .arc-playful-visual-remix video {
  height: var(--arc-playful-media-height);
  aspect-ratio: 9 / 16;
}

.home-page .arc-playful-visual-remix img {
  aspect-ratio: 1;
}

.home-page .arc-playful-visual-remix .arc-playful-source-stack > span:not(.arc-playful-app-tile):not(.arc-playful-product-highlight):not(.arc-playful-product-plus) {
  padding: 0 8px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.05;
}

.home-page .arc-playful-visual-remix .arc-playful-product-plus {
  font-size: 20px;
}

.home-page .arc-playful-app-tile {
  position: relative;
  display: block;
  align-self: start;
  justify-self: center;
  width: 68px;
  height: 68px;
  padding: 0;
  border: 1.5px solid #d8b45f;
  border-radius: 18px;
  overflow: visible;
  background: #e8e2d2;
  box-shadow:
    0 0 0 3px rgba(216, 180, 95, 0.22),
    0 16px 36px rgba(0, 0, 0, 0.34);
}

.home-page .arc-playful-app-tile::after {
  content: "\2726";
  position: absolute;
  right: -6px;
  bottom: -6px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(248, 246, 239, 0.9);
  border-radius: 50%;
  background: #d8b45f;
  color: #101010;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.24);
}

.home-page .arc-playful-brand-tile {
  display: grid;
  place-items: center;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    #111;
}

.home-page .arc-playful-brand-tile img {
  object-fit: contain;
}

.home-page .arc-playful-app-tile img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  object-fit: cover;
  box-shadow: none;
}

.home-page .arc-playful-variant-switcher {
  position: absolute;
  right: calc(var(--arc-playful-stack-width) + var(--arc-playful-grid-gap));
  top: calc(100% + 12px);
  bottom: auto;
  left: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  pointer-events: auto;
}

.home-page .arc-playful-variant-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 22px;
}

.home-page .arc-playful-variant-switcher button {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  box-shadow: none;
  touch-action: manipulation;
}

.home-page .arc-playful-variant-switcher [data-playful-variant]::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.38);
  box-shadow: 0 0 0 1px rgba(255, 250, 241, 0.08);
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.home-page .arc-playful-variant-switcher [data-playful-variant].is-active {
  background: transparent;
  box-shadow: none;
}

.home-page .arc-playful-variant-switcher [data-playful-variant].is-active::before {
  background: #fffefa;
  box-shadow:
    0 0 0 3px rgba(255, 250, 241, 0.16),
    0 0 16px rgba(255, 250, 241, 0.45);
  transform: scale(1.2);
}

.home-page .arc-playful-variant-switcher button:focus-visible {
  outline: 2px solid #fffefa;
  outline-offset: 3px;
}

.home-page .arc-playful-variant-switcher img {
  display: none;
}

.home-page .arc-playful-visual [data-source-label] {
  position: relative;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.home-page .arc-playful-visual [data-source-label]::before {
  content: attr(data-source-label);
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 6;
  width: max-content;
  max-width: min(220px, 70vw);
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  background: rgba(8, 8, 8, 0.92);
  color: #fffefa;
  font-size: 11px;
  font-weight: 760;
  line-height: 1.2;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.36);
}

.home-page .arc-playful-visual [data-source-label]:hover::before,
.home-page .arc-playful-visual [data-source-label].is-source-label-open::before {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .home-page .arc-playful-grid article:hover,
  .home-page .arc-playful-grid article:focus-within {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 82px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
  }

  .home-page .arc-playful-grid article:hover::before,
  .home-page .arc-playful-grid article:focus-within::before {
    border-color: rgba(255, 255, 255, 0.18);
  }

  .home-page .arc-playful-grid article:hover .arc-playful-visual-character > img,
  .home-page .arc-playful-grid article:hover .arc-playful-visual-character > video,
  .home-page .arc-playful-grid article:hover .arc-playful-product-build video,
  .home-page .arc-playful-grid article:hover .arc-playful-visual-remix > video,
  .home-page .arc-playful-grid article:hover .arc-playful-visual-remix > img,
  .home-page .arc-playful-grid article:focus-within .arc-playful-visual-character > img,
  .home-page .arc-playful-grid article:focus-within .arc-playful-visual-character > video,
  .home-page .arc-playful-grid article:focus-within .arc-playful-product-build video,
  .home-page .arc-playful-grid article:focus-within .arc-playful-visual-remix > video,
  .home-page .arc-playful-grid article:focus-within .arc-playful-visual-remix > img {
    border-color: rgba(255, 255, 255, 0.22);
    filter: saturate(1.06) contrast(1.03);
    transform: translateY(-1px);
  }
}

.home-page .arc-feature-panel {
  display: grid;
  gap: 24px;
  padding: 24px max(24px, calc((100vw - 1000px) / 2)) 118px;
  background: #101010;
}

.home-page .arc-feature-hero {
  position: relative;
  display: grid;
  align-content: center;
  overflow: hidden;
  min-height: 468px;
  padding: 86px 60px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 45%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #050505, #171717);
}

.home-page .arc-feature-hero::after {
  content: "";
  position: absolute;
  right: 46px;
  bottom: -78px;
  width: 340px;
  height: 470px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01)),
    url("./assets/features/endless-adaptations.webp?v=20260710") center / cover;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  opacity: 0.94;
  transform: rotate(4deg);
}

.home-page .arc-feature-hero h2,
.home-page .arc-feature-hero p,
.home-page .arc-feature-hero .frame-button {
  position: relative;
  z-index: 1;
}

.home-page .arc-feature-hero h2,
.home-page .arc-feature-hero p {
  max-width: min(470px, calc(100% - 360px));
}

.home-page .arc-feature-grid {
  gap: 24px;
  margin-top: 0;
}

.home-page .arc-feature-grid article {
  position: relative;
  display: grid;
  align-content: end;
  height: 430px;
  overflow: hidden;
  padding: 30px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    #060606;
}

.home-page .arc-feature-grid .arc-feature-mobile-hero,
.home-page .arc-feature-grid [data-feature-clone],
.home-page .arc-feature-mobile-title,
.home-page .arc-mobile-carousel-controls,
.home-page .arc-feature-carousel-controls,
.home-page .arc-feature-mobile-cta {
  display: none;
}

.home-page .arc-feature-grid article::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
  pointer-events: none;
}

.home-page .arc-feature-phone-row {
  position: absolute;
  top: 44px;
  left: 50%;
  display: flex;
  gap: 16px;
  transform: translateX(-50%);
}

.home-page .arc-feature-phone-row video {
  width: 172px;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}

.home-page .arc-feature-phone-row video:nth-child(2) {
  transform: translateY(28px);
}

.home-page .arc-feature-localize-showcase {
  position: absolute;
  top: 34px;
  left: 50%;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  width: min(100% - 52px, 350px);
  pointer-events: none;
  transform: translateX(-50%);
}

.home-page .arc-feature-localize-showcase figure {
  position: relative;
  flex: 0 1 148px;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: #090909;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}

.home-page .arc-feature-localize-showcase figure:nth-of-type(2) {
  transform: translateY(14px);
}

.home-page .arc-feature-localize-showcase img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-page .arc-feature-localize-showcase figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 18%,
    rgba(0, 0, 0, 0.48) 42%,
    rgba(0, 0, 0, 0.58) 62%,
    transparent 88%
  );
}

.home-page .arc-feature-localize-showcase figcaption {
  position: absolute;
  right: 10px;
  left: 10px;
  top: 50%;
  z-index: 1;
  display: grid;
  gap: 7px;
  transform: translateY(-50%);
}

.home-page .arc-feature-localize-showcase figcaption span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 250, 241, 0.92);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
}

.home-page .arc-feature-localize-showcase figcaption span {
  gap: 5px;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 820;
  line-height: 1;
}

.home-page .arc-feature-localize-showcase figcaption span b {
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.home-page .arc-feature-localize-showcase figcaption strong {
  display: block;
  color: #fffefa;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.04;
  text-wrap: balance;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.58);
}

.home-page .arc-feature-clone-video {
  top: 44px;
  right: 38px;
  left: 38px;
  justify-content: center;
  transform: none;
}

.home-page .arc-feature-clone-video video {
  width: min(100%, 252px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  object-fit: cover;
}

.home-page .arc-feature-visual {
  position: absolute;
  top: 34px;
  right: 30px;
  left: 30px;
  z-index: 1;
  height: 252px;
  pointer-events: none;
}

.home-page .arc-feature-characters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
  padding: 22px 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 74, 61, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.home-page .arc-feature-characters span {
  display: block;
  height: 186px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 44% 56% 30% 30%;
  background:
    radial-gradient(circle at 50% 27%, rgba(255, 250, 241, 0.86) 0 18%, transparent 19%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.3), rgba(255, 74, 61, 0.18)),
    #202020;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
}

.home-page .arc-feature-characters span:nth-child(2) {
  height: 154px;
  border-radius: 36% 64% 28% 28%;
  background:
    radial-gradient(circle at 52% 27%, rgba(255, 250, 241, 0.76) 0 17%, transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(79, 135, 237, 0.26)),
    #202020;
}

.home-page .arc-feature-characters i {
  position: absolute;
  right: 28px;
  bottom: 24px;
  width: 84px;
  height: 58px;
  border-radius: 999px 999px 14px 14px;
  background: rgba(255, 255, 255, 0.18);
}

.home-page .arc-feature-characters i:nth-of-type(2) {
  right: auto;
  bottom: 20px;
  left: 22px;
  width: 112px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.14);
}

.home-page .arc-feature-remix {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: 132px repeat(2, 42px);
  gap: 10px;
  align-content: center;
  padding: 16px;
}

.home-page .arc-feature-remix:has(video) {
  display: block;
  padding: 0;
}

.home-page .arc-feature-remix video {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
}

.home-page .arc-feature-remix i {
  position: relative;
  grid-column: span 2;
  align-self: stretch;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 250, 241, 0.82) 0 18%, transparent 19%),
    linear-gradient(180deg, rgba(255, 74, 61, 0.22), rgba(255, 255, 255, 0.08)),
    #202020;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
}

.home-page .arc-feature-remix i:nth-of-type(2) {
  grid-column: span 3;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 250, 241, 0.76) 0 16%, transparent 17%),
    linear-gradient(180deg, rgba(79, 135, 237, 0.26), rgba(255, 255, 255, 0.08)),
    #202020;
}

.home-page .arc-feature-remix span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 42px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 250, 241, 0.9);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.12;
  text-align: center;
}

.home-page .arc-feature-remix span:nth-of-type(3),
.home-page .arc-feature-remix span:nth-of-type(5) {
  background: rgba(255, 74, 61, 0.18);
}

.home-page .arc-feature-angles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(54px, auto)) 1fr;
  gap: 12px;
  padding: 16px;
}

.home-page .arc-feature-angles span,
.home-page .arc-feature-angles strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 250, 241, 0.9);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.12;
  text-align: center;
}

.home-page .arc-feature-angles span:nth-child(1),
.home-page .arc-feature-angles span:nth-child(3) {
  transform: translateY(10px);
}

.home-page .arc-feature-angles strong {
  grid-column: 1 / -1;
  align-self: end;
  min-height: 86px;
  border-color: rgba(255, 74, 61, 0.26);
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(255, 74, 61, 0.36), rgba(255, 255, 255, 0.11));
  box-shadow: 0 20px 58px rgba(255, 74, 61, 0.13);
}

.home-page .arc-feature-audience-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  top: 14px;
  right: 28px;
  left: 28px;
  height: 326px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-page .arc-feature-audience-showcase video {
  flex: 0 0 auto;
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  aspect-ratio: 968 / 1080;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  object-fit: contain;
  object-position: center;
  background: #070707;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
}

.home-page .arc-feature-guidelines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: center;
  padding: 16px;
}

.home-page .arc-feature-guidelines span,
.home-page .arc-feature-variations span,
.home-page .arc-feature-editor span {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 250, 241, 0.9);
  font-size: 14px;
  font-weight: 820;
  line-height: 1.12;
}

.home-page .arc-feature-guidelines span:nth-child(1),
.home-page .arc-feature-guidelines span:nth-child(4) {
  background: rgba(255, 74, 61, 0.18);
}

.home-page .arc-feature-variations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, 58px);
  gap: 10px;
  align-content: center;
  padding: 16px;
}

.home-page .arc-feature-variations:has(img) {
  display: block;
  padding: 0;
}

.home-page .arc-feature-variations img {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
}

.home-page .arc-feature-variations span {
  justify-content: center;
  min-height: 58px;
  padding: 0 10px;
  font-size: 12px;
  text-align: center;
}

.home-page .arc-feature-variations span:nth-child(3) {
  grid-column: span 2;
}

.home-page .arc-feature-variations span:nth-child(1),
.home-page .arc-feature-variations span:nth-child(4),
.home-page .arc-feature-variations span:nth-child(6) {
  background: rgba(255, 74, 61, 0.18);
}

.home-page .arc-feature-variations span:nth-child(5),
.home-page .arc-feature-variations span:nth-child(6) {
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(79, 135, 237, 0.22);
}

.home-page .arc-feature-assets {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr 0.92fr;
  gap: 12px;
  align-items: center;
}

.home-page .arc-feature-assets img,
.home-page .arc-feature-editor img {
  display: block;
  width: 100%;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}

.home-page .arc-feature-assets img:nth-child(1) {
  transform: translateY(20px) rotate(-4deg);
}

.home-page .arc-feature-assets img:nth-child(2) {
  height: 246px;
}

.home-page .arc-feature-assets img:nth-child(3) {
  transform: translateY(8px) rotate(4deg);
}

.home-page .arc-feature-editor {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 138px;
  gap: 14px;
  align-items: center;
}

.home-page .arc-feature-editor img {
  height: 246px;
  filter: grayscale(1) contrast(1.04);
}

.home-page .arc-feature-editor div {
  display: grid;
  gap: 8px;
}

.home-page .arc-feature-editor span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 12px;
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(96, 96, 96, 0.96);
  font-size: 12px;
  font-weight: 760;
  text-align: center;
  isolation: isolate;
  transform: translateZ(0);
}

.home-page .arc-feature-editor span::before {
  content: "";
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  background: currentColor;
  opacity: 0.86;
  -webkit-mask: var(--chip-icon) center / contain no-repeat;
  mask: var(--chip-icon) center / contain no-repeat;
}

.home-page .arc-feature-grid h3,
.home-page .arc-feature-grid p {
  position: relative;
  z-index: 2;
}

.home-page .arc-feature-grid h3 {
  margin: 0;
  color: #fffefa;
  font-size: 28px;
  line-height: 1.05;
}

.home-page .arc-feature-status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-left: 8px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 250, 241, 0.82);
  font-size: 11px;
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  vertical-align: 0.18em;
}

.home-page .arc-feature-grid p {
  max-width: 320px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
  line-height: 1.35;
}

.home-page .arc-feature-flags {
  display: inline-flex;
  gap: 4px;
  margin-left: 4px;
  white-space: nowrap;
}

.home-page .arc-agent-panel {
  display: block;
  padding: 24px max(24px, calc((100vw - 1000px) / 2)) 64px;
  background: #EFEEEA;
  color: var(--ink);
}

.home-page .arc-agent-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  grid-template-rows: auto auto;
  column-gap: 38px;
  row-gap: 28px;
  align-items: center;
  width: min(1000px, 100%);
  min-height: 560px;
  margin: 0 auto;
  padding: 0;
}

.home-page .arc-agent-copy h2 {
  color: var(--ink);
}

.home-page .arc-agent-copy h2 em {
  color: var(--ink);
}

.home-page .arc-agent-copy h2 {
  align-self: end;
}

.home-page .arc-agent-copy .frame-button {
  align-self: start;
  margin-top: 0;
}

.home-page .arc-agent-copy .frame-button-dark {
  border-color: rgba(9, 9, 9, 0.88);
  background: linear-gradient(180deg, #30302f, #090909);
  color: #fffefa;
}

.home-page .arc-agent-copy .arc-agent-window {
  grid-row: 1 / span 2;
  grid-column: 2;
}

.home-page .arc-agent-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-left: 6px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 250, 241, 0.82);
  font-size: 0.68em;
  font-weight: 820;
  letter-spacing: 0.04em;
  line-height: 1;
  vertical-align: middle;
}

.home-page .arc-agent-window {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  gap: 18px;
  min-height: 0;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.09), transparent 28%),
    radial-gradient(circle at 16% 72%, rgba(46, 120, 255, 0.15), transparent 30%),
    linear-gradient(180deg, #101010 0%, #0b1018 100%);
  box-shadow: 0 30px 90px rgba(9, 9, 9, 0.2);
}

.home-page .arc-agent-prompt {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 9px;
  min-width: 0;
  max-width: min(100%, 620px);
  margin: 0 auto;
  text-align: center;
}

.home-page .arc-agent-prompt strong {
  color: #f8f6ef;
  font-size: clamp(16px, 1.7vw, 24px);
  font-weight: 760;
  line-height: 1.06;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  white-space: nowrap;
}

.home-page .arc-agent-prompt p {
  max-width: 420px;
  margin: 0 auto;
  color: rgba(248, 246, 239, 0.62);
  font-size: 15px;
  font-weight: 520;
  line-height: 1.35;
}

.home-page .arc-agent-suggestions {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 8px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 34px), transparent);
  mask-image: linear-gradient(90deg, #000 calc(100% - 34px), transparent);
}

.home-page .arc-agent-suggestions::-webkit-scrollbar {
  display: none;
}

.home-page .arc-agent-suggestions span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(248, 246, 239, 0.14);
  border-radius: 999px;
  background: rgba(248, 246, 239, 0.07);
  color: rgba(248, 246, 239, 0.82);
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.home-page .arc-agent-thread {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 15px;
  min-height: 0;
}

.home-page .arc-agent-turn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: min(92%, 440px);
}

.home-page .arc-agent-turn-human {
  justify-self: end;
  flex-direction: row-reverse;
}

.home-page .arc-agent-turn-agent {
  justify-self: start;
}

.home-page .arc-agent-turn-faded {
  z-index: 1;
  opacity: 0.78;
}

.home-page .arc-agent-turn-process {
  align-items: center;
  opacity: 0.72;
}

.home-page .arc-agent-avatar {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.home-page .arc-agent-avatar-logo {
  display: grid;
  place-items: center;
}

.home-page .arc-agent-avatar-logo img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.home-page .arc-agent-bubble {
  display: grid;
  min-width: 0;
  gap: 7px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 246, 239, 0.86);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
}

.home-page .arc-agent-turn-human .arc-agent-bubble {
  border-color: rgba(131, 189, 255, 0.48);
  background: rgba(47, 128, 237, 0.16);
  color: #f8f6ef;
  box-shadow:
    inset 0 1px 0 rgba(248, 246, 239, 0.12),
    0 14px 38px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(47, 128, 237, 0.08);
}

.home-page .arc-agent-name {
  color: rgba(248, 246, 239, 0.56);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.06em;
  line-height: 1;
}

.home-page .arc-agent-turn-human .arc-agent-name {
  justify-self: end;
  color: rgba(199, 224, 255, 0.72);
  text-align: right;
}

.home-page .arc-agent-bubble p {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 15.5px;
  line-height: 1.32;
}

.home-page .arc-agent-style-tag,
.home-page .arc-agent-product-name {
  min-height: 1.28em;
  max-width: 100%;
  padding: 0 6px;
  border: 0;
  border-radius: 8px;
  background: rgba(91, 101, 255, 0.22);
  color: #c7d0ff;
  font-weight: 820;
  line-height: 1.08;
}

.home-page .arc-agent-style-tag {
  display: inline;
  padding: 0 5px;
  vertical-align: baseline;
  white-space: normal;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.home-page .arc-agent-product-name {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #d2d8ff;
  vertical-align: -0.12em;
  white-space: nowrap;
}

.home-page .arc-agent-product-name img {
  display: block;
  flex: 0 0 auto;
  width: 0.95em;
  height: 0.95em;
  border-radius: 3px;
  object-fit: cover;
}

.home-page .arc-agent-process-bubble {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .arc-agent-process-bubble .arc-agent-process-text {
  font-style: italic;
}

.home-page .arc-agent-attachment {
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin: 4px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.home-page .arc-agent-attachment img {
  display: block;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
}

.home-page .arc-agent-product-attachment {
  position: relative;
  display: block;
  flex: 0 0 auto;
  border-radius: 9px;
}

.home-page .arc-agent-product-attachment img {
  border: 1.5px solid #d8b45f;
  box-shadow: 0 0 0 2px rgba(216, 180, 95, 0.18);
}

.home-page .arc-agent-product-attachment::after {
  content: "\2726";
  position: absolute;
  right: -5px;
  bottom: -5px;
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(248, 246, 239, 0.85);
  border-radius: 50%;
  background: #d8b45f;
  color: #101010;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(16, 16, 16, 0.18);
}

.home-page .arc-agent-bubble ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.home-page .arc-agent-bubble li {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 250, 241, 0.76);
  font-size: 11px;
  font-weight: 820;
  line-height: 1;
}

.home-page .final-cta-section {
  margin-top: -1px;
  padding: 88px 24px 108px;
  overflow: hidden;
  background: #101010;
  isolation: isolate;
}

.home-page .final-cta-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -190px;
  z-index: 0;
  width: min(980px, 138vw);
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 74, 61, 0.18), rgba(74, 16, 22, 0.1) 42%, transparent 72%);
  filter: blur(26px);
  pointer-events: none;
  transform: translateX(-50%);
}

.home-page .final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  min-height: 500px;
  overflow: hidden;
  padding: 132px 24px 96px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #060606, #151515);
}

.home-page .final-cta-inner::before,
.home-page .final-cta-inner::after {
  content: "";
  position: absolute;
  left: -4%;
  width: 108%;
  height: 92px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent),
    #0b0b0b;
  transform: rotate(-4deg);
}

.home-page .final-cta-inner::before {
  top: -28px;
}

.home-page .final-cta-inner::after {
  bottom: -34px;
}

.home-page .final-cta-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-page .final-cta-media video {
  position: absolute;
  width: 118px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 12px;
  --video-reveal-pending-opacity: 0.32;
  --video-reveal-ready-opacity: 0.5;
  opacity: 0.5;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38);
}

.home-page .final-cta-media video:nth-child(1) {
  top: -24px;
  left: 13%;
  transform: rotate(-12deg);
}

.home-page .final-cta-media video:nth-child(2) {
  right: 14%;
  bottom: -46px;
  transform: rotate(11deg);
}

.home-page .final-cta-media video:nth-child(3) {
  right: -8px;
  top: 82px;
  transform: rotate(7deg);
}

.home-page .final-cta-inner h2 {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  max-width: 900px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(40px, 4.4vw, 58px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.home-page .final-cta-inner p,
.home-page .final-cta-inner .section-cta {
  position: relative;
  z-index: 2;
}

.home-page .final-cta-inner .section-cta {
  min-height: 58px;
  min-width: 206px;
  border-radius: 16px;
  background: linear-gradient(180deg, #30302f, #090909);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.home-page .final-cta-inner .section-cta:hover,
.home-page .final-cta-inner .section-cta:focus-visible {
  border-color: #f8f6ef;
  background: #f8f6ef;
  color: #101010;
}

.home-page .founder-support-section {
  position: relative;
  z-index: 1;
  margin-top: -1px;
  padding: 2px 24px 102px;
  border-top: 0;
  background: #101010;
  box-shadow: none;
  color: #fffefa;
  text-align: center;
}

.home-page .founder-support-inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.home-page .founder-support-inner h2 {
  margin: 0;
  color: #fffefa;
  font-size: 76px;
  font-weight: 360;
  line-height: 1.02;
  letter-spacing: 0;
}

.home-page .founder-support-inner h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
}

.home-page .founder-support-inner p {
  max-width: 680px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 28px;
  font-weight: 420;
  line-height: 1.34;
  letter-spacing: 0;
}

.home-page .founder-support-avatars {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.home-page .founder-support-avatars img {
  width: 66px;
  height: 66px;
  border: 4px solid #101010;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
}

.home-page .founder-support-avatars img + img {
  margin-left: -12px;
}

.home-page .founder-support-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 56px;
  color: #fffefa;
  font-size: 27px;
  font-weight: 420;
  line-height: 1;
  text-decoration: none;
}

.home-page .founder-support-link > span:first-child {
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

.home-page .founder-support-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: inherit;
  transition: transform 180ms ease;
}

.home-page .founder-support-arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .founder-support-link:hover .founder-support-arrow {
  transform: translateX(2px);
}

.home-page .founder-support-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 8px;
  border-radius: 999px;
}

@media (max-width: 860px) {
  .home-page .site-header {
    width: calc(100% - 34px);
    height: 66px;
  }

  .home-page .brand {
    font-size: 30px;
  }

  .home-page .brand img {
    width: 36px;
    height: 32px;
  }

  .home-page .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .home-page .frame-hero.arc-hero {
    min-height: 812px;
    padding: 226px 16px 80px;
  }

  .home-page .frame-pill {
    min-height: 40px;
    font-size: 17px;
  }

  .home-page .frame-hero-center h1 {
    max-width: 356px;
    font-size: clamp(45px, 13.4vw, 58px);
    line-height: 0.94;
  }

  .home-page .frame-hero-center h1 em {
    display: block;
    font-size: 1.02em;
  }

  .home-page .frame-hero-center > p:not(.frame-pill) {
    max-width: 350px;
    font-size: 18px;
    line-height: 1.42;
  }

  .home-page .frame-hero-actions {
    width: min(342px, 100%);
    gap: 12px;
    margin-top: 34px;
  }

  .home-page .frame-float-card {
    width: 136px;
  }

  .home-page .frame-float-left {
    top: 104px;
    left: -112px;
  }

  .home-page .frame-float-right {
    top: 104px;
    right: -112px;
  }

  .home-page .frame-float-top {
    top: -92px;
    left: calc(50% - 55px);
  }

  .home-page .frame-float-bottom {
    bottom: -116px;
    left: calc(50% - 60px);
  }

  .home-page .arc-model-section {
    padding: 0 16px 82px;
  }

  .home-page .arc-section-bar,
  .home-page .arc-section-bar-dark {
    width: calc(100% - 32px);
    height: 66px;
    border-radius: 0;
    background: rgba(238, 238, 236, 0.92);
    box-shadow: 0 1px rgba(9, 9, 9, 0.06);
  }

  .home-page .arc-section-bar {
    margin-bottom: 30px;
  }

  .home-page .arc-section-logo {
    font-size: 28px;
  }

  .home-page .arc-section-logo img {
    width: 34px;
    height: 30px;
  }

  .home-page .arc-section-login {
    display: inline-flex;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 13px;
  }

  .home-page .arc-model-copy h2,
  .home-page .arc-social-copy h2,
  .home-page .arc-feature-hero h2,
  .home-page .arc-agent-copy h2 {
    font-size: clamp(38px, 11vw, 50px);
    letter-spacing: -0.025em;
  }

  .home-page .arc-model-copy p,
  .home-page .arc-social-copy p,
  .home-page .arc-feature-hero p,
  .home-page .arc-agent-copy p {
    font-size: 18px;
    line-height: 1.4;
  }

  .home-page .arc-tool-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-page .arc-tool-visual {
    min-height: 362px;
  }

  .home-page .arc-tool-grid article h3 {
    font-size: 23px;
  }

  .home-page .arc-tool-grid article p {
    max-width: 350px;
    font-size: 15px;
  }

  .home-page .arc-inline-tooltip-panel {
    width: min(260px, calc(100vw - 88px));
  }

  .home-page .arc-tool-formats span {
    font-size: 22px;
  }

  .home-page .arc-tool-variations {
    padding: 32px 22px;
  }

  .home-page .arc-tool-variations::after {
    font-size: 42px;
  }

  .home-page .arc-variation-source strong {
    font-size: 22px;
  }

  .home-page .arc-variation-grid {
    gap: 12px;
    margin-top: 42px;
  }

  .home-page .arc-variation-grid span {
    min-height: 62px;
  }

  .home-page .arc-workflow-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 808px;
    padding: 72px 16px 80px;
  }

  .home-page .arc-workflow-copy {
    display: contents;
  }

  .home-page .arc-workflow-copy h2 {
    order: 1;
    font-size: clamp(42px, 11vw, 54px);
  }

  .home-page .arc-workflow-copy p {
    order: 2;
    margin: 20px 0 36px;
    font-size: 18px;
  }

  .home-page .arc-workflow-copy .frame-button {
    order: 4;
    justify-self: center;
    width: fit-content;
    margin-top: 44px;
  }

  .home-page .arc-workflow-copy p.frame-risk-note {
    order: 5;
    justify-self: center;
    width: min(100%, 320px);
    margin: 14px auto 0;
    font-size: 16px;
  }

  .home-page .arc-workflow-canvas {
    order: 3;
    min-height: 390px;
    margin-right: 0;
    border-radius: 16px;
  }

  .home-page .arc-workflow-canvas.arc-workflow-video-canvas {
    min-height: 526px;
    padding: 16px;
  }

  .home-page .arc-workflow-demo-video {
    width: min(100%, 278px);
    border-radius: 20px;
  }

  .home-page .arc-workflow-video {
    right: 18px;
    width: 120px;
  }

  .home-page .arc-canvas-node {
    min-width: 122px;
    min-height: 62px;
    font-size: 14px;
  }

  .home-page .node-1 { top: 42px; left: 18px; }
  .home-page .node-2 { top: 116px; right: 18px; }
  .home-page .node-3 { bottom: 92px; left: 34px; }
  .home-page .node-4 { right: 88px; bottom: 24px; }

  .home-page .arc-social-panel,
  .home-page .arc-thought-panel {
    padding: 82px 16px 88px;
  }

  .home-page .arc-social-panel {
    padding-bottom: 54px;
  }

  .home-page .arc-social-tabs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
    margin: 30px 0 20px;
    padding: 0 0 6px;
    overflow-x: auto;
    scroll-padding: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .home-page .arc-social-tabs::-webkit-scrollbar {
    display: none;
  }

  .home-page .arc-social-tabs button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 calc((100% - 10px) / 2);
    width: calc((100% - 10px) / 2);
    min-width: 0;
    min-height: 52px;
    padding: 9px 10px;
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    scroll-snap-align: center;
  }

  .home-page .arc-social-tabs button[aria-selected="true"] {
    border-color: rgba(248, 246, 239, 0.92);
    background: #f8f6ef;
    color: #101010;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  }

  .home-page .arc-social-tabs button > span {
    gap: 2px;
    min-width: 0;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.05;
    white-space: nowrap;
  }

  .home-page .arc-social-tabs i {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
  }

  .home-page .arc-social-tabs small {
    max-width: 100%;
    overflow: hidden;
    color: currentColor;
    font-size: 12px;
    opacity: 0.58;
    text-overflow: ellipsis;
  }

  .home-page .arc-social-stage {
    --social-mobile-card-width: min(76vw, 340px);
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: var(--social-mobile-card-width);
    justify-content: start;
    gap: 16px;
    width: 100vw;
    min-height: 0;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 18px 12vw;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    border: 0;
    border-radius: 0;
    background: transparent;
    scroll-padding: 0 12vw;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
  }

  .home-page .arc-social-stage::-webkit-scrollbar {
    display: none;
  }

  .home-page .arc-social-stage [data-social-clone] {
    display: grid;
  }

  .home-page .arc-social-stage article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto auto;
    column-gap: 12px;
    align-content: start;
    height: auto;
    padding: 18px;
    border-color: rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: #202020;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.36);
    scroll-snap-align: center;
    transform: translateY(var(--social-card-y, 0)) rotate(var(--social-card-rotate, 0deg));
    transition:
      opacity 220ms ease,
      filter 220ms ease,
      transform 260ms ease,
      box-shadow 180ms ease;
  }

  .home-page .arc-social-stage article::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background:
      radial-gradient(circle at 45% 44%, rgba(255, 255, 255, 0.52) 0 15%, transparent 16%),
      conic-gradient(from 220deg, #ffe56a, #ff5648, #986eff, #4bb7ff, #ffe56a);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14), 0 10px 24px rgba(0, 0, 0, 0.32);
  }

  .home-page .arc-social-stage [data-social-index="0"] {
    --social-card-y: 0px;
    --social-card-rotate: 0deg;
  }

  .home-page .arc-social-stage [data-social-index="1"] {
    --social-card-y: 14px;
    --social-card-rotate: 0deg;
  }

  .home-page .arc-social-stage [data-social-index="2"] {
    --social-card-y: -6px;
    --social-card-rotate: 0deg;
  }

  .home-page .arc-social-stage [data-social-index="3"] {
    --social-card-y: 10px;
    --social-card-rotate: 0deg;
  }

  .home-page .arc-social-stage article[data-social-index] {
    transform: translateY(var(--social-card-y, 0)) rotate(var(--social-card-rotate, 0deg));
  }

  .home-page .arc-social-stage b {
    display: block;
    grid-column: 1;
    grid-row: 1;
    min-height: 42px;
    min-width: 0;
    margin: 0 0 2px 54px;
    color: #f8f6ef;
    font-size: 17px;
    line-height: 1.05;
  }

  .home-page .arc-social-stage b::before {
    content: "Sponsored";
    display: block;
    margin-bottom: 3px;
    color: rgba(248, 246, 239, 0.46);
    font-size: 11px;
    font-weight: 650;
    line-height: 1;
  }

  .home-page .arc-social-stage p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 18px 0 14px;
    color: rgba(248, 246, 239, 0.92);
    font-size: 18px;
    line-height: 1.28;
  }

  .home-page .arc-social-stage video {
    grid-column: 1 / -1;
    grid-row: 3;
    height: auto;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
  }

  .home-page .arc-social-stage article span {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    justify-self: end;
  }

  .home-page .arc-social-stage.is-dragging {
    scroll-snap-type: none;
  }

  .home-page .arc-quote-row {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 30px auto 42px;
  }

  .home-page .arc-agent-logo-row {
    gap: 13px;
    margin-top: 20px;
  }

  .home-page .arc-agent-logo-row img {
    width: 30px;
    height: 30px;
  }

  .home-page .arc-wide-video {
    width: min(410px, calc(100% - 10px));
    height: auto;
    margin-top: 34px;
    aspect-ratio: 968 / 1080;
  }

  .home-page .arc-wide-video div {
    padding: 24px 22px 28px;
  }

  .home-page .arc-realism-panel,
  .home-page .arc-playful-panel,
  .home-page .arc-feature-panel,
  .home-page .arc-agent-panel {
    grid-template-columns: 1fr;
    padding: 18px 16px 88px;
  }

  .home-page .arc-realism-panel {
    gap: 22px;
    padding-top: 76px;
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 74, 61, 0.08), transparent 32%),
      #fbfaf7;
  }

  .home-page .arc-realism-hero {
    gap: 16px;
  }

  .home-page .arc-realism-hero h2 {
    max-width: 360px;
    font-size: clamp(36px, 11vw, 48px);
    line-height: 0.96;
  }

  .home-page .arc-realism-hero p {
    max-width: 410px;
    font-size: 16px;
  }

  .home-page .arc-realism-grid {
    --realism-card-width: min(78vw, 318px);
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: var(--realism-card-width);
    justify-content: start;
    gap: 14px;
    width: 100vw;
    margin: 4px calc(50% - 50vw) 0;
    padding: 0 16px 10px;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-x: contain;
    overscroll-behavior-inline: contain;
    scroll-padding: 0 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
  }

  .home-page .arc-realism-grid::-webkit-scrollbar {
    display: none;
  }

  .home-page .arc-realism-grid article {
    --arc-realism-text-offset: 256px;
    min-height: 0;
    padding: var(--arc-realism-text-offset) 22px 18px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .home-page .arc-realism-grid article:has(.arc-feature-character-image) {
    --arc-realism-text-offset: 268px;
  }

  .home-page .arc-realism-grid .arc-feature-visual {
    top: 24px;
    right: 22px;
    left: 22px;
    height: 226px;
  }

  .home-page .arc-realism-grid h3 {
    font-size: clamp(25px, 7vw, 30px);
  }

  .home-page .arc-realism-grid p {
    font-size: 15px;
  }

  .home-page .arc-feature-product-showcase {
    --feature-product-stack-width: clamp(86px, 36%, 104px);
    --feature-product-media-width: 120px;
    --feature-product-media-height: 214px;
    grid-template-columns: minmax(0, 1fr) var(--feature-product-stack-width);
    grid-template-rows: 1fr;
    column-gap: 12px;
  }

  .home-page .arc-realism-grid .arc-feature-product-showcase {
    height: var(--feature-product-media-height);
  }

  .home-page .arc-feature-product-carousel .arc-feature-product-media {
    height: var(--feature-product-media-height);
  }

  .home-page .arc-feature-product-showcase video {
    height: var(--feature-product-media-height);
    border-radius: 14px;
  }

  .home-page .arc-feature-product-showcase img {
    width: 72px;
    height: 72px;
    border-radius: 14px;
  }

  .home-page .arc-feature-product-option {
    height: 38px;
    max-height: 38px;
    padding: 0 6px;
    font-size: 9.5px;
  }

  .home-page .arc-feature-product-options {
    grid-template-rows: repeat(var(--product-option-count, 3), 38px);
    gap: 8px;
  }

  .home-page .arc-feature-product-option::before {
    width: 11px;
    height: 11px;
  }

  .home-page .arc-realism-grid .arc-feature-assets img,
  .home-page .arc-realism-grid .arc-feature-assets img:nth-child(2) {
    aspect-ratio: 9 / 16;
    height: auto;
  }

  .home-page .arc-playful-panel {
    gap: 22px;
    padding-top: 76px;
    background: #101010;
  }

  .home-page .arc-playful-hero {
    gap: 16px;
  }

  .home-page .arc-playful-hero h2 {
    max-width: 360px;
    font-size: clamp(36px, 11vw, 48px);
    line-height: 0.96;
  }

  .home-page .arc-playful-hero p {
    max-width: 410px;
    font-size: 16px;
  }

  .home-page .arc-playful-grid {
    --playful-card-width: min(78vw, 318px);
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: var(--playful-card-width);
    justify-content: start;
    gap: 14px;
    width: 100vw;
    margin: 4px calc(50% - 50vw) 0;
    padding: 0 16px 10px;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-x: contain;
    overscroll-behavior-inline: contain;
    scroll-padding: 0 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
  }

  .home-page .arc-playful-grid::-webkit-scrollbar {
    display: none;
  }

  .home-page .arc-playful-grid article {
    min-height: 266px;
    padding: 22px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .home-page .arc-playful-grid article.arc-playful-variant-card {
    min-height: 300px;
  }

  .home-page .arc-playful-grid h3 {
    font-size: clamp(25px, 7vw, 30px);
  }

  .home-page .arc-playful-grid p {
    font-size: 15px;
  }

  .home-page .arc-playful-visual {
    --arc-playful-media-width: 120px;
    --arc-playful-media-height: 214px;
    top: 24px;
    right: 22px;
    left: 22px;
    height: var(--arc-playful-media-height);
  }

  .home-page .arc-playful-visual.arc-feature-visual {
    top: 24px;
    right: 22px;
    left: 22px;
    height: var(--arc-playful-media-height);
  }

  .home-page .arc-playful-visual-character {
    --arc-playful-stack-width: clamp(86px, 36%, 104px);
    grid-template-columns: minmax(0, 1fr) clamp(86px, 36%, 104px);
    grid-template-rows: minmax(0, 1fr);
    column-gap: 12px;
  }

  .home-page .arc-playful-visual-character > img,
  .home-page .arc-playful-visual-character > video,
  .home-page .arc-playful-visual-remix > video {
    height: var(--arc-playful-media-height);
    border-radius: 14px;
  }

  .home-page .arc-playful-source-stack > span:not(.arc-playful-app-tile):not(.arc-playful-product-highlight):not(.arc-playful-product-plus) {
    min-height: 30px;
    padding: 0 8px;
    font-size: 12px;
  }

  .home-page .arc-playful-source-stack {
    height: 226px;
  }

  .home-page .arc-playful-visual-explainer span {
    min-height: 40px;
    padding: 0 8px;
    font-size: 11px;
  }

  .home-page .arc-playful-visual-explainer {
    grid-template-rows: repeat(2, 78px);
    gap: 8px;
    padding: 10px;
  }

  .home-page .arc-playful-visual-remix {
    --arc-playful-stack-width: clamp(88px, 36%, 104px);
    grid-template-columns: minmax(0, 1fr) clamp(88px, 36%, 104px);
    grid-template-rows: minmax(0, 1fr);
    column-gap: 12px;
  }

  .home-page .arc-playful-app-tile,
  .home-page .arc-playful-product-highlight {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .home-page .arc-playful-variant-switcher {
    top: calc(100% + 12px);
    bottom: auto;
    gap: 5px;
  }

  .home-page .arc-playful-variant-switcher button {
    width: 22px;
    height: 22px;
    border-radius: 50%;
  }

  .home-page .arc-agent-panel {
    padding-bottom: 36px;
  }

  .home-page .arc-feature-hero {
    display: none;
  }

  .home-page .arc-feature-mobile-title {
    display: block;
    margin: 22px auto 0;
    color: #fffefa;
    font-size: clamp(36px, 11vw, 48px);
    line-height: 0.96;
    letter-spacing: -0.045em;
    text-align: center;
  }

  .home-page .arc-feature-mobile-title em {
    font-family: var(--display-font);
    font-size: 0.92em;
    font-weight: 500;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  .home-page .arc-feature-grid {
    --feature-card-width: min(74vw, 304px);
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: var(--feature-card-width);
    justify-content: start;
    gap: 14px;
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 0 16px 10px;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-x: contain;
    scroll-padding: 0 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
  }

  .home-page .arc-feature-grid .arc-feature-mobile-hero,
  .home-page .arc-feature-grid [data-feature-clone] {
    display: grid;
  }

  .home-page .arc-feature-grid::-webkit-scrollbar {
    display: none;
  }

  .home-page .arc-feature-grid article {
    height: 402px;
    padding: 22px;
    scroll-snap-align: center;
  }

  .home-page .arc-feature-mobile-hero-visual {
    position: absolute;
    top: 22px;
    right: 22px;
    left: 22px;
    height: 214px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.1)),
      url("./assets/features/endless-adaptations.webp?v=20260710") center / cover;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
  }

  .home-page .arc-feature-visual {
    top: 28px;
    right: 24px;
    left: 24px;
    height: 226px;
  }

  .home-page .arc-feature-characters {
    gap: 14px;
    padding: 18px 22px;
  }

  .home-page .arc-feature-characters span {
    height: 168px;
  }

  .home-page .arc-feature-characters span:nth-child(2) {
    height: 142px;
  }

  .home-page .arc-feature-remix {
    grid-template-rows: 122px repeat(2, 39px);
    gap: 8px;
    padding: 10px 8px;
  }

  .home-page .arc-feature-remix span {
    min-height: 39px;
    padding: 0 6px;
    font-size: 11px;
  }

  .home-page .arc-feature-angles {
    grid-template-rows: repeat(2, minmax(48px, auto)) 1fr;
    gap: 9px;
    padding: 8px;
  }

  .home-page .arc-feature-angles span,
  .home-page .arc-feature-angles strong {
    min-height: 48px;
    padding: 0 10px;
    font-size: 12px;
  }

  .home-page .arc-feature-angles strong {
    min-height: 78px;
  }

  .home-page .arc-feature-audience-showcase {
    top: 20px;
    right: 22px;
    left: 22px;
    height: 264px;
    padding: 0;
  }

  .home-page .arc-feature-guidelines {
    gap: 12px;
    padding: 8px;
  }

  .home-page .arc-feature-guidelines span,
  .home-page .arc-feature-variations span,
  .home-page .arc-feature-editor span {
    min-height: 46px;
    padding: 0 13px;
    font-size: 13px;
  }

  .home-page .arc-feature-variations {
    grid-template-rows: repeat(3, 50px);
    gap: 8px;
    padding: 8px;
  }

  .home-page .arc-feature-variations span {
    min-height: 50px;
    padding: 0 8px;
    font-size: 11px;
  }

  .home-page .arc-feature-assets {
    gap: 8px;
  }

  .home-page .arc-feature-assets img,
  .home-page .arc-feature-editor img {
    height: 190px;
    border-radius: 14px;
  }

  .home-page .arc-feature-assets img:nth-child(2),
  .home-page .arc-feature-editor img {
    height: 214px;
  }

  .home-page .arc-feature-editor {
    grid-template-columns: minmax(0, 1fr) 116px;
    gap: 10px;
  }

  .home-page .arc-feature-editor div {
    gap: 7px;
  }

  .home-page .arc-feature-editor span {
    min-height: 42px;
    padding: 0 10px;
    font-size: 11px;
  }

  .home-page .arc-feature-phone-row video {
    width: 128px;
  }

  .home-page .arc-feature-localize-showcase {
    top: 38px;
    gap: 10px;
    width: calc(100% - 44px);
  }

  .home-page .arc-feature-localize-showcase figure {
    flex-basis: 128px;
    border-radius: 11px;
  }

  .home-page .arc-feature-localize-showcase figure:nth-of-type(2) {
    transform: translateY(24px);
  }

  .home-page .arc-feature-localize-showcase figcaption {
    right: 8px;
    left: 8px;
    top: 50%;
    gap: 6px;
  }

  .home-page .arc-feature-localize-showcase figcaption span {
    min-height: 23px;
    padding: 0 7px;
    font-size: 10px;
  }

  .home-page .arc-feature-localize-showcase figcaption span b {
    font-size: 12px;
  }

  .home-page .arc-feature-localize-showcase figcaption strong {
    font-size: 12px;
    line-height: 1.06;
  }

  .home-page .arc-feature-clone-video {
    top: 44px;
    right: 22px;
    left: 22px;
  }

  .home-page .arc-feature-clone-video video {
    width: min(100%, 214px);
    aspect-ratio: 1;
  }

  .home-page .arc-mobile-carousel-controls,
  .home-page .arc-feature-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 2px auto 0;
  }

  .home-page .arc-mobile-carousel-controls button,
  .home-page .arc-feature-carousel-controls button {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
      rgba(255, 255, 255, 0.06);
    color: #fffefa;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  }

  .home-page .arc-mobile-carousel-controls svg,
  .home-page .arc-feature-carousel-controls svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .home-page .arc-feature-mobile-cta {
    display: flex;
    justify-self: center;
    width: fit-content;
    margin: 4px auto 0;
  }

  .home-page .arc-agent-copy {
    grid-template-columns: 1fr;
    row-gap: 26px;
    min-height: 0;
    padding: 34px 0 0;
  }

  .home-page .arc-agent-copy h2 {
    align-self: auto;
    justify-self: center;
    text-align: center;
  }

  .home-page .arc-agent-copy .arc-agent-window {
    grid-row: auto;
    grid-column: 1;
  }

  .home-page .arc-agent-copy .frame-button {
    justify-self: center;
  }

  .home-page .arc-agent-window {
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
  }

  .home-page .arc-agent-prompt {
    gap: 7px;
  }

  .home-page .arc-agent-prompt strong {
    font-size: clamp(14px, 4vw, 16px);
  }

  .home-page .arc-agent-suggestions {
    gap: 6px;
  }

  .home-page .arc-agent-suggestions span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 11.5px;
  }

  .home-page .arc-agent-thread {
    gap: 12px;
  }

  .home-page .arc-agent-turn {
    max-width: 100%;
    gap: 8px;
  }

  .home-page .arc-agent-avatar {
    width: 34px;
    height: 34px;
  }

  .home-page .arc-agent-avatar-logo img {
    width: 19px;
    height: 19px;
  }

  .home-page .arc-agent-bubble {
    padding: 11px 12px;
    border-radius: 16px;
  }

  .home-page .arc-agent-process-bubble {
    min-height: 34px;
    padding: 0;
  }

  .home-page .arc-agent-bubble p {
    font-size: 14px;
  }

  .home-page .arc-agent-attachment img {
    width: 34px;
    height: 34px;
  }

  .home-page .arc-agent-product-attachment::after {
    right: -4px;
    bottom: -4px;
    width: 14px;
    height: 14px;
    font-size: 9px;
  }

  .home-page .final-cta-section {
    padding: 76px 16px 78px;
  }

  .home-page .final-cta-section::before {
    top: -130px;
    width: 132vw;
    height: 230px;
    filter: blur(22px);
  }

  .home-page .final-cta-inner {
    min-height: 470px;
    padding: 120px 22px 86px;
  }

  .home-page .final-cta-inner h2 {
    font-size: clamp(38px, 11vw, 52px);
    width: auto;
  }

  .home-page .final-cta-media video {
    width: 96px;
  }

  .home-page .final-cta-media video:nth-child(1) {
    left: 4%;
  }

  .home-page .final-cta-media video:nth-child(2) {
    right: 4%;
  }

  .home-page .final-cta-media video:nth-child(3) {
    display: none;
  }

  .home-page .founder-support-section {
    padding: 0 18px 76px;
  }

  .home-page .founder-support-inner h2 {
    font-size: 44px;
    line-height: 1.08;
  }

  .home-page .founder-support-inner p {
    max-width: 460px;
    margin-top: 18px;
    font-size: 21px;
  }

  .home-page .founder-support-avatars {
    margin-top: 34px;
  }

  .home-page .founder-support-avatars img {
    width: 58px;
    height: 58px;
    border-width: 3px;
  }

  .home-page .founder-support-link {
    margin-top: 44px;
    font-size: 22px;
  }

  .home-page .founder-support-arrow {
    width: 20px;
    height: 20px;
  }

  .home-page .founder-support-arrow svg {
    width: 14px;
    height: 14px;
  }
}

@media (min-width: 700px) and (max-width: 860px) {
  .home-page .arc-tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .home-page .arc-tool-visual {
    height: 300px;
    min-height: 300px;
  }

  .home-page .arc-tool-grid article p {
    max-width: none;
  }

  .home-page .arc-social-tabs {
    width: min(760px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .home-page .arc-social-stage {
    --social-mobile-card-width: 310px;
    width: min(820px, 100%);
    margin-right: auto;
    margin-left: auto;
    padding-right: 34px;
    padding-left: 34px;
    scroll-padding: 0 34px;
  }

  .home-page .arc-wide-video {
    width: min(520px, 100%);
  }

  .home-page .arc-mobile-carousel-controls[data-mobile-carousel-controls="playful"] {
    display: none;
  }

  .home-page .arc-playful-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: unset;
    justify-content: stretch;
    gap: 18px;
    width: 100%;
    margin: 4px 0 0;
    padding: 0;
    overflow: visible;
    scroll-padding: 0;
    scroll-snap-type: none;
    scrollbar-width: auto;
    touch-action: auto;
  }

  .home-page .arc-playful-grid article {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .home-page .arc-agent-window {
    width: min(560px, 100%);
    justify-self: center;
  }
}

@media (min-width: 700px) {
  .home-page .arc-tool-variations {
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
  }
}

/* Browser-comment pass: single top menu, contrast, hover media, footer wordmark. */
.mobile-hero-showcase {
  display: none;
}

.home-page .site-header {
  position: fixed;
  top: 22px;
  z-index: 1000;
  height: 58px;
  padding: 0 8px 0 16px;
  border: 1px solid rgba(9, 9, 9, 0.08);
  border-radius: 999px;
  background: rgba(238, 238, 236, 0.66);
  box-shadow: 0 18px 58px rgba(9, 9, 9, 0.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.home-page .brand img {
  filter: brightness(0) saturate(0);
}

.home-page .brand {
  color: #090909;
}

.home-page .sign-in {
  min-width: 96px;
  border: 1px solid rgba(9, 9, 9, 0.2);
  background: rgba(255, 255, 255, 0.34);
  color: #090909;
  box-shadow: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home-page .frame-hero.arc-hero {
  min-height: 930px;
  padding-bottom: 230px;
}

.home-page .frame-hero-center > p:not(.frame-pill) {
  margin-top: 22px;
}

.home-page .frame-hero-actions {
  margin-top: 48px;
}

.home-page .frame-float-bottom {
  bottom: -198px;
}

.home-page .frame-float-lower-left,
.home-page .frame-float-lower-right {
  bottom: -184px;
}

@media (min-width: 861px) {
  .home-page .frame-hero.arc-hero {
    min-height: 1050px;
    padding-bottom: 300px;
  }

  .home-page .frame-hero-center {
    width: min(1080px, calc(100% - 240px));
  }

  .home-page .frame-hero-center h1 {
    max-width: none;
    font-size: 62px;
    font-weight: 760;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .home-page .frame-hero-center h1 em {
    font-weight: 760;
  }

  .home-page .frame-hero-center > p:not(.frame-pill):not(.frame-risk-note) {
    max-width: 660px;
    margin-top: 28px;
  }

  .home-page .frame-hero-actions {
    margin-top: 46px;
  }

  .home-page .frame-float-left {
    top: 116px;
    left: max(6px, calc(50% - 724px));
  }

  .home-page .frame-float-right {
    top: 126px;
    right: max(6px, calc(50% - 724px));
  }

  .home-page .frame-float-bottom,
  .home-page .frame-float-lower-left,
  .home-page .frame-float-lower-right {
    width: clamp(132px, 10.8vw, 154px);
  }

  .home-page .frame-float-bottom {
    bottom: 72px;
  }

  .home-page .frame-float-lower-left,
  .home-page .frame-float-lower-right {
    bottom: 60px;
  }

  .home-page .frame-float-card video {
    --video-reveal-pending-filter: grayscale(1) saturate(0) contrast(1.04) blur(10px);
    --video-reveal-ready-filter: grayscale(1) saturate(0) contrast(1.04);
    filter: grayscale(1) saturate(0) contrast(1.04);
    transition: filter 220ms ease, opacity 220ms ease;
  }

  .home-page .frame-float-card:hover video,
  .home-page .frame-float-card:focus-visible video {
    --video-reveal-pending-filter: blur(10px);
    --video-reveal-ready-filter: none;
    filter: none;
  }
}

@media (min-width: 1200px) and (max-width: 1350px) {
  .home-page .frame-hero-center h1 {
    font-size: 56px;
  }
}

@media (min-width: 861px) and (max-width: 1199px) {
  .home-page .frame-hero-center {
    width: min(930px, calc(100% - 190px));
  }

  .home-page .frame-hero-center h1 {
    font-size: 50px;
  }
}

.home-page .arc-model-section {
  padding-top: 116px;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.74), transparent 36%),
    #f3eee5;
}

.home-page .arc-workflow-panel {
  padding-top: 104px;
}

.home-page .site-footer {
  margin-top: -1px;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.74), transparent 36%),
    #f3eee5;
  color: #090909;
}

.home-page .footer-inner::after {
  background: rgba(255, 255, 255, 0.1);
}

.home-page .footer-bottom {
  border-top-color: rgba(9, 9, 9, 0.06);
  color: rgba(9, 9, 9, 0.48);
}

.home-page .footer-bottom a {
  color: rgba(9, 9, 9, 0.64);
}

.home-page .footer-bottom a:hover {
  color: #090909;
}

.home-page .footer-mega-word {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.035em;
  width: min(1088px, calc(100% - 40px));
  margin: 44px auto 0;
  overflow: hidden;
  color: rgba(9, 9, 9, 0.13);
  font-family: inherit;
  font-size: clamp(190px, 11vw, 244px);
  font-variant-caps: normal;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 0.82;
  opacity: 0;
  text-align: center;
  text-transform: lowercase;
  transform: translateY(22px);
  filter: blur(18px);
  white-space: nowrap;
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1);
  user-select: none;
}

.home-page .footer-mega-mark {
  flex: 0 0 auto;
  width: 0.82em;
  height: 0.68em;
  background: currentColor;
  -webkit-mask: url("./assets/logo/ahoy-mark-white.svg") center / contain no-repeat;
  mask: url("./assets/logo/ahoy-mark-white.svg") center / contain no-repeat;
}

.home-page .footer-mega-text {
  display: inline-flex;
  align-items: baseline;
}

.home-page .footer-mega-desktop {
  display: none;
}

.home-page .footer-mega-word.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .home-page .footer-mega-word {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (max-width: 1120px) and (min-width: 861px) {
  .home-page .footer-mega-word {
    font-size: clamp(176px, 22vw, 224px);
  }
}

.home-page .frame-float-card {
  appearance: none;
  padding: 0;
  font: inherit;
  text-align: inherit;
  cursor: pointer;
}

.home-page .frame-float-card:focus-visible,
.mobile-hero-videos button:focus-visible {
  outline: 3px solid rgba(16, 83, 169, 0.72);
  outline-offset: 5px;
}

.home-page p.frame-risk-note,
.home-page .frame-hero-center > p.frame-risk-note {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
  width: fit-content;
  max-width: min(720px, calc(100% - 24px));
  margin-right: auto;
  margin-left: auto;
  margin-top: 20px;
  color: rgba(9, 9, 9, 0.56);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}

.home-page .arc-thought-panel > p.frame-risk-note,
.home-page .final-cta-inner p.frame-risk-note {
  justify-self: center;
}

.home-page .final-cta-inner p.frame-risk-note {
  align-self: start;
}

.home-page .frame-risk-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
}

.home-page .frame-risk-text {
  white-space: nowrap;
}

.home-page .frame-risk-dollar-icon,
.home-page .frame-risk-card-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 1;
}

.home-page .frame-risk-dollar-icon path,
.home-page .frame-risk-card-icon rect,
.home-page .frame-risk-card-icon path {
  vector-effect: non-scaling-stroke;
}

.home-page .frame-risk-text {
  min-width: 0;
  text-align: left;
  white-space: nowrap;
}

.hero-chip-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 22px 0 24px;
  border-top: 1px solid rgba(9, 9, 9, 0.06);
  border-bottom: 1px solid rgba(9, 9, 9, 0.06);
  background: #eeeeec;
}

.hero-chip-marquee::before,
.hero-chip-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 110px;
  pointer-events: none;
}

.hero-chip-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #eeeeec, rgba(238, 238, 236, 0));
}

.hero-chip-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #eeeeec, rgba(238, 238, 236, 0));
}

.hero-chip-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 0 6px;
  animation: none;
  will-change: transform;
}

.hero-chip-marquee.is-chip-loop-ready .hero-chip-track {
  animation: hero-chip-scroll var(--hero-chip-duration, 40s) linear infinite;
  animation-delay: var(--hero-chip-delay, 0s);
}

.hero-chip-track + .hero-chip-track {
  margin-top: 12px;
}

.hero-chip-marquee.is-chip-loop-ready .hero-chip-track-secondary,
.hero-chip-marquee.is-chip-loop-ready .hero-chip-track-quaternary {
  animation-direction: reverse;
}

.hero-chip-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(9, 9, 9, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #111;
  font-size: 17px;
  font-weight: 620;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(9, 9, 9, 0.06);
  white-space: nowrap;
}

@keyframes hero-chip-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translate3d(var(--hero-chip-loop-distance, -50%), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-chip-marquee.is-chip-loop-ready .hero-chip-track {
    animation: none;
    transform: none;
  }
}

.video-reel-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  overflow: hidden;
  background: rgba(238, 238, 236, 0.82);
  color: #050505;
  backdrop-filter: blur(20px);
}

.video-reel-modal[hidden] {
  display: none;
}

.video-reel-modal::before {
  content: "";
  position: absolute;
  inset: -80px;
  background:
    linear-gradient(90deg, rgba(238, 238, 236, 0.94), rgba(238, 238, 236, 0.58), rgba(238, 238, 236, 0.94)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(238, 238, 236, 0.72));
  pointer-events: none;
}

.video-reel-actions,
.video-reel-close {
  position: fixed;
  z-index: 4;
}

.video-reel-nav {
  position: fixed;
  top: 50%;
  right: max(32px, env(safe-area-inset-right));
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-50%);
}

.video-reel-nav-button {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(9, 9, 9, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: #101010;
  box-shadow: 0 18px 46px rgba(9, 9, 9, 0.16);
  cursor: pointer;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.video-reel-nav-button:hover,
.video-reel-nav-button:focus-visible {
  border-color: rgba(9, 9, 9, 0.34);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.video-reel-nav-button svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.video-reel-brand {
  top: 30px;
  left: 96px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #050505;
  font-size: 28px;
  font-weight: 850;
}

.video-reel-brand img {
  width: 38px;
  height: 38px;
  filter: grayscale(1) saturate(0) brightness(0.55);
}

.video-reel-actions {
  top: 30px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-reel-login,
.video-reel-start {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid rgba(9, 9, 9, 0.18);
  border-radius: 999px;
  font: inherit;
  font-size: 18px;
  font-weight: 820;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.video-reel-login {
  background: rgba(255, 255, 255, 0.4);
  color: #101010;
  backdrop-filter: blur(16px);
}

.video-reel-start {
  border-color: rgba(9, 9, 9, 0.9);
  background: linear-gradient(180deg, #343434, #090909);
  color: #fff;
  box-shadow: 0 18px 48px rgba(9, 9, 9, 0.22);
}

.video-reel-close {
  top: 30px;
  left: 28px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(9, 9, 9, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(9, 9, 9, 0.12);
  cursor: pointer;
}

.video-reel-close::before,
.video-reel-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #050505;
}

.video-reel-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.video-reel-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.video-reel-scroll {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 132px 24px 96px;
  scroll-snap-type: y proximity;
}

.video-reel-item {
  position: relative;
  flex: 0 0 auto;
  width: min(440px, calc(100vw - 48px));
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  background: #101010;
  box-shadow: 0 32px 100px rgba(9, 9, 9, 0.26);
  scroll-snap-align: center;
}

.video-reel-item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-reel-restart {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(9, 9, 9, 0.28);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  filter: blur(8px);
  pointer-events: none;
  transform: scale(0.86);
  transform-origin: center;
  transition:
    opacity 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
  backdrop-filter: blur(12px);
}

.video-reel-restart svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.video-reel-restart.is-restart-visible,
.mobile-hero-restart.is-restart-visible,
.arc-playful-restart.is-restart-visible {
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
  transform: scale(1);
}

.video-reel-sound {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(9, 9, 9, 0.28);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.video-reel-sound-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.video-reel-sound-on {
  display: none;
}

.video-reel-sound.is-sound-on .video-reel-sound-muted {
  display: none;
}

.video-reel-sound.is-sound-on .video-reel-sound-on {
  display: block;
}

body.is-video-reel-open {
  overflow: hidden;
}

@media (max-width: 860px) {
  .home-page .site-header {
    top: 20px;
    width: calc(100% - 34px);
    height: 48px;
  }

  .home-page .brand {
    gap: 7px;
    font-size: clamp(23px, 6.6vw, 32px);
    line-height: 1;
  }

  .home-page .brand img {
    width: 28px;
    height: 25px;
  }

  .home-page .sign-in {
    display: inline-flex;
    min-height: 42px;
    padding: 0 15px;
    border-radius: 16px;
    font-size: 13px;
    white-space: nowrap;
  }

  .home-page .menu-toggle {
    display: none;
  }

  .home-page .frame-hero.arc-hero {
    display: block;
    min-height: 0;
    padding: 106px 15px 37px;
  }

  .home-page .frame-hero.arc-hero::after {
    background:
      linear-gradient(90deg, rgba(238, 238, 236, 0.86), transparent 28%, transparent 72%, rgba(238, 238, 236, 0.86)),
      linear-gradient(180deg, transparent 0%, rgba(238, 238, 236, 0.38) 70%, #eeeeec 100%);
  }

  .home-page .frame-hero-center {
    align-self: start;
    margin: 0 auto;
  }

  .home-page .frame-pill {
    margin-bottom: 24px;
  }

  .home-page .frame-hero-center h1 {
    max-width: 340px;
    font-size: clamp(39px, 11.6vw, 46px);
    font-weight: 690;
    line-height: 1;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }

  .home-page .frame-hero-center h1 em {
    display: block;
    margin-top: -1px;
    font-size: 1.04em;
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.025em;
  }

  .home-page .frame-hero-center > p:not(.frame-pill) {
    max-width: 660px;
    margin-top: 22px;
    font-size: clamp(19px, 5vw, 30px);
  }

  .home-page .frame-hero-actions {
    width: 100%;
    max-width: 706px;
    margin: 22px auto 0;
  }

  .home-page .frame-button {
    min-height: 66px;
    border-radius: 18px;
    font-size: clamp(16px, 4.4vw, 24px);
  }

  .home-page .frame-float-card {
    display: none;
  }

  .mobile-hero-showcase {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 44px auto 0;
  }

  .mobile-hero-videos {
    display: grid;
    grid-auto-columns: clamp(126px, calc((100vw - 70px) / 2), 218px);
    grid-auto-flow: column;
    gap: 12px;
    width: calc(100% + 26px);
    margin-left: -8px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    padding: 0 10px 2px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-hero-videos::-webkit-scrollbar {
    display: none;
  }

  .mobile-hero-video-card {
    position: relative;
    min-width: 0;
    scroll-snap-align: start;
  }

  .mobile-hero-video-open {
    appearance: none;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: transparent;
    cursor: pointer;
    touch-action: pan-x pan-y;
  }

  .mobile-hero-videos video {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(9, 9, 9, 0.18);
    pointer-events: none;
    user-select: none;
  }

  .mobile-hero-restart,
  .mobile-hero-sound {
    position: absolute;
    top: 9px;
    z-index: 3;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 50%;
    background: rgba(9, 9, 9, 0.34);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    touch-action: manipulation;
  }

  .mobile-hero-restart {
    opacity: 0;
    filter: blur(8px);
    pointer-events: none;
    transform: scale(0.86);
    transform-origin: center;
    transition:
      opacity 180ms ease,
      filter 180ms ease,
      transform 180ms ease;
  }

  .mobile-hero-restart {
    left: 9px;
  }

  .mobile-hero-sound {
    right: 9px;
  }

  .mobile-hero-restart svg,
  .mobile-hero-sound-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-hero-sound-on {
    display: none;
  }

  .mobile-hero-sound.is-sound-on .mobile-hero-sound-muted {
    display: none;
  }

  .mobile-hero-sound.is-sound-on .mobile-hero-sound-on {
    display: block;
  }

  .mobile-hero-chips {
    position: relative;
    display: grid;
    gap: 8px;
    width: calc(100% + 80px);
    margin: 34px 0 0 -40px;
    overflow: hidden;
    padding: 1px 0;
  }

  .mobile-hero-chips::before,
  .mobile-hero-chips::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 54px;
    pointer-events: none;
  }

  .mobile-hero-chips::before {
    left: 0;
    background: linear-gradient(90deg, #eeeeec, rgba(238, 238, 236, 0));
  }

  .mobile-hero-chips::after {
    right: 0;
    background: linear-gradient(270deg, #eeeeec, rgba(238, 238, 236, 0));
  }

  .mobile-chip-track {
    display: flex;
    width: max-content;
    gap: 8px;
    animation: mobile-chip-scroll 48s linear infinite;
    will-change: transform;
  }

  .mobile-chip-track-alt {
    animation-direction: reverse;
    animation-duration: 54s;
  }

  .mobile-chip-track-tertiary {
    animation-duration: 60s;
  }

  .mobile-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 32px;
    padding: 0 11px;
    border: 1px solid rgba(9, 9, 9, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: rgba(9, 9, 9, 0.82);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    box-shadow: 0 6px 18px rgba(9, 9, 9, 0.055);
    cursor: default;
    touch-action: manipulation;
    user-select: none;
    white-space: nowrap;
    transition:
      transform 160ms ease,
      border-color 160ms ease,
      background 160ms ease,
      color 160ms ease,
      box-shadow 160ms ease;
  }

  .mobile-chip:active,
  .mobile-chip.is-chip-active {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.34);
    background: #fffefa;
    color: #101010;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  }

  .mobile-hero-chips.is-chip-paused .mobile-chip-track,
  .mobile-hero-chips:has(.mobile-chip:active) .mobile-chip-track,
  .mobile-hero-chips:has(.mobile-chip.is-chip-active) .mobile-chip-track {
    animation-play-state: paused;
  }

  .mobile-chip svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.8;
  }

  @keyframes mobile-chip-scroll {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

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

  .home-page .arc-model-section {
    padding-top: 82px;
  }

  .home-page .arc-workflow-panel {
    padding-top: 82px;
  }

  .home-page .footer-mega-word {
    width: calc(100% - 20px);
    margin-top: 28px;
    font-size: clamp(58px, 23vw, 124px);
    letter-spacing: -0.055em;
  }

  .home-page .frame-hero-center > p.frame-risk-note {
    max-width: 660px;
    margin-top: 16px;
    color: rgba(9, 9, 9, 0.58);
    font-size: clamp(19px, 5vw, 30px);
    font-weight: 400;
    line-height: 1.4;
  }

  .hero-chip-marquee {
    display: none;
  }

  .video-reel-modal {
    background: rgba(238, 238, 236, 0.9);
  }

  .video-reel-actions {
    top: 18px;
    right: 18px;
    gap: 7px;
  }

  .video-reel-login,
  .video-reel-start {
    min-height: 48px;
    padding: 0 15px;
    font-size: 15px;
  }

  .video-reel-close {
    top: 82px;
    left: 18px;
    width: 44px;
    height: 44px;
  }

  .video-reel-nav {
    display: none;
  }

  .video-reel-scroll {
    gap: 46px;
    padding: 112px 18px 54px;
    scroll-snap-type: y mandatory;
  }

  .video-reel-item {
    width: min(360px, calc(100vw - 40px));
    border-radius: 15px;
  }

  .video-reel-restart {
    width: 42px;
    height: 42px;
  }

  .video-reel-sound {
    width: 42px;
    height: 42px;
  }
}

/* Dark hero trial. */
.home-page .site-header {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease;
}

.home-page .site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(16, 16, 16, 0.68);
  box-shadow: 0 20px 66px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.home-page .brand {
  color: #f8f6ef;
}

.home-page .brand img {
  filter: brightness(0) invert(1);
}

.home-page .sign-in {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #f8f6ef;
}

.home-page .frame-hero.arc-hero {
  background: #101010;
  color: #f6f4ee;
}

.home-page .frame-hero.arc-hero::before {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.11), transparent 20%),
    radial-gradient(circle at 50% 72%, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(180deg, #101010 0%, #141414 48%, #101010 100%);
}

.home-page .frame-hero.arc-hero::after {
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.96), transparent 22%, transparent 78%, rgba(16, 16, 16, 0.96)),
    linear-gradient(180deg, rgba(16, 16, 16, 0.18) 0%, rgba(16, 16, 16, 0.42) 80%, #101010 100%);
}

.home-page .frame-hero-center h1 {
  color: #f8f6ef;
}

.home-page .frame-hero-center > p:not(.frame-pill):not(.frame-risk-note) {
  color: rgba(246, 244, 238, 0.72);
}

.home-page .frame-hero.arc-hero .frame-risk-note,
.home-page .arc-realism-panel-dark .frame-risk-note,
.home-page .arc-playful-panel .frame-risk-note,
.home-page .arc-feature-panel .frame-risk-note,
.home-page .final-cta-section .frame-risk-note {
  color: #b8b6b0;
}

.home-page .frame-hero.arc-hero .frame-risk-dollar-icon,
.home-page .frame-hero.arc-hero .frame-risk-card-icon {
  color: currentColor;
  stroke: currentColor;
  opacity: 1;
}

.home-page .site-header .sign-in {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #f8f6ef;
  box-shadow: none;
}

.home-page .frame-button-dark {
  border-color: rgba(255, 255, 255, 0.28);
  background: #f8f6ef;
  color: #101010;
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.44);
}

.home-page .frame-button-spark {
  flex: 0 0 auto;
  display: block;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.9;
  overflow: visible;
}

.home-page .frame-button-spark path,
.home-page .frame-button-spark circle {
  vector-effect: non-scaling-stroke;
}

.home-page .frame-button-note {
  flex: 0 0 auto;
  display: block;
  width: 17px;
  height: 17px;
  margin-left: 8px;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.88;
}

.home-page .frame-button-note path,
.home-page .frame-button-note circle {
  vector-effect: non-scaling-stroke;
}

.home-page .frame-button-play {
  flex: 0 0 auto;
  display: block;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.9;
}

.home-page .frame-button-play path,
.home-page .frame-button-play circle {
  vector-effect: non-scaling-stroke;
}

.home-page .frame-button-light {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #f8f6ef;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.home-page .frame-float-card {
  box-shadow: 0 32px 94px rgba(0, 0, 0, 0.54);
}

.hero-chip-marquee {
  border-color: rgba(255, 255, 255, 0.06);
  background: #101010;
}

.hero-chip-marquee::before {
  background: linear-gradient(90deg, #101010, rgba(16, 16, 16, 0));
}

.hero-chip-marquee::after {
  background: linear-gradient(270deg, #101010, rgba(16, 16, 16, 0));
}

.hero-chip-track span {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 246, 239, 0.94);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.video-reel-modal {
  background: rgba(16, 16, 16, 0.9);
  color: #f8f6ef;
  isolation: isolate;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.video-reel-modal::before {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.09), transparent 22%),
    radial-gradient(circle at 50% 76%, rgba(255, 255, 255, 0.055), transparent 32%),
    linear-gradient(90deg, rgba(16, 16, 16, 0.96), rgba(16, 16, 16, 0.72), rgba(16, 16, 16, 0.96)),
    linear-gradient(180deg, #101010, #151515);
}

.video-reel-login {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: #f8f6ef;
  box-shadow: none;
}

.video-reel-start {
  border-color: rgba(255, 255, 255, 0.88);
  background: #f8f6ef;
  color: #101010;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.46);
}

.video-reel-close {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.video-reel-close::before,
.video-reel-close::after {
  background: #f8f6ef;
}

.video-reel-nav-button {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #f8f6ef;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

.video-reel-nav-button:hover,
.video-reel-nav-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.16);
}

.video-reel-item {
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.58);
}

@media (max-width: 860px) {
  .home-page .frame-hero.arc-hero::after {
    background:
      linear-gradient(90deg, rgba(16, 16, 16, 0.88), transparent 28%, transparent 72%, rgba(16, 16, 16, 0.88)),
      linear-gradient(180deg, rgba(16, 16, 16, 0.08) 0%, rgba(16, 16, 16, 0.34) 68%, #101010 100%);
  }

  .mobile-hero-videos video {
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  }

  .mobile-hero-chips::before {
    background: linear-gradient(90deg, #101010, rgba(16, 16, 16, 0));
  }

  .mobile-hero-chips::after {
    background: linear-gradient(270deg, #101010, rgba(16, 16, 16, 0));
  }

  .mobile-chip {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(248, 246, 239, 0.9);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  }

  .home-page .site-header .sign-in {
    min-height: auto;
    padding: 0;
    font-size: 14px;
  }

  .home-page .frame-hero-center > p.frame-risk-note {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: center;
    justify-content: center;
    column-gap: 14px;
    width: min(100%, 300px);
    max-width: 300px;
    margin: 18px auto 0;
    font-size: clamp(20px, 5.7vw, 22px);
    line-height: 1.08;
    text-align: center;
  }

  .home-page .frame-risk-text {
    display: block;
  }

  .video-reel-modal {
    background: rgba(16, 16, 16, 0.94);
  }
}

/* Current homepage refinement pass. */
.home-page .brand {
  font-weight: 560;
}

.home-page .site-header .sign-in {
  min-width: auto;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #f8f6ef;
  font-weight: 500;
  box-shadow: none;
}

.home-page .frame-hero-center h1 {
  font-weight: 700;
}

.home-page .frame-hero-center h1 em {
  font-weight: 500;
}

.approval-section.legacy-home-section,
.posting-section.legacy-home-section,
.legacy-final-cta-section {
  display: none !important;
}

.hero-chip-track span {
  gap: 8px;
  padding: 0 15px;
  font-size: 17px;
  font-weight: 620;
  cursor: default;
  touch-action: manipulation;
  user-select: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.hero-chip-track span::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background: currentColor;
  opacity: 0.86;
  -webkit-mask: var(--chip-icon) center / contain no-repeat;
  mask: var(--chip-icon) center / contain no-repeat;
}

.hero-chip-marquee.is-chip-paused .hero-chip-track,
.hero-chip-marquee:has(.hero-chip-track span:hover) .hero-chip-track,
.hero-chip-marquee:has(.hero-chip-track span:active) .hero-chip-track {
  animation-play-state: paused;
}

.hero-chip-track span:hover,
.hero-chip-track span.is-chip-active {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
  background: #fffefa;
  color: #101010;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 18px 48px rgba(0, 0, 0, 0.34);
}

.hero-chip-track .chip-clone {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 8h10v10H8z'/%3E%3Cpath d='M5 15V5h10'/%3E%3C/svg%3E");
}

.hero-chip-track .chip-carousel {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 5h8v14H8z'/%3E%3Cpath d='M4 8h2v8H4'/%3E%3Cpath d='M20 8h-2v8h2'/%3E%3Cpath d='M11 9h2'/%3E%3Cpath d='M11 15h2'/%3E%3C/svg%3E");
}

.hero-chip-track .chip-website {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M4 12h16'/%3E%3Cpath d='M12 4c2 2.1 3 4.8 3 8s-1 5.9-3 8'/%3E%3Cpath d='M12 4c-2 2.1-3 4.8-3 8s1 5.9 3 8'/%3E%3C/svg%3E");
}

.hero-chip-track .chip-chat,
.hero-chip-track .chip-comment {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 6h14v9H9l-4 4V6Z'/%3E%3Cpath d='M9 10h6'/%3E%3C/svg%3E");
}

.hero-chip-track .chip-bot {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 6V4'/%3E%3Cpath d='M7 7h10a3 3 0 0 1 3 3v5a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3v-5a3 3 0 0 1 3-3Z'/%3E%3Ccircle cx='9' cy='12' r='.8'/%3E%3Ccircle cx='15' cy='12' r='.8'/%3E%3Cpath d='M9.5 15h5'/%3E%3C/svg%3E");
}

.hero-chip-track .chip-mcp {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180' fill='none'%3E%3Cpath d='M18 84.8528 85.8822 16.9706c9.3726-9.3726 24.5688-9.3726 33.9408 0 9.373 9.3725 9.373 24.5685 0 33.9411L68.5581 102.177' stroke='black' stroke-width='12' stroke-linecap='round'/%3E%3Cpath d='M69.2652 101.47 119.823 50.9117c9.373-9.3726 24.569-9.3726 33.942 0l.353.3535c9.373 9.3726 9.373 24.5686 0 33.9411L92.7248 146.6c-3.1242 3.124-3.1242 8.189 0 11.313l12.6062 12.607' stroke='black' stroke-width='12' stroke-linecap='round'/%3E%3Cpath d='M102.853 33.9411 52.6482 84.1457c-9.3726 9.3726-9.3726 24.5683 0 33.9413 9.3726 9.372 24.5685 9.372 33.9411 0l50.2047-50.2048' stroke='black' stroke-width='12' stroke-linecap='round'/%3E%3C/svg%3E");
}

.hero-chip-track .chip-style,
.arc-feature-editor .chip-style,
.arc-song-process .chip-style {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 3 1.8 5.2L19 10l-5.2 1.8L12 17l-1.8-5.2L5 10l5.2-1.8L12 3Z'/%3E%3Cpath d='m18 15 .8 2.2L21 18l-2.2.8L18 21l-.8-2.2L15 18l2.2-.8L18 15Z'/%3E%3C/svg%3E");
}

.hero-chip-track .chip-upload {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 16V5'/%3E%3Cpath d='m8 9 4-4 4 4'/%3E%3Cpath d='M5 16v3h14v-3'/%3E%3C/svg%3E");
}

.hero-chip-track .chip-brand-material {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h6l2 2h8v10H4V7Z'/%3E%3C/svg%3E");
}

.hero-chip-track .chip-offer {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12V5h7l9 9-7 7-9-9Z'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.2'/%3E%3C/svg%3E");
}

.hero-chip-track .chip-founder {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M5 20c1.3-3.2 3.6-4.8 7-4.8s5.7 1.6 7 4.8'/%3E%3C/svg%3E");
}

.hero-chip-track .chip-swap {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6.5' cy='7' r='3'/%3E%3Cpath d='M2.5 17c.8-3 2.2-4.5 4-4.5s3.2 1.5 4 4.5'/%3E%3Cpath d='M13 7h6'/%3E%3Cpath d='m16.5 4.5 3 2.5-3 2.5'/%3E%3Cpath d='M20 15h-6'/%3E%3Cpath d='m16.5 12.5-3 2.5 3 2.5'/%3E%3C/svg%3E");
}

.hero-chip-track .chip-product {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 4 7 4-7 4-7-4 7-4Z'/%3E%3Cpath d='M5 8v8l7 4 7-4V8'/%3E%3Cpath d='M12 12v8'/%3E%3C/svg%3E");
}

.hero-chip-track .chip-trend {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 16 5-5 4 4 7-8'/%3E%3Cpath d='M15 7h5v5'/%3E%3C/svg%3E");
}

.hero-chip-track .chip-ugc {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 4 2.2 4.5 5 .7-3.6 3.5.8 5-4.4-2.4-4.4 2.4.8-5L4.8 9.2l5-.7L12 4Z'/%3E%3C/svg%3E");
}

.hero-chip-track .chip-song,
.arc-feature-editor .chip-song,
.arc-song-process .chip-song {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18V6l10-2v12'/%3E%3Ccircle cx='6.5' cy='18' r='2.5'/%3E%3Ccircle cx='16.5' cy='16' r='2.5'/%3E%3C/svg%3E");
}

.hero-chip-track .chip-script,
.arc-feature-editor .chip-script,
.arc-song-process .chip-script {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 4h10v16H7z'/%3E%3Cpath d='M10 8h4'/%3E%3Cpath d='M10 12h5'/%3E%3Cpath d='M10 16h3'/%3E%3C/svg%3E");
}

.hero-chip-track .chip-approve {
  --chip-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='m8.5 12.3 2.2 2.2 4.8-5'/%3E%3C/svg%3E");
}

@media (min-width: 861px) {
  .home-page .frame-float-bottom {
    bottom: 128px;
  }

  .home-page .frame-float-lower-left,
  .home-page .frame-float-lower-right {
    bottom: 116px;
  }
}

@media (min-width: 861px) and (max-width: 1199px) {
  .home-page .frame-float-left {
    left: clamp(-118px, calc((100vw - 1200px) * 0.35), -18px);
  }

  .home-page .frame-float-right {
    right: clamp(-118px, calc((100vw - 1200px) * 0.35), -18px);
  }
}

@media (min-width: 1200px) and (max-width: 1350px) {
  .home-page .frame-float-left {
    left: clamp(-30px, calc((100vw - 1350px) * 0.2), 8px);
  }

  .home-page .frame-float-right {
    right: clamp(-30px, calc((100vw - 1350px) * 0.2), 8px);
  }
}

.video-reel-scroll {
  z-index: 2;
  gap: 56px;
  padding: max(128px, calc(env(safe-area-inset-top) + 104px)) 24px 96px;
  scroll-padding-top: max(128px, calc(env(safe-area-inset-top) + 104px));
}

.video-reel-actions,
.video-reel-close {
  z-index: 30;
}

.video-reel-item {
  width: min(400px, calc(100vw - 64px), calc(56.25vh - 117px));
  scroll-snap-align: start;
}

@media (max-width: 860px) {
  .home-page .site-header {
    right: 17px;
    left: 17px;
    width: auto;
    transform: none;
  }

  .home-page .site-header .sign-in {
    padding: 0;
    font-weight: 500;
  }

  .home-page .frame-hero-center > p:not(.frame-pill):not(.frame-risk-note) {
    width: min(478px, calc(100vw - 32px));
    max-width: none;
    font-size: 20px;
  }

  .home-page .frame-hero-center > p.frame-risk-note {
    width: min(282px, calc(100% - 24px));
    max-width: 282px;
    column-gap: 12px;
    font-size: clamp(18px, 4.7vw, 20px);
  }

  .video-reel-actions {
    top: max(18px, env(safe-area-inset-top));
  }

  .video-reel-login,
  .video-reel-start {
    font-weight: 620;
  }

  .video-reel-close {
    top: max(18px, env(safe-area-inset-top));
    left: 18px;
  }

  .video-reel-scroll {
    gap: 48px;
    padding: max(122px, calc(env(safe-area-inset-top) + 108px)) 12px 64px;
    scroll-padding-top: max(122px, calc(env(safe-area-inset-top) + 108px));
  }

  .video-reel-item {
    width: min(350px, calc(100vw - 40px), calc(56.25vh - 110px));
  }
}

.home-page .footer-logo,
.home-page .footer-logo span,
.home-page .footer-bottom .brand-smallcaps,
.home-page .footer-mega-word {
  font-variant: normal;
  font-variant-caps: normal;
  font-feature-settings: "smcp" 0, "c2sc" 0;
  text-transform: none;
}

.home-page .footer-logo {
  font-size: 16px;
  font-weight: 560;
  letter-spacing: -0.045em;
}

.home-page .footer-mega-word {
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.02;
  padding-bottom: 0.08em;
  overflow: visible;
  font-size: clamp(150px, 31vw, 368px);
}

.home-page .footer-mega-mark {
  display: block;
}

@media (min-width: 861px) {
  .home-page .footer-mega-mobile {
    display: none;
  }

  .home-page .footer-mega-desktop {
    display: inline;
  }
}

@media (max-width: 860px) {
  .home-page .footer-mega-word {
    width: min(100%, calc(100vw - 28px));
    margin-top: 30px;
    font-size: clamp(92px, 30vw, 275px);
    letter-spacing: 0;
    line-height: 1;
    padding-bottom: 0.12em;
  }
}

@media (max-width: 860px) {
  .home-page .frame-hero-center {
    width: min(100%, 680px);
    max-width: calc(100vw - 24px);
    margin-right: auto;
    margin-left: auto;
    justify-items: center;
  }

  .home-page .frame-hero-center h1 {
    width: 100%;
    max-width: 100%;
    font-size: 48px;
    line-height: 0.98;
    letter-spacing: 0;
    text-align: center;
    text-wrap: balance;
    white-space: normal;
  }

  .home-page .frame-hero-center h1 em {
    display: block;
    margin-top: 0;
    font-size: 1.05em;
    line-height: 0.9;
    white-space: normal;
  }

  .home-page .frame-hero-center > p:not(.frame-pill):not(.frame-risk-note) {
    width: min(100%, 500px);
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .home-page .frame-hero-actions {
    width: min(100%, 360px);
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .home-page .frame-hero-actions .frame-button {
    width: min(100%, 300px);
  }

  .home-page .frame-hero-actions .frame-button-light {
    display: none;
  }

  .home-page .frame-hero-center > p.frame-risk-note {
    display: flex;
    flex-wrap: wrap;
    width: min(100%, 360px);
    max-width: 100%;
    grid-template-columns: none;
    align-items: center;
    justify-content: center;
    column-gap: 0;
    gap: 8px 16px;
    margin: 20px auto 0;
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .home-page .frame-risk-item {
    gap: 6px;
  }

  .home-page .frame-risk-text {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .home-page .frame-hero-center h1 {
    font-size: 40px;
  }

  .home-page .frame-hero-center > p:not(.frame-pill):not(.frame-risk-note) {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .home-page .frame-hero-center {
    max-width: calc(100vw - 28px);
  }

  .home-page .frame-hero-center h1 {
    max-width: 325px;
    font-size: 36px;
  }

  .home-page .frame-hero-center > p:not(.frame-pill):not(.frame-risk-note) {
    font-size: 18px;
  }

  .home-page .arc-model-copy h2,
  .home-page .arc-social-copy h2,
  .home-page .arc-feature-hero h2,
  .home-page .arc-agent-copy h2,
  .home-page .arc-workflow-copy h2,
  .home-page .comparison-inner h2,
  .home-page .final-cta-inner h2,
  .home-page .founder-support-inner h2 {
    font-size: 42px;
  }

  .home-page .arc-tool-grid article h3 {
    font-size: 22px;
  }

  .home-page .founder-support-inner p {
    font-size: 20px;
  }

  .home-page .frame-hero-actions .frame-button {
    min-height: 58px;
    font-size: 17px;
  }
}

@media (max-width: 374px) {
  .home-page .frame-hero-center h1 {
    max-width: 300px;
    font-size: 34px;
  }

  .home-page .frame-hero-center > p.frame-risk-note {
    gap: 8px 12px;
    font-size: 15px;
  }

  .home-page p.frame-risk-note {
    gap: 16px;
    max-width: calc(100% - 24px);
    font-size: 14px;
  }

  .home-page p.frame-risk-note .frame-risk-dollar-icon,
  .home-page p.frame-risk-note .frame-risk-card-icon {
    width: 16px;
    height: 16px;
  }

  .home-page .arc-workflow-copy p.frame-risk-note {
    font-size: 14px;
  }
}

.video-reel-modal {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  background: #101010;
}

.video-reel-modal::before {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.09), transparent 24%),
    radial-gradient(circle at 50% 82%, rgba(255, 255, 255, 0.055), transparent 34%),
    linear-gradient(90deg, #101010, rgba(16, 16, 16, 0.82), #101010),
    linear-gradient(180deg, #101010, #151515);
}

.video-reel-scroll {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.035), transparent 30%),
    radial-gradient(circle at 50% 72%, rgba(255, 255, 255, 0.03), transparent 36%);
}

.home-page .site-header .sign-in,
.home-page .site-header.is-scrolled .sign-in {
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Keep reused feature visuals contained inside the light mobile carousel. */
.home-page .arc-realism-grid article {
  overflow: hidden;
  contain: paint;
}

.home-page .arc-realism-grid .arc-feature-visual {
  max-width: calc(100% - 44px);
  overflow: hidden;
  contain: paint;
}

.home-page .arc-realism-grid .arc-feature-product-showcase video,
.home-page .arc-realism-grid .arc-feature-product-showcase img,
.home-page .arc-realism-grid .arc-feature-assets img {
  min-width: 0;
  max-width: 100%;
  max-height: 100%;
}

.home-page .arc-realism-grid .arc-feature-assets {
  overflow: hidden;
}

.home-page .arc-realism-grid .arc-feature-assets img,
.home-page .arc-realism-grid .arc-feature-assets img:nth-child(2) {
  height: auto;
}

.home-page .arc-realism-panel-dark {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 34%),
    #101010;
  color: #fffefa;
}

.home-page .arc-realism-panel-dark .arc-realism-hero h2,
.home-page .arc-realism-panel-dark .arc-realism-grid h3 {
  color: #fffefa;
}

.home-page .arc-realism-panel-dark .arc-realism-hero p,
.home-page .arc-realism-panel-dark .arc-realism-grid p {
  color: rgba(255, 250, 241, 0.62);
}

.home-page .arc-realism-panel-dark .arc-realism-hero .frame-button-dark {
  border-color: rgba(255, 255, 255, 0.88);
  background: #f8f6ef;
  color: #101010;
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.32);
}

.home-page .arc-realism-panel-dark .arc-realism-grid article {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #151515;
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.28);
}

.home-page .arc-realism-panel-dark .arc-realism-grid article::after {
  background: linear-gradient(180deg, transparent, rgba(16, 16, 16, 0.96));
}

.home-page .arc-realism-panel-dark .arc-feature-product-showcase video,
.home-page .arc-realism-panel-dark .arc-feature-product-showcase img,
.home-page .arc-realism-panel-dark .arc-feature-assets img {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
}

.home-page .arc-realism-panel-dark .arc-feature-product-carousel .arc-feature-product-media,
.home-page .arc-realism-panel-dark .arc-feature-assets-generated {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
}

.home-page .arc-realism-panel-dark .arc-feature-product-carousel .arc-feature-product-media img,
.home-page .arc-realism-panel-dark .arc-feature-product-carousel .arc-feature-product-media video,
.home-page .arc-realism-panel-dark .arc-feature-assets-generated img {
  border: 0;
  box-shadow: none;
}

.home-page .arc-realism-panel-dark .arc-feature-character-image {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
}

.home-page .arc-realism-panel-dark .arc-feature-product-option {
  color: rgba(255, 250, 241, 0.78);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.home-page .arc-realism-panel-dark .arc-feature-product-option.is-active {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
  color: #fffefa;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.home-page .arc-realism-panel-dark .arc-feature-characters {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 74, 61, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.home-page .arc-realism-panel-dark .arc-feature-characters span {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 50% 27%, rgba(255, 250, 241, 0.86) 0 18%, transparent 19%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.3), rgba(255, 74, 61, 0.18)),
    #202020;
}

.home-page .arc-realism-panel-dark .arc-feature-characters span:nth-child(2) {
  background:
    radial-gradient(circle at 52% 27%, rgba(255, 250, 241, 0.76) 0 17%, transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(79, 135, 237, 0.26)),
    #202020;
}

.home-page .arc-realism-panel-dark .arc-feature-characters i {
  background: rgba(255, 255, 255, 0.18);
}

.home-page .arc-workflow-panel-light {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 74, 61, 0.07), transparent 36%),
    #fbfaf7;
  color: var(--ink);
}

.home-page .arc-workflow-panel-light .arc-workflow-copy h2 {
  color: var(--ink);
}

.home-page .arc-workflow-panel-light .arc-workflow-copy p {
  color: rgba(9, 9, 9, 0.62);
}

@media (min-width: 861px) {
  .home-page .arc-feature-panel > p.frame-risk-note {
    display: none;
  }

  .home-page .arc-workflow-panel-light .arc-workflow-copy p.frame-risk-note {
    justify-content: flex-start;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .home-page .arc-feature-hero p.frame-risk-note {
    justify-self: start;
    justify-content: flex-start;
    max-width: min(470px, calc(100% - 360px));
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .home-page .arc-agent-copy .frame-button {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }

  .home-page .arc-agent-copy p.frame-risk-note {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    justify-self: start;
    justify-content: flex-start;
    margin: 72px 0 0;
    text-align: left;
  }
}

.home-page .arc-workflow-panel-light .arc-workflow-copy .frame-button-dark {
  border-color: rgba(9, 9, 9, 0.88);
  background: linear-gradient(180deg, #30302f, #090909);
  color: #fffefa;
  box-shadow: 0 20px 58px rgba(9, 9, 9, 0.2);
}

.home-page .arc-workflow-panel-light .arc-workflow-canvas {
  border-color: rgba(9, 9, 9, 0.08);
  background:
    radial-gradient(circle, rgba(9, 9, 9, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff, #efede7);
  background-size: 18px 18px, auto;
  box-shadow: inset 1px 0 rgba(9, 9, 9, 0.08), inset 0 -1px rgba(9, 9, 9, 0.08);
}

.home-page .arc-workflow-panel-light .arc-workflow-canvas::before {
  border-color: rgba(9, 9, 9, 0.08);
}

.home-page .arc-workflow-panel-light .arc-workflow-canvas::after {
  background: linear-gradient(90deg, transparent, rgba(9, 9, 9, 0.14), transparent);
}

.home-page .arc-workflow-panel-light .arc-workflow-video {
  border-color: rgba(9, 9, 9, 0.1);
  background: #e8e4dc;
  box-shadow: 0 24px 70px rgba(9, 9, 9, 0.16);
}

.home-page .arc-workflow-panel-light .arc-workflow-demo-video {
  border-color: rgba(9, 9, 9, 0.12);
  background: #e8e4dc;
  box-shadow: 0 28px 78px rgba(9, 9, 9, 0.16);
}

.home-page .arc-workflow-canvas.arc-workflow-video-canvas {
  display: grid;
  width: fit-content;
  max-width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(132px, 156px);
  gap: 18px;
  align-items: center;
  justify-items: center;
  justify-self: center;
  min-height: 0;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .arc-workflow-panel-light .arc-workflow-canvas.arc-workflow-video-canvas {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .arc-workflow-panel-light .arc-workflow-canvas.arc-workflow-video-canvas .arc-workflow-demo-video {
  border-color: rgba(255, 255, 255, 0.12);
  background: #111;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
}

.home-page .arc-song-video-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 316px);
  padding-bottom: 30px;
}

.home-page .arc-song-video-shell .arc-workflow-demo-video {
  width: 100%;
}

.home-page .arc-song-restart,
.home-page .arc-song-sound {
  position: absolute;
  top: 10px;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(8, 14, 22, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 12px 28px rgba(0, 0, 0, 0.26);
  color: #fffefa;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.home-page .arc-song-restart {
  left: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
}

.home-page .arc-song-restart.is-restart-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.home-page .arc-song-sound {
  right: 10px;
}

.home-page .arc-song-restart:disabled {
  cursor: default;
}

.home-page .arc-song-restart:hover:not(:disabled),
.home-page .arc-song-sound:hover {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(8, 14, 22, 0.68);
}

.home-page .arc-song-restart svg,
.home-page .arc-song-sound-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .arc-song-sound-on {
  display: none;
}

.home-page .arc-song-sound.is-sound-on .arc-song-sound-muted {
  display: none;
}

.home-page .arc-song-sound.is-sound-on .arc-song-sound-on {
  display: block;
}

.home-page .arc-song-variant-switcher {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  pointer-events: auto;
}

.home-page .arc-song-variant-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 22px;
}

.home-page .arc-song-variant-switcher button {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  box-shadow: none;
  touch-action: manipulation;
}

.home-page .arc-song-variant-switcher [data-song-ad-variant]::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(9, 9, 9, 0.32);
  box-shadow: 0 0 0 1px rgba(9, 9, 9, 0.08);
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.home-page .arc-song-variant-switcher [data-song-ad-variant].is-active {
  background: transparent;
  box-shadow: none;
}

.home-page .arc-song-variant-switcher [data-song-ad-variant].is-active::before {
  background: #101010;
  box-shadow:
    0 0 0 3px rgba(9, 9, 9, 0.12),
    0 0 16px rgba(9, 9, 9, 0.24);
  transform: scale(1.2);
}

.home-page .arc-song-variant-switcher button:focus-visible {
  outline: 2px solid #101010;
  outline-offset: 3px;
}

.home-page .arc-song-process {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-page .arc-song-process li {
  position: relative;
  display: grid;
  justify-items: center;
  margin: 0;
  padding: 0 0 28px;
}

.home-page .arc-song-process li:last-child {
  padding-bottom: 0;
}

.home-page .arc-song-process li:not(:last-child)::after {
  content: "\2193";
  position: absolute;
  bottom: 4px;
  left: 50%;
  color: rgba(9, 9, 9, 0.58);
  font-size: 20px;
  font-weight: 850;
  line-height: 1;
  transform: translateX(-50%);
}

.home-page .arc-song-process span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 62px;
  padding: 10px 12px;
  border: 1px solid rgba(9, 9, 9, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(74, 85, 101, 0.94), rgba(54, 62, 74, 0.94)),
    #3a4552;
  box-shadow: 0 14px 34px rgba(9, 9, 9, 0.18);
  color: #fffefa;
  font-size: 15px;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.05;
  text-align: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.home-page .arc-song-process span::before {
  content: "";
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  background: currentColor;
  opacity: 0.86;
  -webkit-mask: var(--chip-icon) center / contain no-repeat;
  mask: var(--chip-icon) center / contain no-repeat;
}

.home-page .arc-workflow-panel-light .arc-canvas-node {
  border-color: rgba(9, 9, 9, 0.08);
  background: rgba(255, 255, 255, 0.76);
  color: rgba(9, 9, 9, 0.72);
  box-shadow: 0 22px 58px rgba(9, 9, 9, 0.14);
}

.home-page .arc-workflow-panel-light .node-4 {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.62), rgba(255, 74, 61, 0.16)),
    rgba(255, 255, 255, 0.8);
}

@media (max-width: 860px) {
  .home-page .arc-workflow-canvas.arc-workflow-video-canvas {
    width: fit-content;
    grid-template-columns: minmax(0, 1fr) minmax(104px, 126px);
    gap: 14px;
    justify-self: center;
    min-height: 0;
    margin-inline: auto;
    padding: 0;
  }

  .home-page .arc-workflow-canvas.arc-workflow-video-canvas .arc-workflow-demo-video {
    width: min(100%, 214px);
    border-radius: 18px;
  }

  .home-page .arc-song-video-shell {
    width: min(100%, 214px);
  }

  .home-page .arc-song-process li {
    padding-bottom: 24px;
  }

  .home-page .arc-song-process span {
    gap: 6px;
    min-height: 56px;
    padding: 8px 10px;
    border-radius: 9px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .home-page .arc-workflow-canvas.arc-workflow-video-canvas {
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 10px;
    min-height: 0;
    padding: 0;
  }

  .home-page .arc-workflow-canvas.arc-workflow-video-canvas .arc-workflow-demo-video {
    width: min(100%, 174px);
    border-radius: 16px;
  }

  .home-page .arc-song-video-shell {
    width: min(100%, 174px);
  }

  .home-page .arc-song-restart,
  .home-page .arc-song-sound {
    width: 38px;
    height: 38px;
  }

  .home-page .arc-song-restart svg,
  .home-page .arc-song-sound-icon {
    width: 18px;
    height: 18px;
  }

  .home-page .arc-song-process li {
    padding-bottom: 20px;
  }

  .home-page .arc-song-process li:not(:last-child)::after {
    bottom: 3px;
    font-size: 16px;
  }

  .home-page .arc-song-process span {
    gap: 5px;
    min-height: 50px;
    padding: 7px 8px;
    font-size: 11px;
  }

  .home-page .arc-song-process span::before {
    width: 13px;
    height: 13px;
  }
}

/* Responsive usability and keyboard-accessibility refinements. */
.site-header .brand,
.site-header .sign-in {
  min-height: 44px;
}

.home-page .site-header .sign-in,
.home-page .site-header.is-scrolled .sign-in {
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}

.home-page .comparison-picker button,
.home-page .try-prompt-badge,
.home-page .founder-support-link,
.site-footer a {
  min-height: 44px;
}

.home-page .stack-restart,
.home-page .stack-sound-toggle,
.mobile-hero-restart,
.mobile-hero-sound {
  width: 44px;
  height: 44px;
}

.site-header .brand:focus-visible,
.site-header .sign-in:focus-visible,
.site-footer a:focus-visible,
.home-page .comparison-picker button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 8px;
}
