:root {
  --bg: #07070b;
  --bg-elev: #101014;
  --surface: #14141a;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f5f7;
  --muted: #a1a1aa;
  --faint: #71717a;
  --accent: #7c6cff;
  --accent-soft: rgba(124, 108, 255, 0.18);
  --accent-glow: rgba(124, 108, 255, 0.4);
  --accent-text: #0b0b10;
  --danger: #f0a8a8;
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 180ms;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
}

body {
  line-height: 1.5;
  color-scheme: dark;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.fx {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  width: min(52vw, 560px);
  height: min(52vw, 560px);
  border-radius: 50%;
  background: var(--accent);
  filter: blur(90px);
  opacity: 0.2;
  animation: orb-drift 16s var(--ease) infinite;
}

.orb-a {
  top: -12%;
  left: -10%;
}

.orb-b {
  right: -14%;
  bottom: -18%;
  opacity: 0.12;
  animation-delay: -11s;
  animation-duration: 20s;
}

.orb-c {
  width: min(28vw, 280px);
  height: min(28vw, 280px);
  top: 38%;
  left: 42%;
  opacity: 0.1;
  animation-delay: -6s;
  animation-duration: 14s;
}

.fx-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, #000 18%, transparent 78%);
}

.fx-noise {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes orb-drift {
  0%,
  100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(10%, -7%) scale(1.1); }
  66% { transform: translate(-8%, 9%) scale(0.94); }
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.wrap-wide {
  width: min(1280px, calc(100% - 28px));
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  background: transparent;
}

.brand-wordmark,
.brand-icon,
.footer-brand img {
  height: 32px;
  width: auto;
  object-fit: contain;
  background: transparent;
  border: 0;
  transition: filter var(--t) var(--ease);
}

.brand-icon {
  display: none;
  height: 32px;
}

.brand:hover .brand-wordmark,
.brand:hover .brand-icon {
  filter: drop-shadow(0 0 12px var(--accent-glow));
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  flex-wrap: wrap;
}

.nav > a {
  position: relative;
  padding: 4px 0;
  transition: color var(--t) var(--ease);
}

.nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
  box-shadow: 0 0 10px var(--accent-glow);
}

.nav > a:hover,
.nav > a[aria-current="page"] {
  color: var(--text);
}

.nav > a:hover::after,
.nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.auth-slot {
  display: flex;
  align-items: center;
  min-height: 32px;
}

.auth-hint {
  color: var(--faint);
  font-size: 0.8rem;
  max-width: 16rem;
}

.login-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--ease);
}

.login-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.login-card {
  position: relative;
  width: min(400px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px 24px;
  transform: translateY(14px);
  transition: transform 180ms var(--ease);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.login-overlay.is-open .login-card {
  transform: translateY(0);
}

.login-card h2 {
  margin: 0 0 8px;
  letter-spacing: -0.04em;
  font-size: 1.45rem;
}

.login-card .lede {
  margin: 0 0 22px;
  font-size: 0.95rem;
}

.login-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.login-close:hover {
  color: var(--text);
  background: var(--accent-soft);
}

.login-google-host {
  display: flex;
  justify-content: center;
  min-height: 44px;
}

.plan-overlay {
  z-index: 88;
}

.plan-card {
  width: min(440px, 100%);
}

.plan-card .plan-badge {
  position: static;
  display: inline-flex;
  margin-bottom: 8px;
}

.plan-card .price {
  margin: 4px 0 8px;
}

.paypal-slot {
  margin-top: 18px;
  min-height: 48px;
}

.plan-overlay.is-open .plan-features-stagger li {
  opacity: 0;
  transform: translateY(8px);
  animation: plan-feat-in 280ms var(--ease) forwards;
}

.plan-overlay.is-open .plan-features-stagger li:nth-child(1) { animation-delay: 40ms; }
.plan-overlay.is-open .plan-features-stagger li:nth-child(2) { animation-delay: 90ms; }
.plan-overlay.is-open .plan-features-stagger li:nth-child(3) { animation-delay: 140ms; }
.plan-overlay.is-open .plan-features-stagger li:nth-child(4) { animation-delay: 190ms; }

@keyframes plan-feat-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.shotlabs-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(12px);
  z-index: 120;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: 0 12px 40px var(--accent-soft);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.shotlabs-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.user-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  padding: 4px 8px 4px 4px;
  border-radius: 999px;
  cursor: pointer;
  color: inherit;
}

.user-chip img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface);
  transition: box-shadow var(--t) var(--ease);
}

.user-chip:hover img,
.user-chip:focus-visible img {
  box-shadow: 0 0 0 2px var(--accent-soft), 0 0 14px var(--accent-glow);
}

.user-chip span {
  color: var(--text);
  font-size: 0.85rem;
  max-width: 10rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.site-theme-dim,
html:has(body.site-theme-dim) {
  --bg: #0b1219;
  --bg-elev: #121c26;
  --surface: #15202b;
  --border: rgba(255, 255, 255, 0.09);
}

.profile-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 72px 20px 24px;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--ease);
}

.profile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.profile-card {
  width: min(420px, 100%);
  max-height: calc(100vh - 96px);
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  transform: translateY(-10px);
  transition: transform 180ms var(--ease);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.profile-overlay.is-open .profile-card {
  transform: translateY(0);
}

.profile-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.profile-card-head h2 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.profile-ident {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.profile-ident img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg);
}

@keyframes save-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.btn.is-saved {
  animation: save-pop 280ms var(--ease);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  background: var(--text);
  color: var(--accent-text);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease), color var(--t) var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 10px 28px var(--accent-glow);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 0 0 1px rgba(124, 108, 255, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  border-color: rgba(124, 108, 255, 0.45);
  box-shadow: 0 8px 24px var(--accent-soft);
}

.btn-small {
  padding: 7px 12px;
  font-size: 0.8rem;
}

.hero {
  padding: 84px 0 40px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.pricing-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.5rem, 7vw, 4.6rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.lede {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 38rem;
}

.bullets {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.bullets li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  flex-shrink: 0;
}

.price-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  padding: 12px 0 72px;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 108, 255, 0.45);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(124, 108, 255, 0.2), 0 12px 40px var(--accent-soft);
}

.price-card h2,
.price-card h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.price {
  font-size: 2rem;
  letter-spacing: -0.05em;
  margin: 4px 0 0;
}

.price-card .muted,
.price-card p {
  margin: 0;
  color: var(--muted);
}

.price-card .btn,
.price-card .btn-ghost {
  margin-top: 8px;
  align-self: stretch;
}

.plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  padding: 4px 9px;
  box-shadow: 0 0 18px var(--accent-glow);
}

.price-card.is-featured {
  border-color: rgba(124, 108, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(124, 108, 255, 0.2), 0 20px 50px rgba(0, 0, 0, 0.28);
}

.plan-copy {
  color: var(--text);
  font-size: 0.95rem;
}

.plan-features {
  margin: 8px 0 4px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.plan-features li {
  padding-left: 18px;
  position: relative;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.page {
  padding: 48px 0 80px;
}

.page h1 {
  margin: 0 0 12px;
  letter-spacing: -0.04em;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

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

.legal {
  color: var(--muted);
  max-width: 42rem;
}

.legal h1 {
  color: var(--text);
}

.pricing-hero {
  max-width: 40rem;
  padding-bottom: 12px;
}

.pricing-hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
}

.faq {
  margin: 8px 0 48px;
  display: grid;
  gap: 10px;
}

.faq h2 {
  margin: 0 0 8px;
  letter-spacing: -0.03em;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.faq details p {
  margin: 10px 0 0;
  color: var(--muted);
}

.studio-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 0 0;
}

.studio-switch button {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 600;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}

.studio-switch button:hover {
  border-color: rgba(124, 108, 255, 0.45);
  box-shadow: 0 8px 24px var(--accent-soft);
  transform: translateY(-1px);
}

.studio-switch button[aria-pressed="true"] {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.app-layout {
  display: grid;
  gap: 22px;
  padding: 24px 0 72px;
}

.app-layout[hidden],
#studio-social[hidden],
#studio-snippet[hidden],
#studio-review[hidden],
#studio-notification[hidden],
#studio-search[hidden] {
  display: none !important;
}

.sidebar,
.panel,
.stage-panel {
  background: rgba(16, 16, 20, 0.78);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(16px);
}

.sidebar {
  padding: 8px 16px 18px;
}

.stage-panel {
  padding: 0;
  overflow: hidden;
  min-height: 640px;
}

.group {
  border: 0;
  margin: 0;
  padding: 14px 0 8px;
  border-bottom: 1px solid var(--border);
}

.group:last-of-type {
  border-bottom: 0;
}

.group legend {
  padding: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}

.field {
  display: grid;
  gap: 6px;
  margin: 10px 0;
}

.field[hidden] {
  display: none !important;
}

.field label,
.field .label {
  font-size: 0.8rem;
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: #0c0c10;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  outline: none;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(124, 108, 255, 0.55);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field input[type="checkbox"] {
  width: auto;
}

.field input[type="color"] {
  width: 44px;
  height: 34px;
  padding: 2px;
  cursor: pointer;
}

.field-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.range-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.range-row input[type="range"] {
  flex: 1;
  padding: 0;
  accent-color: var(--accent);
}

.range-val {
  min-width: 3.2rem;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: right;
}

.check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 0.92rem;
  cursor: pointer;
}

.segmented {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.segmented button {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 10px;
  cursor: pointer;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.segmented button[aria-pressed="true"] {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.segmented button:hover {
  border-color: rgba(124, 108, 255, 0.4);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.usage-line,
.limit-banner {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--muted);
}

.limit-banner {
  display: none;
  color: var(--danger);
  background: rgba(80, 24, 24, 0.4);
  border: 1px solid rgba(240, 168, 168, 0.25);
  border-radius: 10px;
  padding: 12px 14px;
}

.limit-banner.is-visible {
  display: block;
}

.limit-banner a {
  text-decoration: underline;
}

.unlock {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.unlock input {
  flex: 1;
  min-width: 180px;
  background: #0c0c10;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
}

.unlock-msg {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.admin-link {
  color: var(--accent);
  text-decoration: underline;
}

.admin-form {
  margin: 8px 0 28px;
  padding: 8px 18px 18px;
}

.admin-duration {
  flex-wrap: wrap;
}

.admin-duration input[type="number"] {
  width: 6rem;
}

.admin-table-wrap {
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.admin-table th {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.admin-table .btn {
  margin-right: 6px;
}

.code-input {
  min-height: 180px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  line-height: 1.45;
}

.snippet-preview-stage {
  align-items: center;
}

.snippet-export {
  width: min(720px, 100%);
  max-height: 900px;
  overflow: hidden;
}

.snippet-canvas {
  position: relative;
  overflow: hidden;
  max-height: 900px;
}

.snip-orb {
  position: absolute;
  width: 70%;
  height: 70%;
  left: 15%;
  top: 8%;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.snippet-window {
  position: relative;
  background: #0d1117;
  color: #e6edf3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.snippet-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 40px;
}

.snippet-titlebar-minimal {
  justify-content: center;
}

.snippet-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.snippet-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.snippet-dots i:nth-child(1) { background: #ff5f56; }
.snippet-dots i:nth-child(2) { background: #ffbd2e; }
.snippet-dots i:nth-child(3) { background: #27c93f; }

.snippet-filename {
  font-size: 0.78rem;
  color: #8b949e;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.snippet-pre {
  margin: 0;
  padding: 14px 16px 18px;
  overflow: auto;
  max-height: 760px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  line-height: 1.55;
  background: transparent;
}

.snippet-pre.is-wrap .lc {
  white-space: pre-wrap;
  word-break: break-word;
}

.snippet-code.hljs {
  display: block;
  background: transparent;
  padding: 0;
  color: inherit;
}

.code-line {
  display: flex;
  gap: 0;
  min-height: 1.55em;
}

.ln {
  flex: 0 0 2.4em;
  text-align: right;
  padding-right: 1em;
  color: #484f58;
  user-select: none;
}

.lc {
  flex: 1;
  min-width: 0;
  white-space: pre;
}

.star-picker {
  display: flex;
  gap: 4px;
}

.star-picker button {
  border: 0;
  background: transparent;
  color: #3f3f46;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
}

.star-picker button.is-on {
  color: var(--accent);
}

.review-export {
  width: 100%;
  display: flex;
  justify-content: center;
}

.review-stage {
  width: 560px;
  max-width: 100%;
}

.review-stage.is-bento {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 12px;
  align-items: stretch;
}

.review-card {
  background: #0c0c10;
  color: #f4f4f5;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.review-card[data-theme="dim"] {
  background: #15202b;
  color: #e7e9ea;
}

.review-card[data-theme="light"] {
  background: #fff;
  color: #111113;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.review-product {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--review-accent, var(--accent));
  margin-bottom: 10px;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-star {
  width: 18px;
  height: 18px;
  color: #3f3f46;
  display: inline-flex;
}

.review-star.is-on {
  color: var(--review-accent, var(--accent));
}

.review-star svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.review-card[data-theme="light"] .review-star:not(.is-on) {
  color: #d4d4d8;
}

.review-text {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.45;
  letter-spacing: -0.03em;
  font-weight: 600;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.review-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.review-who {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #27272a;
  display: grid;
  place-items: center;
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
}

.review-card[data-theme="light"] .review-avatar {
  background: #e4e4e7;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-name {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.review-role {
  font-size: 0.82rem;
  color: #a1a1aa;
}

.review-card[data-theme="light"] .review-role {
  color: #52525b;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  flex-shrink: 0;
}

.review-meta-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.review-quote-tile .review-text {
  font-size: 1.35rem;
}

@media (max-width: 720px) {
  .review-stage.is-bento {
    grid-template-columns: 1fr;
  }
}

.notify-export {
  display: flex;
  justify-content: center;
}

.notify-screen {
  position: relative;
  overflow: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: #0b0d12;
}

.notify-screen.is-phone {
  width: 390px;
  height: 780px;
  max-width: 100%;
  border-radius: 36px;
}

.notify-screen.is-desktop {
  width: min(720px, 100%);
  height: 460px;
  border-radius: 16px;
}

.notify-wallpaper,
.notify-dim,
.notify-noise {
  position: absolute;
  inset: 0;
}

.notify-wallpaper {
  overflow: hidden;
}

.notify-wallpaper img {
  width: 120%;
  height: 120%;
  object-fit: cover;
  position: absolute;
  left: -10%;
  top: -10%;
}

.notify-wallpaper.is-fallback {
  background:
    radial-gradient(ellipse at 30% 18%, #3a4458 0%, transparent 52%),
    radial-gradient(ellipse at 80% 80%, #1c2433 0%, transparent 50%),
    linear-gradient(180deg, #1a1f2b 0%, #0b0d12 100%);
}

.notify-screen.is-light .notify-wallpaper.is-fallback {
  background:
    radial-gradient(ellipse at 30% 18%, #c9d4e8 0%, transparent 52%),
    linear-gradient(180deg, #8ea0b8 0%, #4a5568 100%);
}

.notify-noise {
  opacity: 0.07;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.notify-dim {
  background: #000;
  pointer-events: none;
}

.notify-banner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 72px;
  padding: 12px 14px 14px;
  background: rgba(44, 44, 48, 0.72);
  color: #f5f5f7;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  max-width: calc(100% - 28px);
}

.notify-screen.is-light .notify-banner {
  background: rgba(255, 255, 255, 0.78);
  color: #1d1d1f;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.notify-banner.is-ios-banner {
  top: 18px;
}

.notify-macos-stage {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 28px 8px 36px;
  min-width: min(440px, 100%);
  background: transparent;
}

.notify-banner.is-macos {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  transform: none;
  display: grid;
  grid-template-columns: 38px 1fr 16px;
  gap: 2px 10px;
  align-items: start;
  width: 380px;
  max-width: 100%;
  padding: 12px 12px 13px;
  background: rgba(40, 40, 44, 0.86);
  color: #f5f5f7;
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.32),
    0 2px 8px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(36px) saturate(160%);
  -webkit-backdrop-filter: blur(36px) saturate(160%);
}

.notify-macos-stage.is-light .notify-banner.is-macos {
  background: rgba(246, 246, 247, 0.9);
  color: #1d1d1f;
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.16),
    0 2px 8px rgba(0, 0, 0, 0.08);
}

.notify-banner.is-macos .notify-icon.is-macos {
  width: 36px;
  height: 36px;
  border-radius: 22%;
  grid-row: 1 / span 3;
  margin-top: 1px;
}

.notify-macos-copy {
  min-width: 0;
}

.notify-banner.is-macos .notify-app {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.55;
}

.notify-banner.is-macos .notify-title {
  font-size: 0.88rem;
  font-weight: 600;
}

.notify-banner.is-macos .notify-message {
  font-size: 0.82rem;
  opacity: 0.82;
}

.notify-close {
  font-size: 0.95rem;
  line-height: 1;
  opacity: 0.38;
  justify-self: end;
  margin-top: 1px;
  user-select: none;
}

.export-size {
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.notify-banner-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.notify-icon {
  width: 22px;
  height: 22px;
  border-radius: 31%;
  overflow: hidden;
  flex-shrink: 0;
  background: #4b5568;
  display: grid;
  place-items: center;
  color: #fff;
}

.notify-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notify-icon.is-fallback svg {
  width: 12px;
  height: 12px;
  display: block;
}

.notify-app {
  flex: 1;
  min-width: 0;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  opacity: 0.72;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notify-time {
  font-size: 0.68rem;
  opacity: 0.55;
  flex-shrink: 0;
}

.notify-title {
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.notify-message {
  margin-top: 2px;
  font-size: 0.86rem;
  line-height: 1.35;
  opacity: 0.9;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.notify-home {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 128px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.notify-screen.is-light .notify-home {
  background: rgba(0, 0, 0, 0.35);
}

.search-export {
  display: flex;
  justify-content: center;
  width: 100%;
}

.g-page {
  width: 100%;
  padding: 56px 32px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: #202124;
}

.g-page.is-dark {
  background: #202124;
  color: #e8eaed;
}

.g-wordmark {
  font-size: 68px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 28px;
  font-family: Arial, Helvetica, sans-serif;
}

.g-stack {
  width: var(--g-width, 582px);
  max-width: 100%;
  border-radius: var(--g-radius, 24px);
  box-shadow: var(--g-shadow, 0 1px 6px rgba(32, 33, 36, 0.28));
  background: #fff;
  border: 1px solid #dfe1e5;
  overflow: hidden;
}

.g-page.is-dark .g-stack {
  background: #303134;
  border-color: #5f6368;
}

.g-stack.has-drop {
  border-radius: var(--g-radius, 24px);
}

.g-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 16px;
}

.g-query {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.g-bar-icon {
  width: 22px;
  height: 22px;
  color: #9aa0a6;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.g-bar-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.g-drop {
  border-top: 1px solid #e8eaed;
  padding: 6px 0 8px;
}

.g-page.is-dark .g-drop {
  border-top-color: #5f6368;
}

.g-suggest-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  font-size: 16px;
}

.g-suggest-row.is-active {
  background: #f1f3f4;
}

.g-page.is-dark .g-suggest-row.is-active {
  background: #3c4043;
}

.g-row-mag {
  width: 18px;
  height: 18px;
  color: #9aa0a6;
  flex-shrink: 0;
}

.g-row-mag svg {
  width: 16px;
  height: 16px;
  display: block;
}

.g-row-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.g-lucky {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.g-lucky-btn {
  background: #f8f9fa;
  border: 1px solid #f8f9fa;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 14px;
  color: #3c4043;
}

.g-page.is-dark .g-lucky-btn {
  background: #303134;
  border-color: #303134;
  color: #e8eaed;
}

.stage-bar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.preview-stage {
  min-height: 620px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 24px 64px;
  overflow: auto;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(124, 108, 255, 0.08), transparent 55%);
}

.card,
.snippet-canvas,
.review-card,
.notify-screen,
.notify-banner.is-macos,
.g-page {
  position: relative;
  overflow: hidden;
}

.preview-watermark {
  position: absolute;
  inset: 0;
  z-index: 8;
  overflow: hidden;
  pointer-events: none;
}

.preview-watermark-repeat {
  position: absolute;
  left: -10%;
  top: -14%;
  width: 120%;
  height: 128%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  transform: rotate(-22deg);
  opacity: 0.46;
}

.preview-watermark-mark {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #f4f4f5;
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.78);
  paint-order: stroke fill;
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000,
    0 1px 4px rgba(0, 0, 0, 0.45);
}

.preview-watermark-mark img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  filter: invert(1) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.75));
}

.preview-float {
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.55));
}

.preview-stack {
  display: grid;
  gap: 14px;
  transition: opacity 160ms var(--ease), transform 160ms var(--ease);
}

.preview-stack.is-fading {
  opacity: 0;
  transform: translateY(8px);
}

.preview-stack.is-thread {
  gap: 12px;
}

.preview-stack.is-thread .card:nth-child(2) {
  margin-left: 10px;
}

.preview-stack.is-thread .card:nth-child(3) {
  margin-left: 18px;
}

.preview-stack.is-thread .card:nth-child(4) {
  margin-left: 26px;
}

.preview-stack.is-thread .card:nth-child(5) {
  margin-left: 34px;
}

.card {
  position: relative;
  width: 560px;
  max-width: 100%;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.preview-stack .card {
  width: 100%;
}

.card[data-theme="dark"] {
  background: #000;
  color: #e7e9ea;
}

.card[data-theme="dim"] {
  background: #15202b;
  color: #e7e9ea;
}

.card[data-theme="light"] {
  background: #fff;
  color: #0f1419;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.card-fx {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}

.card-fx-gradient {
  background: linear-gradient(165deg, color-mix(in srgb, var(--card-accent, #7c6cff) 22%, transparent), transparent 58%);
}

.card-fx-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.7;
}

.card[data-theme="light"] .card-fx-grid {
  background-image:
    linear-gradient(rgba(15, 20, 25, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 20, 25, 0.06) 1px, transparent 1px);
}

.card-fx-grain {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23g)' opacity='.55'/%3E%3C/svg%3E");
  opacity: 0.18;
  mix-blend-mode: overlay;
}

.card-mark {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  object-fit: contain;
  z-index: 2;
  mix-blend-mode: screen;
}

.card[data-theme="light"] .card-mark {
  filter: invert(1);
  mix-blend-mode: multiply;
}

.card-top,
.quote-by,
.meta,
.name-row,
.body,
.quote-text,
.quote-kicker,
.metrics,
.thread-num,
.time-row {
  position: relative;
  z-index: 1;
}

.card-top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2f3336;
  color: #e7e9ea;
  display: grid;
  place-items: center;
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
}

.card[data-theme="light"] .avatar {
  background: #cfd9de;
  color: #0f1419;
}

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

.avatar-sm {
  width: 36px;
  height: 36px;
}

.meta {
  min-width: 0;
}

.name-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  min-height: 18px;
  line-height: 1;
  white-space: nowrap;
}

.display-name {
  display: block;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  height: auto;
  margin: 0;
  padding: 0;
  font-size: 15px;
  min-width: 0;
}

.verified {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--card-accent, var(--accent));
  overflow: hidden;
  position: static;
  transform: none;
  top: auto;
}

.verified svg {
  display: block;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.handle,
.timestamp,
.thread-num {
  color: #71767b;
  font-size: 0.95rem;
}

.card[data-theme="light"] .handle,
.card[data-theme="light"] .timestamp,
.card[data-theme="light"] .thread-num {
  color: #536471;
}

.time-row {
  display: flex;
  gap: 6px;
  align-items: center;
  min-width: 0;
}

.body {
  margin: 14px 0 0;
  font-size: 1.2rem;
  line-height: 1.45;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.metrics {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  color: #71767b;
  line-height: 1;
}

.card[data-theme="light"] .metrics {
  color: #536471;
}

.metric {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.metric-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  line-height: 0;
  overflow: hidden;
  position: static;
  transform: none;
  top: auto;
}

.metric-icon svg {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.metric-count {
  display: block;
  line-height: 1;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.exporting,
.exporting .name-row,
.exporting .display-name,
.exporting .handle,
.exporting .timestamp,
.exporting .time-row,
.exporting .metric,
.exporting .metric-count {
  line-height: 1;
}

.exporting svg {
  display: block;
}

.exporting .name-row {
  display: block;
  font-size: 15px;
  line-height: 18px;
  gap: 0;
}

.exporting .display-name {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-size: 15px;
}

.exporting .verified {
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  line-height: 0;
  font-size: 0;
}

.exporting .verified svg {
  display: block;
  margin: 4px;
}

.exporting .metrics {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  line-height: 1;
}

.exporting .metric {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  margin: 0 18px 0 0;
  line-height: 1;
}

.exporting .metric-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin: 0 6px 0 0;
  line-height: 0;
}

.exporting .metric-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

.exporting .metric-count {
  display: block;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.thread-num {
  margin: 14px 0 0;
  font-size: 0.85rem;
}

.card-quote {
  padding: 28px 24px 22px;
}

.card-quote.is-center {
  text-align: center;
}

.card-quote.is-center .quote-by {
  justify-content: center;
}

.quote-kicker {
  margin: 0 0 10px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--card-accent, var(--accent));
}

.quote-deco {
  position: relative;
  z-index: 1;
  font-size: 4rem;
  line-height: 0.6;
  color: var(--card-accent, var(--accent));
  opacity: 0.85;
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
}

.quote-text {
  margin: 0 0 24px;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.3;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.quote-by {
  display: flex;
  gap: 10px;
  align-items: center;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 22px 0 36px;
  color: var(--faint);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.85rem;
}

.footer-brand {
  background: transparent;
  line-height: 0;
}

.footer-brand img {
  height: 28px;
  width: auto;
  object-fit: contain;
  background: transparent;
  opacity: 0.95;
}

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

@media (max-width: 720px) {
  .brand-wordmark {
    display: none;
  }

  .brand-icon {
    display: block;
  }
}

@media (min-width: 840px) {
  .price-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .app-layout {
    grid-template-columns: minmax(300px, 360px) 1fr;
    align-items: start;
  }

  .sidebar {
    position: sticky;
    top: 14px;
    max-height: calc(100vh - 28px);
    overflow: auto;
  }
}

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

  .btn,
  .price-card,
  .nav > a,
  .nav > a::after,
  .brand-wordmark,
  .brand-icon,
  .segmented button,
  .studio-switch button,
  .profile-overlay,
  .profile-card,
  .login-overlay,
  .login-card,
  .shotlabs-toast,
  .preview-stack,
  .user-chip img {
    transition: none;
  }

  .plan-overlay.is-open .plan-features-stagger li {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .btn:hover,
  .price-card:hover,
  .studio-switch button:hover {
    transform: none;
  }

  .btn.is-saved {
    animation: none;
  }

  .preview-stack.is-fading {
    opacity: 1;
    transform: none;
  }
}
