/* ─── Hero ─── */
    #home {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: calc(var(--banner-h) + var(--nav-h) + 30px) 5% 0;
      position: relative;
      justify-content: flex-start;
    }

    /* Stop in-page anchors below the fixed banner + nav */
    section[id], #notify {
      /* Header = banner+nav (102px). Smaller than that so the section's top
         padding tucks under the fixed header → title lands ~32px below the bar. */
      scroll-margin-top: calc(var(--banner-h) + var(--nav-h) - 68px);
    }

    #home::before {
      content: '';
      position: absolute;
      top: -100px; left: 50%;
      transform: translateX(-50%);
      width: 700px; height: 700px;
      background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(37, 99, 235, 0.15);
      border: 1px solid rgba(37, 99, 235, 0.4);
      color: var(--blue-light);
      padding: 5px 14px;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 28px;
    }

    h1 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 800;
      letter-spacing: -1.5px;
      line-height: 1.1;
      max-width: 750px;
      margin-bottom: 22px;
    }

    h1 span { color: var(--blue-light); }

    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: var(--muted);
      max-width: 520px;
      margin-bottom: 26px;
    }

    .hero-buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--blue);
      color: #fff;
      padding: 14px 28px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: background 0.2s, transform 0.15s;
      box-shadow: 0 0 30px var(--blue-glow);
    }

    .btn-primary:hover { background: var(--blue-light); transform: translateY(-1px); }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--muted);
      padding: 14px 28px;
      border-radius: 10px;
      font-weight: 500;
      font-size: 0.95rem;
      border: 1px solid var(--navy-border);
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-secondary:hover { border-color: var(--blue); color: var(--white); }

    .coming-soon-note {
      margin-top: 16px;
      font-size: 0.78rem;
      color: var(--muted);
      opacity: 0.7;
    }

    /* Hero devices — composed as one unit that scales with the container,
       so the iPhone always overlaps the iPad at any screen width. */
    .hero-phones {
      margin: 30px auto 0;
      position: relative;
      width: 100%;
      max-width: 600px;
      aspect-ratio: 31 / 20;
    }

    .device-ipad {
      position: absolute;
      width: 84%;
      left: 0;
      bottom: 0;
      z-index: 1;
      filter: drop-shadow(0 24px 48px rgba(0,0,0,0.55)) drop-shadow(0 0 40px rgba(37,99,235,0.18));
    }

    .device-iphone {
      position: absolute;
      width: 24%;
      right: 0;
      bottom: 0;
      z-index: 2;
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.65)) drop-shadow(0 0 24px rgba(37,99,235,0.25));
    }

    .device-ipad picture, .device-iphone picture {
      display: block;
      width: 100%;
    }

    .device-ipad img, .device-iphone img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* ─── Section shared ─── */
    section { padding: 100px 5%; }

    .section-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--blue-light);
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 800;
      letter-spacing: -0.8px;
      line-height: 1.15;
      max-width: 600px;
      margin-bottom: 18px;
    }

    .section-sub {
      color: var(--muted);
      max-width: 520px;
      font-size: 1rem;
      margin-bottom: 56px;
    }

    /* ─── How it works ─── */
    .how-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      counter-reset: step;
    }
    .how-step {
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
      border-radius: var(--radius);
      padding: 28px 26px;
    }
    .how-num {
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(37, 99, 235, 0.15);
      border: 1px solid rgba(37, 99, 235, 0.4);
      color: var(--blue-light);
      font-weight: 800;
      font-size: 1.15rem;
      border-radius: 50%;
      margin-bottom: 18px;
    }
    .how-step h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 9px;
    }
    .how-step p {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ─── Features ─── */
    #features { background: var(--navy); }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 14px;
    }

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

    .feature-card:hover {
      border-color: var(--blue);
      transform: translateY(-2px);
    }

    .feature-icon {
      width: 36px; height: 36px;
      background: rgba(37, 99, 235, 0.13);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      color: var(--blue-light);
    }

    .feature-icon svg {
      width: 18px; height: 18px;
      stroke: var(--blue-light);
      stroke-width: 1.75;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    .feature-card h3 {
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .feature-card p {
      font-size: 0.8rem;
      color: var(--muted);
      line-height: 1.55;
    }

    /* ─── Screenshots carousel ─── */
    #screenshots {
      padding: 80px 0;
      overflow: hidden;
    }

    #screenshots .section-header {
      padding: 0 5%;
      margin-bottom: 40px;
    }

    .carousel-wrapper {
      position: relative;
      overflow: hidden;
      padding: 50px 0 50px;
    }

    .carousel-track {
      display: flex;
      gap: 24px;
      will-change: transform;
    }

    .carousel-slide {
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      transform: scale(0.82);
      opacity: 0.75;
      transition: transform 0.42s cubic-bezier(0.4,0,0.2,1), opacity 0.42s cubic-bezier(0.4,0,0.2,1);
    }

    .carousel-slide.active {
      transform: scale(1.15);
      opacity: 1;
    }

    .carousel-slide img {
      display: block;
      height: 300px;
      width: auto;
      border-radius: 14px;
      box-shadow: 0 12px 36px rgba(0,0,0,0.55);
    }

    .slide-caption {
      margin-top: 12px;
      font-size: 12px;
      color: var(--muted);
      text-align: center;
      font-weight: 500;
      letter-spacing: 0.01em;
      max-width: 280px;
    }

    .carousel-btn {
      position: absolute;
      top: calc(50px + 150px);
      transform: translateY(-50%);
      width: 40px; height: 40px;
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
      border-radius: 50%;
      color: var(--white);
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      transition: background 0.2s, border-color 0.2s;
    }

    .carousel-btn:hover { background: var(--blue); border-color: var(--blue); }
    .carousel-btn.prev { left: 16px; }
    .carousel-btn.next { right: 16px; }

    /* ─── Dark mode showcase ─── */
    .dm-pair {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      max-width: 900px;
      margin: 0 auto;
      align-items: end;
    }
    .dm-shot { margin: 0; }

    /* Mini hero composition: iPad + iPhone overlapping, same geometry as .hero-phones */
    .dm-combo {
      position: relative;
      width: 100%;
      aspect-ratio: 31 / 20;
    }
    .dm-ipad {
      position: absolute;
      width: 84%;
      left: 0;
      bottom: 0;
      z-index: 1;
      filter: drop-shadow(0 18px 36px rgba(0,0,0,0.5)) drop-shadow(0 0 30px rgba(37,99,235,0.12));
    }
    .dm-iphone {
      position: absolute;
      width: 24%;
      right: 0;
      bottom: 0;
      z-index: 2;
      filter: drop-shadow(0 14px 28px rgba(0,0,0,0.6)) drop-shadow(0 0 18px rgba(37,99,235,0.2));
    }
    .dm-ipad img, .dm-iphone img {
      display: block;
      width: 100%;
      height: auto;
    }
    .dm-shot figcaption {
      margin-top: 18px;
      text-align: center;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* ─── Standards ─── */
    #standards {
      background: linear-gradient(180deg, var(--navy) 0%, #0d1629 100%);
    }

    .standards-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .standards-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .standard-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .standard-dot {
      width: 8px; height: 8px;
      background: var(--blue);
      border-radius: 50%;
      margin-top: 7px;
      flex-shrink: 0;
      box-shadow: 0 0 8px var(--blue-glow);
    }

    .standard-item h4 {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 2px;
    }

    .standard-item p {
      font-size: 0.825rem;
      color: var(--muted);
    }

    .standards-visual {
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
      border-radius: var(--radius);
      padding: 32px;
    }

    .grade-demo {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .grade-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 11px 14px;
      background: rgba(255,255,255,0.03);
      border-radius: 10px;
      border: 1px solid var(--navy-border);
    }

    .grade-name {
      font-size: 0.82rem;
      font-weight: 600;
    }

    .grade-subs {
      font-size: 0.68rem;
      color: var(--muted);
      margin-top: 2px;
    }

    .grade-pill {
      font-size: 0.85rem;
      font-weight: 700;
      width: 32px; height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .g5 { background: rgba(10,145,89,0.2);  color: #0a9159; }
    .g4 { background: rgba(15,168,107,0.2); color: #0fa86b; }
    .g3 { background: rgba(51,115,217,0.2); color: #3373d9; }
    .g2 { background: rgba(217,128,26,0.2); color: #d9801a; }
    .g1 { background: rgba(219,38,38,0.2);  color: #db2626; }

    .grade-note {
      font-size: 0.72rem;
      color: var(--muted);
      text-align: center;
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid var(--navy-border);
    }

    /* ─── Plans ─── */
    #pricing {
      background: var(--navy);
      text-align: center;
    }

    #pricing .section-title,
    #pricing .section-sub { margin-left: auto; margin-right: auto; }

    .plans {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 720px;
      margin: 0 auto;
    }

    /* ─── Organizations block (separate product) ─── */
    .org-block {
      max-width: 880px;
      margin: 52px auto 0;
      background: rgba(45, 212, 191, 0.06);
      border: 1px solid rgba(45, 212, 191, 0.28);
      border-radius: var(--radius);
      padding: 28px 32px;
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: 32px;
      align-items: center;
      text-align: left;
    }
    .org-tag {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: #2dd4bf;
      background: rgba(45, 212, 191, 0.12);
      border: 1px solid rgba(45, 212, 191, 0.35);
      padding: 4px 12px;
      border-radius: 999px;
      margin-bottom: 14px;
    }
    .org-block h3 {
      font-size: 1.6rem;
      font-weight: 800;
      letter-spacing: -0.4px;
      color: var(--white);
      margin-bottom: 8px;
    }
    .org-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
    .org-features {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 9px 18px;
    }
    .org-features li { font-size: 0.82rem; color: var(--white); display: flex; align-items: flex-start; gap: 8px; }
    .org-features li .check { color: #2dd4bf; flex-shrink: 0; margin-top: 1px; }
    .org-cta {
      display: inline-block;
      margin-top: 18px;
      background: #0d9488;
      color: #fff;
      padding: 11px 24px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 0.88rem;
      transition: background 0.2s;
    }
    .org-cta:hover { background: #14b8a6; }
    .org-email {
      margin-top: 12px;
      font-size: 0.82rem;
      color: var(--muted);
    }
    .org-email a { color: #2dd4bf; font-weight: 600; text-decoration: none; }
    .org-email a:hover { text-decoration: underline; }

    .plan-card {
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
      border-radius: var(--radius);
      padding: 32px;
      text-align: left;
      position: relative;
    }

    .plan-card.featured {
      border-color: var(--blue);
      box-shadow: 0 0 40px var(--blue-glow);
    }

    .plan-badge.soon {
      background: var(--navy-border);
      color: var(--white);
    }

    .plan-cta {
      display: inline-block;
      margin-top: 22px;
      background: rgba(37, 99, 235, 0.14);
      border: 1px solid rgba(37, 99, 235, 0.4);
      color: var(--blue-light);
      padding: 10px 20px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 0.85rem;
      transition: background 0.2s;
    }
    .plan-cta:hover { background: rgba(37, 99, 235, 0.24); }

    .plan-more {
      color: var(--muted);
      font-style: italic;
    }

    /* Plan carousel navigation (mobile only) */
    .plans-wrap { position: relative; }

    .plan-nav { display: none; align-items: center; justify-content: center; gap: 8px; margin-top: 20px; }
    .plan-dots { display: flex; gap: 8px; }
    .plan-dots button {
      width: 8px; height: 8px;
      padding: 0;
      border: none;
      border-radius: 50%;
      background: var(--navy-border);
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }
    .plan-dots button.active { background: var(--blue-light); transform: scale(1.25); }

    .plan-arrow {
      display: none;                /* shown on mobile only */
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 6;
      width: 40px; height: 40px;
      align-items: center;
      justify-content: center;
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
      border-radius: 50%;
      color: var(--white);
      font-size: 1.4rem;
      line-height: 1;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
    }
    .plan-arrow.prev { left: 0; }
    .plan-arrow.next { right: 0; }
    .plan-arrow:hover { background: var(--blue); border-color: var(--blue); }

    .plan-badge {
      position: absolute;
      top: -13px; left: 50%;
      transform: translateX(-50%);
      background: var(--blue);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 999px;
      white-space: nowrap;
    }

    .plan-name {
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--white);
      margin-bottom: 12px;
    }

    .plan-card.featured .plan-name {
      color: var(--blue-light);
    }

    .plan-desc {
      font-size: 0.82rem;
      color: var(--muted);
      margin-bottom: 24px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--navy-border);
    }

    .plan-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .plan-features li {
      font-size: 0.85rem;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    .plan-features li .check { color: var(--blue-light); flex-shrink: 0; margin-top: 1px; }
    .plan-features li .muted-check { color: var(--muted); flex-shrink: 0; margin-top: 1px; }

    /* Free / No sign-up emphasis on the Lite card */
    .plan-badge.free { background: #059669; }
    .plan-features li.feat-hl {
      font-weight: 700;
      color: var(--white);
      background: rgba(16, 185, 129, 0.10);
      border: 1px solid rgba(16, 185, 129, 0.22);
      border-radius: 8px;
      padding: 8px 12px;
      margin: 0 -12px;
    }
    .plan-features li.feat-hl .check { color: #34d399; }


    /* ─── Competencies ─── */
    #competencies {
      background: linear-gradient(180deg, #0d1629 0%, var(--navy) 100%);
    }

    .comp-tabs {
      display: flex;
      gap: 8px;
      margin-bottom: 32px;
    }

    .comp-tab {
      padding: 8px 20px;
      border-radius: 8px;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      border: 1px solid var(--navy-border);
      background: transparent;
      color: var(--muted);
      font-family: inherit;
      transition: all 0.2s;
    }

    .comp-tab.active {
      background: var(--blue);
      border-color: var(--blue);
      color: #fff;
    }

    .comp-grid {
      display: none;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 14px;
    }

    .comp-grid.active { display: grid; }

    .comp-card {
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
      border-radius: var(--radius);
      padding: 20px 22px;
    }

    .comp-code {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      color: var(--blue-light);
      margin-bottom: 4px;
    }

    .comp-title {
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .comp-obs {
      font-size: 0.75rem;
      color: var(--muted);
    }

    /* ─── FAQ ─── */
    #faq { background: linear-gradient(180deg, var(--navy) 0%, #0d1629 100%); }

    .faq-list {
      max-width: 1100px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      align-items: start;
    }

    .faq-item {
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      color: var(--white);
      font-family: inherit;
      font-size: 0.92rem;
      font-weight: 600;
      text-align: left;
      padding: 20px 24px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: color 0.2s;
    }

    .faq-question:hover { color: var(--blue-light); }

    .faq-arrow {
      font-size: 1rem;
      color: var(--muted);
      transition: transform 0.2s;
      flex-shrink: 0;
    }

    .faq-item.open .faq-arrow { transform: rotate(180deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-item.open .faq-answer { max-height: 400px; }

    .faq-answer p {
      padding: 0 24px 20px;
      font-size: 0.875rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ─── Contact ─── */
    #contact {
      background: var(--navy);
      text-align: center;
    }

    .contact-box {
      max-width: 480px;
      margin: 0 auto;
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
      border-radius: var(--radius);
      padding: 48px 40px;
    }

    .contact-box h2 {
      font-size: 1.6rem;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .contact-box p {
      color: var(--muted);
      font-size: 0.9rem;
      margin-bottom: 28px;
    }

    .contact-email {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(37, 99, 235, 0.12);
      border: 1px solid rgba(37, 99, 235, 0.35);
      color: var(--blue-light);
      padding: 12px 22px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 0.9rem;
      transition: background 0.2s;
    }

    .contact-email:hover { background: rgba(37, 99, 235, 0.22); }

    /* ─── "Show more" (mobile only) ─── */
    .show-more {
      display: none;
      width: 100%;
      margin: 20px auto 0;
      background: transparent;
      border: 1px solid var(--navy-border);
      color: var(--blue-light);
      font-family: inherit;
      font-weight: 600;
      font-size: 0.9rem;
      padding: 12px 22px;
      border-radius: 10px;
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s;
    }
    .show-more::after { content: ' ↓'; }
    .show-more.is-open::after { content: ' ↑'; }
    .show-more:hover { border-color: var(--blue); color: var(--white); }

    /* ─── Responsive ─── */
    @media (max-width: 900px) {
      .comp-tabs { flex-wrap: wrap; }
    }

    @media (max-width: 768px) {
      section { padding: 64px 5%; }
      #home { padding-top: calc(var(--banner-h) + var(--nav-h) + 24px); min-height: auto; }
      .section-sub { margin-bottom: 40px; }

      .standards-inner { grid-template-columns: 1fr; gap: 32px; }
      .faq-list { grid-template-columns: 1fr; }
      .how-grid { grid-template-columns: 1fr; gap: 14px; }
      .dm-pair { grid-template-columns: 1fr; gap: 18px; }

      /* Sections have less top padding on mobile (64px), so the anchor offset
         needs a bigger value here to keep the title ~28px below the header. */
      section[id], #notify { scroll-margin-top: calc(var(--banner-h) + var(--nav-h) - 36px); }

      /* Plans become a swipeable, snapping carousel */
      .plans {
        display: flex;
        grid-template-columns: none;
        max-width: 100%;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 12px 0 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }
      .plans::-webkit-scrollbar { display: none; }
      .plan-card {
        flex: 0 0 84%;
        scroll-snap-align: center;
        transform: scale(0.97);
        opacity: 0.7;
        transition: transform 0.3s, opacity 0.3s;
      }
      .plan-card.is-centered { transform: scale(1); opacity: 1; }
      .plan-nav { display: flex; }
      .plan-arrow { display: flex; }

      .org-block { grid-template-columns: 1fr; gap: 20px; padding: 24px; margin-top: 40px; }
      .org-features { grid-template-columns: 1fr; }

      #screenshots { padding: 56px 0; }
      .carousel-slide img { height: 230px; }
      .carousel-slide.active { transform: scale(1.05); }
      .carousel-btn { top: calc(50px + 115px); width: 36px; height: 36px; }
      .comp-tab { padding: 8px 14px; font-size: 0.8rem; }

      /* Collapse long lists on mobile; reveal with the show-more button */
      .show-more { display: block; }
      .features-grid > .feature-card:nth-child(n+7) { display: none; }
      .features-grid.is-expanded > .feature-card { display: block; }
      .comp-grid.active > .comp-card:nth-child(n+6) { display: none; }
      .comp-grid.active.is-expanded > .comp-card { display: block; }
    }

    @media (max-width: 420px) {
      h1 { letter-spacing: -1px; }
      .carousel-slide img { height: 200px; }
      .carousel-btn { top: calc(50px + 100px); }
    }
