:root {
  --bg-deep: #050508;
  --neon: #00ff88;
  --neon-dim: #00cc6a;
  --yellow-hot: #fff200;
  --text: #eaf7ee;
  --text-muted: #a3b5aa;
  --danger: #ff5c6a;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Outfit, system-ui, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.ty-exit-open {
  overflow: hidden;
}

.ty-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 255, 136, 0.1), transparent),
    radial-gradient(ellipse 60% 40% at 100% 80%, rgba(232, 255, 0, 0.05), transparent),
    linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
}

.ty-page {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
  padding: 1.25rem 1rem 2.5rem;
}

.ty-page--wide {
  max-width: 640px;
}

.glass-panel {
  background: #0c0e12;
  border: 1px solid rgba(0, 255, 136, 0.14);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), inset 0 1px rgba(255, 255, 255, 0.04);
  padding: 1.25rem 1.1rem 1.35rem;
  margin-bottom: 1rem;
}

.gradient-border {
  position: relative;
  background: linear-gradient(
    165deg,
    rgba(18, 21, 28, 0.95) 0%,
    rgba(12, 14, 18, 0.9) 100%
  );
  border-radius: 1.25rem;
}

.gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.55),
    rgba(232, 255, 0, 0.25),
    rgba(0, 255, 136, 0.15)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.ty-success__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.25), rgba(0, 255, 136, 0.08));
  border: 2px solid rgba(0, 255, 136, 0.5);
  color: var(--neon);
  font-size: 1.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 28px rgba(0, 255, 136, 0.25);
}

.success-check {
  animation: success-pop 0.65s cubic-bezier(0.22, 1, 0.36, 1) both,
    pulse-ring 2.2s ease-out 0.5s infinite;
}

@keyframes success-pop {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  60% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.45);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(0, 255, 136, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
  }
}

.ty-kicker {
  margin: 0 0 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--neon);
}

.ty-confirm-badge {
  margin: 0 0 0.65rem;
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--neon);
}

.ty-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.25rem, 5vw, 1.65rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.ty-lead {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.ty-lead strong {
  color: var(--text);
}

/* Price hero / box */
.ty-price-box {
  text-align: center;
  padding: 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 136, 0.28);
  background: rgba(0, 255, 136, 0.07);
}

.ty-price-box--hero {
  padding: 1rem 0.9rem 1.1rem;
}

.ty-price-includes {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 0.5rem;
  text-align: left;
}

.ty-price-includes li {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.ty-price-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  padding-top: 0.65rem;
  border-top: 1px dashed rgba(0, 255, 136, 0.25);
}

.ty-price-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--neon);
  letter-spacing: 0.02em;
}

.ty-price-was {
  font-family: var(--font-mono);
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 600;
  font-size: 1.05rem;
}

.ty-price-arrow {
  color: var(--neon);
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 800;
}

.ty-price-now {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: clamp(2.4rem, 10vw, 3.25rem);
  color: var(--yellow-hot);
  text-shadow: 0 0 18px rgba(232, 255, 0, 0.28);
  line-height: 1;
}

.ty-price-save {
  margin: 0.2rem 0 0;
  color: var(--neon);
  font-size: 0.95rem;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.25);
}

.ty-badge-exclusive {
  display: inline-block;
  margin-top: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #041208;
  background: linear-gradient(135deg, var(--neon) 0%, var(--neon-dim) 100%);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(0, 255, 136, 0.35);
}

/* Trust bar */
.ty-trust-bar {
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.55rem;
}

.ty-trust-bar span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 12, 0.8);
}

.ty-trust-bar span:first-child {
  color: var(--yellow-hot);
  border-color: rgba(255, 242, 0, 0.25);
}

/* CTA */
.ty-cta {
  width: 100%;
  min-height: 58px;
  padding: 1rem 1.1rem;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  font-family: inherit;
  background: linear-gradient(135deg, #19e88c 0%, var(--neon) 45%, var(--neon-dim) 100%);
  color: #041208;
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.35), 0 0 16px rgba(0, 255, 136, 0.12);
  transition: transform 0.14s ease, filter 0.2s ease;
}

.ty-cta:hover:not(:disabled) {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 255, 136, 0.4), 0 0 18px rgba(0, 255, 136, 0.16);
}

.ty-cta:focus-visible {
  outline: 2px solid var(--yellow-hot);
  outline-offset: 3px;
}

.ty-cta--pack {
  margin-top: 0.35rem;
  min-height: 62px;
}

.ty-cta--pack .ty-cta__main {
  font-size: clamp(0.95rem, 4vw, 1.12rem);
}

.ty-cta:disabled {
  opacity: 0.65;
  cursor: wait;
}

.ty-cta__main {
  display: block;
  font-size: clamp(0.92rem, 3.6vw, 1.05rem);
  font-weight: 800;
}

.btn-glow {
  animation: btnGlow 3.2s ease-in-out infinite;
}

@keyframes btnGlow {
  0%,
  100% {
    box-shadow: 0 4px 16px rgba(0, 255, 136, 0.28), 0 0 8px rgba(255, 242, 0, 0.05);
  }
  50% {
    box-shadow: 0 5px 22px rgba(0, 255, 136, 0.45), 0 0 14px rgba(255, 242, 0, 0.08);
  }
}

.ty-cta-trust {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.ty-cta-trust li {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.ty-error {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: var(--danger);
  text-align: center;
}

/* Benefit cards */
.ty-benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

@media (min-width: 540px) {
  .ty-benefit-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.ty-benefit-card {
  padding: 0.85rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 136, 0.14);
  background: linear-gradient(165deg, rgba(18, 21, 28, 0.9), rgba(8, 10, 14, 0.85));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.ty-benefit-ico {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  line-height: 1;
}

.ty-benefit-card h3 {
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
}

.ty-benefit-card p {
  margin: 0;
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Photo / social proof cards */
.ty-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.ty-photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0c10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.ty-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ty-photo-card figcaption {
  padding: 0.4rem 0.35rem;
  text-align: center;
  font-size: 0.6rem;
  color: var(--text-muted);
  background: rgba(18, 21, 28, 0.95);
}

.ty-review-grid {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 540px) {
  .ty-review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ty-review-card {
  margin: 0;
  padding: 0.9rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 136, 0.16);
  background: rgba(5, 8, 10, 0.65);
}

.ty-review-stars {
  margin: 0 0 0.35rem;
  color: var(--yellow-hot);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.ty-review-quote {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text);
  font-style: italic;
}

.ty-review-card footer {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.ty-wa-review-grid {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 540px) {
  .ty-wa-review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ty-wa-review-card {
  padding: 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(37, 211, 102, 0.28);
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.08), rgba(5, 8, 10, 0.7));
}

.ty-wa-review-label {
  margin: 0 0 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #afffc1;
}

.ty-wa-review-card > p:nth-child(2) {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #e8fff0;
}

.ty-wa-review-note {
  margin: 0.45rem 0 0;
  font-size: 0.62rem;
  color: var(--text-muted);
  opacity: 0.8;
}

/* FAQ */
.ty-faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ty-faq-item {
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 136, 0.12);
  background: rgba(5, 8, 10, 0.55);
  overflow: hidden;
}

.ty-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0.9rem;
  border: none;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.ty-faq-icon {
  color: var(--neon);
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}

.ty-faq-a {
  display: none;
  padding: 0 0.9rem 0.85rem;
}

.ty-faq-item.is-open .ty-faq-a {
  display: block;
}

.ty-faq-a p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Calendar */
.ty-cal-day {
  aspect-ratio: 1;
  border-radius: 8px;
  border: none;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  background: transparent;
  color: rgba(163, 181, 170, 0.35);
}

.ty-cal-day.is-open {
  background: #12151c;
  color: var(--text);
}

.ty-cal-day.is-open:hover {
  background: rgba(0, 255, 136, 0.12);
}

.ty-cal-day.is-selected {
  background: var(--neon);
  color: #041208;
}

.ty-cal-day:disabled {
  cursor: default;
}

.ty-cal-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #12151c;
  color: var(--text);
  padding: 0.5rem 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.ty-cal-time.is-active {
  border-color: var(--neon);
  background: rgba(0, 255, 136, 0.15);
  color: var(--neon);
}

.ty-cal-time.is-reserved {
  border-color: rgba(255, 92, 106, 0.3);
  background: rgba(255, 92, 106, 0.1);
  color: rgba(255, 92, 106, 0.8);
  cursor: not-allowed;
}

.ty-cal-time.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.ty-cal-time__badge {
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}

.col-span-3 {
  grid-column: span 3;
}

/* Sticky CTA */
.ty-sticky {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.65rem 0.85rem;
  padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(0, 255, 136, 0.2);
  background: #050508;
}

.ty-sticky__btn {
  width: 100%;
  min-height: 50px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  color: #041208;
  background: linear-gradient(135deg, #19e88c 0%, var(--neon) 45%, var(--neon-dim) 100%);
  box-shadow: 0 4px 18px rgba(0, 255, 136, 0.35);
}

.ty-sticky__btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

@media (min-width: 768px) {
  .ty-page {
    padding-bottom: 2.5rem;
  }

  .ty-sticky {
    display: none !important;
  }
}

/* Exit popup */
.ty-exit {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.ty-exit[hidden] {
  display: none !important;
}

.ty-exit__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ty-exit__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  padding: 1.5rem 1.25rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  background: linear-gradient(165deg, #12151c 0%, #0a0c10 100%);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 40px rgba(0, 255, 136, 0.08);
  text-align: center;
}

.ty-exit__eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--yellow-hot);
}

.ty-exit__title {
  margin: 0 0 0.65rem;
  font-size: 1.45rem;
  font-weight: 800;
}

.ty-exit__text {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.ty-exit__text strong {
  color: var(--text);
}

.ty-exit-price {
  margin: 0 0 1rem;
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 136, 0.22);
  background: rgba(0, 255, 136, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.ty-exit-price__label {
  margin: 0 0 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--neon);
}

.ty-exit-price__now {
  font-size: 2.4rem;
}

.ty-exit__skip {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.55rem;
  border: none;
  background: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

/* Career session modal */
body.ty-career-open {
  overflow: hidden;
}

.ty-career {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.ty-career[hidden] {
  display: none !important;
}

.ty-career__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ty-career__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  max-height: min(92vh, 900px);
  overflow: auto;
  padding: 1.35rem 1.15rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 255, 136, 0.32);
  background: linear-gradient(165deg, #12151c 0%, #0a0c10 100%);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 40px rgba(0, 255, 136, 0.1);
  text-align: center;
}

.ty-career__x {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.ty-career__x:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.ty-career__video {
  margin-top: 0.85rem;
}

.ty-career__benefits {
  list-style: none;
  margin: 0.85rem 0 1rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 0.5rem;
  text-align: left;
}

.ty-career__benefits li {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}

.ty-neon {
  color: var(--neon);
}

/* Limited-time offer / promo / timer */
.ty-lto-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  margin: 0 auto 0.85rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 92, 106, 0.45);
  background: linear-gradient(90deg, rgba(255, 92, 106, 0.18), rgba(232, 255, 0, 0.1));
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffd0d5;
}

.ty-lto-banner--hot {
  border-color: rgba(232, 255, 0, 0.45);
  background: linear-gradient(90deg, rgba(232, 255, 0, 0.14), rgba(0, 255, 136, 0.12));
  color: var(--yellow-hot);
}

.ty-lto-banner--compact {
  margin-bottom: 0.75rem;
}

.ty-lto-banner--popup {
  display: flex;
  width: 100%;
  margin: 0 0 0.75rem;
  border-radius: 12px;
}

.ty-lto-banner.is-expired {
  opacity: 0.45;
  filter: grayscale(0.4);
}

.ty-lto-banner__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 0 0 rgba(255, 92, 106, 0.55);
  animation: ty-pulse 1.4s ease-out infinite;
}

.ty-lto-banner--hot .ty-lto-banner__pulse {
  background: var(--yellow-hot);
  box-shadow: 0 0 0 0 rgba(232, 255, 0, 0.45);
}

@keyframes ty-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 92, 106, 0.5);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(255, 92, 106, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 92, 106, 0);
  }
}

.ty-timer {
  font-variant-numeric: tabular-nums;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.15rem 0.45rem;
  letter-spacing: 0.06em;
}

.ty-timer.is-urgent {
  color: #050508;
  background: var(--yellow-hot);
  border-color: var(--yellow-hot);
  animation: ty-timer-blink 0.9s ease-in-out infinite;
}

@keyframes ty-timer-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.72;
  }
}

.ty-promo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  margin: 0.85rem auto 0;
  max-width: 420px;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  border: 1px dashed rgba(0, 255, 136, 0.45);
  background: rgba(0, 255, 136, 0.08);
}

.ty-promo--applied {
  border-style: solid;
  border-color: rgba(0, 255, 136, 0.35);
}

.ty-promo.is-expired {
  opacity: 0.4;
  filter: grayscale(0.5);
  text-decoration: line-through;
}

.ty-promo__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--neon);
  color: #050508;
  font-size: 0.75rem;
  font-weight: 800;
}

.ty-promo__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  text-align: left;
}

.ty-promo__label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--neon);
}

.ty-promo__code {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 255, 136, 0.35);
  border-radius: 6px;
  padding: 0.15rem 0.45rem;
}

.ty-promo__save {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--yellow-hot);
}

.ty-rec-video {
  margin: 1rem auto 0;
  max-width: 560px;
  text-align: left;
}

.ty-rec-video__label {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--yellow-hot);
  text-align: center;
}

.ty-rec-video__frame {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 214, 10, 0.28);
  background: #05070b;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.ty-rec-video__frame wistia-player {
  display: block;
  width: 100%;
}

.ty-mentor-proof {
  margin: 1.1rem auto 0;
  max-width: 640px;
}

.ty-mentor-proof__tag {
  margin: 0 0 0.65rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--yellow-hot);
}

.ty-mentor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.ty-mentor-card {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0c10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.ty-mentor-card--hero {
  grid-column: 1 / -1;
}

.ty-mentor-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.ty-mentor-card--hero img {
  aspect-ratio: 16 / 9;
}

.ty-mentor-card figcaption {
  padding: 0.4rem 0.45rem;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(18, 21, 28, 0.95);
}

.ty-pain-list {
  margin: 0.85rem auto 0;
  max-width: 440px;
  text-align: left;
  display: grid;
  gap: 0.35rem;
}

.ty-pain-list p {
  margin: 0;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--text);
}

.ty-pain-list--compact {
  margin-top: 0.65rem;
  max-width: none;
}

.ty-pain-list--compact p {
  font-size: 0.76rem;
  padding: 0.35rem 0.55rem;
}

.ty-upsell-risk {
  margin: 0.65rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: #ffb4bb;
  line-height: 1.4;
}

.ty-offer-expired {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 92, 106, 0.4);
  background: rgba(255, 92, 106, 0.1);
}

.ty-offer-expired__title {
  margin: 0 0 0.25rem;
  font-weight: 800;
  color: #ff8a95;
}

.ty-offer-expired__text {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.ty-career__panel--upsell {
  max-width: 460px;
}

/* ₹9 → ₹79 Practice Pack layout */
.ty-hero--confirm {
  padding-top: 1.45rem;
  padding-bottom: 1.45rem;
}

.ty-confirm-badge--hero {
  display: block;
  margin: 0.15rem 0 0.7rem;
  font-size: clamp(1.35rem, 5.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text);
}

.ty-confirm-sub {
  max-width: 28rem;
  font-size: 0.98rem;
  color: var(--text);
  font-weight: 500;
}

.ty-reassure {
  max-width: 32rem;
  margin: 0.15rem auto 0.85rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.ty-learn-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  margin: 0 auto;
  max-width: 28rem;
}

@media (min-width: 420px) {
  .ty-learn-split {
    grid-template-columns: 1fr 1fr;
  }
}

.ty-learn-split p {
  margin: 0;
  padding: 0.55rem 0.6rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 136, 0.18);
  background: rgba(0, 255, 136, 0.06);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.ty-learn-split strong {
  display: block;
  color: var(--neon);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.12rem;
}

.ty-pack {
  text-align: center;
}

.ty-pack__kicker {
  color: var(--yellow-hot);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ty-pack__title {
  font-size: clamp(1.2rem, 4.8vw, 1.55rem);
}

.ty-pack__lead {
  max-width: 34rem;
}

.ty-need-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin: 0.95rem auto 0;
  max-width: 36rem;
  text-align: left;
}

@media (min-width: 540px) {
  .ty-need-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.ty-need-card {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 0.75rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 14, 0.72);
}

.ty-need-card span {
  flex-shrink: 0;
  line-height: 1.3;
}

.ty-need-card p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--text);
  font-weight: 600;
}

.ty-pack-why {
  margin: 0.95rem auto 0;
  max-width: 32rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
}

.ty-rec-video__caption {
  margin: 0.6rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.ty-rec-video__frame {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(0, 255, 136, 0.12);
}

.ty-pack-head {
  margin: 1.35rem auto 0;
  max-width: 32rem;
}

.ty-pack-head__title {
  margin: 0 0 0.3rem;
  font-size: clamp(1.2rem, 4.6vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ty-pack-head__sub {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.ty-imagine {
  margin: 1rem auto 0;
  max-width: 34rem;
  padding: 0.9rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(232, 255, 0, 0.18);
  background: rgba(232, 255, 0, 0.04);
  text-align: left;
}

.ty-imagine__label {
  margin: 0 0 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow-hot);
}

.ty-imagine p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text);
}

.ty-imagine__close {
  margin-top: 0.55rem !important;
  color: var(--text-muted) !important;
}

.ty-price-box--pack {
  margin-top: 0.95rem;
}

.ty-price-includes--pack {
  grid-template-columns: 1fr;
  gap: 0.4rem;
}

@media (min-width: 420px) {
  .ty-price-includes--pack {
    grid-template-columns: 1fr 1fr;
  }
}

.ty-price-includes--pack li {
  font-size: 0.78rem;
}

.ty-cta-reassurance {
  margin: 0.75rem 0 0;
  font-size: 0.76rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.ty-trust-bar--pack {
  margin-top: 0.85rem;
}

.ty-trust-bar--pack span:first-child {
  color: var(--text-muted);
  border-color: rgba(255, 255, 255, 0.08);
}

.ty-skip {
  display: block;
  width: 100%;
  margin: 0.85rem 0 0;
  padding: 0.55rem 0.4rem;
  min-height: 44px;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.4;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(163, 181, 170, 0.45);
}

.ty-skip:hover,
.ty-skip:focus-visible {
  color: var(--text);
}

.ty-lto-banner--pack {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  text-align: center;
}

.ty-page .ty-wa-block__label {
  font-family: Outfit, system-ui, sans-serif;
  font-size: clamp(1.15rem, 4.4vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #fff;
  line-height: 1.25;
}

.ty-unlock-badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 136, 0.28);
  background: rgba(0, 255, 136, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--neon);
}

.ty-career-hero__title {
  font-size: clamp(1.22rem, 4.8vw, 1.58rem);
}

.ty-career-hero__lead {
  max-width: 34rem;
}

.ty-why {
  margin: 1.1rem auto 0;
  max-width: 36rem;
  text-align: left;
}

.ty-why__heading,
.ty-who__heading {
  margin: 0 0 0.65rem;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 800;
}

.ty-need-card__title {
  font-weight: 800 !important;
  font-size: 0.78rem !important;
  color: var(--text) !important;
  margin-bottom: 0.2rem !important;
}

.ty-need-card > div p:last-child {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.74rem;
  line-height: 1.4;
}

.ty-career-video {
  margin-top: 1.15rem;
}

.ty-who {
  margin: 1.2rem auto 0;
  max-width: 36rem;
}

.ty-who__sub {
  margin: -0.35rem 0 0.7rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.ty-photo-grid--compact {
  margin: 0;
}

.ty-think {
  margin-top: 1.1rem;
  text-align: left;
}

@media (max-width: 414px) {
  .ty-page {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .glass-panel {
    padding: 1.1rem 0.85rem 1.2rem;
  }

  .ty-cta--pack .ty-cta__main {
    font-size: 0.92rem;
  }

  .ty-need-card p {
    font-size: 0.76rem;
  }
}

@media (max-width: 360px) {
  .ty-price-now {
    font-size: 2.15rem;
  }

  .ty-lto-banner {
    font-size: 0.62rem;
  }
}

.ty-cta {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.ty-sticky__btn {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Tailwind replacements — thankyou no longer loads the CDN */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.overflow-hidden { overflow: hidden; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.grid { display: grid; }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.gap-0\.5 { gap: 0.125rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-3 { gap: 0.75rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.p-3 { padding: 0.75rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.min-h-11 { min-height: 2.75rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.border { border-width: 1px; border-style: solid; }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-neon\/20 { border-color: rgba(0, 255, 136, 0.2); }
.border-neon\/30 { border-color: rgba(0, 255, 136, 0.3); }
.bg-black { background-color: #000; }
.bg-deep\/60 { background-color: rgba(5, 5, 8, 0.6); }
.bg-neon\/10 { background-color: rgba(0, 255, 136, 0.1); }
.text-xs { font-size: 0.75rem; line-height: 1.4; }
.text-sm { font-size: 0.875rem; line-height: 1.45; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-\[0\.6rem\] { font-size: 0.6rem; }
.font-semibold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-mono { font-family: var(--font-mono); }
.text-ink { color: var(--text); }
.text-muted { color: var(--text-muted); }
.text-danger { color: var(--danger); }
.text-neon { color: var(--neon); }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .btn-glow {
    animation: none;
  }
}

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

  .success-check,
  .btn-glow,
  .ty-lto-banner__pulse,
  .ty-timer.is-urgent {
    animation: none;
  }
}

.hv-footer {
  margin-top: 0.25rem;
  padding: 1.35rem 1rem 7.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050508;
}

.hv-footer__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.75rem;
  flex-wrap: wrap;
}

.hv-footer__name {
  margin: 0;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hv-footer__slash {
  color: var(--neon);
  font-weight: 700;
}

.hv-footer__lms {
  color: var(--neon);
  font-weight: 600;
}

.hv-footer__copy {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  font-size: 0.72rem;
}

.hv-footer__contact {
  margin: 0.55rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.hv-footer__contact a {
  color: #b7c4bc;
  font-size: 0.8rem;
  text-decoration: none;
}

.hv-footer__contact a:hover,
.hv-footer__contact a:focus-visible {
  color: var(--neon);
}

.hv-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem 1.05rem;
}

.hv-footer__nav a {
  color: #b7c4bc;
  font-size: 0.8rem;
  text-decoration: none;
}

.hv-footer__nav a:hover,
.hv-footer__nav a:focus-visible {
  color: var(--neon);
}

@media (min-width: 768px) {
  .hv-footer {
    padding-bottom: 1.5rem;
  }
}

@media (max-width: 720px) {
  .hv-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hv-footer__nav {
    justify-content: flex-start;
  }
}
