    /* ===== Fonts (local, shared with main marketing site) ===== */
    @font-face { font-family: 'Clash Display'; src: url('/assets/fonts/clash-display-600.woff2') format('woff2'); font-weight: 600; font-display: swap; font-style: normal; }
    @font-face { font-family: 'Clash Display'; src: url('/assets/fonts/clash-display-700.woff2') format('woff2'); font-weight: 700; font-display: swap; font-style: normal; }
    @font-face { font-family: 'Satoshi'; src: url('/assets/fonts/satoshi-400.woff2') format('woff2'); font-weight: 400; font-display: swap; font-style: normal; }
    @font-face { font-family: 'Satoshi'; src: url('/assets/fonts/satoshi-500.woff2') format('woff2'); font-weight: 500; font-display: swap; font-style: normal; }
    @font-face { font-family: 'Satoshi'; src: url('/assets/fonts/satoshi-700.woff2') format('woff2'); font-weight: 700; font-display: swap; font-style: normal; }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }
    body {
      background: rgb(5, 5, 5);
      color: #fff;
      font-family: 'Satoshi', sans-serif;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }

    /* ===== Sparkle Stars Background ===== */
    .trail-canvas { position: fixed; inset: 0; pointer-events: none; z-index: 0; }

    /* Sections sit above stars */
    .hero, .pricing-section, .compare-section, .addons-section, .payment-section, .faq-section, .closing-section, footer {
      position: relative; z-index: 1;
    }

    /* ===== NAVBAR (shared with main marketing site) ===== */
    .nav-left { display: flex; align-items: center; gap: 30px; }
    .lang-nav { display: flex; align-items: center; gap: 5px; }
    .lang-nav a { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.55); transition: color 0.3s; letter-spacing: 0.03em; }
    .lang-nav a:hover { color: #fff; }
    .lang-nav a.lang-active { color: rgba(255,255,255,0.75); pointer-events: none; }
    .lang-nav-sep { font-size: 11px; color: rgba(255,255,255,0.12); user-select: none; }
    .nav-mobile-socials .lang-mobile-link {
      display: flex; align-items: center; justify-content: center; position: absolute; right: 4px; top: 50%;
      transform: translateY(-50%); width: 30px !important; min-width: 30px !important; max-width: 30px !important;
      height: 30px !important; font-size: 10px !important; font-weight: 700; color: rgba(255,255,255,0.6);
      transition: color 0.3s, border-color 0.3s; letter-spacing: 0.02em; padding: 0 !important;
      border: 1.5px solid rgba(255,255,255,0.4) !important; border-radius: 9px; box-sizing: border-box;
    }
    .nav-mobile-socials .lang-mobile-link:hover { color: rgba(255,255,255,0.8) !important; border-color: rgba(255,255,255,0.6) !important; }
    .nav {
      position: fixed; top: 16px; left: 50%; transform: translateX(-50%); z-index: 1000;
      display: flex; align-items: center; justify-content: space-between; width: min(1380px, 90vw);
      padding: 12px 24px; background: rgba(5,5,5,0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.08); border-radius: 9999px;
    }
    .nav-logo { display: flex; align-items: center; gap: 10px; }
    .nav-logo img { width: 30px; height: 30px; border-radius: 6px; }
    .nav-logo span { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
    .nav-links { display: flex; align-items: center; gap: 40px; }
    .nav-links a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.7); transition: color 0.3s; }
    .nav-links a:hover { color: #fff; }
    .nav-cta { font-size: 14px; font-weight: 600; color: #fff; background: rgb(5,5,5); padding: 10px 22px;
      border-radius: 9999px; border: 1px solid rgba(255,255,255,0.2); transition: none; }
    .nav-links a.nav-cta:hover { background: #fff; color: #000; border-color: #fff; }
    .nav-burger { display: none; width: 40px; height: 40px; background: none; border: none; cursor: pointer;
      flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 0; z-index: 10; }
    .burger-line { display: block; width: 20px; height: 2px; background: #fff; border-radius: 1px;
      transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s; }
    .nav-burger.open { background: #fff; border-radius: 10px; }
    .nav-burger.open .burger-line { background: #000; }
    .nav-burger.open .burger-line-1 { transform: translateY(5px) rotate(45deg); }
    .nav-burger.open .burger-line-2 { transform: translateY(-5px) rotate(-45deg); }
    .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.08);
      backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); will-change: backdrop-filter; z-index: 999; }
    .nav-overlay.open { display: block; }
    .nav-mobile-socials { display: none; }
    @media (max-width: 810px) {
      .lang-nav { display: none; }
      .nav { width: 100%; top: 0; border-radius: 0; padding: 16px 20px; background: rgba(5,5,5,0.95);
        backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: none;
        border-bottom: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; transition: border-radius 0.35s ease; }
      .nav.menu-open { border-radius: 0 0 24px 24px; }
      .nav-burger { display: flex; }
      .nav-links { display: none; flex-direction: column; align-items: stretch; gap: 0; width: 100%;
        padding-top: 16px; margin-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
      .nav-links.open { display: flex; }
      .nav-links a { width: 100%; padding: 14px 8px; font-size: 17px; font-weight: 500;
        color: rgba(255,255,255,0.6); border: none; background: none; border-radius: 0; text-align: left; }
      .nav-links a.nav-cta { position: relative; margin-top: 20px; text-align: center; padding: 14px 22px;
        width: 100%; display: block; font-size: 18px; font-weight: 500; color: #fff;
        background: linear-gradient(90deg,#00D4FF,#7F00FF); border: none; border-radius: 9999px; overflow: hidden; isolation: isolate; }
      .nav-links a.nav-cta::before { content: ''; position: absolute; inset: -400%; border-radius: 50%;
        background: conic-gradient(transparent 40%, rgba(255,255,255,0.8) 50%, transparent 60%); animation: spin-border 3s linear infinite; z-index: -2; }
      .nav-links a.nav-cta::after { content: ''; position: absolute; inset: 3px; border-radius: 9999px;
        background: linear-gradient(90deg,#00D4FF,#7F00FF); z-index: -1; transition: background 0.3s; }
      .nav-links a.nav-cta:hover { color: #000; }
      .nav-links a.nav-cta:hover::after { background: #fff; }
      .nav-mobile-socials { position: relative; display: flex; justify-content: center; gap: 20px; width: 100%;
        padding-top: 20px; padding-bottom: 16px; margin-top: 8px; }
      .nav-mobile-socials a { display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4);
        padding: 0 !important; font-size: 0; width: auto !important; text-align: center; }
      .nav-mobile-socials a:hover { color: rgba(255,255,255,0.8); }
    }

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

    /* ===== Hero ===== */
    /* min-height/display explicitly reset: the live site's global .hero (min-height:100vh) must not leak in */
    .hero { padding: 160px 24px 24px; text-align: center; min-height: 0; display: block; }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 9px;
      padding: 8px 18px; border-radius: 99px;
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
      font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
      color: rgba(255,255,255,0.7);
    }
    .eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: linear-gradient(135deg,#00D4FF,#7F00FF); }
    .section-eyebrow { text-align: center; margin-bottom: 20px; }
    .hero h1 {
      font-family: 'Clash Display', sans-serif; font-weight: 600;
      font-size: clamp(40px, 6vw, 72px); line-height: 1.05; letter-spacing: -0.02em;
      max-width: 16ch; margin: 26px auto 22px;
    }
    .grad-text {
      background: linear-gradient(90deg,#00D4FF,#7F00FF);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent; color: transparent;
    }
    .hero .sub {
      font-size: clamp(17px, 2vw, 20px); font-weight: 500;
      color: rgba(255,255,255,0.65); max-width: 60ch; margin: 0 auto; line-height: 1.6;
    }

    /* ===== Section titles ===== */
    .section-title {
      font-family: 'Clash Display', sans-serif; font-weight: 600;
      font-size: clamp(34px, 5vw, 60px); text-align: center; line-height: 1.08;
      margin-bottom: 18px; letter-spacing: -0.02em;
    }
    .section-sub {
      text-align: center; font-size: 18px; font-weight: 500;
      color: rgba(255,255,255,0.6); max-width: 60ch; margin: 0 auto 56px; line-height: 1.6;
    }

    /* ===== PRICING: SPOTLIGHT CARDS (from main site) ===== */
    /* No overflow:hidden, so the blurred core glow feathers softly into neighbouring
       sections instead of being clipped to a hard horizontal edge. */
    .pricing-section { padding: 56px 24px 100px; position: relative; overflow: visible; }
    .pricing-core-glow {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      width: min(90%, 1100px); height: 560px;
      background: radial-gradient(ellipse at 50% 50%, rgba(0,212,255,0.55) 0%, rgba(127,0,255,0.4) 38%, transparent 72%);
      filter: blur(130px); opacity: 0.55; pointer-events: none; z-index: 0; border-radius: 50%;
      animation: pricing-pulse 4s ease-in-out infinite;
    }
    @keyframes pricing-pulse {
      0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.55; }
      50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.65; }
    }
    .pricing-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
      max-width: 1300px; margin: 0 auto; position: relative; z-index: 2;
    }
    .price-card {
      border-radius: 24px; padding: 40px 32px; position: relative;
      display: flex; flex-direction: column; cursor: default;
      isolation: isolate; transform: translateZ(0); transition: transform 0.3s;
    }
    .price-card:hover { transform: scale(1.02) translateY(-12px); }
    .price-card-bg {
      position: absolute; inset: 0; border-radius: 24px;
      background: rgba(0,0,0,0.6); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.08); z-index: 0;
    }
    .price-card.featured .price-card-bg { border: none; }
    .price-card-popular-glow {
      position: absolute; inset: -2px; border-radius: 26px;
      background: linear-gradient(135deg,#00D4FF,#7F00FF); z-index: -1; filter: blur(4px); opacity: 0;
    }
    .price-card.featured .price-card-popular-glow { opacity: 0.4; }
    .price-card-spotlight {
      position: absolute; inset: 0; border-radius: 24px;
      background: linear-gradient(135deg,#00D4FF,#7F00FF); z-index: 1; opacity: 0; pointer-events: none;
      transition: opacity 0.3s;
      mask: radial-gradient(300px circle at var(--mx,50%) var(--my,50%), black, transparent);
      -webkit-mask: radial-gradient(300px circle at var(--mx,50%) var(--my,50%), black, transparent);
    }
    .price-card:hover .price-card-spotlight { opacity: 0.8; }
    .price-card-inner-glow {
      position: absolute; inset: 0; border-radius: 24px; pointer-events: none; z-index: 2;
      opacity: 0; transition: opacity 0.3s;
      background: radial-gradient(400px circle at var(--mx,50%) var(--my,50%), rgba(0,212,255,0.12), transparent 80%);
    }
    .price-card:hover .price-card-inner-glow { opacity: 1; }
    .price-card-content { position: relative; z-index: 3; display: flex; flex-direction: column; height: 100%; }
    .popular-badge {
      position: absolute; top: -8px; right: 0; padding: 6px 14px; border-radius: 99px;
      background: linear-gradient(90deg,#00D4FF,#7F00FF); font-size: 11px; font-weight: 700; color: #fff;
      text-transform: uppercase; letter-spacing: 0.05em; box-shadow: 0 0 20px rgba(0,212,255,0.25);
    }
    .price-name { font-family: 'Satoshi', sans-serif; font-size: 24px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 8px; }
    .price-tagline { font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
    .price-amount { font-family: 'Clash Display', sans-serif; font-size: clamp(34px, 4vw, 46px); font-weight: 600; letter-spacing: -1px; line-height: 1; }
    .price-amount .prefix { font-family: 'Satoshi', sans-serif; font-size: 17px; font-weight: 500; color: rgba(255,255,255,0.55); letter-spacing: 0; margin-right: 6px; vertical-align: baseline; }
    .price-meta { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.45); margin-top: 10px; }
    .price-abo { display: block; margin: 16px 0 4px; padding: 16px 18px; border-radius: 14px; background: linear-gradient(135deg, rgba(0,212,255,0.18), rgba(127,0,255,0.26)); border: 1.5px solid rgba(255,255,255,0.7); box-shadow: 0 0 26px rgba(127,0,255,0.30); text-align: left; }
    .price-abo-tag { display: inline-block; font-family: 'Satoshi', sans-serif; font-size: 10.5px; font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase; color: #fff; background: linear-gradient(135deg, #00D4FF, #7F00FF); padding: 3px 9px; border-radius: 6px; margin-bottom: 10px; }
    .price-abo-main { display: block; font-family: 'Clash Display', sans-serif; font-size: 19px; font-weight: 600; color: #fff; letter-spacing: -0.3px; line-height: 1.3; }
    .price-abo-main em { font-style: normal; font-weight: 500; color: rgba(255,255,255,0.5); margin: 0 3px; }
    .price-abo-per { font-family: 'Satoshi', sans-serif; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.6); }
    .price-abo-sub { display: block; font-family: 'Satoshi', sans-serif; font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 5px; }
    .price-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.1); margin: 28px 0 32px; }
    .price-features { list-style: none; display: flex; flex-direction: column; gap: 18px; flex: 1; margin-bottom: 40px; }
    .price-features li { display: flex; align-items: center; gap: 14px; font-size: 17px; font-weight: 500; color: rgba(255,255,255,0.9); line-height: 1.4; }
    .price-features li svg { width: 20px; height: 20px; flex-shrink: 0; }
    .check-base { stroke: rgba(255,255,255,0.3); transition: stroke 0.3s; }
    .price-card:hover .check-base { stroke: #fff; }
    .price-btn {
      display: flex; align-items: center; justify-content: center; padding: 18px 24px;
      border-radius: 9999px; font-size: 16px; font-weight: 700; color: #fff;
      background: rgb(5,5,5); border: 1px solid rgba(255,255,255,0.2); cursor: pointer;
    }
    .price-btn:hover { background: #fff; color: rgb(5,5,5); border-color: #fff; }
    .price-card.featured .price-btn { position: relative; background: rgb(5,5,5); border: none; overflow: hidden; isolation: isolate; }
    .price-card.featured .price-btn::before {
      content: ''; position: absolute; inset: -600%; border-radius: 50%;
      background: conic-gradient(rgba(255,255,255,0) 40%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 60%);
      animation: spin-border 3s linear infinite; z-index: -2;
    }
    .price-card.featured .price-btn::after { content: ''; position: absolute; inset: 3px; border-radius: 9999px; background: rgb(5,5,5); z-index: -1; }
    .price-card.featured .price-btn:hover { color: rgb(5,5,5); background: transparent; border: none; outline: 1px solid rgba(255,255,255,0.2); }
    .price-card.featured .price-btn:hover::after { background: #fff; }
    @keyframes spin-border { to { transform: rotate(360deg); } }

    /* ===== Comparison table ===== */
    .compare-section { padding: 80px 24px; }
    .table-shell {
      max-width: 1300px; margin: 0 auto; border-radius: 24px; overflow: hidden;
      background: rgba(0,0,0,0.6); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.08);
    }
    .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    table { width: 100%; border-collapse: collapse; min-width: 720px; }
    thead th {
      text-align: left; padding: 24px 26px; font-family: 'Clash Display', sans-serif; font-weight: 600;
      font-size: 17px; border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    thead th:not(:first-child) { text-align: center; }
    /* Only the Impact header cell gets the vivid gradient (text stays white) */
    th.col-impact { background-image: linear-gradient(180deg, rgba(0,212,255,0.45), rgba(127,0,255,0.45)); }
    /* Body cells under Impact keep the subtle flat tint (hover layers stack on top) */
    td.col-impact { background-color: rgba(110, 80, 210, 0.10); }
    .col-impact-label { display: inline-flex; align-items: center; gap: 8px; }
    .col-impact-label .mini-dot { width: 7px; height: 7px; border-radius: 50%; background: linear-gradient(135deg,#00D4FF,#7F00FF); }
    tbody td {
      padding: 17px 26px; font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.6);
      border-bottom: 1px solid rgba(255,255,255,0.06); transition: background-image 0.15s ease, box-shadow 0.15s ease;
    }
    tbody tr:last-child td { border-bottom: none; }
    tbody td:first-child { color: #fff; font-weight: 600; }
    tbody td:not(:first-child) { text-align: center; }
    /* Row highlight: background-image overlay stacks on top of the flat Impact tint */
    tbody tr:hover td { background-image: linear-gradient(rgba(255,255,255,0.05), rgba(255,255,255,0.05)); }
    /* Cell highlight: the exact cell (e.g. Impact x Animationen) pops with a soft ring */
    tbody td:hover {
      background-image: linear-gradient(rgba(255,255,255,0.11), rgba(255,255,255,0.11));
      box-shadow: inset 0 0 0 2px rgba(255,255,255,0.28);
    }
    .yes svg { width: 19px; height: 19px; vertical-align: middle; }
    .yes svg path { stroke: url(#tbl-check-grad); }
    /* "not included" marker: a short muted bar, not a long dash */
    .na { display: inline-block; width: 14px; height: 2px; border-radius: 2px; background: rgba(255,255,255,0.22); vertical-align: middle; }

    /* ===== Add-ons (FAQ-tile design) ===== */
    .addons-section { padding: 80px 24px; }
    /* Tiles + table share the same max width as the pricing grid above (1300px) */
    .tile-list { display: flex; flex-direction: column; gap: 24px; max-width: 1300px; margin: 0 auto; }
    /* Shared FAQ-style tile (sliding gradient border) */
    .gtile { position: relative; border-radius: 24px; cursor: pointer; transition: transform 0.3s ease; }
    .gtile:hover:not(.open) { transform: scale(1.015); }
    .gtile-glow {
      position: absolute; inset: -5px; border-radius: 28px; overflow: hidden; filter: blur(20px);
      z-index: -2; pointer-events: none; opacity: 0; transition: opacity 0.4s;
    }
    .gtile:hover .gtile-glow, .gtile.open .gtile-glow { opacity: 0.6; }
    .gtile-glow-track {
      position: absolute; top: 0; left: 0; width: 200%; height: 100%;
      background: linear-gradient(90deg,#00D4FF,#7F00FF,#00D4FF); animation: faq-slide 3s ease-in-out infinite alternate;
    }
    .gtile-border { position: absolute; inset: -1.5px; border-radius: 25px; overflow: hidden; z-index: -1; background: rgba(255,255,255,0.1); }
    .gtile-border-grad { position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s; }
    .gtile:hover .gtile-border-grad, .gtile.open .gtile-border-grad { opacity: 1; }
    .gtile-border-track {
      position: absolute; top: 0; left: 0; width: 200%; height: 100%;
      background: linear-gradient(90deg,#00D4FF,#7F00FF,#00D4FF); animation: faq-slide 3s ease-in-out infinite alternate;
    }
    @keyframes faq-slide { 0% { transform: translateX(0%); } 100% { transform: translateX(-50%); } }
    .gtile-content { position: relative; z-index: 2; background: rgb(5,5,5); border-radius: 24px; overflow: hidden; }
    .gtile-head {
      display: flex; align-items: center; justify-content: space-between; gap: 24px;
      width: 100%; padding: 24px 32px; font-size: 21px; font-weight: 700; font-family: 'Satoshi', sans-serif;
      color: #A3A3A3; text-align: left; background: transparent; border: none; transition: color 0.2s;
    }
    .gtile:hover .gtile-head { color: #fff; }
    .gtile.open .gtile-head .gtile-q {
      background: linear-gradient(90deg,#00D4FF,#7F00FF); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    }
    .gtile-head .gtile-right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
    .addon-price { font-family: 'Clash Display', sans-serif; font-weight: 600; font-size: 19px; white-space: nowrap; color: #fff; }
    .gtile-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s, color 0.3s; color: #A3A3A3; }
    .gtile:hover .gtile-icon, .gtile.open .gtile-icon { color: #fff; }
    .gtile.open .gtile-icon { transform: rotate(45deg); }
    .gtile-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-in-out; }
    .gtile.open .gtile-body { max-height: 400px; }
    .gtile-body-inner { padding: 0 32px 30px; font-size: 18px; font-weight: 500; color: #A3A3A3; line-height: 1.55; max-width: 95%; }

    /* ===== Payment ===== */
    .payment-section { padding: 80px 24px; text-align: center; }
    .chips { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; max-width: 1300px; margin: 0 auto; }
    .chip {
      position: relative; flex: 1; min-width: 300px; text-align: left; border-radius: 24px; padding: 44px 48px;
      background: rgba(0,0,0,0.6); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; gap: 28px;
    }
    .chip .pct { font-family: 'Clash Display', sans-serif; font-weight: 600; font-size: 64px; line-height: 1;
      background: linear-gradient(135deg,#00D4FF,#7F00FF); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
    .chip .chip-label strong { display: block; font-size: 19px; font-weight: 700; margin-bottom: 5px; }
    .chip .chip-label span { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.45; }
    .payment-note { max-width: 60ch; margin: 32px auto 0; font-size: 18px; font-weight: 500; color: rgba(255,255,255,0.6); line-height: 1.6; }

    /* ===== Website-Abo detail ===== */
    .abo-section { padding: 80px 24px; }
    .abo-card { position: relative; max-width: 1300px; margin: 0 auto; border-radius: 24px; padding: 44px 48px; background: rgba(0,0,0,0.6); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(127,0,255,0.25); }
    .abo-card-head { display: flex; flex-wrap: wrap; gap: 12px 40px; align-items: baseline; padding-bottom: 26px; margin-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .abo-price-recap { font-family: 'Satoshi', sans-serif; font-size: 17px; font-weight: 500; color: rgba(255,255,255,0.85); }
    .abo-price-recap strong { font-family: 'Clash Display', sans-serif; font-weight: 600; background: linear-gradient(90deg,#00D4FF,#7F00FF); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
    .abo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
    .abo-col h3 { font-family: 'Clash Display', sans-serif; font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 20px; }
    .abo-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
    .abo-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.9); line-height: 1.45; }
    .abo-list li svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px; }
    .abo-list.included li svg path { stroke: url(#tbl-check-grad); }
    .abo-list.excluded li { color: rgba(255,255,255,0.62); }
    .abo-list.excluded li svg { color: rgba(255,255,255,0.35); }
    .abo-foot { margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.6); line-height: 1.6; }
    .abo-foot strong { color: rgba(255,255,255,0.9); font-weight: 600; }
    @media (max-width: 720px) { .abo-grid { grid-template-columns: 1fr; gap: 30px; } .abo-card { padding: 32px 24px; } }

    /* ===== FAQ ===== */
    .faq-section { padding: 80px 24px 60px; max-width: none; }

    /* ===== Closing note ===== */
    .closing-section { padding: 40px 24px 90px; }
    .closing-card {
      position: relative; max-width: 1300px; margin: 0 auto; border-radius: 24px; isolation: isolate;
      overflow: hidden; border: 1px solid rgba(255,255,255,0.10);
    }
    /* Cinematic animated gradient, same as the Selected Work background on the main site */
    .closing-card::before {
      content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
      background: linear-gradient(-45deg, #00D4FF, #4B35FF, #B800FF, #00D4FF);
      background-size: 400% 400%; animation: cinematic-gradient 15s linear infinite;
    }
    @keyframes cinematic-gradient {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    /* Subtle dark veil so white text stays readable on the bright gradient */
    .closing-glow { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: rgba(5,5,5,0.22); }
    .closing-inner { position: relative; z-index: 1; text-align: center; padding: 72px 32px; }
    .closing-title { font-family: 'Clash Display', sans-serif; font-weight: 600; font-size: clamp(30px, 4vw, 48px); letter-spacing: -0.02em; margin-bottom: 18px; color: #fff; }
    .closing-text { font-size: 18px; font-weight: 500; color: rgba(255,255,255,0.92); line-height: 1.6; max-width: 60ch; margin: 0 auto 36px; }
    .closing-btn {
      position: relative; display: inline-flex; align-items: center; justify-content: center;
      padding: 18px 40px; border-radius: 9999px; font-size: 17px; font-weight: 700; color: #fff;
      background: rgb(5,5,5); border: none; overflow: hidden; isolation: isolate; cursor: pointer;
    }
    .closing-btn::before {
      content: ''; position: absolute; inset: -300%; border-radius: 50%;
      background: conic-gradient(rgba(255,255,255,0) 40%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 60%);
      animation: spin-border 3s linear infinite; z-index: -2;
    }
    .closing-btn::after { content: ''; position: absolute; inset: 2px; border-radius: 9999px; background: rgb(5,5,5); z-index: -1; transition: background 0.3s; }
    .closing-btn:hover { color: rgb(5,5,5); }
    .closing-btn:hover::after { background: #fff; }

    /* ===== Footer (shared with main marketing site) ===== */
    .footer { padding: 20px 40px 40px; display: flex; align-items: center; justify-content: space-between; max-width: 1380px; margin: 24px auto 0; }
    .footer-left { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6); }
    .footer-left a { transition: color 0.3s; }
    .footer-left a:hover { color: rgba(255,255,255,0.8); }
    .footer-center { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6); }
    .footer-center a { transition: color 0.3s; }
    .footer-center a:hover { color: rgba(255,255,255,0.8); }
    .footer-right { display: flex; align-items: center; }
    .footer-socials { display: flex; align-items: center; gap: 16px; }
    .footer-socials a { display: flex; align-items: center; color: rgba(255,255,255,0.6); transition: color 0.3s; }
    .footer-socials a:hover { color: rgba(255,255,255,0.8); }

    /* ===== Focus visibility ===== */
    a:focus-visible, button:focus-visible, .gtile:focus-visible, .table-scroll:focus-visible {
      outline: 2px solid #00D4FF; outline-offset: 4px; border-radius: 10px;
    }

    /* ===== Responsive ===== */
    @media (max-width: 920px) {
      .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
      .price-card.featured { order: -1; }
    }
    @media (max-width: 600px) {
      .hero { padding: 120px 20px 30px; }
      .pricing-section, .compare-section, .addons-section, .payment-section, .faq-section { padding-top: 56px; padding-bottom: 56px; }
      .gtile-head { font-size: 18px; padding: 20px 22px; }
      .gtile-head .gtile-right { gap: 12px; }
      .addon-price { font-size: 16px; }
      .gtile-body-inner { padding: 0 22px 26px; font-size: 16px; }
      .price-abo-main { font-size: 17px; }
      .chips { flex-direction: column; gap: 16px; flex-wrap: nowrap; }
      .chip { min-width: 0; width: 100%; padding: 24px 22px; gap: 18px; }
      .chip .pct { font-size: 44px; flex-shrink: 0; }
      .chip .chip-label { min-width: 0; }
      .chip .chip-label strong { font-size: 17px; }
      .chip .chip-label span { font-size: 14px; }
      /* Footer stacks like the main marketing site */
      .footer { flex-wrap: wrap; justify-content: space-between; padding: 20px 20px 40px; gap: 16px; }
      .footer-left { order: 1; }
      .footer-right { order: 2; }
      .footer-center { order: 3; width: 100%; text-align: center; }
    }

    /* ===== Reduced motion ===== */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
      .price-card:hover { transform: none; }
    }
