/* ━━━ TOKENS ━━━ */
:root {
  --bg: #0a0a0a;
  --bg2: #111114;
  --lime: #c8ff00;
  --pink: #ff2d78;
  --cyan: #00e5ff;
  --orange: #ff6b00;
  --purple: #b347ff;
  --yellow: #ffe500;
  --white: #f0f0f0;
  --muted: #888;
  --card-bg: #161618;
  --border: rgba(255, 255, 255, 0.08);
  --font-head: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

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

a,
button {
  cursor: pointer !important;
}

html {
  scroll-behavior: smooth;
}

/* body cursor restored to default */
html,
body {
  cursor: default !important;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

a,
button,
[role="button"],
label {
  cursor: pointer !important;
}

/* ━━━ NOISE OVERLAY ━━━ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ━━━ SCROLLBAR ━━━ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--lime);
  border-radius: 3px;
}

/* ━━━ MARQUEE ━━━ */
.marquee-strip {
  background: var(--lime);
  color: var(--bg);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--bg);
}

.marquee-inner {
  display: inline-flex;
  animation: marqueeMove 22s linear infinite;
  gap: 0;
}

.marquee-inner span {
  padding: 0 24px;
}

.marquee-inner .dot {
  color: var(--pink);
  font-size: 1.2rem;
  vertical-align: middle;
}

@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ━━━ HEADER ━━━ */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgb(255 255 255);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 4px;
    border-radius: 5px;
}

/* logo-dot now used by header-pill only */
@keyframes logoPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
    box-shadow: 0 0 20px var(--lime);
  }
}

.header-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(200, 255, 0, 0.08);
  border: 1px solid rgba(200, 255, 0, 0.25);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.5px;
}

.header-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--lime);
  animation: logoPulse 1.4s infinite;
}

.header-phone {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--white);
}

.header-phone strong {
  color: #000;
}

/* ━━━ PROGRESS ━━━ */
.progress-wrap {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
}

.prog-steps {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pstep {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px 12px 0;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
      color: #999999;
  transition: color 0.3s;
}

.pstep.active {
  color: var(--white);
}

.pstep.done {
  color: var(--lime);
}

.pstep-ball {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #222;
  border: 2px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  transition: all 0.3s;
}

.pstep.active .pstep-ball {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--bg);
  box-shadow: 0 0 16px rgba(200, 255, 0, 0.5);
}

.pstep.done .pstep-ball {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--bg);
}

.pstep-arrow {
  color: #333;
  font-size: 0.75rem;
}

/* ━━━ PAGES ━━━ */
.page {
  display: none;
  position: relative;
  z-index: 1;
}

.page.active {
  display: block;
  animation: pgIn 0.4s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

@keyframes pgIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ════════════════════════
   PAGE 1 — PLANS
════════════════════════ */

/* HERO */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 60px 5vw 80px;
  position: relative;
  overflow: hidden;
}

/* BG blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: blobDrift 8s ease-in-out infinite alternate;
}

.blob1 {
  width: 500px;
  height: 500px;
  background: rgba(200, 255, 0, 0.07);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.blob2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 45, 120, 0.07);
  bottom: -80px;
  left: -60px;
  animation-delay: 2s;
}

.blob3 {
  width: 300px;
  height: 300px;
  background: rgba(0, 229, 255, 0.05);
  top: 40%;
  left: 30%;
  animation-delay: 4s;
}

@keyframes blobDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, 20px) scale(1.08);
  }
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 45, 120, 0.12);
  border: 1px solid rgba(255, 45, 120, 0.35);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: pgIn 0.6s cubic-bezier(0.34, 1.4, 0.64, 1) 0.1s both;
}

.hero-badge .fire {
  animation: fireShake 0.5s ease-in-out infinite alternate;
  display: inline-block;
}

@keyframes fireShake {
  0% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(5deg);
  }
}

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 28px;
  animation: pgIn 0.6s cubic-bezier(0.34, 1.4, 0.64, 1) 0.15s both;
}

.hero-h1 .line-white {
  display: block;
  color: var(--white);
}

.hero-h1 .line-lime {
  display: block;
  color: var(--lime);
  text-shadow: 0 0 60px rgba(200, 255, 0, 0.3);
  position: relative;
}

.hero-h1 .line-strike {
  display: block;
  color: rgba(255, 255, 255, 0.2);
  text-decoration: line-through;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 4px;
}

.hero-sub {
  font-size: 1.05rem;
  color: #777;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  animation: pgIn 0.6s cubic-bezier(0.34, 1.4, 0.64, 1) 0.2s both;
}

.hero-sub strong {
  color: var(--white);
}

/* Sticker badges floating */
.stickers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
  animation: pgIn 0.6s cubic-bezier(0.34, 1.4, 0.64, 1) 0.25s both;
}

.sticker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.3px;
  border: 2px solid;
  transition: transform 0.2s;
}

.sticker:hover {
  transform: rotate(-2deg) scale(1.06);
}

.sticker.lime {
  background: rgba(200, 255, 0, 0.08);
  border-color: rgba(200, 255, 0, 0.3);
  color: var(--lime);
}

.sticker.pink {
  background: rgba(255, 45, 120, 0.08);
  border-color: rgba(255, 45, 120, 0.3);
  color: var(--pink);
}

.sticker.cyan {
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.3);
  color: var(--cyan);
}

.sticker.orange {
  background: rgba(255, 107, 0, 0.08);
  border-color: rgba(255, 107, 0, 0.3);
  color: var(--orange);
}

.sticker.purple {
  background: rgba(179, 71, 255, 0.08);
  border-color: rgba(179, 71, 255, 0.3);
  color: var(--purple);
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: pgIn 0.6s cubic-bezier(0.34, 1.4, 0.64, 1) 0.3s both;
}

.cta-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lime);
  color: var(--bg);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.4, 0.64, 1);
  box-shadow: 0 0 0 0 rgba(200, 255, 0, 0.4);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.cta-main:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 40px rgba(200, 255, 0, 0.3);
}

.cta-main .arrow {
  transition: transform 0.2s;
}

.cta-main:hover .arrow {
  transform: translateX(4px);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 16px 28px;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Floating award card */
.hero-award {
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%) rotate(3deg);
  background: var(--card-bg);
  border: 1px solid rgba(255, 229, 0, 0.2);
  border-radius: 20px;
  padding: 20px 22px;
  width: 210px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04);
  animation: floatCard 4s ease-in-out infinite alternate;
  z-index: 2;
}

@keyframes floatCard {
  0% {
    transform: translateY(-50%) rotate(3deg);
  }

  100% {
    transform: translateY(-46%) rotate(1deg);
  }
}

.award-emoji {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}

.award-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--yellow);
  margin-bottom: 4px;
}

.award-sub {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.5;
}

.award-badge {
  display: inline-block;
  background: rgba(255, 229, 0, 0.1);
  border: 1px solid rgba(255, 229, 0, 0.25);
  color: var(--yellow);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

@media(max-width:1050px) {
  .hero-award {
    display: none;
  }
}

/* ━━━ PLAN SECTION ━━━ */
.plans-section {
  padding: 40px 5vw 80px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.eyebrow-line {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--lime);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.eyebrow-divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 255, 0, 0.3), transparent);
}

.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 36px;
  line-height: 1;
}

.section-h2 em {
  font-style: normal;
  color: var(--lime);
}

/* Duration switcher — pill style */
.dur-switcher {
  display: inline-flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px;
  margin-bottom: 44px;
}

.dur-btn {
  padding: 10px 22px;
  border: none;
  background: transparent;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--muted);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.4, 0.64, 1);
  letter-spacing: 0.3px;
}

.dur-btn.active {
  background: var(--lime);
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(200, 255, 0, 0.3);
}

.dur-btn .badge {
  display: inline-block;
  margin-left: 6px;
  background: var(--pink);
  color: #fff;
  font-size: 0.55rem;
  padding: 1px 6px;
  border-radius: 100px;
  font-weight: 800;
  letter-spacing: 0.5px;
  vertical-align: middle;
}

/* Plans grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  gap: 18px;
}

.plan-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
}

.plan-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  border-color: rgba(200, 255, 0, 0.3);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 40px rgba(200, 255, 0, 0.06);
}

.plan-card.hot {
  border-color: rgba(255, 45, 120, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 45, 120, 0.1);
}

.plan-card.hot:hover {
  border-color: rgba(255, 45, 120, 0.6);
}

/* top gradient line */
.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200, 255, 0, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.plan-card:hover::before {
  opacity: 1;
}

.plan-card.hot::before {
  background: linear-gradient(90deg, transparent, rgba(255, 45, 120, 0.6), transparent);
  opacity: 1;
}

/* ribbon */
.plan-ribbon {
  position: absolute;
  top: 14px;
  right: -1px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px 5px 10px;
  clip-path: polygon(8px 0, 100% 0, 100% 100%, 8px 100%, 0 50%);
}

.plan-ribbon.pink {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 45, 120, 0.4);
}

.plan-ribbon.lime {
  background: var(--lime);
  color: var(--bg);
  box-shadow: 0 4px 14px rgba(200, 255, 0, 0.3);
}

/* card header */
.card-head {
  padding: 22px 22px 18px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.speed-giant {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 3.4rem;
  letter-spacing: -3px;
  line-height: 1;
  color: var(--white);
}

.speed-unit-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200, 255, 0, 0.08);
  border: 1px solid rgba(200, 255, 0, 0.2);
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 6px;
  letter-spacing: 1px;
}

.speed-unit-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--lime);
}

.plan-price-hint {
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--muted);
  font-family: var(--font-mono);
}

.plan-price-hint strong {
  color: var(--yellow);
  font-size: 0.85rem;
}

/* card body */
.card-body {
  padding: 18px 22px 22px;
}

.total-callout {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.tc-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  font-family: var(--font-mono);
  margin-bottom: 4px;
}

.tc-amount {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  line-height: 1;
}

.tc-amount .sup {
  font-size: 1rem;
  vertical-align: super;
  margin-right: 1px;
}

.tc-suffix {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
  font-family: var(--font-body);
}

/* mini breakdown */
.mini-breakdown {
  font-size: 0.72rem;
  margin-bottom: 14px;
}

.mb-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mb-row:last-child {
  border-bottom: none;
}

.mb-row .v {
  color: var(--white);
  font-weight: 600;
}

.mb-row .v.free {
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.mb-row .v.none {
  color: var(--muted);
}

/* OTT icon chips */
.ott-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.ott-chip {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.25s;
  cursor: pointer;
}

.ott-chip:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border-color: var(--lime);
}

.ott-chip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.ott-view-more {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--lime);
  background: rgba(200, 255, 0, 0.1);
  padding: 8px 14px;
  border-radius: 100px;
  cursor: pointer;
  border: 1px dashed var(--lime);
  transition: all 0.2s;
}

.ott-view-more:hover {
  background: var(--lime);
  color: var(--bg);
}

/* Modal for all OTTs */
.ott-modal {
  display: none;
  position: fixed;
  z-index: 100000;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(15px);
  padding: 20px;
  align-items: center;
  /* Centered vertically */
  justify-content: center;
  overflow-y: auto;
}

.ott-modal.active {
  display: flex !important;
  animation: pgIn 0.4s both;
}

.ott-modal-content {
  background: var(--card-bg);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 600px;
  border-radius: 30px;
  padding: 30px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.ott-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.ott-modal-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.ott-modal-close {
  font-size: 2rem;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
}

.ott-modal-close:hover {
  color: var(--pink);
}

.ott-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 15px;
}

.ott-full-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.ott-full-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.ott-full-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.ott-full-name {
  font-size: 0.65rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--muted);
}

/* feats */
.card-feats {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #aaa;
}

.feat-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(200, 255, 0, 0.1);
  border: 1px solid rgba(200, 255, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.6rem;
  color: var(--lime);
}

/* CTA button on card */
.card-btn {
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.34, 1.4, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.card-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transition: left 0.4s;
}

.card-btn:hover::before {
  left: 100%;
}

.card-btn.default {
  background: rgba(200, 255, 0, 0.08);
  border: 1px solid rgba(200, 255, 0, 0.25);
  color: var(--lime);
}

.card-btn.default:hover {
  background: var(--lime);
  color: var(--bg);
  box-shadow: 0 8px 30px rgba(200, 255, 0, 0.3);
  transform: translateY(-2px);
}

.card-btn.hot-btn {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 45, 120, 0.3);
}

.card-btn.hot-btn:hover {
  background: #ff1066;
  box-shadow: 0 8px 36px rgba(255, 45, 120, 0.5);
  transform: translateY(-2px);
}

.card-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  transition: transform 0.2s;
}

.card-btn:hover svg {
  transform: translateX(3px);
}

/* ━━━ VIBE SECTION ━━━ */
.vibe-section {
  padding: 60px 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

@media(max-width:700px) {
  .vibe-section {
    grid-template-columns: 1fr;
  }
}

.vibe-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}

.vibe-card:hover {
  transform: translateY(-4px);
}

.vibe-card.accent-lime {
  border-color: rgba(200, 255, 0, 0.15);
}

.vibe-card.accent-lime:hover {
  border-color: rgba(200, 255, 0, 0.35);
}

.vibe-card.accent-pink {
  border-color: rgba(255, 45, 120, 0.15);
}

.vibe-card.accent-pink:hover {
  border-color: rgba(255, 45, 120, 0.35);
}

.vc-emoji {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
}

.vc-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}

.vc-text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

.vc-bg-text {
  position: absolute;
  bottom: -10px;
  right: 10px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -3px;
  user-select: none;
}

/* ━━━ TESTIMONIALS ━━━ */
.testimonials-sec {
  padding: 70px 5vw;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.test-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  transition: transform 0.2s, border-color 0.2s;
}

.test-card:hover {
  transform: translateY(-3px) rotate(0.5deg);
  border-color: rgba(255, 255, 255, 0.12);
}

.test-stars {
  color: var(--yellow);
  font-size: 0.82rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.test-quote {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.test-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.ta-lime {
  background: rgba(200, 255, 0, 0.15);
  color: var(--lime);
}

.ta-pink {
  background: rgba(255, 45, 120, 0.15);
  color: var(--pink);
}

.ta-cyan {
  background: rgba(0, 229, 255, 0.15);
  color: var(--cyan);
}

.test-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--white);
}

.test-loc {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 1px;
}

/* ━━━━━━━━━━━━━━━━━━━━━
   PAGE 2 — CHECKOUT
━━━━━━━━━━━━━━━━━━━━━ */
.checkout-wrap {
  padding: 48px 5vw 80px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

@media(max-width:900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

/* Form */
.form-shell {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
}

.form-header {
  background: linear-gradient(135deg, rgba(200, 255, 0, 0.08), rgba(200, 255, 0, 0.02));
  border-bottom: 1px solid var(--border);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.form-header-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 255, 0, 0.1);
  border: 1px solid rgba(200, 255, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.form-header-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 3px;
}

.form-header-sub {
  font-size: 0.72rem;
  color: var(--muted);
}

.form-body {
  padding: 26px;
}

/* Section labels */
.fsec-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lime);
  margin-bottom: 18px;
}

.fsec-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(200, 255, 0, 0.15);
}

.fsec-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(200, 255, 0, 0.12);
  border: 1px solid rgba(200, 255, 0, 0.3);
  color: var(--lime);
  font-size: 0.62rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fsec-block {
  margin-bottom: 28px;
}

/* Fields */
.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #888;
  margin-bottom: 7px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.field label .req {
  color: var(--pink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #444;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(200, 255, 0, 0.4);
  background: rgba(200, 255, 0, 0.03);
  box-shadow: 0 0 0 3px rgba(200, 255, 0, 0.06);
}

.field.err input,
.field.err select {
  border-color: rgba(255, 45, 120, 0.6);
}

.err-msg {
  color: var(--pink);
  font-size: 0.7rem;
  margin-top: 5px;
  display: none;
  font-family: var(--font-mono);
}

.field.err .err-msg {
  display: block;
}

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

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media(max-width:520px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

#faadhaar {
  font-family: var(--font-mono);
  letter-spacing: 3px;
  font-size: 1rem;
}

.field-hint {
  font-size: 0.68rem;
  color: #555;
  margin-top: 5px;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  line-height: 1.5;
  font-family: var(--font-mono);
}

.field-hint .lock {
  color: var(--lime);
}

/* Upload */
.upload-zone {
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  transition: all 0.25s;
}

.upload-zone input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

.upload-zone:hover {
  border-color: rgba(200, 255, 0, 0.3);
  background: rgba(200, 255, 0, 0.02);
}

.upload-zone.filled {
  border-color: rgba(200, 255, 0, 0.4);
  border-style: solid;
  background: rgba(200, 255, 0, 0.04);
}

.upload-emoji {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.upload-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.upload-sub {
  font-size: 0.72rem;
  color: var(--muted);
}

.upload-preview {
  margin-top: 14px;
  display: none;
}

.upload-preview img {
  max-width: 100%;
  max-height: 120px;
  border-radius: 8px;
  border: 1px solid var(--border);
  object-fit: contain;
}

.upload-name {
  font-size: 0.72rem;
  color: var(--lime);
  font-family: var(--font-mono);
  font-weight: 700;
  margin-top: 6px;
}

/* Terms */
.terms-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.6;
}

.terms-row input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: var(--lime);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.terms-row a {
  color: var(--lime);
  font-weight: 600;
  text-decoration: none;
}

#terms-err {
  color: var(--pink);
  font-size: 0.68rem;
  margin-bottom: 14px;
  display: none;
  font-family: var(--font-mono);
}

/* Pay btn */
.pay-btn {
  width: 100%;
  padding: 17px;
  background: var(--lime);
  color: var(--bg);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.25s cubic-bezier(0.34, 1.4, 0.64, 1);
  box-shadow: 0 8px 32px rgba(200, 255, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.pay-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.pay-btn:hover::after {
  left: 100%;
}

.pay-btn:hover {
  box-shadow: 0 12px 48px rgba(200, 255, 0, 0.4);
  transform: translateY(-2px) scale(1.01);
}

.pay-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.pay-btn svg {
  width: 18px;
  height: 18px;
  fill: var(--bg);
}

.pay-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  font-size: 0.68rem;
  color: #555;
  font-family: var(--font-mono);
}

.pay-sub-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.pay-sub-item .dot {
  width: 5px;
  height: 5px;
  background: var(--lime);
  border-radius: 50%;
}

/* Order sidebar */
.sidebar {
  position: sticky;
  top: 132px;
}

.scard {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
}

.scard-head {
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
  background: rgba(200, 255, 0, 0.03);
}

.scard-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lime);
  margin-bottom: 8px;
}

.scard-plan {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
  margin-bottom: 3px;
}

.scard-dur {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.scard-speed {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 0.72rem;
  color: #aaa;
  font-family: var(--font-mono);
}

.scard-speed-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--lime);
}

.scard-body {
  padding: 16px 22px;
}

.srow {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.srow:last-of-type {
  border-bottom: none;
}

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

.srow .sv {
  color: var(--white);
  font-weight: 600;
}

.srow .sv.free {
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.scard-total {
  margin: 14px 22px;
  background: rgba(200, 255, 0, 0.06);
  border: 1px solid rgba(200, 255, 0, 0.15);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stl {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-mono);
}

.stv {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  color: var(--lime);
}

.scard-change {
  display: block;
  margin: 0 22px 14px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px;
  color: var(--muted);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
  width: calc(100% - 44px);
  transition: all 0.2s;
  text-align: center;
}

.scard-change:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.scard-secure {
  margin: 0 22px 20px;
  background: rgba(200, 255, 0, 0.04);
  border: 1px solid rgba(200, 255, 0, 0.1);
  border-radius: 10px;
  padding: 10px 13px;
  font-size: 0.68rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
}

.scard-secure .lock {
  color: var(--lime);
  font-size: 0.9rem;
}

/* ━━━━━━━━━━━━━━━━
   PAGE 3 — TY
━━━━━━━━━━━━━━━━ */
.ty-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 5vw;
  background: radial-gradient(ellipse at center, rgba(200, 255, 0, 0.04) 0%, transparent 60%);
}

.ty-card {
  max-width: 560px;
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.ty-top {
  padding: 44px 36px 36px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.ty-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--lime), var(--cyan), var(--purple));
  background-size: 200% 100%;
  animation: rainbowMove 2s linear infinite;
}

@keyframes rainbowMove {
  0% {
    background-position: 0% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.ty-emoji {
  font-size: 4rem;
  display: block;
  margin-bottom: 16px;
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.6, 0.64, 1) both;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

.ty-top h1 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.ty-top p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

.ty-body {
  padding: 28px 32px;
}

.ty-ref {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px;
  margin-bottom: 20px;
  text-align: center;
}

.ty-ref-lbl {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 5px;
}

.ty-ref-val {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

/* Sidebar Features List */
.scard-feats-list {
  margin-top: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-size: 0.85rem;
}

.s-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.8);
}

.s-feat span {
  color: #00ff00;
  font-weight: bold;
}

.ty-ref-val {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--lime);
}

.ty-rows {
  margin-bottom: 22px;
}

.ty-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ty-row:last-child {
  border-bottom: none;
}

.ty-row .tk {
  color: var(--muted);
}

.ty-row .tv {
  font-weight: 600;
  color: var(--white);
  text-align: right;
  max-width: 58%;
}

.ty-amount {
  color: var(--lime) !important;
  font-family: var(--font-mono) !important;
  font-size: 1rem !important;
}

.ty-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ty-btn {
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}

.ty-btn.lime-solid {
  background: var(--lime);
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(200, 255, 0, 0.25);
}

.ty-btn.lime-solid:hover {
  box-shadow: 0 8px 32px rgba(200, 255, 0, 0.4);
  transform: translateY(-2px);
}

.ty-btn.outline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.ty-btn.outline:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.ty-btn.wa {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #25d366;
}

.ty-btn.wa:hover {
  background: rgba(37, 211, 102, 0.15);
  transform: translateY(-1px);
}

/* ━━━ UTILS ━━━ */
.loading-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  z-index: 9998;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.loading-overlay.show {
  display: flex;
}

.spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid rgba(200, 255, 0, 0.15);
  border-top-color: var(--lime);
  animation: spin 0.7s linear infinite;
  box-shadow: 0 0 20px rgba(200, 255, 0, 0.2);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-txt {
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: 0.8rem;
}

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  color: var(--white);
  padding: 13px 18px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
  z-index: 10000;
  max-width: 300px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.error {
  border-color: rgba(255, 45, 120, 0.4);
  color: var(--pink);
}

.toast.success {
  border-color: rgba(200, 255, 0, 0.3);
  color: var(--lime);
}

footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 28px 5vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-logo .dot {
  color: var(--lime);
}

.footer-info {
  font-size: 0.7rem;
  color: var(--muted);
  font-family: var(--font-mono);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  font-size: 0.72rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--lime);
}

/* hover effects for input labels */
.field:focus-within label {
  color: var(--lime);
}

@media(max-width:600px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .hero-h1 {
    font-size: 2.8rem;
    letter-spacing: -2px;
  }

  .ty-body {
    padding: 20px 18px;
  }

  .ty-top {
    padding: 36px 20px 28px;
  }
}