/* Tokens */
  
  
  
  
  

  
  
  
  
  
  
  
  
  
  

  /* Ticker */
  
  
  
  
  

  /* Nav */
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  

  /* ============ HERO ============ */
  .hero { position: relative; padding: 80px 0 120px; overflow: hidden; }
  .hero-grid {
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center;
  }
  .hero-left { position: relative; z-index: 2; }
  .hero h1 {
    font-family: 'Fraunces', serif; font-weight: 700;
    font-size: clamp(56px, 9vw, 132px);
    line-height: .9; letter-spacing: -.04em;
    margin: 24px 0 28px; color: var(--ink);
  }
  .hero h1 .line { display: block; }
  .hero h1 em { font-style: italic; color: var(--accent); font-weight: 600; }
  .hero h1 .underline {
    position: relative; display: inline-block;
  }
  .hero h1 .underline::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: .08em;
    height: .08em; background: var(--accent); opacity: .25;
    transform: skewY(-1deg);
  }
  .hero-sub {
    font-size: 19px; line-height: 1.55; color: #40444F;
    max-width: 520px; margin: 0 0 32px;
  }
  .hero-meta {
    display: flex; gap: 28px; align-items: center; flex-wrap: wrap;
    padding-top: 24px; border-top: 1px solid rgba(11,13,20,.15);
    font-family: 'JetBrains Mono', monospace; font-size: 12px;
    letter-spacing: .1em; text-transform: uppercase;
  }
  .hero-meta div { display: flex; align-items: baseline; gap: 8px; }
  .hero-meta strong { font-size: 22px; color: var(--accent); font-family: 'Fraunces', serif; font-weight: 700; letter-spacing: -.02em; }

  /* Price ticket in hero */
  .ticket {
    position: relative; background: var(--paper);
    border: 2px solid var(--ink); border-radius: 18px;
    padding: 36px 32px 32px; box-shadow: 10px 10px 0 var(--ink);
    transform: rotate(2deg);
  }
  .ticket::before, .ticket::after {
    content: ''; position: absolute; top: 50%; transform: translateY(-50%);
    width: 28px; height: 28px; background: var(--accent); border-radius: 50%;
    border: 2px solid var(--ink);
  }
  .ticket::before { left: -16px; }
  .ticket::after { right: -16px; }
  .ticket-head {
    display: flex; justify-content: space-between; align-items: center;
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    letter-spacing: .14em; text-transform: uppercase; color: #40444F;
    padding-bottom: 14px; border-bottom: 1.5px dashed var(--ink);
    margin-bottom: 18px;
  }
  .ticket-no { background: var(--ink); color: var(--paper); padding: 4px 10px; border-radius: 100px; font-size: 10px; }
  .ticket-price {
    font-family: 'Fraunces', serif; font-weight: 700;
    font-size: 120px; line-height: .85; color: var(--ink);
    letter-spacing: -.05em; display: flex; align-items: flex-start; gap: 4px;
  }
  .ticket-price .dollar { font-size: 48px; margin-top: 16px; color: var(--accent); }
  .ticket-price .per { font-size: 18px; margin-top: auto; margin-bottom: 18px; color: #40444F; font-family: 'DM Sans', sans-serif; font-weight: 500; letter-spacing: 0; }
  .ticket-tag {
    margin-top: 14px; font-family: 'JetBrains Mono', monospace; font-size: 11px;
    letter-spacing: .08em; text-transform: uppercase;
    display: flex; justify-content: space-between; padding-top: 14px;
    border-top: 1.5px dashed var(--ink); color: #40444F;
  }
  .ticket-tag strong { color: var(--accent); }

  /* Bg marquee numeral */
  .hero-ghost {
    position: absolute; right: -80px; bottom: -40px;
    font-family: 'Fraunces', serif; font-weight: 800; font-size: 480px;
    color: rgba(8, 78, 254, 0.05); line-height: 1; letter-spacing: -.06em;
    pointer-events: none; z-index: 0;
    font-style: italic;
  }

  /* ============ PLANS ============ */
  .plans { padding: 120px 0 100px; }
  .section-head-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end;
    margin-bottom: 64px;
  }
  .section-title {
    font-family: 'Fraunces', serif; font-weight: 700;
    font-size: clamp(40px, 5vw, 72px); line-height: 1; letter-spacing: -.03em;
    margin: 12px 0 0;
  }
  .section-title em { font-style: italic; color: var(--accent); font-weight: 600; }
  .section-sub { font-size: 17px; color: #40444F; max-width: 460px; margin: 0; }

  .plan-grid {
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 32px;
    align-items: stretch;
  }
  .plan {
    position: relative; background: var(--card); border-radius: 24px;
    padding: 40px; display: flex; flex-direction: column;
    border: 1px solid rgba(11,13,20,.08);
  }
  .plan.feature {
    background: var(--ink); color: var(--paper);
    border: none; box-shadow: var(--shadow-lg);
  }
  .plan-ribbon {
    position: absolute; top: 20px; right: 20px;
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent); color: #fff;
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    letter-spacing: .14em; text-transform: uppercase;
    padding: 8px 14px; border-radius: 100px;
  }
  .plan-ribbon::before {
    content: ''; width: 6px; height: 6px; background: #fff; border-radius: 50%;
    animation: pulse 1.6s ease-in-out infinite;
  }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
  .plan-top {
    display: flex; justify-content: space-between; align-items: flex-end;
    padding-bottom: 28px; border-bottom: 1px solid rgba(11,13,20,.1); margin-bottom: 24px;
  }
  .plan.feature .plan-top { border-color: rgba(255,255,255,.15); }
  .plan-name {
    font-family: 'JetBrains Mono', monospace; font-size: 12px;
    letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  }
  .plan.feature .plan-name { color: #9CA2B3; }
  .plan-name strong { color: var(--accent); font-weight: 600; }
  .plan-id {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: var(--muted); letter-spacing: .1em;
  }
  .plan.feature .plan-id { color: #9CA2B3; }
  .plan-price {
    display: flex; align-items: flex-start; gap: 6px; margin: 0 0 8px;
    font-family: 'Fraunces', serif; font-weight: 700;
  }
  .plan-price .d { font-size: 32px; margin-top: 18px; color: var(--accent); }
  .plan-price .n { font-size: 96px; line-height: .9; letter-spacing: -.04em; }
  .plan-price .p { font-size: 16px; margin-top: auto; margin-bottom: 14px; color: var(--muted); font-family: 'DM Sans', sans-serif; font-weight: 500; }
  .plan.feature .plan-price .p { color: #9CA2B3; }
  .plan-tag {
    font-family: 'Fraunces', serif; font-style: italic; font-weight: 400;
    font-size: 18px; color: #40444F; margin: 0 0 22px; line-height: 1.4;
  }
  .plan.feature .plan-tag { color: #C9CEDB; }
  .plan-save {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px; border-radius: 12px;
    background: var(--accent-tint); margin-bottom: 24px;
  }
  .plan-save .badge {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
    background: var(--accent); color: #fff;
    display: grid; place-items: center;
    font-family: 'Fraunces', serif; font-weight: 700; font-size: 14px;
  }
  .plan-save div { font-size: 14px; line-height: 1.4; }
  .plan-save strong { color: var(--accent); }
  .plan.feature .plan-save { background: rgba(8,78,254,.18); }
  .plan.feature .plan-save div { color: var(--paper); }

  .feat-list { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
  .feat-list li {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 15px; padding: 9px 0; line-height: 1.5;
    border-bottom: 1px dashed rgba(11,13,20,.08);
  }
  .plan.feature .feat-list li { border-color: rgba(255,255,255,.1); }
  .feat-list li:last-child { border-bottom: none; }
  .feat-check {
    flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
    background: var(--accent-tint); color: var(--accent);
    display: grid; place-items: center; margin-top: 1px;
  }
  .plan.feature .feat-check { background: rgba(8,78,254,.18); color: var(--accent); }
  .feat-list li strong { font-weight: 600; }

  .plan-footer-note {
    max-width: 740px; margin: 36px auto 0; text-align: center;
    font-size: 14px; color: #40444F; line-height: 1.7;
    padding: 20px 24px; border-top: 1px solid rgba(11,13,20,.1);
    border-bottom: 1px solid rgba(11,13,20,.1);
  }
  .plan-footer-note strong { color: var(--ink); }

  /* ============ SPOTLIGHT ============ */
  .spot { background: var(--ink); color: var(--paper); padding: 140px 0; position: relative; overflow: hidden; }
  .spot-bg {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(8,78,254,.14), transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(8,78,254,.08), transparent 40%);
  }
  .spot-grid-bg {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
      linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .spot .container { position: relative; z-index: 1; }
  .spot-head { text-align: center; max-width: 720px; margin: 0 auto 72px; }
  .spot-head .eyebrow { color: var(--accent); }
  .spot-head .eyebrow::before { background: var(--accent); }
  .spot-head h2 {
    font-family: 'Fraunces', serif; font-weight: 700;
    font-size: clamp(40px, 5vw, 72px); line-height: 1; letter-spacing: -.03em;
    margin: 14px 0 16px; color: var(--paper);
  }
  .spot-head h2 em { font-style: italic; color: var(--accent); font-weight: 600; }
  .spot-head p { color: #C9CEDB; font-size: 18px; margin: 0; }

  .vs-row {
    display: grid; grid-template-columns: 1fr auto 1fr; gap: 48px;
    align-items: stretch; max-width: 1000px; margin: 0 auto 48px;
  }
  .vs-card {
    border-radius: 20px; padding: 40px 32px;
    position: relative; overflow: hidden;
  }
  .vs-card.trad {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
  }
  .vs-card.rent {
    background: var(--accent); color: #fff;
    box-shadow: 0 20px 60px rgba(8,78,254,.35);
  }
  .vs-card .kicker {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    letter-spacing: .16em; text-transform: uppercase;
    opacity: .7; margin-bottom: 12px;
  }
  .vs-card .label { font-family: 'Fraunces', serif; font-weight: 600; font-size: 18px; margin-bottom: 24px; }
  .vs-card .big {
    font-family: 'Fraunces', serif; font-weight: 700;
    font-size: 88px; line-height: .9; letter-spacing: -.04em;
    display: flex; align-items: flex-start; gap: 4px;
  }
  .vs-card .big .d { font-size: 36px; margin-top: 12px; opacity: .7; }
  .vs-card .big .p { font-size: 16px; margin-top: auto; margin-bottom: 12px; font-family: 'DM Sans', sans-serif; font-weight: 500; opacity: .7; }
  .vs-card.trad .big {
    text-decoration: line-through; text-decoration-thickness: 3px; text-decoration-color: var(--red);
    color: #9CA2B3;
  }
  .vs-divider {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px; color: var(--paper);
  }
  .vs-divider .circle {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--paper); color: var(--ink);
    display: grid; place-items: center;
    font-family: 'Fraunces', serif; font-weight: 700; font-size: 22px; font-style: italic;
  }
  .vs-divider .caret { opacity: .5; }

  .spot-callout-row {
    max-width: 1000px; margin: 0 auto 64px;
    display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center;
    padding: 32px 36px; border-radius: 20px;
    background: rgba(8,78,254,.1); border: 1px solid rgba(8,78,254,.25);
  }
  .spot-callout-big {
    font-family: 'Fraunces', serif; font-weight: 700; font-size: 72px;
    line-height: 1; letter-spacing: -.03em; color: var(--accent);
  }
  .spot-callout-big small { font-size: 18px; font-weight: 400; color: #C9CEDB; display: block; margin-top: 8px; font-family: 'DM Sans', sans-serif; letter-spacing: 0; }
  .spot-callout-row p { color: var(--paper); font-size: 17px; margin: 0; line-height: 1.6; }
  .spot-callout-row p strong { color: var(--accent); }

  .zero-strip {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    max-width: 1000px; margin: 0 auto;
    border: 1px solid rgba(255,255,255,.1); border-radius: 16px; overflow: hidden;
  }
  .zero-cell {
    padding: 32px 24px; text-align: left;
    border-right: 1px solid rgba(255,255,255,.1);
    position: relative;
  }
  .zero-cell:last-child { border-right: none; }
  .zero-cell::before {
    content: attr(data-n); position: absolute; top: 12px; right: 14px;
    font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .1em;
    color: #6B6F7A;
  }
  .zero-cell .zero {
    font-family: 'Fraunces', serif; font-weight: 700; font-size: 72px;
    line-height: 1; color: var(--accent); letter-spacing: -.04em;
  }
  .zero-cell .lbl { font-size: 13px; color: #C9CEDB; margin-top: 8px; line-height: 1.4; }

  /* ============ COMPARE ============ */
  .compare { padding: 140px 0; background: var(--paper); }
  .compare-head {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end;
    margin-bottom: 56px;
  }
  .compare-head p { color: #40444F; font-size: 17px; margin: 0; }

  .cmp-wrap {
    border-radius: 24px; overflow: hidden; border: 1px solid var(--ink);
    background: var(--card);
  }
  .cmp-scroll { overflow-x: auto; }
  table.cmp { width: 100%; border-collapse: collapse; min-width: 820px; }
  table.cmp thead th {
    padding: 24px 24px; text-align: left; font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
    border-bottom: 1px solid var(--ink);
  }
  table.cmp thead th.feat { background: var(--paper-2); color: var(--ink); width: 34%; }
  table.cmp thead th.rent { background: var(--accent); color: #fff; position: relative; }
  table.cmp thead th.rent::after {
    content: '◆'; position: absolute; top: 18px; right: 20px; color: rgba(255,255,255,.4); font-size: 10px;
  }
  table.cmp thead th.trad { background: #F6F3EC; color: #40444F; }
  table.cmp tbody td {
    padding: 20px 24px; font-size: 15px; vertical-align: top;
    border-bottom: 1px solid rgba(11,13,20,.07);
  }
  table.cmp tbody tr:last-child td { border-bottom: none; }
  table.cmp td.feat {
    font-family: 'Fraunces', serif; font-weight: 600; font-size: 16px; color: var(--ink);
    background: var(--paper-2);
  }
  table.cmp td.rent { background: var(--accent-tint); font-weight: 500; color: var(--ink); }
  table.cmp td.trad { color: #6B6F7A; }
  .badge-check, .badge-x {
    display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px; border-radius: 50%;
    margin-right: 10px; vertical-align: -5px;
  }
  .badge-check { background: var(--accent); color: #fff; }
  .badge-x { background: #F4E1E3; color: var(--red); }

  .cmp-note {
    max-width: 760px; margin: 40px auto 0; text-align: center;
    font-family: 'Fraunces', serif; font-style: italic; font-weight: 400;
    font-size: 18px; color: #40444F; line-height: 1.6;
  }
  .cmp-note strong { color: var(--ink); font-weight: 600; font-style: normal; }

  /* ============ QUESTIONS / CTA ============ */
  .questions {
    background: var(--paper-2); padding: 140px 0; position: relative; overflow: hidden;
  }
  .questions::before {
    content: 'hello?'; position: absolute; right: -40px; top: -60px;
    font-family: 'Fraunces', serif; font-style: italic; font-weight: 800;
    font-size: 320px; color: rgba(11,13,20,.04); letter-spacing: -.06em;
    pointer-events: none; line-height: 1;
  }
  .q-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
    position: relative;
  }
  .q-left h2 {
    font-family: 'Fraunces', serif; font-weight: 700;
    font-size: clamp(44px, 6vw, 88px); line-height: .95; letter-spacing: -.03em;
    margin: 16px 0 24px;
  }
  .q-left h2 em { font-style: italic; color: var(--accent); font-weight: 600; }
  .q-left p { font-size: 18px; color: #40444F; max-width: 480px; margin: 0 0 32px; line-height: 1.6; }
  .q-contacts { display: flex; flex-direction: column; gap: 12px; max-width: 400px; }
  .q-contact {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px; background: var(--paper); border-radius: 14px;
    border: 1px solid rgba(11,13,20,.08); transition: all .2s;
  }
  .q-contact:hover { border-color: var(--accent); transform: translateX(4px); }
  .q-contact .ico {
    width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: var(--paper);
    display: grid; place-items: center; flex-shrink: 0;
  }
  .q-contact .label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
  .q-contact .value { font-weight: 500; font-size: 15px; }

  .q-form {
    background: var(--paper); border-radius: 24px; padding: 40px;
    border: 1px solid rgba(11,13,20,.1);
    box-shadow: var(--shadow-lg);
    position: relative;
  }
  .q-form::before {
    content: ''; position: absolute; top: 0; left: 32px; right: 32px;
    height: 4px; background: var(--accent); border-radius: 0 0 4px 4px;
  }
  .q-form-head {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 20px; margin-bottom: 20px;
    border-bottom: 1px dashed rgba(11,13,20,.15);
  }
  .q-form h3 { font-family: 'Fraunces', serif; font-weight: 700; font-size: 26px; letter-spacing: -.02em; }
  .q-form .form-id {
    font-family: 'JetBrains Mono', monospace; font-size: 10px;
    letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
    padding: 4px 10px; background: var(--paper-2); border-radius: 100px;
  }
  .q-form .sub { font-size: 13px; color: var(--muted); margin: 0 0 24px; font-family: 'JetBrains Mono', monospace; }
  .field { margin-bottom: 16px; position: relative; }
  .field label {
    display: block; font-family: 'JetBrains Mono', monospace; font-size: 10px;
    letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
    margin-bottom: 6px;
  }
  .field input, .field textarea {
    width: 100%; padding: 12px 0; font: inherit; font-size: 16px;
    border: none; border-bottom: 1.5px solid rgba(11,13,20,.2);
    background: transparent; border-radius: 0;
    transition: border-color .15s ease;
    font-family: inherit;
  }
  .field textarea { resize: vertical; min-height: 80px; padding-top: 8px; }
  .field input:focus, .field textarea:focus {
    outline: none; border-color: var(--accent);
  }
  .field .err { color: var(--red); font-size: 12px; margin-top: 4px; display: none; font-family: 'JetBrains Mono', monospace; letter-spacing: .06em; text-transform: uppercase; }
  .field.invalid .err { display: block; }
  .field.invalid input, .field.invalid textarea { border-color: var(--red); }
  .loc-note { text-align: center; font-size: 12px; color: var(--muted); margin: 14px 0 0; font-family: 'JetBrains Mono', monospace; letter-spacing: .06em; }
  .form-success { display: none; padding: 24px; background: var(--accent-tint); border-radius: 14px; border: 1px solid var(--accent); }
  .form-success.show { display: block; }
  .form-success h3 { color: var(--accent); margin-bottom: 6px; }
  .form-success p { font-size: 14px; color: #40444F; margin: 0; }

  /* ============ FOOTER ============ */
  
  .footer-mark {
    font-family: 'Fraunces', serif; font-weight: 800; font-style: italic;
    font-size: clamp(120px, 18vw, 240px); line-height: .85; letter-spacing: -.04em;
    color: var(--paper); margin: 0 0 48px; padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .footer-mark em { color: var(--accent); font-style: italic; }
  
  
  .social { display: flex; gap: 10px; }
  .social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid #2F333D; display: grid; place-items: center; transition: all .2s; color: #C9CEDB; }
  .social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
  
  
  
  
  
  
  
  

  /* Responsive */
  @media (max-width: 1024px) {
    .hero-ghost { font-size: 280px; right: -30px; }
    .plan { padding: 32px 28px; }
    .hero-grid { gap: 32px; }
  }
  @media (max-width: 900px) {
    
    
    
    .nav-cta .btn { display: none; }
    
    
    
    
    section, .hero, .plans, .spot, .compare, .questions { padding: 72px 0; }
    .hero { padding-top: 48px; padding-bottom: 80px; }
    .hero h1 { font-size: clamp(44px, 10vw, 72px); margin: 20px 0 24px; }
    .hero-sub { font-size: 17px; margin-bottom: 24px; }
    .section-title { font-size: clamp(34px, 7vw, 48px) !important; }
    .section-head-row, .compare-head { margin-bottom: 40px; }
    .hero-meta { gap: 18px; padding-top: 20px; }
    .hero-meta strong { font-size: 18px; }
    .hero-grid, .plan-grid, .compare-head, .q-grid, .section-head-row, .vs-row, .spot-callout-row { grid-template-columns: 1fr; gap: 32px; }
    .ticket { transform: none; max-width: 420px; margin: 0 auto; order: -1; }
    .hero-ghost, .questions::before { display: none; }
    .zero-strip { grid-template-columns: 1fr 1fr; }
    .zero-cell:nth-child(2) { border-right: none; }
    .zero-cell:nth-child(1), .zero-cell:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }
    
    .footer-brand { grid-column: 1 / -1; }
    
    .vs-divider { flex-direction: row; gap: 20px; }
    .vs-divider .caret { display: none; }
    .spot-callout-row { text-align: center; }
    .spot-callout-big { font-size: 56px; }
    .cmp-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .footer-mark { font-size: clamp(72px, 16vw, 140px); padding-bottom: 28px; margin-bottom: 32px; }
  }
  @media (max-width: 600px) {
    
    
    
    
    
    
    
    
    section, .hero, .plans, .spot, .compare, .questions { padding: 56px 0 !important; }
    .hero { padding: 28px 0 48px !important; }
    .hero h1 { font-size: clamp(40px, 11vw, 56px); }
    .hero-sub { font-size: 16px; }
    .hero-meta { flex-direction: column; align-items: flex-start; gap: 10px; padding-top: 18px; }
    .hero-meta div { width: 100%; justify-content: space-between; }
    .ticket { padding: 22px 20px; box-shadow: 6px 6px 0 var(--ink); border-radius: 14px; }
    .ticket::before, .ticket::after { width: 22px; height: 22px; }
    .ticket::before { left: -12px; }
    .ticket::after { right: -12px; }
    .ticket-price { font-size: 72px; }
    .ticket-price .dollar { font-size: 30px; margin-top: 10px; }
    .ticket-price .per { font-size: 14px; margin-bottom: 12px; }
    .plan { padding: 26px 20px; border-radius: 20px; }
    .plan-top { padding-bottom: 22px; margin-bottom: 20px; }
    .plan-price .n { font-size: 60px; }
    .plan-price .d { font-size: 22px; margin-top: 12px; }
    .plan-price .p { font-size: 14px; margin-bottom: 12px; }
    .plan-ribbon { top: 14px; right: 14px; padding: 6px 10px; font-size: 10px; }
    .plan-tag { font-size: 16px; }
    .plan-save { padding: 12px 14px; gap: 12px; }
    .plan-save .badge { width: 38px; height: 38px; font-size: 12px; }
    .plan-save div { font-size: 13px; }
    .feat-list li { font-size: 14px; padding: 8px 0; }
    .plan-footer-note { font-size: 13px; padding: 18px 16px; }
    
    .vs-card { padding: 24px 20px; }
    .vs-card .big { font-size: 48px; }
    .vs-card .big .d { font-size: 22px; margin-top: 6px; }
    .vs-divider { gap: 12px; }
    .vs-divider .circle { width: 48px; height: 48px; font-size: 16px; }
    .zero-strip { grid-template-columns: 1fr; }
    .zero-cell { padding: 22px 18px; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.1); }
    .zero-cell:last-child { border-bottom: none; }
    .zero-cell .zero { font-size: 44px; }
    .spot-callout-big { font-size: 42px; }
    .spot-callout-big small { font-size: 14px; }
    .spot-callout-row { padding: 22px 18px; gap: 14px; }
    .q-form { padding: 24px 20px; border-radius: 18px; }
    .q-form::before { left: 20px; right: 20px; }
    .q-form h3 { font-size: 22px; }
    .q-contacts { max-width: 100%; }
    .q-contact { padding: 14px 16px; gap: 12px; }
    .q-contact .value { font-size: 14px; }
    table.cmp { min-width: 640px; }
    table.cmp thead th, table.cmp tbody td { padding: 12px 14px; font-size: 13px; }
    .cmp-note { font-size: 16px; margin-top: 28px; }
    
    .footer-mark { font-size: clamp(56px, 18vw, 96px); }
    
  }
