/* ============================================================
   tascore — Landing Page styles
   ============================================================ */

:root {
  --bg: #0a0b14;
  --bg-2: #0e1020;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-2: rgba(255, 255, 255, 0.14);
  --text: #eaecf5;
  --muted: #9aa1ba;
  --muted-2: #6f768f;

  --lime: #b6ff3d;
  --lime-dk: #8fd62f;
  --cyan: #4fd1ff;
  --gold: #ffd34e;
  --coral: #ff6b5e;
  --purple: #9b7bff;

  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font: "Inter", system-ui, -apple-system, "Hiragino Kaku Gothic ProN",
    "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  --pixel: "Press Start 2P", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.25; letter-spacing: -0.01em; }

.grad {
  background: linear-gradient(100deg, var(--lime), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.grad-coral {
  background: linear-gradient(100deg, var(--coral), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.muted { color: var(--muted); }
.hide-sm { display: inline; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 700; font-size: 0.95rem;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
  position: relative; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn--sm { padding: 9px 18px; font-size: 0.875rem; }
.btn--block { width: 100%; }
.btn--primary {
  background: linear-gradient(100deg, var(--lime), var(--lime-dk));
  color: #0a1206;
  box-shadow: 0 10px 30px -10px rgba(182, 255, 61, 0.6);
}
.btn--primary:hover { box-shadow: 0 16px 40px -12px rgba(182, 255, 61, 0.7); }
.btn--ghost { background: var(--surface); color: var(--text); border-color: var(--border-2); }
.btn--ghost:hover { background: var(--surface-2); }
.btn__sub {
  position: absolute; top: -9px; right: 10px;
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.04em;
  background: var(--coral); color: #1a0606; padding: 2px 7px; border-radius: 999px;
}
.btn__apple { margin-top: -2px; flex: 0 0 auto; }

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.82rem; font-weight: 600; color: var(--text);
  background: var(--surface); border: 1px solid var(--border-2);
  padding: 7px 15px; border-radius: 999px;
}
.pill__x { color: var(--lime); font-weight: 800; }

.kicker {
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.22em;
  color: var(--lime); text-transform: uppercase; margin-bottom: 14px;
}
.kicker--pixel { color: var(--coral); font-family: var(--pixel); font-size: 0.62rem; letter-spacing: 0.1em; }

.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); display: inline-block; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 11, 20, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; gap: 18px; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 9px; }
.brand__mark { display: inline-flex; filter: drop-shadow(0 2px 8px rgba(182, 255, 61, 0.4)); }
.brand__name { font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; }
.nav__links { margin-left: auto; display: flex; gap: 26px; }
.nav__links a { font-size: 0.92rem; color: var(--muted); font-weight: 500; transition: color 0.2s; }
.nav__links a:hover { color: var(--text); }
.nav__cta { margin-left: 4px; }

.nav__toggle { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; flex-direction: column; gap: 5px; justify-content: center; align-items: center; }
.nav__toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.25s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile { display: flex; flex-direction: column; gap: 6px; padding: 14px 22px 22px; border-bottom: 1px solid var(--border); background: var(--bg-2); }
.nav__mobile[hidden] { display: none; }
.nav__mobile a { padding: 11px 6px; color: var(--muted); font-weight: 600; }
.nav__mobile a:not(.btn) { border-bottom: 1px solid var(--border); }
.nav__mobile .btn { margin-top: 10px; color: #0a1206; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 78px 0 70px; overflow: hidden; }
.hero__glow {
  position: absolute; inset: -20% -10% auto; height: 620px;
  background:
    radial-gradient(600px 320px at 20% 20%, rgba(182, 255, 61, 0.16), transparent 70%),
    radial-gradient(560px 320px at 85% 10%, rgba(79, 209, 255, 0.14), transparent 70%),
    radial-gradient(500px 320px at 70% 80%, rgba(155, 123, 255, 0.10), transparent 70%);
  filter: blur(8px); pointer-events: none;
}
.hero__grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero__title { font-size: clamp(2.3rem, 5.4vw, 3.7rem); font-weight: 900; margin: 20px 0 18px; letter-spacing: -0.03em; }
.hero__lead { font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--muted); max-width: 38ch; }
.hero__lead strong { color: var(--text); }
.hero__actions { display: flex; gap: 12px; margin: 30px 0 22px; flex-wrap: wrap; }
.hero__bullets { display: flex; gap: 20px; flex-wrap: wrap; list-style: none; }
.hero__bullets li { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--muted); font-weight: 500; }

/* Phone mockup */
.hero__visual { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; width: 290px; height: 590px; border-radius: 44px;
  background: linear-gradient(160deg, #1a1d2e, #0c0e1a);
  border: 1px solid var(--border-2); padding: 12px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.phone__notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 120px; height: 26px; background: #07080f; border-radius: 0 0 16px 16px; z-index: 3; }
.phone__screen {
  width: 100%; height: 100%; border-radius: 34px; overflow: hidden;
  background: radial-gradient(120% 80% at 50% 0%, #141830, #0a0b14);
  padding: 40px 16px 16px; display: flex; flex-direction: column; gap: 14px;
}
.mini-status { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--muted); font-weight: 600; }
.mini-score { color: var(--gold); }
.mini-ring { text-align: center; }
.ring {
  --p: 72;
  width: 116px; height: 116px; border-radius: 50%; margin: 0 auto;
  background: conic-gradient(var(--lime) calc(var(--p) * 1%), rgba(255, 255, 255, 0.07) 0);
  display: grid; place-items: center; position: relative;
  -webkit-mask: radial-gradient(transparent 56%, #000 57%); mask: radial-gradient(transparent 56%, #000 57%);
}
.ring__num { font-size: 1.5rem; font-weight: 800; }
.ring__num strong { font-weight: 900; }
.mini-ring__label { font-size: 0.72rem; color: var(--muted); margin-top: 6px; }
.mini-tasks { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.mini-tasks li { position: relative; font-size: 0.74rem; padding: 8px 10px; border-radius: 9px; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; overflow: hidden; }
.mini-tasks em { margin-left: auto; font-style: normal; font-weight: 700; color: var(--lime); font-size: 0.68rem; }
.mini-tasks .bar { position: absolute; left: 0; top: 0; bottom: 0; width: var(--w); background: linear-gradient(90deg, rgba(182, 255, 61, 0.16), rgba(182, 255, 61, 0.04)); z-index: 0; }
.mini-tasks li > :not(.bar) { position: relative; z-index: 1; }
.mini-tasks .is-todo em { color: var(--muted-2); }
.mini-monster { margin-top: auto; display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 9px 11px; }
.mini-monster__meta { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.mini-monster__meta strong { font-size: 0.78rem; }
.mini-monster__meta small { font-size: 0.62rem; color: var(--muted); }
.gauge { height: 6px; border-radius: 999px; background: rgba(255, 255, 255, 0.1); overflow: hidden; }
.gauge i { display: block; height: 100%; width: var(--g); background: linear-gradient(90deg, var(--coral), var(--gold)); border-radius: 999px; }

.float-chip {
  position: absolute; font-size: 0.8rem; font-weight: 700; padding: 9px 14px;
  border-radius: 12px; background: rgba(14, 16, 32, 0.9); border: 1px solid var(--border-2);
  box-shadow: 0 16px 30px -14px rgba(0, 0, 0, 0.7); backdrop-filter: blur(6px);
  animation: floaty 4s ease-in-out infinite;
}
.float-chip--a { top: 64px; right: 0; color: var(--lime); }
.float-chip--b { bottom: 90px; left: -4px; color: var(--gold); animation-delay: -2s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ============================================================
   CONCEPT BAND
   ============================================================ */
.concept { padding: 30px 0 8px; border-top: 1px solid var(--border); }
.concept__kicker { font-family: var(--pixel); font-size: 0.62rem; color: var(--lime); letter-spacing: 0.1em; margin-bottom: 18px; }
.concept__big { font-size: clamp(1.4rem, 3.4vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; }
.concept__big .muted { display: inline-block; font-size: 0.7em; font-weight: 600; margin-top: 8px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 84px 0; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015), transparent); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section__head { max-width: 640px; margin-bottom: 46px; }
.section__head h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 800; }
.section__sub { color: var(--muted); margin-top: 14px; font-size: 1.02rem; }

/* ---------- Feature cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
  position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: var(--c, var(--lime)); opacity: 0; transition: opacity 0.3s; }
.card:hover { transform: translateY(-5px); border-color: var(--border-2); background: var(--surface-2); }
.card:hover::before { opacity: 0.8; }
.card__icon {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.4rem; margin-bottom: 18px;
  background: color-mix(in srgb, var(--c) 16%, transparent);
  color: var(--c); border: 1px solid color-mix(in srgb, var(--c) 30%, transparent);
}
.card h3 { font-size: 1.22rem; margin-bottom: 9px; }
.card > p { color: var(--muted); font-size: 0.95rem; }
.card > p strong { color: var(--text); }
.card__list { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.card__list li { position: relative; padding-left: 22px; font-size: 0.875rem; color: var(--muted); }
.card__list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 9px; border-radius: 3px; background: var(--c, var(--lime)); opacity: 0.7; }

/* ============================================================
   SCORE MECHANIC
   ============================================================ */
.score__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.score__copy h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.score__list { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.score__item { display: flex; gap: 16px; align-items: flex-start; }
.score__delta { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-size: 1.3rem; font-weight: 900; }
.score__delta--up { background: rgba(182, 255, 61, 0.14); color: var(--lime); border: 1px solid rgba(182, 255, 61, 0.3); }
.score__delta--down { background: rgba(255, 107, 94, 0.14); color: var(--coral); border: 1px solid rgba(255, 107, 94, 0.3); }
.score__delta--ad { background: rgba(255, 211, 78, 0.12); color: var(--gold); border: 1px solid rgba(255, 211, 78, 0.28); font-size: 1.05rem; }
.score__item h4 { font-size: 1.05rem; }
.score__item p { color: var(--muted); font-size: 0.92rem; margin-top: 3px; }

.score__panel { display: flex; }
.gaugebox {
  width: 100%; background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border-2); border-radius: 22px; padding: 28px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}
.gaugebox__head { display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 0.9rem; font-weight: 600; }
.gaugebox__state { font-size: 0.78rem; font-weight: 800; color: var(--lime); background: rgba(182, 255, 61, 0.12); padding: 4px 12px; border-radius: 999px; transition: color 0.3s, background 0.3s; }
.gaugebox__state.is-warn { color: var(--coral); background: rgba(255, 107, 94, 0.14); }
.gaugebox__num { font-size: 3.4rem; font-weight: 900; letter-spacing: -0.03em; margin: 10px 0 18px; line-height: 1; }
.gaugebox__num small { font-size: 1.1rem; color: var(--muted); font-weight: 700; margin-left: 6px; }
.gaugebox__track { height: 14px; border-radius: 999px; background: linear-gradient(90deg, rgba(255, 107, 94, 0.25), rgba(255, 211, 78, 0.2), rgba(182, 255, 61, 0.25)); position: relative; overflow: hidden; border: 1px solid var(--border); }
.gaugebox__track i { position: absolute; left: 0; top: 0; bottom: 0; width: 50%; background: linear-gradient(90deg, var(--cyan), var(--lime)); border-radius: 999px; transition: width 0.7s var(--ease); box-shadow: 0 0 16px rgba(182, 255, 61, 0.5); }
.gaugebox__scale { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--muted-2); margin-top: 8px; }
.gaugebox__legend { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; }
.chip-btn { font-size: 0.82rem; font-weight: 700; padding: 9px 14px; border-radius: 999px; cursor: pointer; background: var(--surface-2); border: 1px solid var(--border-2); color: var(--text); transition: 0.2s; }
.chip-btn:hover { transform: translateY(-2px); border-color: var(--lime); }
.chip-btn--warn:hover { border-color: var(--coral); }
.gaugebox__hint { font-size: 0.78rem; color: var(--muted-2); margin-top: 14px; }

/* ============================================================
   TASMON (retro pixel)
   ============================================================ */
.tasmon-sec { position: relative; }
.tasmon-stage { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; align-items: stretch; }

.tasmon-room {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background:
    linear-gradient(180deg, #20132e, #160d22);
  border: 1px solid var(--border-2);
  display: grid; place-items: center; min-height: 320px;
  image-rendering: pixelated;
}
.tasmon-room::before { /* retro grid wall */
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 22px 22px; opacity: 0.5;
}
.tasmon-room__floor { position: absolute; left: 0; right: 0; bottom: 0; height: 64px; background: linear-gradient(180deg, #2c1b3e, #1c1130); border-top: 2px solid rgba(255, 255, 255, 0.08); }
.zzz { position: absolute; top: 26%; right: 28%; font-family: var(--pixel); font-size: 0.7rem; color: var(--cyan); letter-spacing: 0.2em; animation: floaty 2.2s ease-in-out infinite; }

/* Pixel monster built with layered box-shadows on a single 4px cell */
.tasmon {
  position: relative; image-rendering: pixelated;
  animation: bob 1.6s steps(2) infinite;
}
.tasmon--big { transform: scale(5); margin-bottom: 26px; z-index: 1; }
.tasmon--mini { transform: scale(2.2); }
.tasmon::before {
  content: ""; position: absolute; width: 4px; height: 4px; left: 0; top: 0;
  /* Hamster-ish tasmon — built from 4px pixels. Body lime, eyes dark, cheeks coral. */
  box-shadow:
    /* head top */
    16px 0 0 0 #b6ff3d, 20px 0 0 0 #b6ff3d, 24px 0 0 0 #b6ff3d, 28px 0 0 0 #b6ff3d,
    /* ears */
    12px 4px 0 0 #8fd62f, 16px 4px 0 0 #b6ff3d, 20px 4px 0 0 #b6ff3d, 24px 4px 0 0 #b6ff3d, 28px 4px 0 0 #b6ff3d, 32px 4px 0 0 #8fd62f,
    /* row */
    12px 8px 0 0 #b6ff3d, 16px 8px 0 0 #ffffff, 20px 8px 0 0 #0a0b14, 24px 8px 0 0 #ffffff, 28px 8px 0 0 #0a0b14, 32px 8px 0 0 #b6ff3d,
    /* cheeks + nose */
    12px 12px 0 0 #ff6b5e, 16px 12px 0 0 #b6ff3d, 20px 12px 0 0 #b6ff3d, 24px 12px 0 0 #ff8e84, 28px 12px 0 0 #b6ff3d, 32px 12px 0 0 #ff6b5e,
    /* body */
    16px 16px 0 0 #b6ff3d, 20px 16px 0 0 #b6ff3d, 24px 16px 0 0 #b6ff3d, 28px 16px 0 0 #b6ff3d,
    /* belly */
    12px 16px 0 0 #b6ff3d, 32px 16px 0 0 #b6ff3d,
    12px 20px 0 0 #8fd62f, 16px 20px 0 0 #d7ffa0, 20px 20px 0 0 #d7ffa0, 24px 20px 0 0 #d7ffa0, 28px 20px 0 0 #d7ffa0, 32px 20px 0 0 #8fd62f,
    /* feet */
    16px 24px 0 0 #8fd62f, 28px 24px 0 0 #8fd62f;
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-2px); } }
.tasmon--big.is-happy { animation: hop 0.5s steps(3) 2; }
@keyframes hop { 0%, 100% { transform: scale(5) translateY(0); } 50% { transform: scale(5) translateY(-3px); } }
.tasmon--big.is-sleep { animation: bob 3.4s steps(2) infinite; filter: brightness(0.8) saturate(0.7); }

.tasmon-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.tasmon-gauges { display: flex; flex-direction: column; gap: 11px; margin-bottom: 20px; }
.tg { display: grid; grid-template-columns: 60px 1fr; align-items: center; gap: 12px; font-size: 0.82rem; color: var(--muted); font-weight: 600; }
.tg__bar { height: 9px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); overflow: hidden; }
.tg__bar b { display: block; height: 100%; width: var(--g); border-radius: 999px; background: linear-gradient(90deg, var(--coral), var(--gold), var(--lime)); transition: width 0.5s var(--ease); }
.tasmon-panel__lead { font-weight: 700; margin-bottom: 12px; }
.care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.care {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 13px 6px; border-radius: 12px; cursor: pointer;
  background: var(--surface-2); border: 1px solid var(--border-2); color: var(--text);
  font-size: 0.78rem; font-weight: 600; transition: 0.2s var(--ease);
}
.care span { font-size: 0.74rem; }
.care:hover { transform: translateY(-3px); border-color: var(--coral); background: rgba(255, 107, 94, 0.08); }
.care:active { transform: scale(0.95); }
.care-feedback { margin-top: 16px; font-size: 0.85rem; color: var(--muted); min-height: 1.4em; }
.care-feedback strong { color: var(--coral); }

/* Lifecycle row */
.lifecycle { margin-top: 40px; text-align: center; }
.lifecycle__label { font-family: var(--pixel); font-size: 0.6rem; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 22px; }
.lifecycle__row { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.lifecycle__row li { display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 0.74rem; color: var(--muted); font-weight: 600; width: 92px; position: relative; }
.lifecycle__row li:not(:last-child)::after { content: "→"; position: absolute; right: -12px; top: 28px; color: var(--muted-2); }
.lc-bad { color: var(--coral); }
.lc-art { width: 56px; height: 56px; border-radius: 12px; background: linear-gradient(180deg, #20132e, #160d22); border: 1px solid var(--border-2); display: grid; place-items: center; image-rendering: pixelated; position: relative; }
.lc-art::before { content: ""; image-rendering: pixelated; }
.lc-egg::before { width: 18px; height: 22px; background: #d7ffa0; border-radius: 50% 50% 48% 48%; box-shadow: inset 0 -4px 0 #8fd62f; }
.lc-baby::before { width: 16px; height: 14px; background: #b6ff3d; border-radius: 8px 8px 6px 6px; box-shadow: -7px 0 0 -3px #b6ff3d, 7px 0 0 -3px #b6ff3d, 0 4px 0 0 #d7ffa0; }
.lc-teen::before { width: 22px; height: 20px; background: #b6ff3d; border-radius: 9px; box-shadow: -10px -2px 0 -4px #8fd62f, 10px -2px 0 -4px #8fd62f, 0 6px 0 0 #d7ffa0; }
.lc-adult::before { width: 26px; height: 24px; background: #b6ff3d; border-radius: 10px; box-shadow: 0 0 0 2px #ffd34e, 0 7px 0 0 #d7ffa0; }
.lc-grave::before { width: 22px; height: 24px; background: #5a5f78; border-radius: 11px 11px 0 0; box-shadow: inset 0 0 0 2px #3a3e52; }
.lc-grave::after { content: "✝"; position: absolute; color: #2a2d3e; font-size: 0.8rem; top: 16px; }

/* ============================================================
   SYNC / AUTH
   ============================================================ */
.sync__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.sync__copy h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.sync__chips { display: flex; gap: 12px; margin: 26px 0 18px; flex-wrap: wrap; }
.ac { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--border-2); font-weight: 600; font-size: 0.92rem; }
.sync__note { color: var(--muted); font-size: 0.92rem; }
.sync__note code { background: rgba(182, 255, 61, 0.12); color: var(--lime); padding: 2px 8px; border-radius: 6px; font-size: 0.88rem; }

.sync__visual { display: grid; place-items: center; min-height: 320px; }
.sync-orbit { position: relative; width: 300px; height: 300px; }
.orbit-core {
  position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%);
  width: 120px; height: 120px; border-radius: 50%; display: grid; place-items: center; text-align: center;
  background: radial-gradient(circle at 35% 30%, rgba(182, 255, 61, 0.25), rgba(79, 209, 255, 0.12));
  border: 1px solid var(--border-2); font-weight: 800; font-size: 0.95rem;
  box-shadow: 0 0 50px rgba(182, 255, 61, 0.25); z-index: 2;
}
.orbit-core small { font-weight: 600; color: var(--muted); font-size: 0.7rem; }
.sync-orbit::before { content: ""; position: absolute; inset: 0; border: 1px dashed var(--border-2); border-radius: 50%; animation: spin 26s linear infinite; }
.orbit-item {
  position: absolute; top: 50%; left: 50%; font-size: 0.78rem; font-weight: 700;
  padding: 7px 13px; border-radius: 999px; background: rgba(14, 16, 32, 0.95); border: 1px solid var(--border-2);
  transform: rotate(calc(var(--i) * 60deg)) translateX(150px) rotate(calc(var(--i) * -60deg));
  margin: -16px 0 0 -28px; animation: counter 26s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes counter { from { transform: rotate(calc(var(--i) * 60deg)) translateX(150px) rotate(calc(var(--i) * -60deg)) rotate(0); } to { transform: rotate(calc(var(--i) * 60deg)) translateX(150px) rotate(calc(var(--i) * -60deg)) rotate(-360deg); } }

/* ---------- Note band ---------- */
.note-band { display: flex; gap: 22px; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 32px; }
.note-band__icon { font-size: 2.4rem; flex: 0 0 auto; }
.note-band h3 { font-size: 1.3rem; margin-bottom: 8px; }
.note-band p { color: var(--muted); font-size: 0.95rem; }

/* ============================================================
   CTA
   ============================================================ */
.cta { position: relative; padding: 96px 0; text-align: center; overflow: hidden; border-top: 1px solid var(--border); }
.cta__glow { position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% 30%, rgba(182, 255, 61, 0.16), transparent 70%); pointer-events: none; }
.cta__inner { position: relative; max-width: 660px; }
.cta h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 900; }
.cta p { color: var(--muted); margin: 16px 0 30px; font-size: 1.05rem; }
.cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); padding: 50px 0 30px; background: var(--bg-2); }
.footer__inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.footer__brand p { color: var(--muted); font-size: 0.9rem; margin-top: 8px; max-width: 30ch; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer__links a { color: var(--muted); font-size: 0.9rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--text); }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 22px; color: var(--muted-2); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .hero__grid, .score__grid, .sync__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; margin-bottom: 10px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .tasmon-stage { grid-template-columns: 1fr; }
  .tasmon--big { transform: scale(4); }
  @keyframes hop { 0%, 100% { transform: scale(4) translateY(0); } 50% { transform: scale(4) translateY(-3px); } }
  .tasmon--big.is-sleep { animation: bob 3.4s steps(2) infinite; }
}

@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .hide-sm { display: none; }
}

@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero { padding: 50px 0 50px; }
  .care-grid { grid-template-columns: repeat(3, 1fr); }
  .note-band { flex-direction: column; text-align: center; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
