:root {
      --ink:        #2E2A3D;
      --ink-soft:   #625C77;
      --canvas:     #FFF9EE;
      --canvas-2:   #FFF2DC;

      --sun:        #FF9F1C;
      --sun-deep:   #E6850A;
      --berry:      #E4536B;
      --leaf:       #2FA36B;
      --sky:        #2E8FC9;
      --grape:      #7C5CBF;
      --sun-100:    #FFE9C2;
      --berry-100:  #FBDEE3;
      --leaf-100:   #D9F1E3;
      --sky-100:    #DCEEFA;
      --grape-100:  #E9E1F7;

      --white:      #FFFFFF;
      --line:       rgba(46,42,61,0.10);
      --shadow-sm:  0 2px 10px rgba(46,42,61,0.06);
      --shadow-md:  0 10px 30px rgba(46,42,61,0.10);
      --shadow-lg:  0 20px 50px rgba(46,42,61,0.14);

      --radius-sm:  12px;
      --radius-md:  20px;
      --radius-lg:  28px;
      --ease: cubic-bezier(.22,.61,.36,1);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Vazirmatn', sans-serif;
      background: var(--canvas);
      color: var(--ink);
      line-height: 1.8;
      overflow-x: hidden;
    }
    h1, h2, h3, h4, .brand, .btn, .chip, .nav a, .stat-num {
      font-family: 'Baloo Bhaijaan 2', 'Vazirmatn', sans-serif;
    }
    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    button { font: inherit; cursor: pointer; border: none; background: none; }
    section { position: relative; }
    .wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

    .bg-field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
    .bg-field span { position: absolute; border-radius: 50%; opacity: 0.4; }

    /* ===================== Navbar ===================== */
    .nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255, 249, 238, 0.92);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
    }
    .nav-inner {
      max-width: 1180px; margin: 0 auto; padding: 12px 24px;
      display: flex; align-items: center; justify-content: space-between; gap: 24px;
    }
    .brand {
      display: flex; align-items: center; gap: 10px;
      font-weight: 800; font-size: 24px; color: var(--ink);
    }
    .brand img { width: 42px; height: 42px; object-fit: contain; border-radius: 50%; }
    .nav-links { display: flex; align-items: center; gap: 6px; }
    .nav-links a {
      padding: 10px 16px; border-radius: 100px; font-weight: 600; font-size: 15px;
      color: var(--ink-soft); transition: background .2s var(--ease), color .2s var(--ease);
    }
    .nav-links a:hover { background: var(--sun-100); color: var(--sun-deep); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }
    .nav-ghost { font-weight: 600; font-size: 15px; color: var(--ink-soft); padding: 10px 12px; }

    .burger {
      display: none; flex-direction: column; gap: 6px;
      width: 30px; height: 24px; justify-content: center; z-index: 101;
    }
    .burger span {
      width: 100%; height: 3px; background: var(--ink); border-radius: 4px;
      transition: transform .3s var(--ease), opacity .3s var(--ease);
    }
    .burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .burger.open span:nth-child(2) { opacity: 0; }
    .burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .mobile-drawer {
      position: fixed; inset: 0; background: var(--canvas); z-index: 99;
      display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 20px;
      transform: translateX(100%); transition: transform 0.4s var(--ease);
    }
    .mobile-drawer.open { transform: translateX(0); }
    .mobile-drawer a {
      font-size: 22px; font-weight: 700; color: var(--ink);
      padding: 10px 20px; border-radius: 100px;
    }
    .mobile-drawer a:hover { background: var(--sun-100); }

    /* ===================== Buttons ===================== */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 14px 28px; border-radius: 100px; font-weight: 700; font-size: 16px;
      transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--sun); color: #fff; box-shadow: 0 4px 0 var(--sun-deep);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--sun-deep), var(--shadow-sm); }
    .btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--sun-deep); }
    .btn-outline {
      background: #fff; color: var(--ink); border: 2px solid var(--line);
    }
    .btn-outline:hover { border-color: var(--sky); color: var(--sky); transform: translateY(-2px); }
    .btn-sm { padding: 10px 20px; font-size: 14px; }
    .btn-light {
      background: #fff; color: var(--grape); box-shadow: 0 4px 0 rgba(0,0,0,.12);
    }
    .btn-light:hover { transform: translateY(-2px); }

    .chip {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--white); border: 1px solid var(--line); border-radius: 100px;
      padding: 8px 16px; font-weight: 600; font-size: 13px; color: var(--ink-soft); box-shadow: var(--shadow-sm);
    }
    .chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); }

    /* ===================== Hero ===================== */
    .hero {
      min-height: min(88vh, 820px);
      padding: 48px 0 56px;
      overflow: hidden;
      display: flex; align-items: center;
      background:
        radial-gradient(ellipse 70% 60% at 85% 40%, rgba(46,143,201,.16), transparent 60%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(255,159,28,.14), transparent 55%),
        linear-gradient(180deg, var(--canvas) 0%, var(--canvas-2) 100%);
    }
    .hero-grid {
      display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 36px;
      position: relative; z-index: 1; width: 100%;
    }
    .brand-hero {
      font-family: 'Baloo Bhaijaan 2', sans-serif;
      font-size: clamp(42px, 7vw, 72px);
      font-weight: 800; line-height: 1.1;
      color: var(--ink); margin-bottom: 10px;
      letter-spacing: -0.02em;
    }
    .brand-hero img {
      display: inline-block; vertical-align: middle;
      width: clamp(48px, 6vw, 68px); height: auto; margin-inline-end: 10px;
      border-radius: 50%;
    }
    .hero h1 {
      font-size: clamp(22px, 3.2vw, 34px); line-height: 1.45; font-weight: 800;
      color: var(--ink); margin-bottom: 16px;
    }
    .hero h1 .hl { color: var(--sun); }
    .hero p.lead { font-size: 17px; color: var(--ink-soft); max-width: 520px; margin-bottom: 26px; }
    .hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
    .hero-notes { display: flex; flex-direction: column; gap: 10px; max-width: 520px; }
    .hero-notes p {
      font-size: 13.5px; color: var(--ink-soft); display: flex; gap: 8px; align-items: flex-start;
    }
    .hero-notes .mark {
      flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
      background: var(--leaf-100); color: var(--leaf);
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 800; margin-top: 2px;
    }

    .hero-art {
      position: relative; width: 100%; max-width: 520px; justify-self: center;
    }
    .hero-art img.illu {
      width: 100%; height: auto; margin: 0 auto;
      border-radius: 50%;
      filter: drop-shadow(0 18px 30px rgba(46,42,61,.12));
    }
    /* ===================== Trust ===================== */
    .trust { padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .trust-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
    .trust-item { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-weight: 600; font-size: 14px; }
    .trust-item svg { width: 22px; height: 22px; color: var(--leaf); flex-shrink: 0; }

    /* ===================== Section heading ===================== */
    .section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
    .section-head .eyebrow {
      display: inline-block; font-weight: 700; font-size: 13px;
      color: var(--grape); background: var(--grape-100); padding: 6px 16px; border-radius: 100px; margin-bottom: 14px;
    }
    .section-head h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; margin-bottom: 12px; }
    .section-head p { color: var(--ink-soft); font-size: 16px; }

    /* ===================== How it works ===================== */
    .how { padding: 80px 0; }
    .how-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
      position: relative;
    }
    .how-grid::before {
      content: ''; position: absolute; top: 70px; right: 12%; left: 12%; height: 3px;
      background: linear-gradient(90deg, var(--sun), var(--sky), var(--leaf));
      opacity: .35; border-radius: 2px; z-index: 0;
    }
    .how-step {
      text-align: center; position: relative; z-index: 1;
      padding: 8px 10px;
    }
    .how-illu {
      width: 160px; height: 160px; margin: 0 auto 18px;
      background: var(--white); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: var(--shadow-md); border: 4px solid var(--canvas);
      transition: transform .25s var(--ease);
      overflow: hidden;
    }
    .how-step:hover .how-illu { transform: translateY(-6px); }
    .how-illu img { width: 92%; height: auto; object-fit: contain; border-radius: 12px; }
    .how-index {
      display: inline-flex; align-items: center; justify-content: center;
      width: 28px; height: 28px; border-radius: 50%; background: var(--sun); color: #fff;
      font-weight: 800; font-size: 14px; margin-bottom: 10px;
    }
    .how-step h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
    .how-step p { font-size: 14.5px; color: var(--ink-soft); max-width: 260px; margin: 0 auto; }
    .how-cta { text-align: center; margin-top: 44px; }

    /* ===================== Popular cartoons ===================== */
    .popular { padding: 40px 0 80px; }
    .popular-head {
      display: flex; align-items: end; justify-content: space-between; gap: 16px;
      margin-bottom: 28px; flex-wrap: wrap;
    }
    .popular-head .section-head { margin: 0; text-align: right; max-width: none; }
    .cartoon-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
    }
    .cartoon-card {
      display: block; border-radius: var(--radius-md); overflow: hidden;
      background: var(--white); border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
      transition: transform .22s var(--ease), box-shadow .22s var(--ease);
    }
    .cartoon-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
    .cartoon-card .thumb {
      aspect-ratio: 16/10; overflow: hidden; background: var(--sky-100);
    }
    .cartoon-card .thumb img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .35s var(--ease);
    }
    .cartoon-card:hover .thumb img { transform: scale(1.05); }
    .cartoon-card .meta { padding: 14px 14px 16px; }
    .cartoon-card .tag {
      display: inline-block; font-size: 11px; font-weight: 700;
      padding: 3px 10px; border-radius: 100px; margin-bottom: 8px;
      background: var(--sun-100); color: var(--sun-deep);
    }
    .cartoon-card .tag.edu { background: var(--grape-100); color: var(--grape); }
    .cartoon-card h3 {
      font-size: 14.5px; font-weight: 700; line-height: 1.55;
      display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    }
    .cartoon-card .views { font-size: 12px; color: var(--ink-soft); margin-top: 6px; }

    /* ===================== Stats ===================== */
    .stats {
      padding: 36px 0;
      background: linear-gradient(135deg, var(--grape), var(--sky));
      color: #fff;
    }
    .stats-inner {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center;
    }
    .stat-num { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.2; }
    .stat-label { font-size: 14px; opacity: .88; margin-top: 4px; }

    /* ===================== Features ===================== */
    .features { padding: 80px 0; }
    .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .feat {
      padding: 28px 24px; border-radius: var(--radius-lg);
      background: var(--white); border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
      transition: transform .22s var(--ease), box-shadow .22s var(--ease);
    }
    .feat:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
    .feat-icon {
      width: 52px; height: 52px; border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px; font-size: 24px;
    }
    .feat h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
    .feat p { font-size: 14.5px; color: var(--ink-soft); }

    /* ===================== Categories ===================== */
    .cats { padding: 40px 0 80px; }
    .cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .cat {
      display: flex; flex-direction: column; gap: 14px;
      padding: 32px 28px; border-radius: var(--radius-lg);
      min-height: 240px; position: relative; overflow: hidden;
      color: var(--ink); border: 1px solid var(--line);
      transition: transform .22s var(--ease);
    }
    .cat:hover { transform: translateY(-4px); }
    .cat.a { background: linear-gradient(160deg, var(--sun-100), #fff); }
    .cat.b { background: linear-gradient(160deg, var(--grape-100), #fff); }
    .cat.c { background: linear-gradient(160deg, var(--sky-100), #fff); }
    .cat img {
      position: absolute; left: -6px; bottom: -10px;
      width: 150px; height: auto; opacity: .95; pointer-events: none;
      object-fit: contain;
    }
    .cat h3 { font-size: 22px; font-weight: 800; position: relative; z-index: 1; }
    .cat p { font-size: 14.5px; color: var(--ink-soft); max-width: 220px; position: relative; z-index: 1; }
    .cat .btn { align-self: flex-start; margin-top: auto; position: relative; z-index: 1; }

    /* ===================== Parent guide ===================== */
    .guide {
      padding: 70px 0;
      background: linear-gradient(180deg, transparent, var(--canvas-2) 12%, var(--canvas-2) 88%, transparent);
    }
    .guide-head {
      display: flex; align-items: end; justify-content: space-between; gap: 16px;
      margin-bottom: 28px; flex-wrap: wrap;
    }
    .guide-head .section-head { margin: 0; text-align: right; max-width: none; }
    .guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .guide-card {
      display: flex; flex-direction: column; background: var(--white);
      border: 1px solid var(--line); border-radius: var(--radius-md);
      overflow: hidden; box-shadow: var(--shadow-sm);
      transition: transform .22s var(--ease);
    }
    .guide-card:hover { transform: translateY(-4px); }
    .guide-card .cover { aspect-ratio: 16/9; overflow: hidden; background: var(--grape-100); }
    .guide-card .cover img { width: 100%; height: 100%; object-fit: cover; }
    .guide-card .body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
    .guide-card h3 {
      font-size: 15.5px; font-weight: 800; line-height: 1.55; margin-bottom: 10px;
      display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    }
    .guide-card p {
      font-size: 13.5px; color: var(--ink-soft); margin-bottom: 14px;
      display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
      flex: 1;
    }
    .guide-card .more { font-weight: 700; font-size: 14px; color: var(--sky); }

    /* ===================== Quiz ===================== */
    .quiz { padding: 70px 0; }
    .quiz-panel {
      display: grid; grid-template-columns: 0.85fr 1.15fr;
      background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
      box-shadow: var(--shadow-md); border: 1px solid var(--line);
    }
    .quiz-side {
      background: linear-gradient(160deg, var(--grape), #5C3FA0); color: #fff;
      padding: 40px 34px; display: flex; flex-direction: column; justify-content: center; gap: 14px;
    }
    .quiz-side img {
      width: 100%; height: auto; object-fit: contain; border-radius: 16px;
      margin-bottom: 8px; filter: drop-shadow(0 8px 16px rgba(0,0,0,.25));
      background: transparent;
    }
    .quiz-side h3 { font-size: 24px; font-weight: 800; line-height: 1.45; }
    .quiz-side p { opacity: .88; font-size: 14.5px; }
    .quiz-progress { display: flex; gap: 6px; margin-top: 6px; }
    .quiz-progress span { height: 6px; border-radius: 100px; flex: 1; background: rgba(255,255,255,.25); }
    .quiz-progress span.done { background: var(--sun); }
    .quiz-main { padding: 36px 34px; display: flex; flex-direction: column; justify-content: center; }
    .quiz-q { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
    .quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 22px; }
    .quiz-opt {
      display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: var(--radius-sm);
      border: 2px solid var(--line); font-weight: 600; font-size: 15px; cursor: pointer;
      transition: border-color .2s, background .2s, transform .2s;
    }
    .quiz-opt:hover { border-color: var(--sky); background: var(--sky-100); transform: translateY(-2px); }
    .quiz-opt.correct { border-color: var(--leaf) !important; background: var(--leaf-100) !important; }
    .quiz-opt.wrong { border-color: var(--berry) !important; background: var(--berry-100) !important; }
    .quiz-opt .opt-emoji {
      width: 34px; height: 34px; border-radius: 10px; background: var(--canvas-2);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .quiz-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
    .quiz-reward { font-weight: 700; font-size: 14px; color: var(--sun-deep); }

    /* ===================== FAQ ===================== */
    .faq { padding: 60px 0; }
    .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
      overflow: hidden; box-shadow: var(--shadow-sm);
    }
    .faq-q {
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      padding: 18px 22px; font-weight: 700; font-size: 15.5px; cursor: pointer;
      list-style: none; user-select: none;
    }
    .faq-q::-webkit-details-marker { display: none; }
    .faq-q svg { width: 20px; height: 20px; color: var(--ink-soft); transition: transform .2s var(--ease); flex-shrink: 0; }
    .faq-item[open] .faq-q svg { transform: rotate(45deg); color: var(--berry); }
    .faq-a { padding: 0 22px 20px; font-size: 14.5px; color: var(--ink-soft); }

    /* ===================== CTA ===================== */
    .cta-banner { padding: 40px 0 80px; }
    .cta-inner {
      background: linear-gradient(135deg, var(--grape), var(--sky));
      border-radius: var(--radius-lg); padding: 56px 40px; text-align: center; color: #fff;
      position: relative; overflow: hidden;
    }
    .cta-mascot {
      width: 120px; height: auto; margin: 0 auto 18px;
      position: relative; z-index: 1;
      filter: drop-shadow(0 8px 20px rgba(0,0,0,.25));
      mix-blend-mode: screen;
    }
    .cta-inner h2 { font-size: clamp(24px, 3.5vw, 34px); font-weight: 800; margin-bottom: 12px; position: relative; }
    .cta-inner p { opacity: .92; margin-bottom: 26px; font-size: 15.5px; max-width: 520px; margin-inline: auto; position: relative; }
    .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
    .cta-perks {
      display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
      margin-top: 22px; font-size: 13.5px; opacity: .9; position: relative;
    }

    /* ===================== Footer ===================== */
    footer { padding: 56px 0 28px; border-top: 1px solid var(--line); background: var(--white); }
    .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
    .footer-brand p { color: var(--ink-soft); font-size: 14px; margin-top: 12px; max-width: 280px; }
    .footer-col b { font-family: 'Baloo Bhaijaan 2'; font-size: 15px; display: block; margin-bottom: 14px; }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col a { font-size: 14px; color: var(--ink-soft); transition: color .2s; }
    .footer-col a:hover { color: var(--sky); }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between; padding-top: 22px;
      border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-soft); flex-wrap: wrap; gap: 12px;
    }

    /* ===================== Responsive ===================== */
    @media (max-width: 1024px) {
      .burger { display: flex; }
      .nav-links, .nav-cta { display: none; }
      .hero { min-height: auto; padding: 36px 0 48px; }
      .hero-grid { grid-template-columns: 1fr; text-align: center; }
      .hero p.lead, .hero-notes { margin-inline: auto; }
      .hero-notes p { justify-content: center; text-align: right; }
      .hero-actions { justify-content: center; }
      .hero-art { max-width: 380px; margin-top: 12px; }
      .how-grid::before { display: none; }
      .how-grid { grid-template-columns: 1fr; gap: 32px; max-width: 360px; margin: 0 auto; }
      .cartoon-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
      .feat-grid, .cat-grid, .guide-grid { grid-template-columns: 1fr 1fr; }
      .quiz-panel { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .popular-head .section-head, .guide-head .section-head { text-align: center; width: 100%; }
      .popular-head, .guide-head { justify-content: center; }
    }

    @media (max-width: 640px) {
      .cartoon-grid, .feat-grid, .cat-grid, .guide-grid, .footer-grid { grid-template-columns: 1fr; }
      .quiz-options { grid-template-columns: 1fr; }
      .hero-actions .btn, .cta-actions .btn { width: 100%; }
      .cta-inner { padding: 44px 22px; }
      .cta-mascot { width: 96px; }
    }

    .sr-only {
      position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
    }

/* ---- extracted from former inline styles ---- */
.icon-sprite-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.feat-icon--grape { background: var(--grape-100); }
.feat-icon--sky { background: var(--sky-100); }
.feat-icon--sun { background: var(--sun-100); }
.feat-icon--leaf { background: var(--leaf-100); }
.feat-icon--berry { background: var(--berry-100); }
.quiz-next-btn.is-hidden,
.is-hidden { display: none !important; }
.quiz-done-msg {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 17px;
  padding: 18px;
  font-weight: 700;
}

/* pricing + continue (Django homepage extras) */
.home-pricing, .home-continue { padding: 64px 0; }
.home-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.home-plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.home-plan.is-featured {
  border-color: var(--sun);
  box-shadow: var(--shadow-md);
}
.home-plan h3 { font-size: 22px; margin-bottom: 8px; }
.home-plan .price { font-size: 28px; font-weight: 800; color: var(--sun-deep); margin-bottom: 12px; }
.home-plan p { color: var(--ink-soft); font-size: 14px; margin-bottom: 18px; }
.continue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.continue-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.continue-card .thumb { aspect-ratio: 16/10; background: var(--canvas-2); }
.continue-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.continue-card .body { padding: 12px 14px 16px; }
.continue-card h3 { font-size: 15px; margin-bottom: 8px; }
.continue-bar { height: 6px; background: var(--line); border-radius: 100px; overflow: hidden; }
.continue-bar > span { display: block; height: 100%; background: var(--sun); border-radius: 100px; }
