: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;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

body::before {
  content: "";
  position: absolute;
  inset: 72px 0 auto;
  height: 650px;
  pointer-events: none;
  background-image:
    linear-gradient(to right, transparent calc(50% - 335px), var(--line-soft) calc(50% - 335px), var(--line-soft) calc(50% - 334px), transparent calc(50% - 334px)),
    linear-gradient(to right, transparent calc(50% + 334px), var(--line-soft) calc(50% + 334px), var(--line-soft) calc(50% + 335px), transparent calc(50% + 335px)),
    repeating-linear-gradient(to bottom, transparent 0, transparent 95px, var(--line-soft) 96px);
}

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;
  border-bottom: 1px solid rgba(9, 9, 9, 0.05);
}

.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;
}

.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(--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: 16px;
  height: 16px;
  margin-left: 5px;
  color: var(--accent);
  vertical-align: -2px;
}

.prompt-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  width: min(540px, 100%);
  min-height: 58px;
  margin: 42px 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);
}

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

.domain-entry {
  position: relative;
  display: block;
  min-width: 0;
}

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

.prompt-panel input {
  width: 100%;
  min-width: 0;
  height: 46px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 18px;
  font-weight: 680;
}

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

.prompt-box button {
  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;
}

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

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

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

.waitlist-x-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(22, 154, 83, 0.34);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.x-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin: 0 3px 0 2px;
  border-radius: 5px;
  background: var(--ink);
  vertical-align: 1px;
}

.x-mark img {
  width: 9px;
  height: 9px;
  display: block;
}

.review-section {
  position: relative;
  z-index: 1;
  margin-top: 104px;
  padding: 68px 24px 90px;
  background: #050505;
  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;
}

.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(360px, 76vw);
  aspect-ratio: 9 / 16;
  --swipe-strength: 0;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

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

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

.video-stack.is-resetting .stack-card {
  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 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 420ms ease,
    filter 420ms ease;
}

.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);
}

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

.video-stack.is-decline .stack-card.is-exiting {
  opacity: 0;
  transform: translate(-180px, 8px) 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;
}

.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::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;
}

.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;
}

.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;
  background: var(--bg);
  color: var(--ink);
}

.gallery-inner {
  width: min(1088px, 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%;
  margin-top: 42px;
}

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

.gallery-pair {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.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-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));
}

.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-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: 9px;
  margin-top: 24px;
}

.gallery-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.18);
  cursor: pointer;
}

.gallery-dots button.is-active {
  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);
}

.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-inner p {
  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-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.posting-platforms span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
}

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

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

.comparison-inner h2 {
  max-width: 760px;
  margin: 0 auto 50px;
  font-family: var(--display-font);
  font-size: var(--gallery-headline-size);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
  text-align: center;
}

.comparison-table {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.comparison-head span,
.comparison-row p {
  margin: 0;
  min-width: 0;
}

.comparison-head span {
  padding: 0 26px 14px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.comparison-head span:last-child {
  color: var(--accent);
}

.comparison-head span + span,
.comparison-row p + p {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.comparison-row p {
  padding: 24px 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(20px, 2.25vw, 30px);
  font-weight: 560;
  line-height: 1.08;
}

.comparison-row p:last-child {
  color: #fffefa;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  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;
  transform: translateY(10px) scale(0.96);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0) 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) {
  body::before {
    inset-top: 64px;
    height: 600px;
    background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 95px, var(--line-soft) 96px);
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    width: min(100% - 28px, 1260px);
    height: 64px;
  }

  .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;
  }

  .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);
    transform: translateX(calc(100% + 18px));
    transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .mobile-menu.is-open {
    transform: translateX(0);
  }

  .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-links a:last-child {
    margin-top: 10px;
    color: var(--muted);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .hero {
    width: min(100% - 20px, 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(--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: 18px;
  }

  .prompt-box {
    width: min(620px, 100%);
    min-height: 56px;
    margin-top: 38px;
    padding: 6px;
  }

  .prompt-panel {
    min-height: 44px;
    padding-left: 14px;
  }

  .prompt-panel input {
    font-size: 16px;
  }

  .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: 76px;
    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;
  }

  .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(340px, 84vw);
  }

  .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;
  }

  .review-actions {
    grid-template-columns: repeat(2, 78px);
    gap: 10px 22px;
    margin-top: 46px;
  }

  .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 {
    right: 12px;
    bottom: 12px;
    font-size: 13px;
  }

  .gallery-card strong {
    max-width: 132px;
    font-size: clamp(20px, 6.7vw, 28px);
  }

  .gallery-card p {
    display: none;
  }

  .posting-section {
    padding: 72px 10px 78px;
  }

  .posting-inner h2 {
    max-width: min(100%, 620px);
    font-size: var(--gallery-headline-size-mobile);
  }

  .posting-platforms {
    gap: 8px;
    margin-top: 28px;
  }

  .posting-platforms span {
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
  }

  .comparison-section {
    padding: 72px 10px 82px;
  }

  .comparison-inner h2 {
    max-width: min(100%, 620px);
    margin-bottom: 36px;
    font-size: var(--gallery-headline-size-mobile);
  }

  .comparison-head,
  .comparison-row {
    gap: 0;
  }

  .comparison-head span {
    padding: 0 12px 11px;
    font-size: 10px;
  }

  .comparison-row p {
    padding: 18px 12px;
    font-size: clamp(15px, 4.2vw, 20px);
    line-height: 1.12;
  }
}
