    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    :root {
      --ink: #1a1a2e;
      --ink-light: #2d2d44;
      --paper: #faf9f7;
      --paper-warm: #f5f3ef;
      --accent: #c45c4a;
      --accent-soft: #d4786a;
      --sage: #7a9e7e;
      --gold: #c9a962;
      --text: #3d3d3d;
      --text-light: #6b6b6b;
    }
    
    body {
      font-family: 'Outfit', sans-serif;
      background: var(--paper);
      color: var(--text);
      line-height: 1.6;
    }
    
    .jp {
      font-family: 'Noto Serif JP', serif;
    }
    
    /* NAVIGATION */
    /* TOAST NOTIFICATION */
    .toast {
      position: fixed;
      top: 5rem;
      left: 50%;
      transform: translateX(-50%) translateY(-20px);
      background: var(--ink);
      color: var(--paper);
      padding: 0.75rem 1.5rem;
      border-radius: 4px;
      font-size: 0.95rem;
      font-weight: 500;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 1000;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    
    .toast.visible {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    
    .toast.success {
      background: var(--sage);
    }
    
    .toast.warning {
      background: #f9a825;
      color: var(--ink);
    }

    /* BACK TO TOP BUTTON */
    .back-to-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 48px;
      height: 48px;
      background: var(--ink);
      color: var(--paper);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 99;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }
    
    .back-to-top:hover {
      background: var(--ink-light);
      transform: translateY(-3px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    }
    
    @media (max-width: 600px) {
      .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 42px;
        height: 42px;
      }
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: var(--ink);
      border-bottom: 3px solid var(--accent);
    }
    
    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 72px;
      gap: 3rem;
    }
    
    .logo {
      display: flex;
      align-items: center;
      gap: 18px;
      cursor: pointer;
      transition: opacity 0.2s;
    }
    
    .logo:hover {
      opacity: 0.85;
    }
    
    .logo-kanji {
      font-size: 1.75rem;
      color: var(--accent);
      font-weight: 700;
      line-height: 0.95;
    }
    
    .logo-text {
      color: var(--paper);
      font-size: 1.35rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      white-space: nowrap;
    }
    
    .nav-links {
      display: flex;
      gap: 1.75rem;   /* i18n.js tightens this to 0.05rem once the bar is built */
    }
    
    .nav-link {
      color: var(--paper);
      opacity: 0.7;
      font-size: 0.95rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
      padding: 0.5rem 0;
      border: none;
      background: none;
      position: relative;
      font-family: inherit;
    }
    
    .nav-link:hover, .nav-link.active {
      opacity: 1;
    }
    
    .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--accent);
    }
    
    /* PAGES */
    .page {
      min-height: 100vh;
      padding-top: 72px;
      display: none;
    }
    
    @media (max-width: 600px) {
      .page {
        padding-top: 100px;
      }
    }
    
    .page.active {
      display: block;
    }
    
    /* HOME PAGE */
    .home {
      display: flex;
      flex-direction: column;
    }
    
    .hero {
      /* No longer a full-height splash: the demo sits in here, and the grid
         below should be visible without a full page of scrolling first. */
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 3.5rem 2rem 4rem;
      background: linear-gradient(135deg, var(--ink) 0%, var(--ink-light) 100%);
      position: relative;
      overflow: hidden;
    }

    /* Copy on the left, a working drill on the right. */
    .hero-grid {
      max-width: 1240px;
      width: 100%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 3.5rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    /* Centred, the way the hero has always been. */
    .hero-copy { text-align: center; }
    /* The old size was set for a full-width hero; in half the width it wrapped
       the name onto two lines. */
    .hero-copy .hero-title { font-size: clamp(2.2rem, 3.6vw, 3.4rem); margin-bottom: 0.4rem; }
    .hero-copy .hero-subtitle { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 1.5rem; }
    .hero-copy .hero-desc { font-size: 1rem; max-width: 46ch; margin: 0 auto 2rem; }
    .hero-copy .hero-badge { margin-bottom: 1.3rem; font-size: 0.72rem; }
    
    .hero::before {
      content: '活用';
      position: absolute;
      font-size: 35vw;
      color: rgba(255,255,255,0.02);
      font-family: 'Noto Serif JP', serif;
      font-weight: 700;
      pointer-events: none;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    
    .hero-content {
      text-align: center;
      padding: 3rem;
      position: relative;
      z-index: 1;
    }
    
    .hero-badge {
      display: inline-block;
      background: var(--accent);
      color: var(--paper);
      padding: 0.4rem 1rem;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 2rem;
    }
    
    .hero-title {
      color: var(--paper);
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      margin-bottom: 0.5rem;
      line-height: 1.1;
    }
    
    .hero-subtitle {
      color: var(--accent-soft);
      font-size: clamp(1.25rem, 3vw, 1.75rem);
      font-weight: 300;
      margin-bottom: 2rem;
    }
    
    .hero-desc {
      color: rgba(255,255,255,0.6);
      font-size: 1.1rem;
      max-width: 500px;
      margin: 0 auto 3rem;
      line-height: 1.7;
    }
    
    .hero-cta {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ---- hero: one loud action ---------------------------------------- */
    .hero-actions {
      display: flex; align-items: center; justify-content: center;
      gap: 1.2rem; flex-wrap: wrap;
    }
    /* A real <a>, not a button with an onclick — it works without JS, opens in
       a new tab on middle-click, and search engines can follow it. */
    .hero-actions .btn { text-decoration: none; display: inline-block; }
    .hero-jump {
      color: rgba(255,255,255,0.65); font-size: 0.94rem; text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px;
      transition: all 0.15s;
    }
    .hero-jump:hover { color: var(--paper); border-bottom-color: var(--paper); }

    /* Real numbers, so "is this substantial?" is answered before any scrolling. */
    .hero-meta {
      margin-top: 2.2rem; display: flex; justify-content: center;
      gap: 1.6rem 2.2rem; flex-wrap: wrap;
    }
    .hero-meta div { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
    .hero-meta b { display: block; color: var(--gold); font-size: 1.2rem; font-weight: 700; }

    /* ---- the demo, now hero-sized ------------------------------------- */
    .hero-demo {
      background: rgba(255,255,255,0.045);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 14px; padding: 1.4rem;
    }
    .demo-head { margin-bottom: 0.9rem; }
    .demo-eyebrow {
      font-size: 0.64rem; font-weight: 700; letter-spacing: 0.13em;
      text-transform: uppercase; color: rgba(255,255,255,0.45);
    }
    /* On the dark hero the pills need light defaults, not the light-panel ones. */
    .hero-demo .demo-tabs { justify-content: flex-start; margin-bottom: 1.1rem; }
    .hero-demo .demo-tab {
      color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.18);
    }
    .hero-demo .demo-tab:hover { color: #fff; border-color: var(--btn-c); }
    .hero-demo .demo-stage {
      background: rgba(0,0,0,0.22); border-color: rgba(255,255,255,0.06);
      min-height: 24rem; padding: 1.9rem 1.5rem;
    }
    .hero-demo .demo-hint { color: rgba(255,255,255,0.5); }
    .hero-demo .demo-verb { color: var(--paper); }
    .hero-demo .demo-verb-sub { color: rgba(255,255,255,0.55); }
    .hero-demo .demo-input {
      background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2);
      color: var(--paper);
    }
    .hero-demo .demo-input::placeholder { color: rgba(255,255,255,0.4); }
    .hero-demo .demo-input:focus { border-color: var(--accent-soft); }
    .hero-demo .demo-verdict.good { color: #9fc4a3; }
    .hero-demo .demo-verdict.bad  { color: var(--accent-soft); }
    .hero-demo .demo-cta { color: var(--gold); margin-top: 0.9rem; display: inline-block; }

    .hero-demo .demo-b.katsu { background: var(--paper); }
    .hero-demo .demo-b-en { color: var(--text-light); }

    /* The kana question card, with Listen attached to the character. */
    .demo-kana-card { max-width: 25rem; }
    .demo-kana-row { display: flex; align-items: center; gap: 1.1rem; }
    .demo-kana-speak {
      width: 3rem; height: 3rem; border-radius: 50%; flex: 0 0 auto;
      border: 1.5px solid rgba(0,0,0,0.14); background: #fff; color: var(--accent);
      font-size: 1.1rem; display: grid; place-items: center; cursor: pointer;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: all 0.15s;
    }
    .demo-kana-speak:hover { border-color: var(--accent); transform: translateY(-1px); }
    .demo-kana-speak.playing { background: var(--accent); color: #fff; border-color: var(--accent); }
    .demo-kana-hear { font-size: 0.74rem; color: var(--text-light); }

    /* ---- dark band for the path -------------------------------------- */
    /* .home is a column flex container and .home-section carries margin: 0 auto,
       so an auto margin shrinks the item to its content. width + align-self is
       what actually makes the colour run the full width of the viewport. */
    .home-section.is-band {
      max-width: none; width: 100%; margin: 0; align-self: stretch;
      background: var(--ink); padding: 4.5rem 2rem;
    }
    .home-close { width: 100%; align-self: stretch; }
    .home-section.is-band > .home-panel {
      background: none; border: none; max-width: 1200px; margin: 0 auto; padding: 0;
    }
    .home-section.is-band .home-h2 { color: var(--paper); }
    .home-section.is-band .section-mark { color: var(--accent-soft); opacity: 0.65; }
    .home-section.is-band .tour-sub { color: rgba(255,255,255,0.6); }
    .home-section.is-band .tour-path { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
    .home-section.is-band .tour-step {
      background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.09);
      border-left: 1px solid rgba(255,255,255,0.09);
      border-top: 3px solid var(--btn-c);
      flex-direction: column; gap: 0.7rem;
    }
    .home-section.is-band .tour-step:hover {
      transform: translateY(-3px); background: rgba(255,255,255,0.08);
    }
    .home-section.is-band .tour-body strong { color: var(--paper); }
    .home-section.is-band .tour-body span { color: rgba(255,255,255,0.6); }

    /* ---- closing note ------------------------------------------------- */
    .home-close { background: var(--paper-warm); padding: 4rem 2rem 4.5rem; }
    .home-close-inner { max-width: 720px; margin: 0 auto; text-align: center; }
    .home-close .section-mark { margin-bottom: 0.7rem; }
    .home-close-note { font-size: 1.05rem; line-height: 1.85; color: var(--text); }
    .home-close-sig { margin-top: 1.3rem; font-size: 1.15rem; color: var(--accent); }
    .home-close-actions {
      display: flex; justify-content: center; gap: 0.8rem;
      margin-top: 2.2rem; flex-wrap: wrap;
    }
    .home-close-actions .start-btn { text-decoration: none; }

    .btn {
      display: inline-block;
      padding: 1rem 2rem;
      font-size: 1rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: all 0.25s;
      font-family: inherit;
    }
    
    .btn-primary {
      background: var(--accent);
      color: var(--paper);
    }
    
    .btn-primary:hover {
      background: var(--accent-soft);
      transform: translateY(-2px);
    }
    
    .btn-secondary {
      background: transparent;
      color: var(--paper);
      border: 2px solid rgba(255,255,255,0.3);
    }
    
    .btn-secondary:hover {
      border-color: var(--paper);
      background: rgba(255,255,255,0.05);
    }

    /* ---- shared Listen button (flashcards) ----------------------------- */
    .ka-listen {
      display: inline-flex; align-items: center; gap: 0.35rem;
      background: transparent; border: 1.5px solid rgba(0,0,0,0.16);
      color: inherit; border-radius: 999px; padding: 0.32rem 0.85rem;
      font-family: inherit; font-size: 0.82rem; font-weight: 500;
      cursor: pointer; opacity: 0.8; transition: all 0.15s;
    }
    .ka-listen:hover { opacity: 1; border-color: currentColor; }
    .ka-listen.playing { opacity: 1; border-color: currentColor; background: rgba(127,127,127,0.12); }
    /* On the dark flashcard pages the neutral border disappears — borrow the
       text colour instead of hard-coding a second palette. */
    .ka-listen.on-dark { border-color: rgba(255,255,255,0.28); color: rgba(255,255,255,0.88); }
    .ka-listen.on-dark:hover, .ka-listen.on-dark.playing { border-color: rgba(255,255,255,0.7); color: #fff; }
    /* Inline variant, for one per row rather than one per card. */
    .ka-listen.is-mini { border: none; padding: 0 0.3rem; font-size: 0.95rem; opacity: 0.55; }
    .ka-listen.is-mini:hover, .ka-listen.is-mini.playing { opacity: 1; background: none; }

    /* ---- split Listen + the Audio popover ------------------------------ */
    /* Listen plays; the caret opens the voice options. Two actions, one
       control, so the row does not gain a fifth button. */
    /* align-self: stretch so it matches whatever height the row's own buttons
       have, rather than sitting short next to them. */
    .ka-split { display: inline-flex; align-items: stretch; align-self: stretch;
      border-radius: 6px; overflow: hidden; }
    .ka-split__main, .ka-split__caret {
      background: #4a5a7a; color: #fff; border: none; cursor: pointer;
      font-family: inherit; font-weight: 600; transition: filter 0.15s;
    }
    .ka-split__main { font-size: 0.8rem; padding: 0.55rem 0.9rem; white-space: nowrap;
      display: inline-flex; align-items: center; gap: 0.35rem; }
    .ka-split__caret { font-size: 0.6rem; padding: 0 0.6rem; background: #3e4c68;
      border-left: 1px solid rgba(255,255,255,0.2); }
    .ka-split__main:hover, .ka-split__caret:hover { filter: brightness(1.15); }
    .ka-split__main.playing { filter: brightness(1.25); }
    .ka-split__caret[aria-expanded="true"] { background: #2f3a50; }

    .ka-audio-panel {
      display: none; align-items: center; justify-content: center;
      gap: 0.5rem; flex-wrap: wrap; margin: 0.75rem auto 0; max-width: 26rem;
      padding: 0.6rem 0.8rem; border-radius: 7px;
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.11);
    }
    .ka-audio-panel.open { display: flex; }
    /* Talk's controls sit on a white card, so the panel needs the light set. */
    .ka-audio-panel.on-light {
      background: var(--paper-warm); border-color: rgba(0,0,0,0.09);
      max-width: none; margin: 0.6rem 0.9rem 0.2rem;
    }
    .ka-audio-panel.on-light .ka-audio-panel__label { color: var(--text-light); }
    .ka-audio-panel.on-light select,
    .ka-audio-panel.on-light button {
      background: #fff; border-color: rgba(0,0,0,0.14); color: var(--ink);
    }
    .ka-audio-panel.on-light button:hover,
    .ka-audio-panel.on-light select:hover { border-color: var(--accent-soft); }
    .ka-audio-panel__label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.09em;
      text-transform: uppercase; color: rgba(255,255,255,0.55); }
    .ka-audio-panel select {
      background: rgba(0,0,0,0.35); border: 1.5px solid rgba(255,255,255,0.18);
      color: inherit; border-radius: 999px; padding: 0.26rem 0.7rem;
      font-family: inherit; font-size: 0.76rem; cursor: pointer; max-width: 12rem;
    }
    .ka-audio-panel button {
      background: none; border: 1.5px solid rgba(255,255,255,0.18); color: inherit;
      border-radius: 999px; padding: 0.26rem 0.7rem;
      font-family: inherit; font-size: 0.76rem; cursor: pointer; transition: all 0.15s;
    }
    .ka-audio-panel button:hover { border-color: rgba(255,255,255,0.55); }

    /* On a phone the caret must grow, not shrink — a 16px tap target next to
       a button you actually want is how you open the wrong thing. */
    @media (max-width: 640px) {
      .ka-split { width: 100%; min-height: 44px; }
      .ka-split__main { flex: 1 1 auto; justify-content: center; padding: 0.7rem 0.9rem; }
      .ka-split__caret { flex: 0 0 3rem; font-size: 0.75rem; }
      .ka-audio-panel select { max-width: 100%; }
    }

    /* One colour per stage, and the same three all the way down the page:
       red for kana, sage for grammar, gold for speaking. Each row pairs the
       filled "learn it" button with the outlined "practise it" one. */
    .btn-sage { background: var(--sage); color: var(--paper); }
    .btn-sage:hover { background: #8cb090; transform: translateY(-2px); }
    .btn-gold { background: var(--gold); color: #2a2418; }
    .btn-gold:hover { background: #d8bb7a; transform: translateY(-2px); }

    /* FEATURES */
    .features {
      padding: 6rem 2rem;
      background: var(--paper-warm);
    }
    
    .features-inner {
      max-width: 1000px;
      margin: 0 auto;
    }
    
    .features-header {
      text-align: center;
      margin-bottom: 4rem;
    }
    
    .features-title {
      font-size: 2rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 0.75rem;
    }
    
    .features-subtitle {
      color: var(--text-light);
      font-size: 1.1rem;
    }
    
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }
    
    .feature-card {
      background: var(--paper);
      padding: 2.5rem 2rem;
      border: 1px solid rgba(0,0,0,0.06);
      transition: all 0.3s;
      cursor: pointer;
    }
    
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
      border-color: var(--accent);
    }
    
    .feature-icon {
      font-size: 2rem;
      margin-bottom: 1.25rem;
    }
    
    .feature-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 0.75rem;
    }
    
    .feature-desc {
      color: var(--text-light);
      font-size: 0.95rem;
      line-height: 1.6;
    }
    
    /* LEARN & FORMS PAGES */
    .learn-page, .forms-page {
      padding: 4rem 2rem;
      max-width: 900px;
      margin: 0 auto;
    }
    
    .page-header {
      margin-bottom: 3rem;
    }
    
    .page-tag {
      color: var(--accent);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }
    
    .page-title {
      font-size: 2rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }
    
    .page-desc {
      color: var(--text-light);
      font-size: 1.1rem;
      line-height: 1.7;
    }
    
    .placeholder-card {
      background: var(--paper-warm);
      border: 2px dashed rgba(0,0,0,0.15);
      padding: 4rem 2rem;
      text-align: center;
    }
    
    .placeholder-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
      opacity: 0.5;
    }
    
    .placeholder-text {
      color: var(--text-light);
      font-size: 1.1rem;
    }
    
    /* TABS */
    .tabs {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 2rem;
      border-bottom: 2px solid rgba(0,0,0,0.08);
      padding-bottom: 0.5rem;
    }
    
    .tab {
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      font-weight: 500;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-light);
      transition: all 0.2s;
      font-family: inherit;
      position: relative;
    }
    
    .tab:hover {
      color: var(--ink);
    }
    
    .tab.active {
      color: var(--accent);
    }
    
    .tab.active::after {
      content: '';
      position: absolute;
      bottom: -0.6rem;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--accent);
    }
    
    .form-card {
      background: var(--paper);
      border: 1px solid rgba(0,0,0,0.08);
      padding: 2.5rem;
      display: none;
    }
    
    .form-card.active {
      display: block;
    }
    
    .form-card-title {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 1rem;
    }
    
    .form-card-desc {
      color: var(--text-light);
      margin-bottom: 2rem;
      font-size: 1.05rem;
      line-height: 1.7;
    }
    
    .info-box {
      padding: 1.25rem 1.5rem;
      margin-bottom: 2rem;
      border-left: 4px solid;
    }
    
    .info-box.blue {
      background: #eef4f8;
      border-color: #4a90a4;
    }
    
    .info-box.green {
      background: #eef5ef;
      border-color: var(--sage);
    }
    
    .info-box.purple {
      background: #f3eef8;
      border-color: #7a5ba4;
    }
    
    .info-box.yellow {
      background: #fdf8ed;
      border-color: var(--gold);
    }
    
    .info-box-title {
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 0.5rem;
    }
    
    .info-box-text {
      color: var(--text);
      font-size: 0.95rem;
    }
    
    .section-title {
      font-weight: 600;
      margin-bottom: 1rem;
      color: var(--ink);
    }
    
    .pattern-box {
      background: var(--paper-warm);
      padding: 1.5rem;
      text-align: center;
      font-size: 1.25rem;
      margin-bottom: 2rem;
    }
    
    .conj-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.9rem;
      margin-bottom: 2rem;
    }
    
    .conj-table th,
    .conj-table td {
      border: 1px solid rgba(0,0,0,0.1);
      padding: 0.75rem 1rem;
      text-align: left;
    }
    
    .conj-table th {
      background: var(--ink);
      color: var(--paper);
      font-weight: 600;
    }
    
    .conj-table tr:nth-child(even) {
      background: var(--paper-warm);
    }
    
    .conj-table .highlight {
      font-weight: 600;
      color: var(--accent);
    }
    
    .row-a { color: #c45c4a; font-weight: 600; }
    .row-i { color: #7a9e7e; font-weight: 600; }
    .row-u { color: #4a90a4; font-weight: 600; }
    .row-e { color: #7a5ba4; font-weight: 600; }
    .row-o { color: #c9a962; font-weight: 600; }
    
    .forms-cta {
      margin-top: 3rem;
      text-align: center;
    }
    
    
    /* VERB LIST STYLES */
    .verb-list-tab {
      padding: 1rem 1.5rem;
      background: white;
      border: 2px solid transparent;
      border-radius: 4px;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text);
      cursor: pointer;
      transition: all 0.2s;
      font-family: inherit;
    }

    .verb-list-tab:hover {
      background: white;
      border-color: var(--accent);
      color: var(--ink);
    }

    .verb-list-tab.active {
      background: white;
      color: var(--ink);
      border-color: var(--accent);
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .verb-list-content {
      display: none;
    }

    .verb-list-content.active {
      display: grid !important;
    }

    .verb-item {
      background: white;
      border: 1px solid #e5e5e0;
      padding: 1.25rem 1.5rem;
      border-radius: 6px;
      transition: all 0.25s;
      cursor: default;
      position: relative;
    }

    /* Alternating pattern - every other card gets subtle background */
    .verb-item:nth-child(even) {
      background: #fafaf7;
    }

    .verb-item:hover {
      border-color: var(--accent);
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      transform: translateY(-3px);
      background: white;
    }

    .verb-item .verb-kanji {
      font-size: 1.75rem !important;
      font-weight: 900 !important;
      color: #000000 !important;
      margin-bottom: 0.5rem;
      line-height: 1.2;
    }

    .verb-item .verb-reading {
      font-size: 0.95rem !important;
      color: #333333 !important;
      margin-bottom: 0.75rem;
      font-weight: 600 !important;
    }

    .verb-item .verb-meaning {
      font-size: 1rem !important;
      color: #1a1a1a !important;
      font-weight: 500 !important;
      border-top: 1px solid rgba(0,0,0,0.06);
      padding-top: 0.75rem;
      padding-right: 3rem; /* Make room for JLPT badge */
    }

    /* Search Input Styles */
    #verb-search:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(196, 92, 74, 0.1);
    }

    /* JLPT Filter Button Styles */
    .jlpt-filter-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    /* MISTAKE REPORT STYLES */
    .report-btn {
      padding: 0.75rem 1.5rem;
      background: var(--paper);
      color: var(--ink);
      border: 2px solid var(--ink);
      border-radius: 4px;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      font-family: inherit;
    }

    .report-btn:hover {
      background: var(--ink);
      color: var(--paper);
    }

    .report-btn:disabled {
      opacity: 0.4;
      cursor: not-allowed;
    }

    .reset-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.3rem;
      padding: 0.35rem 0.6rem;
      margin-top: 0.5rem;
      background: transparent;
      color: var(--text-light);
      border: 1px solid rgba(0,0,0,0.12);
      border-radius: 3px;
      font-size: 0.7rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
      font-family: inherit;
      position: relative;
      z-index: 100;
    }

    .reset-btn:hover {
      background: rgba(0,0,0,0.05);
      color: var(--ink);
      border-color: rgba(0,0,0,0.2);
    }

    .reset-btn svg {
      opacity: 0.6;
    }

    .reset-btn:hover svg {
      opacity: 1;
    }

    .report-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.7);
      z-index: 10000;
      overflow-y: auto;
      padding: 2rem;
    }

    .report-modal.active {
      display: flex;
      align-items: flex-start;
      justify-content: center;
    }

    .report-content {
      background: var(--paper);
      border-radius: 8px;
      max-width: 900px;
      width: 100%;
      margin: 2rem auto;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }

    .report-header {
      background: var(--ink);
      color: var(--paper);
      padding: 2rem;
      border-radius: 8px 8px 0 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .report-close {
      background: none;
      border: none;
      color: var(--paper);
      font-size: 2rem;
      cursor: pointer;
      padding: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      transition: background 0.2s;
    }

    .report-close:hover {
      background: rgba(255,255,255,0.1);
    }

    .report-download {
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.3);
      color: var(--paper);
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      padding: 0.5rem 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      border-radius: 6px;
      transition: all 0.2s;
      font-family: var(--font-sans);
    }

    .report-download:hover {
      background: rgba(255,255,255,0.25);
      border-color: rgba(255,255,255,0.5);
      transform: translateY(-1px);
    }

    .report-download svg {
      flex-shrink: 0;
    }

    .report-body {
      padding: 2rem;
      max-height: 70vh;
      overflow-y: auto;
    }

    .report-section {
      margin-bottom: 2.5rem;
    }

    .report-section-title {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .mistake-card {
      background: var(--paper-warm);
      border-left: 4px solid var(--accent);
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      border-radius: 4px;
    }

    .mistake-card-title {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 0.75rem;
    }

    .mistake-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .mistake-stat {
      background: var(--paper-warm);
      padding: 1.5rem;
      border-radius: 4px;
      text-align: center;
      border: 1px solid rgba(0,0,0,0.06);
    }

    .mistake-stat-value {
      font-size: 2rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 0.5rem;
    }

    .mistake-stat-label {
      font-size: 0.9rem;
      color: var(--text-light);
      font-weight: 500;
    }

    .advice-box {
      background: #e8f4f8;
      border-left: 4px solid #4a90a4;
      padding: 1.5rem;
      border-radius: 4px;
      margin-bottom: 1rem;
    }

    .advice-title {
      font-weight: 600;
      color: #357a8a;
      margin-bottom: 0.5rem;
      font-size: 1.05rem;
    }

    .advice-text {
      color: var(--text);
      line-height: 1.7;
    }

    .no-mistakes {
      text-align: center;
      padding: 3rem 2rem;
      color: var(--text-light);
    }

    .no-mistakes-icon {
      font-size: 4rem;
      margin-bottom: 1rem;
    }

    /* CONJUGATOR PAGE */
    .conjugator-page {
      padding: 4rem 2rem;
      max-width: 600px;
      margin: 0 auto;
    }
    
    .conjugator-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 2rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    @media (max-width: 768px) {
      .conjugator-header {
        flex-direction: column;
        align-items: stretch;
      }

      .conjugator-header > div:last-child {
        flex-direction: column-reverse;
        align-items: stretch;
      }

      .report-btn {
        width: 100%;
        margin-left: 0;
        margin-bottom: 0.5rem;
      }

      .score-box {
        text-align: center;
        align-items: center;
      }

      .score-box .reset-btn {
        margin: 0.5rem auto 0;
      }

      .report-header {
        flex-direction: column;
        gap: 1rem;
      }

      .report-header h2 {
        font-size: 1.5rem;
        text-align: center;
      }

      .report-header > div {
        width: 100%;
        justify-content: center;
      }

      .report-download {
        flex: 1;
      }
    }
    
    .score-box {
      text-align: right;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      position: relative;
      z-index: 50;
    }
    
    .score-label {
      font-size: 0.8rem;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }
    
    .score-value {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--sage);
    }
    
    .form-select {
      width: 100%;
      padding: 0.875rem 1rem;
      font-size: 1rem;
      border: 2px solid rgba(0,0,0,0.1);
      background: var(--paper);
      font-family: inherit;
      cursor: pointer;
      margin-bottom: 1.5rem;
      transition: border-color 0.2s;
    }
    
    .form-select:focus {
      outline: none;
      border-color: var(--accent);
    }
    
    .verb-display {
      background: var(--ink);
      padding: 2.5rem;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    
    .verb-type {
      color: var(--accent-soft);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }
    
    .verb-kanji {
      font-size: 3.5rem;
      color: var(--paper);
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    
    .verb-info {
      color: rgba(255,255,255,0.6);
      font-size: 1.15rem;
    }
    
    .prompt-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 0.75rem;
      gap: 1rem;
    }
    
    .prompt-text {
      font-weight: 500;
      color: var(--ink);
      flex: 1;
    }
    
    .prompt-form {
      color: var(--accent);
      font-weight: 600;
      display: block;
      font-size: 1.05rem;
      margin-top: 0.25rem;
      line-height: 1.4;
    }
    
    .hint-btn {
      background: none;
      border: none;
      color: var(--text-light);
      font-size: 0.9rem;
      cursor: pointer;
      font-family: inherit;
      white-space: nowrap;
      flex-shrink: 0;
      padding: 0.25rem 0.5rem;
    }
    
    .hint-btn:hover {
      color: var(--accent);
    }
    
    .hint-box {
      background: linear-gradient(135deg, #fdf8ed 0%, #fef9f0 100%);
      border-left: 3px solid var(--gold);
      padding: 1rem 1.25rem;
      margin-bottom: 1rem;
      font-size: 0.9rem;
      color: var(--text);
      display: none;
      border-radius: 0 4px 4px 0;
      line-height: 1.6;
    }
    
    .hint-box.visible {
      display: block;
    }
    
    .hint-box .hint-label {
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    
    .hint-box .hint-rule {
      background: rgba(255,255,255,0.7);
      padding: 0.5rem 0.75rem;
      border-radius: 4px;
      margin: 0.5rem 0;
      font-family: 'Noto Serif JP', serif;
    }
    
    .hint-box .hint-example {
      color: var(--text-light);
      font-size: 0.85rem;
      margin-top: 0.5rem;
    }
    
    .hint-box .hint-example strong {
      color: var(--sage);
    }
    
    .answer-input {
      width: 100%;
      padding: 1.25rem;
      font-size: 1.35rem;
      border: 2px solid rgba(0,0,0,0.1);
      background: var(--paper);
      font-family: 'Noto Serif JP', serif;
      text-align: center;
      margin-bottom: 1rem;
      transition: all 0.2s;
    }
    
    .answer-input:focus {
      outline: none;
      border-color: var(--ink);
    }
    
    .answer-input:disabled {
      background: var(--paper-warm);
    }
    
    .feedback {
      padding: 1.25rem;
      margin-bottom: 1rem;
      text-align: center;
      display: none;
    }
    
    .feedback.visible {
      display: block;
    }
    
    .feedback.warning {
      background: #fef3e6;
      border: 2px solid #e6a756;
    }
    
    .feedback.correct {
      background: #eef5ef;
      border: 2px solid var(--sage);
    }
    
    .feedback.incorrect {
      background: #fbeef0;
      border: 2px solid var(--accent);
    }
    
    .feedback-title {
      font-weight: 600;
      margin-bottom: 0.25rem;
    }
    
    .feedback-answer {
      font-size: 1.25rem;
    }
    
    .feedback-explanation {
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(0,0,0,0.1);
      text-align: left;
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--text);
      display: none;
    }
    
    .feedback-explanation strong {
      color: var(--accent);
    }
    
    .check-btn {
      width: 100%;
      padding: 1.125rem;
      font-size: 1.1rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      font-family: inherit;
      transition: all 0.2s;
    }
    
    .check-btn.primary {
      background: var(--ink);
      color: var(--paper);
    }
    
    .check-btn.primary:hover:not(:disabled) {
      background: var(--ink-light);
    }
    
    .check-btn.primary:disabled {
      opacity: 0.4;
      cursor: not-allowed;
    }
    
    .check-btn.continue {
      background: var(--sage);
      color: var(--paper);
    }
    
    .check-btn.continue:hover {
      opacity: 0.9;
    }
    
    .check-btn.next {
      background: var(--sage);
      color: var(--paper);
      display: none;
    }
    
    .check-btn.next:hover {
      opacity: 0.9;
    }
    
    .skip-btn {
      width: 100%;
      padding: 0.75rem;
      margin-top: 0.5rem;
      font-size: 0.9rem;
      font-weight: 500;
      border: 1px solid rgba(0,0,0,0.15);
      background: transparent;
      color: var(--text-light);
      cursor: pointer;
      font-family: inherit;
      transition: all 0.2s;
    }
    
    .skip-btn:hover {
      background: rgba(0,0,0,0.03);
      color: var(--ink);
      border-color: rgba(0,0,0,0.25);
    }
    
    /* Responsive */
    @media (max-width: 600px) {
      .nav-inner {
        padding: 0 1rem;
        height: auto;
        min-height: 72px;
        flex-wrap: wrap;
        gap: 8px;
        padding-top: 12px;
        padding-bottom: 12px;
      }
      .nav-links {
        gap: 0.5rem;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }
      .nav-links::-webkit-scrollbar {
        display: none;
      }
      .nav-link {
        font-size: 0.75rem;
        white-space: nowrap;
        padding: 0.4rem 0.6rem;
        flex-shrink: 0;
      }
      .logo-text {
        font-size: 1rem;
      }
      .logo-kanji {
        font-size: 1.25rem;
        line-height: 0.95;
      }
      .hero-content {
        padding: 2rem 1rem;
      }
      .features {
        padding: 4rem 1rem;
      }
      .tabs {
        flex-wrap: wrap;
      }
      .tab {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
      }
    }

/* === Added for multi-page split: nav links are now anchors === */
a.nav-link {
  text-decoration: none;
  display: inline-block;
}

/* Date Dojo and Kanji Drill used to be hidden here, because the top-level bar
   had run out of room. They now live inside the Practice ▾ group (NAV_GROUPS in
   i18n.js), which is where four drills belong anyway, so nothing needs hiding. */

    /* ====================================================================
       CONJUGATOR — practice options, streak, badges, session summary
       ==================================================================== */

    /* Streak counter, sits beside the score */
    .streak-box .score-value {
      color: var(--gold);
      white-space: nowrap;
    }
    .streak-box.hot .score-value {
      color: var(--accent);
    }
    .streak-best-wrap {
      font-size: 0.85rem;
      font-weight: 400;
      color: var(--text-light);
    }

    /* Row of practice toggles under the filters */
    .practice-options {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
      margin: -0.5rem 0 1.5rem;
      font-size: 0.9rem;
      color: var(--text-light);
    }
    .opt-toggle {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
      user-select: none;
    }
    .opt-toggle input {
      width: 1rem;
      height: 1rem;
      accent-color: var(--sage);
      cursor: pointer;
    }
    .session-progress {
      font-variant-numeric: tabular-nums;
      letter-spacing: 0.05em;
      color: var(--text-light);
    }

    /* Badges above the prompt */
    .question-badges {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-bottom: 0.5rem;
      min-height: 0;
    }
    .q-badge {
      display: inline-block;
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.02em;
    }
    .q-badge.review {
      background: #fef3c7;
      color: #92400e;
      border: 1px solid #fcd34d;
    }
    .q-badge.quiz {
      background: #e0f2fe;
      color: #075985;
      border: 1px solid #7dd3fc;
    }

    /* Answer row with the romaji toggle */
    .answer-row {
      display: flex;
      align-items: stretch;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }
    .answer-row .answer-input {
      flex: 1;
      margin-bottom: 0;
    }
    .romaji-toggle {
      flex: 0 0 auto;
      width: 3.25rem;
      border: 2px solid var(--sage);
      background: var(--sage);
      color: #fff;
      font-family: 'Noto Serif JP', serif;
      font-size: 1.25rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
    }
    .romaji-toggle:hover {
      filter: brightness(1.08);
    }
    .romaji-toggle.off {
      background: transparent;
      color: var(--text-light);
      border-color: rgba(0,0,0,0.15);
    }

    /* End-of-round summary */
    .session-summary {
      background: var(--paper-warm);
      border: 1px solid rgba(0,0,0,0.08);
      border-top: 3px solid var(--sage);
      padding: 2rem 1.5rem;
      text-align: center;
    }
    .summary-head {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 1.5rem;
    }
    .summary-grid {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1.25rem 1.75rem;
      margin-bottom: 1.5rem;
    }
    .summary-tile {
      min-width: 5.5rem;
    }
    .summary-value {
      font-size: 2rem;
      font-weight: 700;
      color: var(--sage);
      line-height: 1.2;
      font-variant-numeric: tabular-nums;
    }
    .summary-label {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-light);
    }
    .summary-note {
      font-size: 0.95rem;
      color: var(--text);
      margin-bottom: 0.5rem;
    }
    .summary-actions {
      display: flex;
      justify-content: center;
      gap: 0.75rem;
      flex-wrap: wrap;
      margin-top: 1.5rem;
    }
    .summary-actions .check-btn,
    .summary-actions .skip-btn {
      width: auto;
      min-width: 12rem;
    }

    @media (max-width: 768px) {
      .practice-options {
        justify-content: flex-start;
      }
      .summary-grid {
        gap: 1.25rem 1.75rem;
      }
      .summary-actions .check-btn,
      .summary-actions .skip-btn {
        width: 100%;
      }
    }

    /* Shortcuts & options dialog — same pattern as the Kana Drill's ⓘ */
    .cheat-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.55);
      z-index: 2000;
      justify-content: center;
      align-items: center;
      padding: 1rem;
    }
    .cheat-overlay.show { display: flex; }
    .cheat-box {
      position: relative;
      background: var(--paper);
      border-radius: 10px;
      padding: 1.6rem 1.75rem;
      max-height: 85vh;
      overflow-y: auto;
      width: 100%;
      box-shadow: 0 18px 50px rgba(0,0,0,0.35);
    }
    .cheat-close {
      position: absolute;
      top: 0.75rem;
      right: 0.9rem;
      background: none;
      border: none;
      font-size: 1.6rem;
      line-height: 1;
      cursor: pointer;
      color: var(--text-light);
      padding: 0.25rem;
    }
    .cheat-close:hover { color: var(--accent); }
    .cheat-title { font-size: 1.3rem; color: var(--ink); margin-bottom: 0.25rem; }
    .cheat-hint { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1.25rem; }

    .info-row {
      display: flex;
      gap: 0.9rem;
      padding: 0.6rem 0;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .info-row:last-child { border-bottom: none; }
    .info-keys {
      flex: 0 0 116px;
      font-weight: 700;
      font-size: 0.85rem;
      color: var(--ink);
    }
    .info-desc { font-size: 0.9rem; color: var(--text); line-height: 1.55; }

    .drill-chip.info-chip {
      width: 2.15rem;
      height: 2.15rem;
      padding: 0;
      border: 1.5px solid rgba(0,0,0,0.14);
      border-radius: 50%;
      background: transparent;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: Georgia, 'Times New Roman', serif;
      font-style: italic;
      font-size: 1.1rem;
      font-weight: 700;
      line-height: 1;
      color: var(--text-light);
      cursor: pointer;
      transition: all 0.2s;
    }
    .drill-chip.info-chip:hover { color: var(--accent); border-color: var(--accent-soft); }

    .options-right {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
    }

    @media (max-width: 768px) {
      .info-row { flex-direction: column; gap: 0.15rem; }
      .info-keys { flex: none; }
    }

    /* ====================================================================
       CONJUGATOR — the question prompt
       Three parts, read top to bottom: which form to make, the thing to
       translate, then worked examples as quiet reference underneath.
       ==================================================================== */

    .prompt-task {
      display: block;
      font-size: 0.74rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-light);
      margin-bottom: 0.3rem;
    }

    .prompt-phrase {
      display: block;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.35;
    }

    .prompt-examples {
      display: flex;
      align-items: baseline;
      flex-wrap: wrap;
      gap: 0.2rem 0.55rem;
      margin-top: 0.7rem;
      padding-top: 0.55rem;
      border-top: 1px solid rgba(0,0,0,0.07);
      font-size: 0.9rem;
      font-weight: 400;
      color: var(--text-light);
      line-height: 2.1;           /* room for the furigana above each word */
    }

    .prompt-examples .ex-label {
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.09em;
      color: var(--sage);
      align-self: center;
    }

    .prompt-examples .ex-item {
      font-family: 'Noto Serif JP', serif;
      white-space: nowrap;
    }

    .prompt-examples .ex-sep {
      color: rgba(0,0,0,0.18);
      user-select: none;
    }

    .prompt-examples rt {
      font-size: 0.55em;
      color: var(--text-light);
      font-weight: 400;
    }

    /* The prompt owns the row; the hint button is a quiet affordance beside it */
    .prompt-form {
      margin-top: 0;
    }

    @media (max-width: 768px) {
      .prompt-phrase { font-size: 1.15rem; }
      /* Stacked, so a separator can never dangle at the end of a wrapped line */
      .prompt-examples {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.1rem;
        line-height: 2;
      }
      .prompt-examples .ex-sep { display: none; }
      /* align-self:center means horizontal centring once the axis flips */
      .prompt-examples .ex-label { align-self: flex-start; }
      .prompt-examples .ex-item { white-space: normal; }
    }

    /* ====================================================================
       HOME — the toolkit cards
       Three colours, not nine, and each one means something:
         terracotta = reference you read        (light card)
         sage       = practice that tracks you  (dark card)
         gold       = conversation              (dark card, the one that
                                                 differs in kind from the rest)
       Every card carries its colour in the same three places — the category
       label, the glyph chip and the call to action — so the grid reads as one
       system rather than nine decisions.
       ==================================================================== */

    .tool-grid {
      display: grid;
      /* 320px caps this at three columns in the 1200px container, so nine
         cards land as a clean 3x3 instead of 4+4+1 */
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 1.25rem;
      align-items: stretch;
    }

    .tool-card {
      --card-accent: #c45c4a;
      --card-tint: rgba(196,92,74,0.10);
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 1.75rem 1.6rem 1.6rem;
      border: 1px solid rgba(0,0,0,0.09);
      border-radius: 6px;
      background: var(--paper);
      cursor: pointer;
      overflow: hidden;
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    }

    .tool-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 34px rgba(0,0,0,0.10);
      border-color: var(--card-accent);
    }

    .tool-card:focus-visible {
      outline: 2px solid var(--card-accent);
      outline-offset: 3px;
    }

    /* ---- the three variants ------------------------------------------- */
    .tool-card.is-reference {
      --card-accent: #c45c4a;
      --card-tint: rgba(196,92,74,0.10);
    }

    .tool-card.is-practice {
      /* lifted off the true sage so it stays legible on the dark card */
      --card-accent: #9dc4a1;
      --card-tint: rgba(157,196,161,0.14);
      background: linear-gradient(165deg, #232338 0%, #16161f 100%);
      border-color: rgba(255,255,255,0.09);
    }

    .tool-card.is-feature {
      --card-accent: #dcc07f;
      --card-tint: rgba(220,192,127,0.15);
      background: linear-gradient(165deg, #232338 0%, #16161f 100%);
      border-color: rgba(255,255,255,0.09);
    }

    /* ---- card interior -------------------------------------------------- */
    .tool-card__cat {
      display: block;
      font-size: 0.66rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--card-accent);
      margin-bottom: 1rem;
    }

    /* One glyph treatment for all nine — a single kanji in a tinted chip,
       instead of a mix of emoji at whatever size the font feels like. */
    .tool-card__glyph {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 3rem;
      height: 3rem;
      border-radius: 10px;
      background: var(--card-tint);
      color: var(--card-accent);
      font-family: 'Noto Serif JP', serif;
      font-size: 1.55rem;
      line-height: 1;
      margin-bottom: 1rem;
      flex: 0 0 auto;
    }

    .tool-card__title {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 0.55rem;
      line-height: 1.35;
    }
    .tool-card.is-practice .tool-card__title,
    .tool-card.is-feature .tool-card__title { color: var(--paper); }
    .tool-card__title .jp { color: var(--card-accent); }

    .tool-card__desc {
      font-size: 0.93rem;
      line-height: 1.7;
      color: var(--text);
      margin-bottom: 1.25rem;
      flex: 1;
    }
    .tool-card.is-practice .tool-card__desc,
    .tool-card.is-feature .tool-card__desc { color: rgba(255,255,255,0.72); }
    .tool-card__desc strong { color: var(--ink); font-weight: 600; }
    .tool-card.is-practice .tool-card__desc strong,
    .tool-card.is-feature .tool-card__desc strong { color: rgba(255,255,255,0.95); }
    .tool-card__desc em { font-style: italic; }

    .tool-card__cta {
      font-size: 0.86rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      color: var(--card-accent);
      margin-top: auto;
      padding-top: 0.9rem;
      border-top: 1px solid rgba(0,0,0,0.07);
    }
    .tool-card.is-practice .tool-card__cta,
    .tool-card.is-feature .tool-card__cta { border-top-color: rgba(255,255,255,0.10); }

    .tool-card__new {
      position: absolute;
      top: 1.1rem;
      right: 1.1rem;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.25rem 0.55rem;
      border-radius: 999px;
      background: var(--card-accent);
      color: #16161f;
    }

    /* ---- a legend, so the colour rule is stated rather than implied ----- */
    .tool-legend {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.4rem 1.75rem;
      margin: 0 0 2.5rem;
      font-size: 0.8rem;
      color: var(--text-light);
    }
    .tool-legend span {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
    }
    .tool-legend i {
      width: 0.6rem;
      height: 0.6rem;
      border-radius: 50%;
      background: currentColor;
      font-style: normal;
    }
    .tool-legend .lg-ref { color: #c45c4a; }
    .tool-legend .lg-prac { color: #7a9e7e; }
    .tool-legend .lg-conv { color: #bfa25f; }

    /* ---- Get started: two tiers, not nine competing colours ------------ */
    .start-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }
    .start-actions + .start-actions { margin-bottom: 2rem; }

    .start-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.9rem 1.5rem;
      font-size: 0.96rem;
      font-weight: 600;
      font-family: inherit;
      border-radius: 5px;
      border: 1.5px solid transparent;
      cursor: pointer;
      transition: all 0.2s;
    }
    .start-btn .jp { font-family: 'Noto Serif JP', serif; }

    /* Every button carries its category colour — the same three the tool grid
       and its legend use. Four near-black buttons in a row read as a wall and
       told you nothing about where each one goes. */
    .start-btn { --btn-c: var(--ink); --btn-on: var(--paper); }
    .start-btn.cat-ref  { --btn-c: #c45c4a; --btn-on: #fff; }
    .start-btn.cat-prac { --btn-c: #6f9673; --btn-on: #fff; }
    .start-btn.cat-conv { --btn-c: #bfa25f; --btn-on: #2a2418; }

    .start-btn.is-primary {
      background: var(--btn-c);
      color: var(--btn-on);
      border-color: var(--btn-c);
    }
    .start-btn.is-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }

    /* Lighter sibling of the same colour, so the second row is clearly the
       quieter option without going colourless. */
    .start-btn.is-secondary {
      background: transparent;
      color: var(--btn-c);
      border-color: color-mix(in srgb, var(--btn-c) 40%, transparent);
    }
    .start-btn.is-secondary:hover {
      border-color: var(--btn-c);
      background: color-mix(in srgb, var(--btn-c) 8%, transparent);
    }
    /* Older browsers with no color-mix fall back to the neutral outline. */
    @supports not (color: color-mix(in srgb, red 50%, blue)) {
      .start-btn.is-secondary { color: var(--ink); border-color: rgba(0,0,0,0.16); }
      .start-btn.is-secondary:hover { border-color: var(--ink); background: var(--paper-warm); }
    }

    /* ---- Where to start: the arc, in order ------------------------------ */
    .tour-sub { color: var(--text-light); font-size: 1.02rem; line-height: 1.7;
      max-width: 48ch; margin: 0 auto 2rem; }

    .tour-path { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
    .tour-step {
      --btn-c: var(--ink);
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 1rem 1.15rem; border-radius: 6px; cursor: pointer;
      background: var(--paper-warm);
      border: 1px solid rgba(0,0,0,0.07);
      border-left: 3px solid var(--btn-c);
      transition: all 0.18s;
    }
    .tour-step:hover, .tour-step:focus-visible {
      transform: translateX(3px);
      border-color: rgba(0,0,0,0.12);
      border-left-color: var(--btn-c);
      background: var(--paper);
    }
    .tour-step.cat-ref  { --btn-c: #c45c4a; }
    .tour-step.cat-prac { --btn-c: #6f9673; }
    .tour-step.cat-conv { --btn-c: #bfa25f; }

    .tour-num {
      flex: 0 0 auto; width: 1.9rem; height: 1.9rem; border-radius: 50%;
      display: grid; place-items: center;
      background: var(--btn-c); color: #fff;
      font-size: 0.86rem; font-weight: 700;
    }
    .tour-step.cat-conv .tour-num { color: #2a2418; }
    .tour-body { display: flex; flex-direction: column; gap: 0.2rem; }
    .tour-body strong { color: var(--ink); font-size: 1rem; }
    .tour-body span { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

    /* ---- See it working: live demo strip -------------------------------- */
    .demo-tabs { display: flex; justify-content: center; flex-wrap: wrap;
      gap: 0.5rem; margin-bottom: 1.5rem; }
    .demo-tab {
      --btn-c: var(--ink);
      padding: 0.5rem 1.1rem; border-radius: 999px; cursor: pointer;
      font-family: inherit; font-size: 0.88rem; font-weight: 600;
      background: transparent; color: var(--text-light);
      border: 1.5px solid rgba(0,0,0,0.14); transition: all 0.18s;
    }
    .demo-tab.cat-ref  { --btn-c: #c45c4a; }
    .demo-tab.cat-prac { --btn-c: #6f9673; }
    .demo-tab.cat-conv { --btn-c: #bfa25f; }
    .demo-tab:hover { color: var(--btn-c); border-color: var(--btn-c); }
    .demo-tab.on { background: var(--btn-c); border-color: var(--btn-c); color: #fff; }
    .demo-tab.cat-conv.on { color: #2a2418; }

    .demo-pane { display: none; }
    .demo-pane.show { display: block; animation: demo-in 0.22s ease-out; }
    @keyframes demo-in { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }
    @media (prefers-reduced-motion: reduce) {
      .demo-pane.show { animation: none; }
      .tour-step:hover { transform: none; }
    }

    .demo-stage {
      background: var(--paper-warm); border: 1px solid rgba(0,0,0,0.07);
      border-radius: 6px; padding: 2.25rem 1.75rem; text-align: center;
      min-height: 23rem; display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 0.9rem;
    }
    .demo-hint { color: var(--text-light); font-size: 0.85rem; margin: 0; max-width: 42ch; }
    .demo-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; align-items: center; }

    .demo-cta {
      display: inline-block; margin-top: 1rem; text-decoration: none;
      color: var(--btn-c, var(--accent)); font-weight: 600; font-size: 0.92rem;
      border-bottom: 1.5px solid transparent; transition: all 0.15s;
    }
    .demo-cta.cat-ref  { --btn-c: #c45c4a; }
    .demo-cta.cat-prac { --btn-c: #6f9673; }
    .demo-cta.cat-conv { --btn-c: #9a8144; }
    .demo-cta:hover { border-bottom-color: currentColor; }

    /* kana — shaped like the real drill's question card, not a flip card */
    .demo-kana-card {
      width: 100%; max-width: 22rem; border-radius: 8px;
      background: #fff; border: 1px solid rgba(0,0,0,0.08);
      padding: 1.1rem 1rem 1.4rem;
      display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
    }
    .demo-kana-tag {
      display: inline-block; padding: 0.22rem 0.75rem; border-radius: 999px;
      background: rgba(196,92,74,0.12); color: #a8422f;
      font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; line-height: 1.35;
    }
    .demo-kana-face { font-family: 'Noto Serif JP', serif; font-size: 4.4rem;
      line-height: 1; color: var(--ink); }

    /* conjugator */
    .demo-verb { font-family: 'Noto Serif JP', serif; font-size: 2.4rem; color: var(--ink); line-height: 1.1; }
    .demo-verb-sub { color: var(--text-light); font-size: 0.9rem; }
    .demo-form { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: #6f9673; margin-top: 0.4rem; }
    .demo-row { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-top: 0.3rem; }
    .demo-input {
      padding: 0.7rem 0.9rem; border: 1.5px solid rgba(0,0,0,0.18); border-radius: 6px;
      font-family: inherit; font-size: 1rem; width: 14rem; outline: none; background: #fff;
    }
    .demo-input:focus { border-color: #6f9673; }
    /* The same green あ the Conjugator and Talk use, so the converter is
       visibly the site's, not a homepage toy. */
    .demo-ime {
      display: inline-grid; place-items: center; width: 2.5rem;
      border-radius: 6px; background: var(--sage); color: #fff;
      font-family: 'Noto Serif JP', serif; font-size: 1.05rem; font-weight: 600;
    }
    .demo-verdict { margin: 0; font-size: 0.9rem; min-height: 2.6em; max-width: 40ch; line-height: 1.55; }
    .demo-verdict.good { color: #4f7a55; }
    .demo-verdict.bad  { color: var(--accent); }

    /* talk */
    .demo-chat { width: 100%; max-width: 30rem; display: flex; flex-direction: column; gap: 0.6rem; text-align: left; }
    .demo-b { padding: 0.65rem 0.9rem; border-radius: 10px; font-size: 0.93rem; line-height: 1.6;
      opacity: 0; animation: demo-b-in 0.3s ease-out forwards; }
    @keyframes demo-b-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
    @media (prefers-reduced-motion: reduce) { .demo-b { animation: none; opacity: 1; } }
    .demo-b.me { align-self: flex-end; background: var(--ink); color: var(--paper); border-bottom-right-radius: 3px; }
    .demo-b.katsu { align-self: flex-start; background: #fff; border: 1px solid rgba(0,0,0,0.09); border-bottom-left-radius: 3px; }
    .demo-b .jp { font-family: 'Noto Serif JP', serif; }
    .demo-b-en { display: block; margin-top: 0.35rem; padding-top: 0.35rem;
      border-top: 1px dashed rgba(0,0,0,0.1); color: var(--text-light); font-size: 0.85rem; }
    /* Folded by default, the way it arrives in the real conversation. */
    .demo-b-fix { margin-top: 0.45rem; border-left: 3px solid var(--accent);
      background: rgba(196,92,74,0.07); border-radius: 0 4px 4px 0; color: var(--text); }
    .demo-fix-head {
      display: flex; align-items: center; gap: 0.35rem; width: 100%;
      background: none; border: none; padding: 0.45rem 0.6rem; cursor: pointer;
      font-family: inherit; text-align: left; border-radius: 0 4px 4px 0;
      transition: background 0.15s;
    }
    .demo-fix-head:hover { background: rgba(196,92,74,0.08); }
    .demo-fix-head b { font-size: 0.66rem; letter-spacing: 0.09em;
      text-transform: uppercase; color: var(--accent); }
    /* Says out loud that it opens — a caret alone reads as decoration. */
    .demo-fix-more { margin-left: auto; font-size: 0.7rem; color: var(--text-light);
      text-decoration: underline; text-underline-offset: 2px; }
    .demo-fix-caret { color: var(--accent); font-size: 0.7rem; transition: transform 0.2s; }
    .demo-b-fix.open .demo-fix-caret { transform: rotate(90deg); }
    .demo-fix-body {
      font-size: 0.82rem; line-height: 1.6;
      max-height: 0; overflow: hidden; padding: 0 0.6rem;
      transition: max-height 0.28s ease, padding 0.28s ease;
    }
    .demo-b-fix.open .demo-fix-body { max-height: 10rem; padding: 0 0.6rem 0.5rem; }
    @media (prefers-reduced-motion: reduce) {
      .demo-fix-body, .demo-fix-caret { transition: none; }
    }

    /* ---- Shared home section furniture --------------------------------- */
    .home-section { max-width: 1000px; margin: 0 auto; padding: 3.5rem 2rem; }

    .home-panel {
      background: var(--paper);
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 6px;
      padding: 3rem;
    }
    .home-panel.is-dark {
      background: var(--ink);
      color: var(--paper);
      border-color: transparent;
    }

    /* Section headings get a kanji mark and a short rule, so every section
       opens the same way instead of each one inventing its own heading. */
    .home-h2 {
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 1.5rem;
      text-align: center;
    }
    .home-panel.is-dark .home-h2 { color: var(--paper); }

    .section-mark {
      display: block;
      text-align: center;
      font-family: 'Noto Serif JP', serif;
      font-size: 1.5rem;
      color: var(--accent);
      opacity: 0.55;
      margin-bottom: 0.35rem;
      line-height: 1;
    }
    .home-panel.is-dark .section-mark { color: var(--gold); opacity: 0.8; }

    .home-h2::after {
      content: '';
      display: block;
      width: 2.5rem;
      height: 2px;
      background: var(--accent);
      margin: 0.9rem auto 0;
      opacity: 0.5;
    }
    .home-panel.is-dark .home-h2::after { background: var(--gold); }

    .stat-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
      gap: 1rem;
      margin: 2rem 0;
    }
    .stat-cell {
      text-align: center;
      padding: 1.4rem 1rem;
      background: var(--paper-warm);
      border-radius: 6px;
      border: 1px solid rgba(0,0,0,0.05);
    }
    .stat-cell__glyph {
      font-family: 'Noto Serif JP', serif;
      font-size: 2rem;
      color: var(--accent);
      opacity: 0.85;
      margin-bottom: 0.45rem;
      line-height: 1;
    }
    .stat-cell__value { font-weight: 700; color: var(--ink); }
    .stat-cell__note { font-size: 0.86rem; color: var(--text-light); }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 2rem 2.25rem;
    }
    .why-item h3 {
      display: flex;
      align-items: baseline;
      gap: 0.55rem;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.55rem;
      color: var(--gold);
    }
    .why-item h3 .why-mark {
      font-family: 'Noto Serif JP', serif;
      font-size: 0.95rem;
      opacity: 0.65;
    }
    .why-item p {
      line-height: 1.7;
      color: rgba(255,255,255,0.82);
      font-size: 0.93rem;
    }

    .creator-note {
      background: var(--paper-warm);
      padding: 1.75rem;
      border-radius: 6px;
      border-left: 3px solid var(--accent);
      margin-top: 1.5rem;
      text-align: left;
    }
    .creator-note p {
      font-size: 0.94rem;
      color: var(--text);
      line-height: 1.75;
      margin: 0;
    }

    @media (max-width: 768px) {
      .home-section { padding: 2.5rem 1.25rem; }
      .home-panel { padding: 1.75rem 1.4rem; }
      .home-h2 { font-size: 1.55rem; }
      .tool-grid { grid-template-columns: 1fr; }
      .tool-legend { gap: 0.35rem 1.1rem; font-size: 0.75rem; }
      .start-actions .start-btn { width: 100%; justify-content: center; }
      .why-grid { gap: 1.75rem; }
      /* One column on a phone: copy first, then the drill. */
      .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .hero-demo { padding: 1rem; }
      .hero-demo .demo-stage { min-height: 21rem; padding: 1.4rem 1rem; }
      .hero-demo .demo-tabs { justify-content: center; }
      .hero-meta { gap: 1.2rem 1.6rem; }
      .demo-kana-row { gap: 0.8rem; }
      .home-section.is-band .tour-path { grid-template-columns: 1fr; }
      .home-section.is-band .tour-step { flex-direction: row; }
      .demo-input { width: 100%; }
      .demo-row { flex-direction: column; align-items: stretch; }
      .demo-stage { padding: 1.4rem 1rem; }
      .tour-step { padding: 0.85rem 0.9rem; gap: 0.75rem; }
    }

    /* ============================================================
       B + C — English leads on the type, warm on the tone.

       The tool cards used to open with a lone kanji glyph and a title
       reading "仮名 — Kana", so the first thing a beginner's eye landed on
       was the one part they could not read. The glyph is now a line icon,
       the title leads in the reader's own language, and the Japanese sits
       at the foot of the card with its romaji, where it reads as a bonus
       rather than a prerequisite.
       ============================================================ */

    .tool-card {
      border-radius: 14px;
      background: #ffffff;
      box-shadow: 0 1px 2px rgba(26,26,46,0.04);
    }
    .tool-card:hover {
      box-shadow: 0 6px 18px rgba(26,26,46,0.09);
    }

    /* the glyph box now holds an icon, not a character */
    .tool-card__glyph { border-radius: 14px; }
    .tool-card__glyph svg { width: 26px; height: 26px; }

    .tool-card__title { font-size: 1.32rem; font-weight: 700; letter-spacing: -0.01em; }

    /* the Japanese, demoted: same row as the CTA, quiet, never the entry point */
    .tool-card__cta {
      display: inline-flex; align-items: center;
      padding-top: 0.85rem; margin-top: auto;
      border-top: 1px solid rgba(0,0,0,0.07);
      width: 100%;
    }
    .tool-card__jp {
      position: absolute; right: 1.6rem; bottom: 1.5rem;
      font-family: 'Noto Serif JP', serif;
      font-size: 0.78rem; color: var(--text-light); opacity: 0.8;
      pointer-events: none;
    }
    .tool-card__jp i { font-style: normal; opacity: 0.75; margin-left: 0.15rem; }
    .tool-card.is-feature .tool-card__jp { color: rgba(255,255,255,0.55); }
    .tool-card.is-feature .tool-card__cta { border-top-color: rgba(255,255,255,0.14); }

    /* warmer ground under the banded sections */
    .home-section { background: #fdf8f1; }
    .home-section.is-band { background: var(--ink); }
    .home-panel { border-radius: 18px; }

    /* the section headings lost their marks — give the title back its air */
    .section-title { margin-top: 0.2rem; }

    /* a first-time visitor should be told, not left to guess */
    .toolkit-welcome {
      display: flex; align-items: center; gap: 1.15rem;
      max-width: 1100px; margin: 0 auto 2rem;
      background: #ffffff; border: 1px solid rgba(196,92,74,0.18);
      border-radius: 18px; padding: 1.15rem 1.5rem;
    }
    .toolkit-welcome__icon {
      flex: 0 0 auto; width: 2.6rem; height: 2.6rem; border-radius: 50%;
      background: var(--ink); color: var(--gold);
      display: flex; align-items: center; justify-content: center;
    }
    .toolkit-welcome__icon svg { width: 20px; height: 20px; }
    .toolkit-welcome__text { flex: 1; font-size: 0.95rem; line-height: 1.65; color: var(--text); }
    .toolkit-welcome__text strong { color: var(--ink); display: block; margin-bottom: 0.15rem; font-size: 1.02rem; }

    @media (max-width: 640px) {
      .toolkit-welcome { flex-direction: column; text-align: center; gap: 0.8rem; }
      .tool-card__jp { position: static; display: block; margin-top: 0.6rem; }
    }
