/* =========================================================
   Sanbit — "spatial" variant
   Glass & 3D Depth · visionOS / Apple-spatial vibe
   ========================================================= */

:root {
  /* base palette */
  --bg-top: #eef1ff;
  --bg-mid: #f6f4ff;
  --bg-bot: #ffffff;
  --tint-blue: #dce3ff;
  --tint-violet: #f5e8ff;
  --tint-cyan: #dcf4ff;

  /* ink */
  --ink: #23263a;
  --ink-soft: #45485e;
  --ink-mute: #5b5e75;

  /* accents */
  --indigo: #6366f1;
  --indigo-deep: #4f46e5;
  --cyan: #06b6d4;
  --violet: #a855f7;
  --cinnabar: #c2503a;

  /* glass system */
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.72);
  --glass-brd: rgba(255, 255, 255, 0.7);
  --glass-hi: rgba(255, 255, 255, 0.9);
  --glass-shadow: 0 24px 60px -20px rgba(58, 64, 130, 0.32),
    0 8px 24px -12px rgba(58, 64, 130, 0.2);
  --glass-shadow-lg: 0 50px 100px -28px rgba(58, 64, 130, 0.42),
    0 18px 40px -18px rgba(58, 64, 130, 0.24);

  --radius: 24px;
  --radius-lg: 32px;
  --maxw: 1200px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
}

/* ---------- reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  /* keep anchor targets clear of the fixed glass nav */
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 38%, var(--bg-bot) 70%);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* focus */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ---------- glass mixin ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--glass-brd);
  box-shadow: var(--glass-shadow);
  position: relative;
}
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    140deg,
    var(--glass-hi),
    rgba(255, 255, 255, 0) 45%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.45)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ---------- ambient background ---------- */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.6;
  will-change: transform;
}
.orb--indigo {
  width: 52vw;
  height: 52vw;
  top: -12vw;
  left: -8vw;
  background: radial-gradient(circle at 30% 30%, var(--tint-blue), transparent 70%);
}
.orb--cyan {
  width: 44vw;
  height: 44vw;
  top: 30vh;
  right: -12vw;
  background: radial-gradient(circle at 40% 40%, var(--tint-cyan), transparent 70%);
}
.orb--violet {
  width: 48vw;
  height: 48vw;
  bottom: -16vw;
  left: 18vw;
  background: radial-gradient(circle at 50% 50%, var(--tint-violet), transparent 70%);
}
.grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    background 0.3s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 55%, #7c3aed 100%);
  box-shadow: 0 14px 30px -10px rgba(79, 70, 229, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -12px rgba(79, 70, 229, 0.72),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn--ghost {
  color: var(--ink);
  background: var(--glass-bg-strong);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--glass-brd);
  box-shadow: 0 8px 20px -12px rgba(58, 64, 130, 0.3);
}
.btn--ghost:hover {
  transform: translateY(-3px);
  background: #fff;
}
.btn--mini {
  padding: 9px 16px;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  box-shadow: 0 8px 18px -8px rgba(79, 70, 229, 0.5);
}
.btn--mini:hover {
  transform: translateY(-2px);
}
.btn--lg {
  padding: 17px 36px;
  font-size: 17px;
}

/* ---------- brand ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand__mark {
  display: inline-flex;
  gap: 3px;
  align-items: flex-end;
  height: 18px;
}
.bit {
  width: 5px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--indigo), var(--cyan));
}
.bit:nth-child(1) {
  height: 8px;
}
.bit:nth-child(2) {
  height: 14px;
}
.bit:nth-child(3) {
  height: 18px;
}
.brand__text {
  font-size: 19px;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}
.brand__cn {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
}
.brand--lg .brand__text {
  font-size: 24px;
}
.brand--lg .brand__mark {
  height: 22px;
}
.brand--lg .bit:nth-child(3) {
  height: 22px;
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px 0;
  display: flex;
  justify-content: center;
  transition: padding 0.4s var(--ease);
}
.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 22px;
  border-radius: 999px;
}
.nav.scrolled {
  padding-top: 10px;
}
.nav__links {
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav__links a {
  position: relative;
  white-space: nowrap;
  transition: color 0.25s var(--ease);
}

/* ---------- mobile menu ---------- */
.nav__burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--glass-brd);
  border-radius: 14px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav__burger span,
.nav__burger span::before,
.nav__burger span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__burger span { top: 50%; margin-top: -1px; }
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }
.nav__burger[aria-expanded="true"] span { background: transparent; }
.nav__burger[aria-expanded="true"] span::before { transform: translateX(-50%) translateY(6px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span::after { transform: translateX(-50%) translateY(-6px) rotate(-45deg); }
.nav__mobile {
  display: none;
  position: fixed;
  top: 78px;
  left: 14px;
  right: 14px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  border-radius: 22px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav__mobile.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav__mobile a {
  padding: 13px 16px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.2s var(--ease);
}
.nav__mobile a:hover { background: rgba(99, 102, 241, 0.1); }
.nav__mobile .btn { margin-top: 6px; justify-content: center; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--indigo), var(--cyan));
  transition: width 0.3s var(--ease);
}
.nav__links a:hover {
  color: var(--ink);
}
.nav__links a:hover::after {
  width: 100%;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 880px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--indigo-deep);
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-brd);
  margin-bottom: 26px;
}
.hero__title {
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero__title span {
  display: block;
}
.grad {
  background: linear-gradient(105deg, var(--indigo) 0%, var(--violet) 45%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 620px;
  margin: 26px auto 0;
}
.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 38px;
}
.hero__meta {
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

/* floating glass cluster */
.hero__stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  perspective: 1400px;
}
.float-card,
.float-chip {
  position: absolute;
  will-change: transform;
  transition: transform 0.1s linear;
}
.float-card {
  border-radius: 20px;
  padding: 16px 18px;
}
.fc-1 {
  top: 20%;
  left: 7%;
  width: 210px;
}
.fc-1__row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.fc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.18);
}
.fc-1__wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 24px;
  margin-top: 12px;
}
.fc-1__wave span {
  flex: 1;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--indigo), var(--cyan));
  opacity: 0.85;
  animation: wave 1.4s var(--ease-soft) infinite;
}
.fc-1__wave span:nth-child(2n) {
  animation-delay: 0.2s;
}
.fc-1__wave span:nth-child(3n) {
  animation-delay: 0.45s;
}
.fc-1__wave span:nth-child(4n) {
  animation-delay: 0.7s;
}
@keyframes wave {
  0%,
  100% {
    height: 30%;
  }
  50% {
    height: 100%;
  }
}
.fc-2 {
  top: 24%;
  right: 6%;
  width: 230px;
}
.fc-2__ai {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo-deep);
  font-weight: 700;
}
.fc-2__ink {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  margin-top: 6px;
}
.fc-3 {
  bottom: 19%;
  right: 13%;
  width: 190px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fc-3__badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--cinnabar);
}
.fc-3__count {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.float-chip {
  bottom: 26%;
  left: 11%;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--indigo-deep);
}
.fc-chip-b {
  bottom: 33%;
  left: 19%;
}

/* scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 26px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(99, 102, 241, 0.4);
  display: flex;
  justify-content: center;
  padding-top: 7px;
  opacity: 1;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.scroll-hint.hide {
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  pointer-events: none;
}
.scroll-hint__bar {
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--indigo);
  animation: scrolldot 1.8s var(--ease-soft) infinite;
}
@keyframes scrolldot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  70% {
    transform: translateY(14px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* ---------- section heads ---------- */
section {
  position: relative;
  padding: 110px 0;
}
.section-head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--indigo-deep);
  margin-bottom: 18px;
}
.section-kicker--warm {
  color: var(--cinnabar);
}
.section-title {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.016em;
}
.section-lede {
  margin-top: 20px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--ink-soft);
}

/* ---------- shared badges ---------- */
.badge {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.badge--soon {
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

/* =========================================================
   Interactive JotMind demo (warm-paper phone mock)
   ========================================================= */
.demo__layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 1200px;
  justify-self: center;
}
.phone {
  width: 300px;
  border-radius: 46px;
  padding: 12px;
  background: linear-gradient(160deg, #2a2d4a, #14162a);
  box-shadow: var(--glass-shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
  transform-style: preserve-3d;
}
.phone__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 26px;
  background: #14162a;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone__screen {
  background: #faf6ef;
  border-radius: 36px;
  padding: 38px 20px 120px;
  height: 680px;
  position: relative;
  overflow: hidden;
}
.phone__statusbar {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: #2b2620;
}
.phone__priv {
  color: var(--cinnabar);
}
.phone__shadow {
  width: 220px;
  height: 30px;
  margin-top: 28px;
  border-radius: 50%;
  background: rgba(58, 64, 130, 0.28);
  filter: blur(22px);
}

/* --- demo stage (idle / recording / organizing) --- */
.demo-stage {
  margin-top: 26px;
  min-height: 150px;
}
.demo-day {
  font-size: 12px;
  color: #877e70;
}
.demo-heading {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: #2b2620;
  margin-top: 4px;
  line-height: 1.2;
  transition: opacity 0.4s var(--ease);
}
.demo-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 40px;
  margin-top: 22px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.demo-wave span {
  flex: 1;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--cinnabar), #d4674f);
  height: 20%;
}
.demo-partial {
  font-family: var(--serif);
  color: #2b2620;
  font-size: 15px;
  line-height: 1.5;
  margin-top: 18px;
  min-height: 1.5em;
}
.demo-partial::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  vertical-align: -2px;
  background: var(--cinnabar);
  opacity: 0;
}
.demo-organizing {
  display: none;
  margin-top: 22px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #877e70;
}
.demo-dots span {
  animation: demodots 1.2s var(--ease-soft) infinite;
}
.demo-dots span:nth-child(2) { animation-delay: 0.2s; }
.demo-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes demodots {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 1; }
}

/* recording state */
.phone__screen[data-state="recording"] .demo-heading { opacity: 0.35; }
.phone__screen[data-state="recording"] .demo-wave { opacity: 1; }
.phone__screen[data-state="recording"] .demo-wave span {
  animation: demowave 1s var(--ease-soft) infinite;
}
.phone__screen[data-state="recording"] .demo-partial::after { opacity: 1; animation: demoblink 1s step-end infinite; }
.demo-wave span:nth-child(3n) { animation-delay: 0.15s; }
.demo-wave span:nth-child(3n+1) { animation-delay: 0.3s; }
.demo-wave span:nth-child(4n) { animation-delay: 0.45s; }
@keyframes demowave {
  0%, 100% { height: 18%; }
  50% { height: 100%; }
}
@keyframes demoblink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* organizing state */
.phone__screen[data-state="organizing"] .demo-heading,
.phone__screen[data-state="organizing"] .demo-wave,
.phone__screen[data-state="organizing"] .demo-partial { opacity: 0; }
.phone__screen[data-state="organizing"] .demo-organizing { display: block; }

/* --- note card --- */
.demo-note {
  margin-top: 22px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 26px -16px rgba(120, 80, 40, 0.55);
  border: 1px solid rgba(194, 80, 58, 0.1);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.phone__screen[data-state="note"] .demo-stage,
.phone__screen[data-state="resurface"] .demo-stage { display: none; }
.phone__screen[data-state="note"] .demo-note,
.phone__screen[data-state="resurface"] .demo-note {
  opacity: 1;
  transform: translateY(0);
}
.demo-note__day {
  font-size: 11.5px;
  color: #877e70;
}
.demo-note__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #2b2620;
  margin-top: 2px;
}
.demo-note__ink {
  font-family: var(--serif);
  color: #2b2620;
  font-size: 14.5px;
  line-height: 1.5;
  margin-top: 10px;
}
.demo-note__ai {
  margin-top: 14px;
  padding-left: 12px;
  border-left: 2px solid var(--cinnabar);
}
.demo-note__ai-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cinnabar);
  margin-bottom: 4px;
}
.demo-note__ai p {
  color: #877e70;
  font-size: 13px;
  line-height: 1.45;
}
.demo-note__actions {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.demo-note__actions li {
  position: relative;
  padding-left: 18px;
  font-size: 12.5px;
  color: #877e70;
}
.demo-note__actions li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  border: 1.5px solid #b9ae9c;
}

/* --- resurface card --- */
.demo-resurface {
  margin-top: 14px;
  background: linear-gradient(180deg, #fff, #fdf2ef);
  border: 1px solid rgba(194, 80, 58, 0.2);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 10px 24px -16px rgba(194, 80, 58, 0.5);
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.phone__screen[data-state="resurface"] .demo-resurface {
  opacity: 1;
  transform: translateX(0);
}
.demo-resurface__chip {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cinnabar);
  background: rgba(194, 80, 58, 0.1);
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.demo-resurface__ink {
  font-family: var(--serif);
  color: #2b2620;
  font-size: 14px;
  line-height: 1.4;
}
.demo-resurface__meta {
  color: #877e70;
  font-size: 12px;
  margin-top: 6px;
}

/* --- record button --- */
.demo-record {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 88%;
}
.demo-record__ring {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--cinnabar);
  opacity: 0;
  pointer-events: none;
}
.phone__screen[data-state="recording"] .demo-record__ring {
  opacity: 1;
  animation: micring 2s var(--ease-soft) infinite;
}
.demo-record__core {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--cinnabar), #d4674f);
  box-shadow: 0 12px 24px -8px rgba(194, 80, 58, 0.6);
  transition: transform 0.3s var(--ease), border-radius 0.3s var(--ease);
}
.demo-record__core svg { width: 24px; height: 24px; }
.demo-record:hover .demo-record__core { transform: scale(1.06); }
.phone__screen[data-state="recording"] .demo-record__core {
  transform: scale(0.9);
  border-radius: 18px;
}
.demo-record__timer {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cinnabar);
  font-variant-numeric: tabular-nums;
  opacity: 0;
  height: 0;
  transition: opacity 0.3s var(--ease);
}
.phone__screen[data-state="recording"] .demo-record__timer {
  opacity: 1;
  height: auto;
}
.demo-record__label {
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #877e70;
}
@keyframes micring {
  0% { transform: translateX(-50%) scale(1); opacity: 0.7; }
  100% { transform: translateX(-50%) scale(1.7); opacity: 0; }
}

/* --- demo caption beside phone --- */
.demo-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.demo-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1.02rem;
  color: var(--ink-soft);
  transition: color 0.4s var(--ease), opacity 0.4s var(--ease);
  opacity: 0.55;
}
.demo-step__dot {
  flex-shrink: 0;
  margin-top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(194, 80, 58, 0.25);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.demo-step.is-active {
  opacity: 1;
  color: var(--ink);
}
.demo-step.is-active .demo-step__dot {
  background: var(--cinnabar);
  box-shadow: 0 0 0 4px rgba(194, 80, 58, 0.16);
}
.demo__trust {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 34px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}
.demo__trust-swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 4px;
}
.demo__trust-swatch--ink { background: #2b2620; }
.demo__trust-swatch--ai {
  background: #877e70;
  border-left: 2px solid var(--cinnabar);
}
.demo__trust-note {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--ink-mute);
}

/* No-JS / safety-net fallback for the demo: with JS unavailable or failed,
   show the composed final state (note + resurface) instead of the empty idle
   stage, so the screen is meaningful without any scripting. The .demo-final
   class is also applied by app.js when prefers-reduced-motion is on. */
html:not(.js) .demo-stage,
.phone__screen.demo-final .demo-stage { display: none; }
html:not(.js) .demo-note,
html:not(.js) .demo-resurface,
.phone__screen.demo-final .demo-note,
.phone__screen.demo-final .demo-resurface {
  opacity: 1 !important;
  transform: none !important;
}
html:not(.js) .demo-record__timer,
.phone__screen.demo-final .demo-record__timer { display: none; }
html:not(.js) .demo-step { opacity: 1; }

/* =========================================================
   Highlights
   ========================================================= */
.hl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.hl-card {
  border-radius: var(--radius);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform-style: preserve-3d;
  position: relative;
}
.hl-card--star {
  background: linear-gradient(135deg, rgba(194, 80, 58, 0.1), rgba(212, 103, 79, 0.05)),
    var(--glass-bg-strong);
  border-color: rgba(194, 80, 58, 0.22);
}
.hl-card__flag {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cinnabar);
  background: rgba(194, 80, 58, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
}
.hl-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--indigo-deep);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.14), rgba(6, 182, 212, 0.12));
  border: 1px solid rgba(99, 102, 241, 0.18);
  margin-bottom: 20px;
}
.hl-card--star .hl-card__icon {
  color: #fff;
  background: linear-gradient(135deg, var(--cinnabar), #d4674f);
  border-color: transparent;
}
.hl-card__icon svg { width: 24px; height: 24px; }
.hl-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hl-card__body {
  margin-top: 10px;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.hl-why {
  text-align: center;
  max-width: 720px;
  margin: 44px auto 0;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.5;
  color: var(--ink-soft);
}
.hl-why strong {
  color: var(--ink);
  font-weight: 600;
}

/* =========================================================
   Scenario story
   ========================================================= */
.story__quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.story__quote p {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  line-height: 1.5;
  color: var(--ink);
}
.story__foot {
  margin-top: 22px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cinnabar);
}
.story__aside {
  max-width: 620px;
  margin: 38px auto 0;
  text-align: center;
  font-size: 1.02rem;
  color: var(--ink-soft);
}
.story__bridge {
  margin-top: 44px;
  text-align: center;
}

/* =========================================================
   The matrix grows (JotMind live + what’s next)
   ========================================================= */
.next {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 18px;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}
.next-card {
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  transform-style: preserve-3d;
}
.next-card__glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(60px);
  top: -100px;
  right: -70px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.32), transparent 70%);
  opacity: 0.7;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.next-card:hover .next-card__glow { opacity: 1; }
.next-card .badge--soon { position: relative; z-index: 2; }
.next-card__name {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}
.next-card__one {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-top: 6px;
  position: relative;
  z-index: 2;
}
.next-card__sub {
  font-size: 0.95rem;
  color: var(--ink-mute);
  margin-top: 4px;
  position: relative;
  z-index: 2;
}
.next-card__pill {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mute);
  padding: 11px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px dashed var(--glass-brd);
  cursor: not-allowed;
  position: relative;
  z-index: 2;
}
.next-ghost {
  border-radius: var(--radius);
  border: 1.5px dashed rgba(99, 102, 241, 0.3);
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  min-height: 140px;
}
.next-ghost__plus {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 300;
  color: var(--indigo-deep);
  background: rgba(99, 102, 241, 0.1);
}
.next-ghost__text {
  color: var(--ink-mute);
  font-size: 14px;
  font-weight: 500;
}
/* ---- matrix-grows variants ---- */
.badge--live {
  background: rgba(6, 182, 212, 0.14);
  color: #0e7490;
  border-color: rgba(6, 182, 212, 0.32);
}
.next-card--live .next-card__glow {
  background: radial-gradient(circle, rgba(99, 102, 241, 0.32), transparent 70%);
}
.next-card--soon { opacity: 0.85; }
.next-card--soon .next-card__name { color: var(--ink-soft); }
a.next-card__pill--go {
  margin-top: auto;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid var(--glass-brd);
  color: var(--indigo-deep);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
a.next-card__pill--go:hover {
  background: rgba(99, 102, 241, 0.18);
  transform: translateY(-1px);
}

/* =========================================================
   Waitlist
   ========================================================= */
.waitlist__band {
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(6, 182, 212, 0.06)),
    var(--glass-bg-strong);
}
.waitlist__glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(80px);
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 70%);
  pointer-events: none;
}
.waitlist__copy { position: relative; z-index: 2; }
.waitlist__title {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.waitlist__sub {
  margin-top: 8px;
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.waitlist__form {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.waitlist__form input {
  font-family: var(--font);
  font-size: 15px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid var(--glass-brd);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  min-width: 240px;
}
.waitlist__form input::placeholder { color: var(--ink-mute); }
.waitlist__thanks {
  grid-column: 1 / -1;
  font-weight: 600;
  color: var(--indigo-deep);
  position: relative;
  z-index: 2;
}

/* ---------- vision ---------- */
.manifesto {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.55;
  color: var(--ink);
}
.manifesto em {
  font-style: italic;
  color: var(--indigo-deep);
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 70px;
}
.value {
  border-radius: var(--radius);
  padding: 30px;
  transform-style: preserve-3d;
}
.value__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.value__body {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ---------- FAQ ---------- */
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__item {
  border-radius: var(--radius);
  padding: 0 26px;
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.faq__item[open] {
  background: var(--glass-bg-strong);
  box-shadow: var(--glass-shadow);
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  border-radius: 2px;
  background: var(--indigo-deep);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__item[open] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(0);
  opacity: 0;
}
.faq__a {
  padding: 0 0 24px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 660px;
}
.faq__a a {
  color: var(--indigo-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq__a a:hover {
  color: var(--violet);
}

/* ---------- footer ---------- */
.footer {
  position: relative;
  padding: 80px 0 36px;
  margin-top: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(238, 241, 255, 0.7) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(99, 102, 241, 0.12);
}
.footer__tag {
  margin-top: 18px;
  font-size: 1.05rem;
  font-weight: 600;
}
.footer__note {
  margin-top: 12px;
  max-width: 420px;
  font-size: 14px;
  color: var(--ink-mute);
}
.footer__cols {
  display: flex;
  gap: 60px;
  justify-content: flex-end;
}
.footer__col h4 {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color 0.25s var(--ease);
}
.footer__col a:hover {
  color: var(--indigo-deep);
}
.footer__soon {
  font-size: 11px;
  color: var(--cyan);
  margin-left: 4px;
}
.footer__base {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  font-size: 13.5px;
  color: var(--ink-mute);
}
.footer__domain {
  font-weight: 600;
}

/* ---------- reveal animation ---------- */
/* Initial hidden state is scoped to .js so that, with JS disabled / failed /
   crawler-snapshotted, every reveal element stays fully visible. */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease) var(--d, 0s),
    transform 0.9s var(--ease) var(--d, 0s);
  will-change: opacity, transform;
}
.js .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* No-JS / progressive-enhancement fallback: force all reveal-style elements
   visible so hero title, subtitle, CTA and every section render without JS. */
html:not(.js) [data-reveal],
html:not(.js) .reveal {
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .demo__layout {
    grid-template-columns: 1fr;
    gap: 44px;
    justify-items: center;
  }
  .demo__aside {
    max-width: 520px;
  }
  .hl-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .next {
    grid-template-columns: 1fr;
  }
  .values {
    grid-template-columns: 1fr;
  }
  .waitlist__band {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .waitlist__form {
    justify-content: center;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer__cols {
    justify-content: flex-start;
  }
  /* hide heavy floating cluster on tablet/below for clarity + perf */
  .hero__stage {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 22px;
  }
  .nav__links {
    display: none;
  }
  .nav__burger {
    display: block;
  }
  .nav__mobile {
    display: flex;
  }
  section {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }
  .nav {
    padding: 12px 14px 0;
  }
  .nav__inner {
    padding: 10px 12px 10px 16px;
  }
  .nav__inner > .btn--mini {
    display: none;
  }
  .hero {
    padding: 110px 0 70px;
  }
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__cta .btn {
    justify-content: center;
  }
  .phone {
    width: 270px;
  }
  .hl-card {
    padding: 26px 22px;
  }
  .next-card {
    padding: 26px 22px;
  }
  .waitlist__form {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .waitlist__form input {
    min-width: 0;
    width: 100%;
  }
  .waitlist__form .btn {
    justify-content: center;
  }
  .footer__base {
    flex-direction: column;
    gap: 8px;
  }
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  /* must out-specify ".js .reveal" so content is visible even before JS runs */
  .reveal,
  .js .reveal,
  html:not(.js) .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .float-card,
  .float-chip,
  .orb {
    transform: none !important;
  }
  .scroll-hint,
  .demo-record__ring,
  .demo-wave span,
  .demo-dots span,
  .fc-1__wave span {
    animation: none !important;
  }
}


/* =========================================================
   Folded-in from JotMind detail: How it works + Comparison
   ========================================================= */
.howit__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.howit__steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(99,102,241,0.28), rgba(194,80,58,0.28));
  z-index: 0;
}
.howit__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 6px 8px;
}
.howit__num {
  position: absolute;
  top: -6px;
  left: calc(50% + 22px);
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: var(--cinnabar);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px -6px rgba(194,80,58,0.6);
}
.howit__icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--indigo-deep);
  background: var(--glass-bg-strong);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-brd);
  box-shadow: var(--glass-shadow);
  margin-bottom: 18px;
}
.howit__icon svg { width: 26px; height: 26px; }
.howit__title { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; }
.howit__desc { margin-top: 8px; font-size: 0.92rem; color: var(--ink-mute); max-width: 200px; }

.compare__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  max-width: 920px;
  margin: 0 auto;
}
.compare__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 640px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
}
.compare__table th, .compare__table td {
  padding: 16px 18px;
  text-align: center;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(99,102,241,0.1);
}
.compare__table thead th {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.4);
  padding-top: 20px;
  padding-bottom: 20px;
  vertical-align: bottom;
}
.compare__table tbody th[scope="row"], .compare__rowhead {
  text-align: left;
  font-weight: 600;
  color: var(--ink);
}
.compare__sub { display: block; font-size: 0.78rem; font-weight: 500; color: var(--ink-mute); margin-top: 2px; }
.compare__table tbody tr:last-child th, .compare__table tbody tr:last-child td { border-bottom: none; }
.compare__jotmind { background: linear-gradient(180deg, rgba(194,80,58,0.08), rgba(194,80,58,0.04)); position: relative; }
.compare__table thead th.compare__jotmind {
  color: var(--cinnabar);
  font-weight: 800;
  font-size: 1rem;
  background: linear-gradient(180deg, rgba(194,80,58,0.16), rgba(194,80,58,0.06));
  border-top-right-radius: var(--radius);
}
.compare__table tbody tr:last-child td.compare__jotmind { border-bottom-right-radius: var(--radius); }
.compare__star th[scope="row"] { color: var(--cinnabar); font-weight: 700; }
.ck { display: inline-flex; align-items: center; justify-content: center; min-width: 26px; height: 26px; border-radius: 999px; font-size: 0.9rem; font-weight: 700; }
.is-yes .ck { color: #fff; background: linear-gradient(135deg, var(--cinnabar), #d4674f); box-shadow: 0 6px 14px -8px rgba(194,80,58,0.6); }
td:not(.compare__jotmind).is-yes .ck { color: var(--indigo-deep); background: rgba(99,102,241,0.14); box-shadow: none; }
.ck--no { color: var(--ink-mute); background: transparent; font-weight: 600; }
.ck--partial { min-width: 0; padding: 4px 10px; border-radius: 999px; font-size: 0.74rem; font-weight: 600; color: var(--ink-soft); background: rgba(113,116,140,0.12); border: 1px solid rgba(113,116,140,0.18); }
.compare__note { max-width: 660px; margin: 30px auto 0; text-align: center; font-family: var(--serif); font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.5; color: var(--ink-soft); }

@media (max-width: 980px) {
  .howit__steps { grid-template-columns: 1fr 1fr; gap: 30px 18px; }
  .howit__steps::before { display: none; }
}
@media (max-width: 600px) {
  .howit__steps { grid-template-columns: 1fr; gap: 26px; max-width: 360px; margin: 0 auto; }
  .howit__step { flex-direction: row; text-align: left; align-items: center; gap: 16px; }
  .howit__icon { margin-bottom: 0; flex-shrink: 0; }
  .howit__num { top: -4px; left: 42px; }
  .howit__desc { max-width: none; }
}
@media (max-width: 480px) {
  .compare__table th, .compare__table td { padding: 13px 12px; font-size: 0.88rem; }
}
