:root {
      --ink: #101820;
      --muted: #5d6b73;
      --soft: #f5f5f5;
      --line: #e6e6e6;
      --brand: #c11425;
      --brand-dark: #94101d;
      --accent: #ffc000;
      --dark: #111111;
      --white: #ffffff;
      --radius-lg: 34px;
      --radius-md: 22px;
      --shadow: 0 24px 70px rgba(17, 17, 17, .10);
      --serif: 'Fraunces', Georgia, serif;
      --sans: 'Inter', -apple-system, Segoe UI, sans-serif;
      --mono: 'IBM Plex Mono', ui-monospace, monospace;
    }

    

    

    body {
      font-family: var(--sans);
      color: var(--ink);
      background: linear-gradient(180deg, var(--soft) 0%, var(--white) 440px);
      overflow-x: clip;
      -webkit-font-smoothing: antialiased;
    }
a {
color: inherit;
}
button {
font-family: inherit;
}

    :focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 3px;
      border-radius: 6px;
    }

    .wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .eyebrow {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--brand);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--brand);
    }

    h1,
    h2,
    h3 {
      font-family: var(--serif);
      font-weight: 600;
      line-height: 1.08;
      letter-spacing: -.01em;
    }

    h2 {
      font-size: clamp(28px, 3.6vw, 42px);
    }

    h3 {
      font-size: 19px;
      font-weight: 600;
    }

    p {
      line-height: 1.65;
      color: var(--muted);
      }

    .section-lede {
      max-width: 640px;
      font-size: 17px;
      margin-top: 14px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: var(--sans);
      font-weight: 700;
      font-size: 15px;
      padding: 15px 28px;
      border-radius: 100px;
      border: 2px solid transparent;
      cursor: pointer;
      text-decoration: none;
      transition: transform .15s ease, box-shadow .15s ease;
      min-height: 48px;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-primary {
      background: var(--brand);
      color: var(--white);
      box-shadow: 0 14px 30px rgba(193, 20, 37, .28);
    }

    .btn-primary:hover {
      background: var(--brand-dark);
    }

    .btn-outline {
      background: transparent;
      color: var(--ink);
      border-color: var(--line);
    }

    .btn-outline:hover {
      border-color: var(--ink);
    }

    .btn-sm {
      padding: 10px 20px;
      font-size: 13px;
      min-height: auto;
    }

    .badge {
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      background: var(--accent);
      color: var(--dark);
      padding: 4px 10px;
      border-radius: 100px;
      display: inline-block;
    }

    /* ---------- HERO ---------- */
    .hero {
      padding: 56px 0 40px;
    }

    .hero-grid {
      display: grid;
      gap: 40px;
      align-items: center;
    }

    .hero-copy .eyebrow {
      margin-bottom: 18px;
    }

    .hero h1 {
      font-size: clamp(34px, 5.4vw, 58px);
    }

    .hero-sub {
      font-size: 18px;
      margin-top: 18px;
      max-width: 560px;
      color: var(--muted);
    }

    .hero-meta {
      font-family: var(--mono);
      font-size: 12.5px;
      color: var(--muted);
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px 14px;
    }

    .hero-meta span {
      white-space: nowrap;
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 30px;
    }

    .ticket-visual {
      position: relative;
      background: var(--dark);
      border-radius: var(--radius-lg);
      padding: 30px;
      color: var(--white);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .ticket-visual::before,
    .ticket-visual::after {
      content: "";
      position: absolute;
      width: 30px;
      height: 30px;
      background: var(--soft);
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
    }

    .ticket-visual::before {
      left: -15px;
    }

    .ticket-visual::after {
      right: -15px;
    }

    .ticket-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }

    .ticket-route {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .08em;
      color: rgba(255, 255, 255, .6);
      text-transform: uppercase;
    }

    .ticket-stamp {
      width: 52px;
      height: 52px;
      border: 2px solid var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transform: rotate(-8deg);
      font-family: var(--mono);
      font-size: 9px;
      color: var(--accent);
      font-weight: 700;
      text-align: center;
      line-height: 1.2;
    }

    .ticket-cities {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 26px;
    }

    .ticket-city {
      font-family: var(--serif);
      font-size: 26px;
      font-weight: 600;
    }

    .ticket-arrow {
      flex: 1;
      height: 1px;
      background: rgba(255, 255, 255, .25);
      position: relative;
    }

    .ticket-arrow::after {
      content: "";
      position: absolute;
      right: 0;
      top: -4px;
      width: 9px;
      height: 9px;
      border-top: 1px solid rgba(255, 255, 255, .5);
      border-right: 1px solid rgba(255, 255, 255, .5);
      transform: rotate(45deg);
    }

    .ticket-divider {
      margin: 26px 0;
      height: 0;
      border-top: 1px dashed rgba(255, 255, 255, .28);
    }

    .ticket-rows {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px 20px;
    }

    .ticket-row-label {
      font-family: var(--mono);
      font-size: 10.5px;
      color: rgba(255, 255, 255, .5);
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 4px;
    }

    .ticket-row-val {
      font-family: var(--mono);
      font-size: 14px;
      font-weight: 600;
    }

    .ticket-barcode {
      margin-top: 26px;
      height: 34px;
      background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .55) 0 2px, transparent 2px 5px, rgba(255, 255, 255, .3) 5px 6px, transparent 6px 9px);
      border-radius: 4px;
    }

    @media(min-width:860px) {
      .hero-grid {
        grid-template-columns: 1.05fr .95fr;
      }
    }

    /* ---------- QUICK ANSWER ---------- */
    .quick-answer {
      padding: 8px 0 52px;
    }

    .qa-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 36px clamp(22px, 4vw, 46px);
      box-shadow: var(--shadow);
    }

    .qa-card .eyebrow {
      margin-bottom: 14px;
    }

    .qa-answer {
      font-size: 18px;
      color: var(--ink);
      max-width: 820px;
      margin-top: 16px;
      line-height: 1.7;
    }

    .qa-jump {
      margin-top: 22px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 700;
      font-size: 14.5px;
      color: var(--brand);
      text-decoration: none;
    }

    .qa-jump svg {
      transition: transform .15s;
    }

    .qa-jump:hover svg {
      transform: translateY(3px);
    }

    /* ---------- SECTION GENERIC ---------- */
    section {
      padding: 60px 0;
    }

    section.alt {
      background: var(--soft);
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 34px;
    }

    /* ---------- PRICING TABLE ---------- */
    .pricing-block {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      border: 1px solid var(--line);
      overflow: hidden;
      position: relative;
    }

    .pricing-block::before,
    .pricing-block::after {
      content: "";
      position: absolute;
      top: 0;
      width: 26px;
      height: 26px;
      background: var(--soft);
      border-radius: 50%;
      transform: translateY(-50%);
    }

    .pricing-block::before {
      left: 36px;
    }

    .pricing-block::after {
      right: 36px;
    }

    .pricing-scroll {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    table.price-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 640px;
    }

    .price-table caption {
      text-align: left;
      padding: 28px clamp(20px, 4vw, 40px) 4px;
      font-family: var(--mono);
      font-size: 12px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .price-table thead th {
      text-align: left;
      padding: 16px clamp(20px, 4vw, 40px);
      font-size: 13px;
      font-family: var(--mono);
      text-transform: uppercase;
      letter-spacing: .05em;
      color: var(--muted);
      border-bottom: 1px solid var(--line);
      position: relative;
    }

    .price-table thead th.col-speed {
      text-align: center;
    }

    .speed-badges {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .price-table tbody th {
      text-align: left;
      padding: 20px clamp(20px, 4vw, 40px);
      font-family: var(--sans);
      font-weight: 700;
      font-size: 15.5px;
      color: var(--ink);
      background: var(--white);
      position: sticky;
      left: 0;
      border-right: 1px solid var(--line);
      white-space: nowrap;
    }

    .price-table tbody td {
      text-align: center;
      padding: 20px clamp(14px, 3vw, 32px);
      font-family: var(--mono);
      font-size: 17px;
      font-weight: 600;
      color: var(--ink);
    }

    .price-table tbody tr {
      border-bottom: 1px solid var(--line);
    }

    .price-table tbody tr:last-child {
      border-bottom: none;
    }

    .price-table tbody tr:hover td,
    .price-table tbody tr:hover th {
      background: var(--soft);
    }

    .row-badge {
      display: block;
      margin-top: 5px;
      font-family: var(--sans);
      font-size: 10.5px;
      font-weight: 700;
      color: var(--brand);
      text-transform: uppercase;
      letter-spacing: .04em;
    }

    .pricing-scroll-hint {
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: var(--mono);
      font-size: 11.5px;
      color: var(--muted);
      padding: 0 clamp(20px, 4vw, 40px) 6px;
    }

    .pricing-foot {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 26px clamp(20px, 4vw, 40px) 32px;
      border-top: 1px dashed var(--line);
      margin-top: 4px;
    }

    .pricing-foot p {
      font-size: 13.5px;
      max-width: 460px;
    }

    @media(min-width:860px) {
      .pricing-scroll-hint {
        display: none;
      }
    }

    /* ---------- 2x2 VISA TYPE GRID ---------- */
    .type-grid {
      display: grid;
      gap: 16px;
      margin-top: 8px;
    }

    @media(min-width:700px) {
      .type-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    .type-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 26px 26px 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .type-card .tc-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .type-card .tc-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--soft);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .type-card p {
      font-size: 14.5px;
    }

    .type-card a.tc-link {
      margin-top: auto;
      font-weight: 700;
      font-size: 14px;
      color: var(--brand);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .type-card a.tc-link:hover {
      text-decoration: underline;
    }

    /* ---------- SPEED CARDS ---------- */
    .speed-grid {
      display: grid;
      gap: 18px;
      margin-top: 8px;
    }

    @media(min-width:820px) {
      .speed-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .speed-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      position: relative;
    }

    .speed-card.is-featured {
      border-color: var(--ink);
    }

    .speed-card .sc-label {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .1em;
      color: var(--muted);
      text-transform: uppercase;
    }

    .speed-card h3 {
      font-family: var(--sans);
    }

    .speed-card p {
      font-size: 14.5px;
    }

    .speed-card a {
      margin-top: auto;
      font-weight: 700;
      font-size: 14px;
      color: var(--brand);
      text-decoration: none;
    }

    .speed-card a:hover {
      text-decoration: underline;
    }

    .speed-note {
      margin-top: 26px;
      background: var(--dark);
      color: var(--white);
      border-radius: var(--radius-md);
      padding: 20px 26px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .speed-note svg {
      flex-shrink: 0;
      margin-top: 2px;
    }

    .speed-note p {
      color: rgba(255, 255, 255, .72);
      font-size: 14px;
    }

    .speed-note strong {
      color: var(--white);
    }

    /* ---------- INCLUDED / NOT INCLUDED ---------- */
    .incl-grid {
      display: grid;
      gap: 18px;
      margin-top: 8px;
    }

    @media(min-width:760px) {
      .incl-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    .incl-card {
      border-radius: var(--radius-md);
      padding: 26px 26px 22px;
      border: 1px solid var(--line);
      background: var(--white);
    }

    .incl-card.is-yes {
      border-top: 4px solid var(--ink);
    }

    .incl-card.is-maybe {
      border-top: 4px dashed var(--muted);
    }

    .incl-card h3 {
      font-family: var(--sans);
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: .04em;
      margin-bottom: 16px;
    }

    .incl-list {
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .incl-list li {
      display: flex;
      gap: 10px;
      font-size: 14.5px;
      color: var(--ink);
      align-items: flex-start;
      line-height: 1.5;
    }

    .incl-list li svg {
      flex-shrink: 0;
      margin-top: 3px;
    }

    .incl-note {
      font-size: 12.5px;
      color: var(--muted);
      font-style: italic;
      margin-top: 14px;
    }

    /* ---------- WHY PRICES DIFFER ---------- */
    .equation {
      margin-top: 30px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 28px 20px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 12px 16px;
    }

    .eq-item {
      font-family: var(--mono);
      font-size: 13px;
      font-weight: 600;
      text-align: center;
      background: var(--soft);
      border-radius: 14px;
      padding: 14px 18px;
      min-width: 120px;
    }

    .eq-plus {
      font-family: var(--serif);
      font-size: 22px;
      color: var(--muted);
    }

    .eq-equals {
      font-family: var(--serif);
      font-size: 26px;
      color: var(--brand);
    }

    .eq-result {
      font-family: var(--mono);
      font-size: 13px;
      font-weight: 700;
      background: var(--ink);
      color: var(--white);
      border-radius: 14px;
      padding: 14px 20px;
      text-align: center;
      min-width: 150px;
    }

    .variable-list {
      margin: 26px 0 0;
      padding: 0;
      display: grid;
      gap: 14px;
    }

    @media(min-width:700px) {
      .variable-list {
        grid-template-columns: 1fr 1fr;
      }
    }

    .variable-list li {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 18px 20px;
    }

    .variable-num {
      font-family: var(--mono);
      font-weight: 700;
      color: var(--brand);
      font-size: 14px;
      flex-shrink: 0;
    }

    .variable-list p {
      font-size: 14px;
      margin-top: 4px;
    }

    .variable-list strong {
      color: var(--ink);
      font-size: 15px;
    }

    /* ---------- TRUST SECTIONS (refund / approval) ---------- */
    .trust-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 34px clamp(22px, 4vw, 42px);
    }

    .trust-card .qa-answer {
      font-size: 17px;
    }

    .trust-card.dark {
      background: var(--dark);
      color: var(--white);
    }

    .trust-card.dark .qa-answer {
      color: var(--white);
    }

    .trust-card.dark p {
      color: rgba(255, 255, 255, .72);
    }

    .trust-link {
      margin-top: 22px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 700;
      color: var(--brand);
      text-decoration: none;
      font-size: 14.5px;
    }

    .trust-card.dark .trust-link {
      color: var(--accent);
    }

    .trust-link:hover {
      text-decoration: underline;
    }

    /* ---------- PAYMENT ---------- */
    .payment-inner {
      display: grid;
      gap: 32px;
      align-items: center;
    }

    @media(min-width:860px) {
      .payment-inner {
        grid-template-columns: 1fr .8fr;
      }
    }

    .payment-copy .btn {
      margin-top: 22px;
    }

    .payment-visual {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 26px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .payment-step {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .payment-step-num {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--soft);
      color: var(--ink);
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .payment-step p {
      font-size: 13.5px;
    }

    /* ---------- FAQ ---------- */
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 8px;
    }

    .faq-item {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      overflow: hidden;
    }

    .faq-item summary {
      cursor: pointer;
      padding: 20px clamp(18px, 3vw, 28px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-weight: 700;
      font-size: 15.5px;
    }

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

    .faq-chevron {
      flex-shrink: 0;
      transition: transform .2s ease;
    }

    .faq-item[open] .faq-chevron {
      transform: rotate(180deg);
    }

    .faq-body {
      padding: 0 clamp(18px, 3vw, 28px) 22px;
    }

    .faq-body p {
      font-size: 14.5px;
    }

    /* ---------- EXPLORE OPTIONS ---------- */
    .explore-grid {
      display: grid;
      gap: 12px;
      margin-top: 8px;
      grid-template-columns: 1fr;
    }

    @media(min-width:640px) {
      .explore-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(min-width:960px) {
      .explore-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .explore-link {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 20px;
      text-decoration: none;
      color: var(--ink);
      display: flex;
      flex-direction: column;
      gap: 8px;
      transition: border-color .15s;
    }

    .explore-link:hover {
      border-color: var(--brand);
    }

    .explore-link .el-label {
      font-weight: 700;
      font-size: 14.5px;
    }

    .explore-link .el-arrow {
      font-family: var(--mono);
      font-size: 13px;
      color: var(--brand);
    }

    /* ---------- FINAL CTA ---------- */
    .final-cta {
      background: var(--dark);
      border-radius: var(--radius-lg);
      padding: 56px clamp(24px, 6vw, 64px);
      text-align: center;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(600px 220px at 50% 0%, rgba(255, 192, 0, .10), transparent 70%);
    }

    .final-cta h2 {
      color: var(--white);
      position: relative;
    }

    .final-cta p {
      color: rgba(255, 255, 255, .72);
      max-width: 520px;
      margin: 16px auto 0;
      position: relative;
      font-size: 16px;
    }

    .final-cta .btn {
      margin-top: 28px;
      position: relative;
    }

    

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
