:root {
    --bg: #F2F0F0; --text: #101111; --muted: #6B6B6B;
    --btn-bg: #101111; --btn-text: #F2F0F0;
    --hair: rgba(16,17,17,0.10); --dot: rgba(16,17,17,1);
    --chip: rgba(16,17,17,0.04);
    --header-bg: rgba(242,240,240,0.72);
    /* hero phrases: pure ink + a 30%-tint key word (inverted from the dark spec) */
    --ph-strong: #101111; --ph-dim: rgba(16,17,17,0.35);
  }
  [data-theme="dark"] {
    --bg: #0C0D0D; --text: #F2F0F0; --muted: #8A8A8A;
    --btn-bg: #F2F0F0; --btn-text: #0C0D0D;
    --hair: rgba(242,240,240,0.12); --dot: rgba(242,240,240,1);
    --chip: rgba(242,240,240,0.05);
    --header-bg: rgba(12,13,13,0.66);
    /* hero phrases: completely white + a 30%-black key word, per spec */
    --ph-strong: #FFFFFF; --ph-dim: #B3B3B3;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg); color: var(--text);
    font-family: 'Hanken Grotesk', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    transition: background .35s ease, color .35s ease;
  }

  #bg { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; }
  .vignette {
    position: fixed; inset: 0; z-index: 1; pointer-events: none;
    background: radial-gradient(120% 90% at 50% 50%, transparent 55%, var(--bg) 100%);
    opacity: .9;
  }

  /* ---- fixed header: logo, theme toggle and account stay put while the page scrolls ---- */
  header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 10;
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 30px;
    transition: background .25s ease, backdrop-filter .25s ease;
  }
  header.scrolled { background: var(--header-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
  .logo {
    font-family: 'Sora', sans-serif; font-weight: 800; font-size: 22px;
    letter-spacing: -0.04em; user-select: none; color: var(--text); text-decoration: none;
  }
  .logo .dot { color: var(--muted); }
  .actions { display: flex; align-items: center; gap: 10px; }

  .icon-btn {
    width: 40px; height: 40px; border-radius: 0;
    border: 1px solid var(--hair); background: var(--chip);
    color: var(--text); cursor: pointer; display: grid; place-items: center;
    transition: transform .18s ease, background .2s ease, border-color .2s ease;
    backdrop-filter: blur(6px);
  }
  .icon-btn:hover { transform: translateY(-1px); border-color: var(--text); }
  .icon-btn svg { width: 18px; height: 18px; display: block; }
  .menu-wrap { position: relative; }
  .menu {
    position: absolute; top: 50px; right: 0; min-width: 230px; max-width: 280px;
    background: var(--bg); border: 1px solid var(--hair); border-radius: 0;
    box-shadow: 0 14px 40px rgba(0,0,0,.22); padding: 6px; z-index: 60; display: none;
  }
  .menu.open { display: block; }
  .menu .menu-head { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding: 9px 12px 6px; }
  .menu a, .menu button {
    width: 100%; display: flex; align-items: center; gap: 10px; padding: 10px 12px;
    background: none; border: none; color: var(--text); font-size: 13px; font-weight: 600;
    border-radius: 0; cursor: pointer; text-align: left; text-decoration: none;
    font-family: inherit; overflow: hidden;
  }
  .menu a:hover, .menu button:hover { background: var(--chip); }
  .menu a svg, .menu button svg { width: 16px; height: 16px; color: var(--muted); flex-shrink: 0; }
  .menu .r-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .menu .r-sub { color: var(--muted); font-weight: 500; font-size: 11px; }
  .menu .r-meta { display: flex; flex-direction: column; min-width: 0; gap: 1px; }
  .menu .menu-sep { height: 1px; background: var(--hair); margin: 6px 8px; }
  .menu .menu-empty { color: var(--muted); font-size: 12px; font-weight: 500; padding: 8px 12px 12px; }
  .icon-btn .sun { display: none; }
  [data-theme="dark"] .icon-btn .sun { display: block; }
  [data-theme="dark"] .icon-btn .moon { display: none; }

  /* ---- hero ---- */
  .hero {
    position: relative; z-index: 2;
    min-height: 100svh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    padding: 96px 24px 64px;
  }
  .kicker {
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--muted); font-weight: 600; margin-bottom: 22px;
  }
  .rotator {
    font-family: 'Sora', sans-serif; font-weight: 700;
    font-size: clamp(40px, 8vw, 88px); line-height: 1.04;
    letter-spacing: -0.045em;
    position: relative; width: 100%; max-width: 980px;
    display: block;
  }
  .rotator .ph-phantom {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; column-gap: 0.28em;
    visibility: hidden; pointer-events: none;
  }
  .rotator .ph {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; column-gap: 0.28em;
    color: var(--ph-strong);
    opacity: 0; transform: translateY(12px);
    transition: opacity .5s ease, transform .5s ease;
    pointer-events: none;
  }
  .rotator .ph.on { opacity: 1; transform: none; }
  .rotator .ph em { font-style: normal; color: var(--ph-dim); }
  .sub {
    margin-top: 22px; max-width: 46ch; color: var(--muted);
    font-size: clamp(15px, 2vw, 18px); line-height: 1.5;
  }
  .cta-row { margin-top: 40px; }
  @media (prefers-reduced-motion: no-preference) {
    .kicker { opacity: 0; animation: rise .8s ease .1s forwards; }
    .rotator { opacity: 0; animation: rise .9s ease .2s forwards; }
    .sub { opacity: 0; animation: rise .9s ease .32s forwards; }
    .cta-row { opacity: 0; animation: rise .9s ease .44s forwards; }
  }
  .get-started {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 28px; border-radius: 0;
    background: var(--btn-bg); color: var(--btn-text);
    font-family: 'Hanken Grotesk', sans-serif; font-weight: 600; font-size: 16px;
    text-decoration: none; border: none; cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .get-started:hover { transform: translateY(-2px); }
  .get-started .arrow { transition: transform .25s ease; display: grid; place-items: center; }
  .get-started:hover .arrow { transform: translateX(4px); }
  .hero-meta { margin-top: 26px; font-size: 12px; color: var(--muted); letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: 7px; }
  .hero-meta .live-dot { width: 6px; height: 6px; border-radius: 0; background: currentColor; animation: pulse 2s ease-in-out infinite; }

  /* ---- footer: sitemap, logo again, 2026, all rights reserved ---- */
  .site-footer {
    position: relative; z-index: 2;
    background: var(--bg);
    border-top: 1px solid var(--hair);
    padding: 64px 30px 28px;
  }
  .f-inner { max-width: 1180px; margin: 0 auto; }
  .f-top { display: flex; flex-wrap: wrap; gap: 48px; justify-content: space-between; }
  .f-brand { max-width: 280px; }
  .f-brand .logo { font-size: 20px; }
  .f-brand p { margin-top: 12px; font-size: 13px; color: var(--muted); line-height: 1.6; }
  .f-faq-btn { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; padding: 9px 16px; border: 1px solid var(--hair); color: var(--text); text-decoration: none; font-size: 13px; font-weight: 600; transition: border-color .15s, transform .15s; }
  .f-faq-btn:hover { border-color: var(--text); transform: translateY(-1px); }
  .f-cols { display: flex; flex-wrap: wrap; gap: 56px; }
  .f-col h4 {
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--muted); font-weight: 700; margin-bottom: 16px;
  }
  .f-col ul { list-style: none; }
  .f-col li { margin-bottom: 10px; }
  .f-col a { color: var(--text); text-decoration: none; font-size: 13.5px; font-weight: 500; opacity: .85; transition: opacity .15s; }
  .f-col a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
  .f-bottom {
    margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--hair);
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
    font-size: 12.5px; color: var(--muted);
  }
  .f-bottom .logo { font-size: 17px; }

  @keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
  @keyframes pulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }
  @media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
  @media (max-width: 600px) {
    header { padding: 18px; }
    .site-footer { padding: 48px 20px 24px; }
    .f-cols { gap: 36px; }
  }
  /* Floating Roadmap Widget */
  .floating-roadmap {
    position: fixed; top: 90px; right: 30px; width: 260px;
    background: var(--header-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--hair); border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0,0,0,.15); padding: 16px; z-index: 50;
  }
  .floating-roadmap h4 {
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted); font-weight: 700; margin-bottom: 12px;
  }
  .floating-roadmap .rm-item {
    display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 13px; font-weight: 500;
  }
  .floating-roadmap .rm-item .dot {
    width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  }
  .floating-roadmap .rm-item.planning .dot { background: #3b82f6; }
  .floating-roadmap .rm-item.in_progress .dot { background: #eab308; }
  .floating-roadmap .rm-text {
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text);
  }
  .floating-roadmap .rm-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 10px; padding-top: 12px; border-top: 1px solid var(--hair); width: 100%;
    color: var(--text); text-decoration: none; font-size: 12px; font-weight: 600;
  }
  .floating-roadmap .rm-link:hover { opacity: 0.7; }
  @media (max-width: 900px) {
    .floating-roadmap { display: none; }
  }

/* ==================== */

:root {
    --bg: #F2F0F0; --text: #101111; --muted: #6B6B6B;
    --hair: rgba(16,17,17,0.10); --chip: rgba(16,17,17,0.04);
    --card: rgba(16,17,17,0.025); --card-border: rgba(16,17,17,0.12);
    --header-bg: rgba(242,240,240,0.72);
  }
  [data-theme="dark"] {
    --bg: #0C0D0D; --text: #F2F0F0; --muted: #8A8A8A;
    --hair: rgba(242,240,240,0.12); --chip: rgba(242,240,240,0.05);
    --card: rgba(242,240,240,0.028); --card-border: rgba(242,240,240,0.12);
    --header-bg: rgba(12,13,13,0.66);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body { background: var(--bg); color: var(--text); font-family: 'Hanken Grotesk', sans-serif; min-height: 100vh; transition: background .35s ease, color .35s ease; }

  header { position: fixed; top: 0; left: 0; width: 100%; z-index: 10; display: flex; align-items: center; justify-content: space-between; padding: 22px 30px; transition: background .25s ease, backdrop-filter .25s ease; }
  header.scrolled { background: var(--header-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
  .logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -0.04em; color: var(--text); text-decoration: none; user-select: none; }
  .logo .dot { color: var(--muted); }
  .actions { display: flex; align-items: center; gap: 10px; }
  .icon-btn { width: 40px; height: 40px; border-radius: 0; border: 1px solid var(--hair); background: var(--chip); color: var(--text); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .15s, transform .15s; }
  .icon-btn:hover { transform: translateY(-1px); border-color: var(--text); }
  .icon-btn svg { width: 18px; height: 18px; display: block; }
  .icon-btn .sun { display: none; }
  [data-theme="dark"] .icon-btn .sun { display: block; }
  [data-theme="dark"] .icon-btn .moon { display: none; }
  .top-link { font-size: 13.5px; font-weight: 600; color: var(--text); text-decoration: none; opacity: .85; padding: 0 6px; }
  .top-link:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }

  main { max-width: 880px; margin: 0 auto; padding: 132px 30px 40px; }
  .kicker { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
  h1 { font-family: 'Sora', sans-serif; font-weight: 800; font-size: clamp(34px, 6vw, 54px); letter-spacing: -0.03em; margin: 14px 0 14px; line-height: 1.04; }
  .lede { font-size: 16px; color: var(--muted); line-height: 1.6; max-width: 640px; }

  .faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
  .faq-card { border: 1px solid var(--card-border); background: var(--card); }
  .faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--text); font-family: inherit; font-size: 16.5px; font-weight: 600; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; }
  .faq-q .ic { flex-shrink: 0; width: 18px; height: 18px; position: relative; transition: transform .25s ease; }
  .faq-q .ic::before, .faq-q .ic::after { content: ''; position: absolute; background: var(--muted); }
  .faq-q .ic::before { top: 8px; left: 0; width: 18px; height: 2px; }
  .faq-q .ic::after { left: 8px; top: 0; width: 2px; height: 18px; transition: opacity .2s ease; }
  .faq-card.open .faq-q .ic { transform: rotate(90deg); }
  .faq-card.open .faq-q .ic::after { opacity: 0; }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
  .faq-a-inner { padding: 0 22px 20px; color: var(--muted); font-size: 15px; line-height: 1.7; }
  .faq-a-inner a { color: var(--text); }

  .site-footer { background: var(--bg); border-top: 1px solid var(--hair); padding: 56px 30px 26px; margin-top: 64px; }
  .f-inner { max-width: 1180px; margin: 0 auto; }
  .f-top { display: flex; flex-wrap: wrap; gap: 48px; justify-content: space-between; }
  .f-brand { max-width: 280px; }
  .f-brand .logo { font-size: 20px; }
  .f-brand p { margin-top: 12px; font-size: 13px; color: var(--muted); line-height: 1.6; }
  .f-faq-btn { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; padding: 9px 16px; border: 1px solid var(--card-border); color: var(--text); text-decoration: none; font-size: 13px; font-weight: 600; transition: border-color .15s, transform .15s; }
  .f-faq-btn:hover { border-color: var(--text); transform: translateY(-1px); }
  .f-cols { display: flex; flex-wrap: wrap; gap: 56px; }
  .f-col h4 { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 16px; }
  .f-col ul { list-style: none; padding: 0; margin: 0; }
  .f-col li { margin-bottom: 10px; }
  .f-col a { color: var(--text); text-decoration: none; font-size: 13.5px; font-weight: 500; opacity: .85; transition: opacity .15s; }
  .f-col a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
  .f-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--hair); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; font-size: 12.5px; color: var(--muted); }
  .f-bottom .logo { font-size: 17px; }
  @media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

/* ==================== */

:root {
    --bg: #F2F0F0; --text: #101111; --muted: #6B6B6B;
    --hair: rgba(16,17,17,0.10); --chip: rgba(16,17,17,0.04);
    --card: rgba(16,17,17,0.025); --card-border: rgba(16,17,17,0.12);
    --header-bg: rgba(242,240,240,0.72);
  }
  [data-theme="dark"] {
    --bg: #0C0D0D; --text: #F2F0F0; --muted: #8A8A8A;
    --hair: rgba(242,240,240,0.12); --chip: rgba(242,240,240,0.05);
    --card: rgba(242,240,240,0.028); --card-border: rgba(242,240,240,0.12);
    --header-bg: rgba(12,13,13,0.66);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body { background: var(--bg); color: var(--text); font-family: 'Hanken Grotesk', sans-serif; min-height: 100vh; transition: background .35s ease, color .35s ease; }

  header { position: fixed; top: 0; left: 0; width: 100%; z-index: 10; display: flex; align-items: center; justify-content: space-between; padding: 22px 30px; transition: background .25s ease, backdrop-filter .25s ease; }
  header.scrolled { background: var(--header-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
  .logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -0.04em; color: var(--text); text-decoration: none; user-select: none; }
  .logo .dot { color: var(--muted); }
  .actions { display: flex; align-items: center; gap: 10px; }
  .icon-btn { width: 40px; height: 40px; border-radius: 0; border: 1px solid var(--hair); background: var(--chip); color: var(--text); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .15s, transform .15s; }
  .icon-btn:hover { transform: translateY(-1px); border-color: var(--text); }
  .icon-btn svg { width: 18px; height: 18px; display: block; }
  .icon-btn .sun { display: none; }
  [data-theme="dark"] .icon-btn .sun { display: block; }
  [data-theme="dark"] .icon-btn .moon { display: none; }
  .top-link { font-size: 13.5px; font-weight: 600; color: var(--text); text-decoration: none; opacity: .85; padding: 0 6px; }
  .top-link:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }

  main { max-width: 880px; margin: 0 auto; padding: 132px 30px 40px; }
  .kicker { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
  h1 { font-family: 'Sora', sans-serif; font-weight: 800; font-size: clamp(34px, 6vw, 54px); letter-spacing: -0.03em; margin: 14px 0 14px; line-height: 1.04; }
  .lede { font-size: 16px; color: var(--muted); line-height: 1.6; max-width: 640px; }

  .faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
  .faq-card { border: 1px solid var(--card-border); background: var(--card); }
  .faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--text); font-family: inherit; font-size: 16.5px; font-weight: 600; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; }
  .faq-q .ic { flex-shrink: 0; width: 18px; height: 18px; position: relative; transition: transform .25s ease; }
  .faq-q .ic::before, .faq-q .ic::after { content: ''; position: absolute; background: var(--muted); }
  .faq-q .ic::before { top: 8px; left: 0; width: 18px; height: 2px; }
  .faq-q .ic::after { left: 8px; top: 0; width: 2px; height: 18px; transition: opacity .2s ease; }
  .faq-card.open .faq-q .ic { transform: rotate(90deg); }
  .faq-card.open .faq-q .ic::after { opacity: 0; }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
  .faq-a-inner { padding: 0 22px 20px; color: var(--muted); font-size: 15px; line-height: 1.7; }
  .faq-a-inner a { color: var(--text); }

  .site-footer { background: var(--bg); border-top: 1px solid var(--hair); padding: 56px 30px 26px; margin-top: 64px; }
  .f-inner { max-width: 1180px; margin: 0 auto; }
  .f-top { display: flex; flex-wrap: wrap; gap: 48px; justify-content: space-between; }
  .f-brand { max-width: 280px; }
  .f-brand .logo { font-size: 20px; }
  .f-brand p { margin-top: 12px; font-size: 13px; color: var(--muted); line-height: 1.6; }
  .f-faq-btn { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; padding: 9px 16px; border: 1px solid var(--card-border); color: var(--text); text-decoration: none; font-size: 13px; font-weight: 600; transition: border-color .15s, transform .15s; }
  .f-faq-btn:hover { border-color: var(--text); transform: translateY(-1px); }
  .f-cols { display: flex; flex-wrap: wrap; gap: 56px; }
  .f-col h4 { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 16px; }
  .f-col ul { list-style: none; padding: 0; margin: 0; }
  .f-col li { margin-bottom: 10px; }
  .f-col a { color: var(--text); text-decoration: none; font-size: 13.5px; font-weight: 500; opacity: .85; transition: opacity .15s; }
  .f-col a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
  .f-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--hair); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; font-size: 12.5px; color: var(--muted); }
  .f-bottom .logo { font-size: 17px; }
  @media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

  .roadmap-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
  }
  .rm-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .rm-header h1 {
    font-size: 42px;
    font-family: 'Sora', sans-serif;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
    color: var(--text);
  }
  .rm-header p {
    color: var(--muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .rm-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
  }
  .rm-col {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 24px;
    min-height: 400px;
  }
  .rm-col-title {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.02em;
  }
  .rm-col-title.planning { color: #8A8A8A; }
  .rm-col-title.in-progress { color: #3b82f6; }
  .rm-col-title.done { color: #10b981; }
  
  .rm-col-title .badge {
    background: var(--bg);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    color: var(--text);
    font-weight: 600;
    border: 1px solid var(--card-border);
  }
  
  .rm-item {
    background: var(--bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    transition: transform 0.2s, border-color 0.2s;
  }
  .rm-item:hover {
    border-color: var(--text);
    transform: translateY(-2px);
  }
  .rm-item-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text);
  }
  .rm-item-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 12px;
  }
  .rm-item-date {
    font-size: 11px;
    color: var(--muted);
    font-family: monospace;
  }
  
  .rm-admin-ctrl {
    display: none;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--card-border);
  }
  .rm-admin-ctrl select {
    background: var(--bg);
    border: 1px solid var(--card-border);
    color: var(--text);
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    width: 100%;
    outline: none;
    cursor: pointer;
  }
  
  .admin-bar {
    display: none;
    background: var(--text);
    color: var(--bg);
    padding: 12px 24px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    border-radius: 8px;
    justify-content: space-between;
    align-items: center;
  }
  
  #addForm { display: none; margin-bottom: 24px; background: var(--card); padding: 24px; border: 1px solid var(--card-border); border-radius: 12px; }
  #addForm input, #addForm textarea { width: 100%; background: var(--bg); border: 1px solid var(--card-border); color: var(--text); padding: 12px; margin-bottom: 12px; border-radius: 6px; font-family: inherit; }
  #addForm button, .admin-bar button { background: var(--bg); color: var(--text); border: 1px solid var(--card-border); padding: 8px 16px; border-radius: 6px; cursor: pointer; font-family: inherit; font-weight: 600; }
  #addForm button.primary { background: var(--text); color: var(--bg); border-color: var(--text); }
  
  /* Modals */
  .scrim { position: fixed; inset: 0; background: rgba(0,0,0,.45); display: none; align-items: center; justify-content: center; z-index: 80; padding: 24px; }
  .panel { background: var(--bg); border: 1px solid var(--card-border); border-radius: 12px; width: 100%; max-width: 400px; padding: 24px; box-shadow: 0 24px 70px rgba(0,0,0,.3); text-align: center; }
  .panel input { width: 100%; padding: 10px; margin-bottom: 12px; background: var(--bg); color: var(--text); border: 1px solid var(--card-border); border-radius: 6px; outline: none; font-family: inherit; }
  .panel button { background: var(--bg); color: var(--text); border: 1px solid var(--card-border); padding: 10px 16px; border-radius: 6px; cursor: pointer; font-family: inherit; font-weight: 600; width: 100%; margin-bottom: 8px; }
  .panel button.primary { background: var(--text); color: var(--bg); border-color: var(--text); }
  
  @media (max-width: 900px) {
    .rm-board { grid-template-columns: 1fr; }
  }

/* ==================== */

:root {
    --bg: #F2F0F0; --text: #101111; --muted: #6B6B6B;
    --hair: rgba(16,17,17,0.10); --chip: rgba(16,17,17,0.04);
    --card: rgba(16,17,17,0.025); --card-border: rgba(16,17,17,0.10);
    --header-bg: rgba(242,240,240,0.72);
  }
  [data-theme="dark"] {
    --bg: #0C0D0D; --text: #F2F0F0; --muted: #8A8A8A;
    --hair: rgba(242,240,240,0.12); --chip: rgba(242,240,240,0.05);
    --card: rgba(242,240,240,0.028); --card-border: rgba(242,240,240,0.10);
    --header-bg: rgba(12,13,13,0.66);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body {
    background: var(--bg); color: var(--text);
    font-family: 'Hanken Grotesk', sans-serif; min-height: 100vh;
    transition: background .35s ease, color .35s ease;
  }

  header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 10;
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 30px;
    transition: background .25s ease, backdrop-filter .25s ease;
  }
  header.scrolled { background: var(--header-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
  .logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -0.04em; color: var(--text); text-decoration: none; user-select: none; }
  .logo .dot { color: var(--muted); }
  .actions { display: flex; align-items: center; gap: 10px; }
  .icon-btn {
    width: 40px; height: 40px; border-radius: 0;
    border: 1px solid var(--hair); background: var(--chip);
    color: var(--text); cursor: pointer; display: grid; place-items: center;
    transition: transform .18s ease, border-color .2s ease; backdrop-filter: blur(6px);
  }
  .icon-btn:hover { transform: translateY(-1px); border-color: var(--text); }
  .icon-btn svg { width: 18px; height: 18px; display: block; }
  .menu-wrap { position: relative; }
  .menu {
    position: absolute; top: 50px; right: 0; min-width: 230px; max-width: 280px;
    background: var(--bg); border: 1px solid var(--hair); border-radius: 0;
    box-shadow: 0 14px 40px rgba(0,0,0,.22); padding: 6px; z-index: 60; display: none;
  }
  .menu.open { display: block; }
  .menu .menu-head { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding: 9px 12px 6px; }
  .menu a, .menu button {
    width: 100%; display: flex; align-items: center; gap: 10px; padding: 10px 12px;
    background: none; border: none; color: var(--text); font-size: 13px; font-weight: 600;
    border-radius: 0; cursor: pointer; text-align: left; text-decoration: none;
    font-family: inherit; overflow: hidden;
  }
  .menu a:hover, .menu button:hover { background: var(--chip); }
  .menu a svg, .menu button svg { width: 16px; height: 16px; color: var(--muted); flex-shrink: 0; }
  .menu .r-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .menu .r-sub { color: var(--muted); font-weight: 500; font-size: 11px; }
  .menu .r-meta { display: flex; flex-direction: column; min-width: 0; gap: 1px; }
  .menu .menu-sep { height: 1px; background: var(--hair); margin: 6px 8px; }
  .menu .menu-empty { color: var(--muted); font-size: 12px; font-weight: 500; padding: 8px 12px 12px; }
  .icon-btn .sun { display: none; }
  [data-theme="dark"] .icon-btn .sun { display: block; }
  [data-theme="dark"] .icon-btn .moon { display: none; }

  main { max-width: 1180px; margin: 0 auto; padding: 132px 30px 80px; }
  .page-h {
    font-family: 'Sora', sans-serif; font-weight: 700; letter-spacing: -0.045em;
    font-size: clamp(34px, 5vw, 54px); line-height: 1.05;
  }
  .page-sub { margin-top: 12px; color: var(--muted); max-width: 56ch; font-size: 15.5px; line-height: 1.55; }

  .grid {
    margin-top: 44px;
    display: grid; gap: 22px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  .card {
    display: block; text-decoration: none; color: inherit; position: relative;
    background: var(--card); border: 1px solid var(--card-border);
    border-radius: 0; padding: 14px; overflow: hidden;
    transition: transform .22s ease, border-color .22s ease;
  }
  .card:hover, .card:focus-visible { transform: translateY(-4px); border-color: var(--text); outline: none; }
  .card .fav {
    position: absolute; top: 18px; right: 18px; z-index: 3; width: 32px; height: 32px;
    display: grid; place-items: center; cursor: pointer; border: 1px solid var(--hair);
    background: color-mix(in srgb, var(--bg) 70%, transparent); backdrop-filter: blur(6px);
    color: var(--muted); transition: color .18s, border-color .18s, background .18s;
  }
  .card .fav svg { width: 17px; height: 17px; display: block; }
  .card .fav:hover { color: var(--text); border-color: var(--text); }
  .card .fav.on { color: #F5B301; border-color: #F5B301; }
  .card .fav.on svg { fill: #F5B301; }
  .cat-bar { display: flex; gap: 8px; margin: 22px 0 4px; flex-wrap: wrap; }
  .cat-tab {
    font: 600 13px 'Hanken Grotesk', sans-serif; letter-spacing: .01em;
    padding: 9px 16px; border: 1px solid var(--hair); background: var(--chip);
    color: var(--muted); cursor: pointer; border-radius: 0; display: inline-flex; align-items: center; gap: 7px;
  }
  .cat-tab svg { width: 14px; height: 14px; }
  .cat-tab.active { background: var(--text); color: var(--bg); border-color: var(--text); }
  .cat-empty { color: var(--muted); font-size: 14px; padding: 30px 2px; grid-column: 1 / -1; }
  .card .del { position: absolute; top: 10px; right: 10px; z-index: 3; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--card-border); background: var(--bg); color: var(--muted); cursor: pointer; opacity: 0; transition: opacity .15s, color .15s, border-color .15s; font-size: 15px; line-height: 1; }
  .card:hover .del { opacity: 1; }
  .card .del:hover { color: var(--text); border-color: var(--text); }
  .card .uname { position: absolute; top: 10px; left: 12px; z-index: 3; font-size: 11px; font-weight: 700; letter-spacing: .04em; color: var(--muted); background: var(--bg); padding: 3px 7px; border: 1px solid var(--card-border); max-width: 60%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .thumb {
    width: 100%; aspect-ratio: 16 / 10; display: block;
    border-radius: 0; background: transparent;
  }
  .card h3 { font-family: 'Sora', sans-serif; font-weight: 700; letter-spacing: -0.03em; font-size: 17px; margin-top: 14px; }
  .card p { margin-top: 5px; color: var(--muted); font-size: 13px; line-height: 1.5; }
  .card .open {
    margin-top: 12px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
    display: inline-flex; align-items: center; gap: 6px; opacity: 0; transform: translateX(-4px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .card:hover .open, .card:focus-visible .open { opacity: 1; transform: none; }

  .site-footer { background: var(--bg); border-top: 1px solid var(--hair); padding: 56px 30px 26px; }
  .f-inner { max-width: 1180px; margin: 0 auto; }
  .f-top { display: flex; flex-wrap: wrap; gap: 48px; justify-content: space-between; }
  .f-brand { max-width: 280px; }
  .f-brand .logo { font-size: 20px; }
  .f-brand p { margin-top: 12px; font-size: 13px; color: var(--muted); line-height: 1.6; }
  .f-faq-btn { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; padding: 9px 16px; border: 1px solid var(--hair); color: var(--text); text-decoration: none; font-size: 13px; font-weight: 600; transition: border-color .15s, transform .15s; }
  .f-faq-btn:hover { border-color: var(--text); transform: translateY(-1px); }
  .f-cols { display: flex; flex-wrap: wrap; gap: 56px; }
  .f-col h4 { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 16px; }
  .f-col ul { list-style: none; padding: 0; margin: 0; }
  .f-col li { margin-bottom: 10px; }
  .f-col a { color: var(--text); text-decoration: none; font-size: 13.5px; font-weight: 500; opacity: .85; transition: opacity .15s; }
  .f-col a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
  .f-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--hair); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; font-size: 12.5px; color: var(--muted); }
  .f-bottom .logo { font-size: 17px; }
  @media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
  @media (max-width: 600px) { header { padding: 18px; } main { padding: 116px 20px 60px; } }

/* ==================== */

:root {
    --bg: #F2F0F0; --text: #101111; --muted: #6B6B6B;
    --btn-bg: #101111; --btn-text: #F2F0F0;
    --hair: rgba(16,17,17,0.10); --dot: rgba(16,17,17,1);
    --chip: rgba(16,17,17,0.04); --header-bg: rgba(242,240,240,0.72);
  }
  [data-theme="dark"] {
    --bg: #0C0D0D; --text: #F2F0F0; --muted: #8A8A8A;
    --btn-bg: #F2F0F0; --btn-text: #0C0D0D;
    --hair: rgba(242,240,240,0.12); --dot: rgba(242,240,240,1);
    --chip: rgba(242,240,240,0.05); --header-bg: rgba(12,13,13,0.66);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body {
    background: var(--bg); color: var(--text);
    font-family: 'Hanken Grotesk', sans-serif;
    min-height: 100svh; display: flex; flex-direction: column;
    transition: background .35s ease, color .35s ease;
  }
  #bg { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; }
  .vignette {
    position: fixed; inset: 0; z-index: 1; pointer-events: none;
    background: radial-gradient(120% 90% at 50% 50%, transparent 55%, var(--bg) 100%);
    opacity: .9;
  }
  header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 10;
    display: flex; align-items: center; justify-content: space-between; padding: 22px 30px;
  }
  .logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -0.04em; color: var(--text); text-decoration: none; user-select: none; }
  .logo .dot { color: var(--muted); }
  .actions { display: flex; align-items: center; gap: 10px; }
  .icon-btn {
    width: 40px; height: 40px; border-radius: 0; border: 1px solid var(--hair);
    background: var(--chip); color: var(--text); cursor: pointer; display: grid; place-items: center;
    transition: transform .18s ease, border-color .2s ease; backdrop-filter: blur(6px);
  }
  .icon-btn:hover { transform: translateY(-1px); border-color: var(--text); }
  .icon-btn svg { width: 18px; height: 18px; display: block; }
  .icon-btn .sun { display: none; }
  [data-theme="dark"] .icon-btn .sun { display: block; }
  [data-theme="dark"] .icon-btn .moon { display: none; }

  main {
    position: relative; z-index: 2; flex: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 110px 24px 60px;
  }
  .kicker {
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--muted); font-weight: 600; margin-bottom: 22px;
  }
  h1 {
    font-family: 'Sora', sans-serif; font-weight: 700;
    font-size: clamp(38px, 7vw, 78px); line-height: 1.06; letter-spacing: -0.045em;
    max-width: 880px;
  }
  .sub { margin-top: 20px; max-width: 52ch; color: var(--muted); font-size: clamp(15px, 2vw, 17.5px); line-height: 1.55; }
  .cta-row { margin-top: 38px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
  @media (prefers-reduced-motion: no-preference) {
    .kicker { opacity: 0; animation: rise .8s ease .08s forwards; }
    h1 { opacity: 0; animation: rise .9s ease .18s forwards; }
    .sub { opacity: 0; animation: rise .9s ease .3s forwards; }
    .cta-row { opacity: 0; animation: rise .9s ease .42s forwards; }
  }
  .go-template {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 28px; border-radius: 0;
    background: var(--btn-bg); color: var(--btn-text);
    font-weight: 600; font-size: 16px; text-decoration: none;
    transition: transform .2s ease;
  }
  .go-template:hover { transform: translateY(-2px); }
  .go-template .arrow { transition: transform .25s ease; display: grid; place-items: center; }
  .go-template:hover .arrow { transform: translateX(4px); }
  .all-link { font-size: 13px; color: var(--muted); text-decoration: none; font-weight: 600; }
  .all-link:hover { color: var(--text); }

  .site-footer { position: relative; z-index: 2; border-top: 1px solid var(--hair); padding: 56px 30px 26px; background: var(--bg); }
  .f-inner { max-width: 1180px; margin: 0 auto; }
  .f-top { display: flex; flex-wrap: wrap; gap: 48px; justify-content: space-between; }
  .f-brand { max-width: 280px; }
  .f-brand .logo { font-size: 20px; }
  .f-brand p { margin-top: 12px; font-size: 13px; color: var(--muted); line-height: 1.6; }
  .f-faq-btn { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; padding: 9px 16px; border: 1px solid var(--hair); color: var(--text); text-decoration: none; font-size: 13px; font-weight: 600; transition: border-color .15s, transform .15s; }
  .f-faq-btn:hover { border-color: var(--text); transform: translateY(-1px); }
  .f-cols { display: flex; flex-wrap: wrap; gap: 56px; }
  .f-col h4 { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 16px; }
  .f-col ul { list-style: none; padding: 0; margin: 0; }
  .f-col li { margin-bottom: 10px; }
  .f-col a { color: var(--text); text-decoration: none; font-size: 13.5px; font-weight: 500; opacity: .85; transition: opacity .15s; }
  .f-col a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
  .f-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--hair); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; font-size: 12.5px; color: var(--muted); }
  .f-bottom .logo { font-size: 17px; }
  @keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
  @media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
  @media (max-width: 600px) { header { padding: 18px; } .site-footer { padding: 40px 20px 22px; } .f-cols { gap: 32px; } }