/* Resite — tokens from the Cursor teardown (warm dark, oklab mixes, 4px, 400-weight).
   Accent is fill-only (UI Academy lesson). Type scale is monotonic. */

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/ibm-plex-sans-latin-400-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/ibm-plex-sans-latin-500-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/ibm-plex-mono-latin-400-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/ibm-plex-mono-latin-500-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: dark;

  --color-theme-bg: #14120b;
  --color-theme-text: #edecec;
  --color-theme-accent: #f54e00;
  --color-theme-card: #1b1913;
  --color-theme-card-02: #201e18;
  --color-theme-card-03: #26241e;

  --bg: var(--color-theme-bg);
  --text: var(--color-theme-text);
  --accent: var(--color-theme-accent);
  --on-accent: var(--color-theme-bg);
  --surface: var(--color-theme-card);
  --surface-02: var(--color-theme-card-02);

  --text-muted: color-mix(in oklab, var(--color-theme-text) 62%, transparent);
  --text-faint: color-mix(in oklab, var(--color-theme-text) 50%, transparent);
  --border-01: color-mix(in oklab, var(--color-theme-text) 8%, transparent);
  --border-02: color-mix(in oklab, var(--color-theme-text) 14%, transparent);
  --border-03: color-mix(in oklab, var(--color-theme-text) 28%, transparent);
  --accent-hover: color-mix(in oklab, var(--color-theme-accent) 88%, white);
  --focus: var(--color-theme-accent);

  --font-sans: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --text-xs: 0.72rem;
  --text-sm: 0.88rem;
  --text-base: 1rem;
  --text-md: 1.15rem;
  --text-lg: 1.45rem;
  --text-xl: 1.85rem;
  --text-2xl: 2.4rem;
  --text-3xl: clamp(2.15rem, 7.2vw, 3.65rem);

  --leading-tight: 1.12;
  --leading-snug: 1.28;
  --leading-body: 1.55;

  --space-1: 0.35rem;
  --space-2: 0.7rem;
  --space-3: 1.1rem;
  --space-4: 1.6rem;
  --space-5: 2.4rem;
  --space-6: 3.4rem;
  --space-7: 5.2rem;
  --space-8: 7.2rem;

  --wrap: 68rem;
  --prose: 38rem;
  --radius: 4px;
  --header: 3.5rem;
  --duration: 0.15s;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: var(--leading-body);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation;
}

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

a {
  color: inherit;
}

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

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

[id] {
  scroll-margin-top: calc(var(--header) + 1rem);
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  z-index: 100;
  padding: 0.55rem 0.85rem;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--radius);
}

.skip:focus {
  top: 0.75rem;
}

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}

.prose {
  max-width: var(--prose);
  text-wrap: pretty;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header);
  background: var(--bg);
  border-bottom: 1px solid var(--border-01);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  height: 100%;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  text-decoration: none;
  min-height: 44px;
}

.wordmark:hover {
  color: var(--text);
}

.wordmark svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.wordmark span {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

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

.header-email {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.02em;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--border-03);
}

.header-email:hover {
  border-bottom-color: var(--accent);
}

@media (min-width: 860px) {
  .nav {
    display: flex;
  }
}

.hero {
  padding: var(--space-6) 0 var(--space-7);
  border-bottom: 1px solid var(--border-01);
}

.hero-grid {
  display: grid;
  gap: var(--space-6);
  align-items: end;
}

.kicker {
  margin: 0 0 var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

h1,
h2,
h3 {
  font-weight: 400;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 {
  margin: 0;
  font-size: var(--text-3xl);
  line-height: var(--leading-tight);
  max-width: 22ch;
}

.lede {
  margin: var(--space-4) 0 0;
  max-width: 32rem;
  font-size: var(--text-md);
  line-height: var(--leading-snug);
  color: var(--text-muted);
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-5);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--duration) var(--ease);
}

.btn:hover {
  background: var(--accent-hover);
  color: var(--on-accent);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-03);
}

.btn-ghost:hover {
  background: var(--surface);
  color: var(--text);
}

.ticket {
  display: block;
  width: 100%;
  max-width: 26rem;
  justify-self: start;
  --shine-x: 22%;
  --shine-y: 18%;
}

.ticket-scene {
  perspective: 1400px;
  perspective-origin: 50% 45%;
}

.ticket-3d {
  position: relative;
  transform: rotateX(5deg) rotateY(-8deg);
  transform-style: preserve-3d;
  transition: transform 0.55s var(--ease);
}

.ticket.is-tilting .ticket-3d {
  transition-duration: 0.08s;
  transition-timing-function: linear;
}

.ticket-face {
  position: relative;
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-02);
  border-radius: 3px;
  box-shadow:
    0 22px 44px -22px rgba(0, 0, 0, 0.72),
    0 0 0 1px color-mix(in oklab, black 22%, transparent);
}

.ticket-face::before {
  content: "";
  position: absolute;
  left: 2.6rem;
  top: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  width: 0;
  pointer-events: none;
  border-left: 1px dashed var(--border-03);
}

.ticket-shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(
    420px circle at var(--shine-x) var(--shine-y),
    color-mix(in oklab, white 12%, transparent),
    transparent 40%
  );
  mix-blend-mode: screen;
}

.ticket-stub {
  background: var(--accent);
  color: var(--on-accent);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ticket-no {
  letter-spacing: 0.1em;
  font-size: 0.58rem;
  opacity: 0.72;
}

.ticket-body {
  position: relative;
  padding: 1.25rem 1.35rem 1.35rem 1.5rem;
}

.ticket-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.35rem;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.price {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(3rem, 8vw, 4rem);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text);
}

.ticket-lines {
  margin: 1.05rem 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

.ticket-lines li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-top: 1px dashed var(--border-02);
}

.ticket-lines span:last-child {
  color: var(--text);
}

.offer {
  margin: var(--space-3) 0 0;
  max-width: 22rem;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(22rem, 0.75fr);
    gap: var(--space-7);
    align-items: center;
  }

  .ticket {
    justify-self: end;
    max-width: 26rem;
  }

  .ticket-3d {
    transform: rotateX(6deg) rotateY(-12deg);
  }
}

.band {
  padding: var(--space-7) 0;
  border-bottom: 1px solid var(--border-01);
}

.band h2 {
  margin: 0 0 var(--space-4);
  font-size: var(--text-xl);
  line-height: var(--leading-snug);
}

.band h3 {
  margin: 0 0 var(--space-2);
  font-size: var(--text-lg);
  line-height: var(--leading-snug);
}

.problems {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border-01);
}

.problems article {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border-01);
}

.problems h2 {
  margin: 0 0 var(--space-2);
  font-size: var(--text-lg);
}

.problems p {
  margin: 0;
  max-width: var(--prose);
  color: var(--text-muted);
}

.split {
  display: grid;
  gap: var(--space-6);
}

.split ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.split li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.1rem;
  border-bottom: 1px solid var(--border-01);
  color: var(--text-muted);
}

.split li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--text);
  border-radius: 1px;
}

.split .out li::before {
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--border-03);
}

.split .note {
  margin: var(--space-3) 0 0;
  color: var(--text-muted);
  font-size: var(--text-sm);
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
  }

  .split > :first-child {
    padding-right: var(--space-5);
    border-right: 1px solid var(--border-01);
  }
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-5);
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  max-width: var(--prose);
}

.steps h2,
.steps h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.7rem 1rem;
}

.steps h2::before,
.steps h3::before {
  content: counter(step);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--on-accent);
  background: var(--accent);
  min-width: 1.8rem;
  height: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

.steps p {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
}

.faq {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border-01);
}

.faq details {
  border-bottom: 1px solid var(--border-01);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 44px;
  padding: 1rem 0;
  cursor: pointer;
  list-style: none;
  font-size: var(--text-md);
}

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

.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: 1.1rem;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  margin: 0 0 1.15rem;
  max-width: var(--prose);
  color: var(--text-muted);
}

.contact-block {
  display: grid;
  gap: var(--space-4);
}

.close-grid {
  display: grid;
  gap: var(--space-6);
}

.close-form {
  order: -1;
  padding: var(--space-5);
  background: var(--surface);
  border: 1px solid var(--border-02);
  border-radius: var(--radius);
}

.close-lede {
  margin-top: var(--space-3);
  max-width: 28rem;
  font-size: var(--text-sm);
}

.close-form .wizard {
  max-width: none;
  margin-top: var(--space-4);
}

.close-form .wizard fieldset {
  min-height: 0;
}

.close-form .wizard legend {
  font-size: var(--text-lg);
}

.close-form .email-row {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-01);
}

.close-form .email-link {
  font-size: var(--text-sm);
}

.close-faq .faq summary {
  font-size: var(--text-base);
}

.close-faq .faq p {
  max-width: none;
}

@media (min-width: 960px) {
  .close-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
    gap: var(--space-7);
    align-items: start;
  }

  .close-form {
    order: 0;
    position: sticky;
    top: calc(var(--header) + 1rem);
  }
}

.email-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.email-link {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 3.4vw, 1.55rem);
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border-03);
  overflow-wrap: anywhere;
}

.email-link:hover {
  border-bottom-color: var(--accent);
}

.copy {
  min-height: 44px;
  min-width: 44px;
  padding: 0 0.85rem;
  border: 1px solid var(--border-03);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.copy:hover {
  background: var(--surface);
}

.site-footer {
  padding: var(--space-6) 0 var(--space-5);
  border-top: 1px solid var(--border-01);
}

.footer-grid {
  display: grid;
  gap: var(--space-5);
}

.footer-brand p {
  margin: var(--space-2) 0;
  max-width: 18rem;
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.footer-brand > a:last-child {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border-03);
}

.footer-brand > a:last-child:hover {
  border-bottom-color: var(--accent);
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 0.15rem;
}

.footer-label {
  margin: 0 0 0.45rem;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: var(--text-sm);
}

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

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-2);
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-01);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.03em;
  color: var(--text-muted);
}

.footer-bar p {
  margin: 0;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: minmax(12rem, 1.2fr) repeat(2, minmax(8rem, 0.6fr));
    gap: var(--space-6);
  }
}

.legal {
  padding-bottom: var(--space-7);
}

.legal h2 {
  margin: var(--space-5) 0 var(--space-3);
  font-size: var(--text-lg);
}

.legal ul {
  margin: 0 0 var(--space-3);
  padding-left: 1.15rem;
  color: var(--text-muted);
}

.legal li + li {
  margin-top: 0.35rem;
}

.long-page .lede,
.long-page .prose p {
  color: var(--text-muted);
}

.long-page .prose p + p {
  margin-top: var(--space-3);
}

.crumb {
  margin: 0 0 var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.crumb a {
  color: var(--text-muted);
  text-decoration: none;
}

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

.error {
  min-height: calc(100vh - var(--header) - 8rem);
  display: grid;
  align-content: center;
  padding: var(--space-7) 0;
}

.error h1 {
  max-width: 12ch;
}

@media (prefers-reduced-motion: no-preference) {
  .hero h1 {
    animation: rise 0.45s var(--ease) both;
  }

  .lede,
  .crumb {
    animation: rise 0.45s var(--ease) 0.06s both;
  }

  .hero-actions {
    animation: rise 0.45s var(--ease) 0.12s both;
  }

  .ticket {
    animation: rise 0.5s var(--ease) 0.08s both;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.btn:active {
  transform: scale(0.98);
}

.wizard {
  max-width: 28rem;
  margin-top: var(--space-5);
}

.wizard-progress {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0 0 var(--space-4);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.wizard-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-bottom: var(--space-4);
}

.wizard-bar span {
  height: 3px;
  background: var(--border-02);
  border-radius: 1px;
}

.wizard-bar span.is-on {
  background: var(--accent);
}

.wizard fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-height: 16rem;
}

.wizard fieldset.is-leave {
  animation: fade-out 0.15s var(--ease) both;
}

.wizard fieldset.is-enter {
  animation: rise 0.2s var(--ease) both;
}

@keyframes fade-out {
  to {
    opacity: 0;
  }
}

.wizard legend {
  padding: 0;
  margin: 0 0 var(--space-3);
  font-size: var(--text-xl);
  letter-spacing: -0.03em;
}

.field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: var(--space-4);
}

.field label {
  font-size: var(--text-sm);
}

.field input,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border-03);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--text-base);
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.field-hint,
.form-status {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.form-status[data-tone="error"] {
  color: #f3b4c0;
}

.form-status[data-tone="ok"] {
  color: #8fd6b8;
}

.wizard-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-4);
}

.turnstile-slot {
  min-height: 65px;
  margin: var(--space-3) 0;
}

.done-card {
  max-width: 32rem;
}

@media (prefers-reduced-motion: reduce) {
  .hero h1,
  .lede,
  .crumb,
  .hero-actions,
  .ticket,
  .wizard fieldset.is-enter,
  .wizard fieldset.is-leave {
    animation: none;
  }

  .ticket-3d,
  .ticket.is-tilting .ticket-3d {
    transform: none;
    transition: none;
  }

  .btn:active {
    transform: none;
  }
}
