.landing-page {
  font-family: "Manrope", Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 198, 64, 0.18), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(79, 139, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #f6f2ea 0%, #f8f7f3 28%, #ffffff 62%, #f6f2ea 100%);
  color: #0f172a;
}

.dark .landing-page {
  background:
    radial-gradient(circle at top left, rgba(248, 189, 52, 0.16), transparent 26%),
    radial-gradient(circle at 85% 8%, rgba(77, 126, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #07090d 0%, #0b1020 34%, #090d14 100%);
  color: #eef2ff;
}

.landing-page .site-header.home-header {
  background: rgba(248, 247, 243, 0.76);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(20px);
}

.dark .landing-page .site-header.home-header {
  background: rgba(7, 10, 16, 0.78);
  border-bottom-color: rgba(148, 163, 184, 0.14);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
}

.home-header__bar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.home-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
}

.home-brand__dot {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd24d 0%, #f7b500 100%);
  box-shadow: 0 0 0 7px rgba(247, 181, 0, 0.12);
}

.home-brand__wordmark {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.home-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.3rem;
  margin-left: auto;
}

.home-nav__link {
  position: relative;
  padding: 0.25rem 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
  opacity: 0.86;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.home-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(247, 181, 0, 0.95), rgba(247, 181, 0, 0));
  transform: scaleX(0.2);
  transform-origin: left;
  opacity: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.home-nav__link:hover,
.home-nav__link:focus-visible {
  opacity: 1;
  text-decoration: none;
  transform: translateY(-1px);
}

.home-nav__link:hover::after,
.home-nav__link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.home-theme-toggle,
.home-mobile-theme,
.home-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.62);
  color: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.home-theme-toggle:hover,
.home-mobile-theme:hover,
.home-nav-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(247, 181, 0, 0.5);
  background: rgba(255, 255, 255, 0.88);
}

.dark .home-theme-toggle,
.dark .home-mobile-theme,
.dark .home-nav-toggle {
  background: rgba(17, 24, 39, 0.7);
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: none;
}

.home-whoami {
  margin-left: 0.15rem;
}

.home-mobile-panel {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.94);
}

.dark .home-mobile-panel {
  background: rgba(7, 10, 16, 0.96);
  border-top-color: rgba(148, 163, 184, 0.16);
}

.home-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1rem 1.25rem 1.2rem;
}

.home-mobile-nav__link {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.home-mobile-nav__link:hover,
.home-mobile-nav__link:focus-visible {
  text-decoration: none;
}

.home-mobile-account {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.landing-page .home-nav #auth-links {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.65rem !important;
  margin-left: 0.35rem !important;
}

.landing-page .home-nav #auth-links > span {
  display: none;
}

.landing-page .home-nav #auth-links a,
.landing-page .home-mobile-account a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  color: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.landing-page .home-nav #auth-links a:hover,
.landing-page .home-nav #auth-links a:focus-visible,
.landing-page .home-mobile-account a:hover,
.landing-page .home-mobile-account a:focus-visible {
  transform: translateY(-1px);
  text-decoration: none;
}

.landing-page .home-nav #auth-links a:first-of-type,
.landing-page .home-mobile-account a:first-of-type {
  background: rgba(255, 255, 255, 0.5);
}

.landing-page .home-nav #auth-links a:last-of-type,
.landing-page .home-mobile-account a:last-of-type {
  border-color: rgba(247, 181, 0, 0.4);
  background: linear-gradient(135deg, #ffd24d 0%, #f7b500 100%);
  color: #0f172a;
  box-shadow: 0 16px 30px rgba(247, 181, 0, 0.22);
}

.dark .landing-page .home-nav #auth-links a,
.dark .landing-page .home-mobile-account a {
  border-color: rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.74);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.dark .landing-page .home-nav #auth-links a:first-of-type,
.dark .landing-page .home-mobile-account a:first-of-type {
  background: rgba(15, 23, 42, 0.86);
}

.dark .landing-page .home-nav #auth-links a:last-of-type,
.dark .landing-page .home-mobile-account a:last-of-type {
  border-color: rgba(247, 181, 0, 0.34);
  background: linear-gradient(135deg, rgba(247, 181, 0, 0.94), rgba(255, 209, 82, 0.9));
  color: #0f172a;
}

.landing-page .home-mobile-account > span:not(.mobile-account-summary) {
  display: none;
}

.landing-page .home-mobile-account .mobile-account-summary {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
}

.home-main {
  position: relative;
  overflow: clip;
}

.home-hero {
  position: relative;
  padding: 4.75rem 0 3.5rem;
}

.home-hero__backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.home-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.85;
}

.home-orb--gold {
  width: 340px;
  height: 340px;
  top: -110px;
  left: -90px;
  background: rgba(247, 181, 0, 0.2);
}

.home-orb--blue {
  width: 300px;
  height: 300px;
  right: -70px;
  top: 80px;
  background: rgba(74, 117, 255, 0.18);
}

.home-grid-glow {
  position: absolute;
  inset: 5% 5% auto;
  height: 70%;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 48%, transparent 88%);
  opacity: 0.38;
}

.dark .home-grid-glow {
  border-color: rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.5;
}

.home-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.home-kicker,
.home-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: #475569;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-kicker::before,
.home-section__eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(247, 181, 0, 0.9), rgba(247, 181, 0, 0));
}

.dark .home-kicker,
.dark .home-section__eyebrow {
  color: #cbd5e1;
}

.home-hero__title {
  max-width: 12.5ch;
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.75rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.home-hero__title-mark {
  position: relative;
  display: inline-block;
}

.home-hero__title-mark::after {
  content: "";
  position: absolute;
  left: -0.1em;
  right: -0.02em;
  bottom: 0.06em;
  height: 0.28em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(247, 181, 0, 0.92), rgba(255, 209, 82, 0.2));
  z-index: -1;
}

.home-hero__subtitle,
.home-section__subtitle {
  max-width: 38rem;
  margin-top: 1.4rem;
  color: #334155;
  font-size: 1.08rem;
  line-height: 1.8;
}

.dark .home-hero__subtitle,
.dark .home-section__subtitle {
  color: #cbd5e1;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 2rem;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.home-btn--primary {
  background: linear-gradient(135deg, #ffd24d 0%, #f7b500 100%);
  color: #0f172a;
  box-shadow: 0 16px 36px rgba(247, 181, 0, 0.28);
}

.home-btn--primary:hover,
.home-btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(247, 181, 0, 0.36);
}

.home-btn--secondary {
  border-color: rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.72);
  color: inherit;
}

.home-btn--secondary:hover,
.home-btn--secondary:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(148, 163, 184, 0.45);
  background: rgba(255, 255, 255, 0.92);
}

.dark .home-btn--secondary {
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(148, 163, 184, 0.2);
}

.home-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.home-signal-card {
  padding: 1rem 1rem 1.1rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
}

.dark .home-signal-card {
  background: rgba(10, 16, 28, 0.72);
  border-color: rgba(148, 163, 184, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.home-signal-card__label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
}

.dark .home-signal-card__label {
  color: #f8fafc;
}

.home-signal-card p {
  margin: 0;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.65;
}

.dark .home-signal-card p {
  color: #cbd5e1;
}

.home-stage {
  position: relative;
  padding: 1rem 0 1rem 1rem;
}

.home-stage__halo {
  position: absolute;
  inset: 12% 8% 8%;
  border-radius: 36px;
  background:
    radial-gradient(circle at center, rgba(247, 181, 0, 0.2), transparent 56%),
    radial-gradient(circle at 82% 20%, rgba(74, 117, 255, 0.18), transparent 32%);
  filter: blur(28px);
}

.home-product-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(18px);
}

.dark .home-product-window {
  background: rgba(9, 15, 28, 0.8);
  border-color: rgba(148, 163, 184, 0.14);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.42);
}

.home-product-window__topbar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.home-product-window__label {
  margin-left: auto;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 700;
}

.dark .home-product-window__label {
  color: #94a3b8;
}

.home-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.home-dot--red { background: #fb7185; }
.home-dot--yellow { background: #f59e0b; }
.home-dot--green { background: #22c55e; }

.home-product-window__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 1rem;
  padding: 1.35rem;
}

.home-product-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(247, 181, 0, 0.14);
  color: #9a6700;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dark .home-product-tag {
  color: #ffd87b;
  background: rgba(247, 181, 0, 0.16);
}

.home-product-main h2 {
  margin: 0.9rem 0 0.35rem;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.home-product-main__meta {
  margin: 0;
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.65;
}

.dark .home-product-main__meta {
  color: #cbd5e1;
}

.home-question-card,
.home-option-row,
.home-side-card,
.home-preview-card,
.home-mini-panel,
.home-principle {
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.dark .home-question-card,
.dark .home-option-row,
.dark .home-side-card,
.dark .home-preview-card,
.dark .home-mini-panel,
.dark .home-principle {
  background: rgba(15, 23, 42, 0.82);
  border-color: rgba(148, 163, 184, 0.14);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.home-question-card {
  margin-top: 1.2rem;
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
}

.home-question-card__eyebrow {
  display: block;
  margin-bottom: 0.3rem;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-question-card p {
  margin: 0;
  font-size: 1rem;
  color: inherit;
}

.home-option-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.home-option-row {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  color: #334155;
  font-weight: 700;
}

.home-option-row--active {
  border-color: rgba(247, 181, 0, 0.56);
  background: linear-gradient(135deg, rgba(255, 220, 128, 0.95), rgba(255, 244, 199, 0.94));
  color: #0f172a;
}

.dark .home-option-row {
  color: #cbd5e1;
}

.dark .home-option-row--active {
  background: linear-gradient(135deg, rgba(247, 181, 0, 0.28), rgba(247, 181, 0, 0.12));
  color: #fff1bc;
}

.home-progress-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.home-progress-strip > div {
  padding: 0.85rem 0.9rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.04);
}

.dark .home-progress-strip > div {
  background: rgba(255, 255, 255, 0.04);
}

.home-progress-strip__label {
  display: block;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dark .home-progress-strip__label {
  color: #94a3b8;
}

.home-progress-strip strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.98rem;
}

.home-product-rail {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.home-side-card {
  padding: 1rem;
  border-radius: 1.2rem;
}

.home-side-card__kicker {
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-side-card h3 {
  margin: 0.45rem 0 0.3rem;
  font-size: 1.03rem;
  font-weight: 800;
}

.home-side-card p {
  margin: 0;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
}

.dark .home-side-card p {
  color: #cbd5e1;
}

.home-mini-note {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.home-mini-note span {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.32);
}

.home-mini-note .is-strong {
  background: linear-gradient(90deg, #ffd24d, #f7b500);
}

.home-mini-heatmap {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.3rem;
  margin-top: 0.95rem;
}

.home-mini-heatmap span {
  aspect-ratio: 1;
  border-radius: 6px;
  background: rgba(148, 163, 184, 0.18);
}

.home-mini-heatmap .is-warm {
  background: rgba(247, 181, 0, 0.55);
}

.home-mini-heatmap .is-hot {
  background: rgba(247, 181, 0, 0.92);
}

.home-floating-card {
  position: absolute;
  z-index: 3;
  max-width: 220px;
  padding: 1rem 1rem 1.05rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(18px);
  animation: home-float 6.5s ease-in-out infinite;
}

.dark .home-floating-card {
  background: rgba(8, 12, 24, 0.88);
  border-color: rgba(148, 163, 184, 0.14);
}

.home-floating-card--left {
  left: -0.4rem;
  bottom: 2.25rem;
}

.home-floating-card--right {
  right: -0.7rem;
  top: 2.5rem;
  animation-delay: -2.6s;
}

.home-floating-card__label {
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-floating-card strong {
  display: block;
  margin: 0.35rem 0 0.3rem;
  font-size: 0.98rem;
}

.home-floating-card p {
  margin: 0;
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.55;
}

.dark .home-floating-card p {
  color: #cbd5e1;
}

.home-section {
  position: relative;
  padding: 5.8rem 0;
}

.home-section--values {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.home-section--showcase {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(247, 241, 226, 0.7) 100%);
}

.dark .home-section--showcase {
  background: linear-gradient(180deg, rgba(8, 12, 20, 0) 0%, rgba(10, 14, 26, 0.72) 100%);
}

.home-section__head {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.home-section__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.home-value-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.home-value-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 290px;
  padding: 1.4rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.dark .home-value-card {
  background: rgba(11, 16, 28, 0.76);
  border-color: rgba(148, 163, 184, 0.12);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2);
}

.home-value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 181, 0, 0.28);
  box-shadow: 0 28px 54px rgba(15, 23, 42, 0.12);
}

.home-value-card--adaptive { grid-column: span 5; }
.home-value-card--feedback { grid-column: span 3; }
.home-value-card--momentum { grid-column: span 4; }

.home-value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.dark .home-value-card__icon {
  background: rgba(255, 255, 255, 0.06);
  color: #f8fafc;
}

.home-value-card h3 {
  margin: 1.05rem 0 0.55rem;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.home-value-card p,
.home-value-card__detail {
  color: #475569;
}

.dark .home-value-card p,
.dark .home-value-card__detail {
  color: #cbd5e1;
}

.home-value-card__detail {
  margin-top: auto;
  padding-top: 1.2rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.home-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2.5rem;
  align-items: center;
}

.home-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0;
  padding: 0;
}

.home-bullet-list li {
  position: relative;
  padding-left: 1.2rem;
  color: #334155;
  line-height: 1.7;
}

.home-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f7b500;
}

.dark .home-bullet-list li {
  color: #e2e8f0;
}

.home-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.home-inline-link::after {
  content: "→";
}

.home-preview-board {
  padding: 1.2rem;
  border-radius: 2rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(18px);
}

.dark .home-preview-board {
  background: rgba(10, 16, 28, 0.78);
  border-color: rgba(148, 163, 184, 0.12);
}

.home-preview-tabs {
  display: inline-flex;
  gap: 0.45rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
}

.dark .home-preview-tabs {
  background: rgba(255, 255, 255, 0.05);
}

.home-preview-tabs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 700;
}

.dark .home-preview-tabs span {
  color: #94a3b8;
}

.home-preview-tabs .is-active {
  background: rgba(255, 255, 255, 0.86);
  color: #0f172a;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.dark .home-preview-tabs .is-active {
  background: rgba(15, 23, 42, 0.92);
  color: #f8fafc;
}

.home-preview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  margin-top: 1rem;
}

.home-preview-card {
  padding: 1rem;
  border-radius: 1.4rem;
}

.home-preview-card--solve {
  grid-row: span 2;
}

.home-preview-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #64748b;
}

.dark .home-preview-card__header {
  color: #94a3b8;
}

.home-preview-card__body {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.home-mini-panel {
  padding: 0.95rem;
  border-radius: 1.1rem;
}

.home-mini-panel__label {
  display: block;
  margin-bottom: 0.25rem;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dark .home-mini-panel__label {
  color: #94a3b8;
}

.home-chart {
  display: flex;
  align-items: end;
  gap: 0.55rem;
  height: 130px;
  margin-top: 1rem;
}

.home-chart span {
  flex: 1;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, rgba(247, 181, 0, 0.92), rgba(247, 181, 0, 0.3));
  height: 44%;
}

.home-chart .is-mid { height: 66%; }
.home-chart .is-tall { height: 88%; }

.home-note-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1rem;
}

.home-note-stack span {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.2);
}

.home-note-stack .is-strong {
  background: linear-gradient(90deg, #ffd24d, #f7b500);
}

.home-philosophy {
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background:
    radial-gradient(circle at top left, rgba(247, 181, 0, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.08);
}

.dark .home-philosophy {
  background:
    radial-gradient(circle at top left, rgba(247, 181, 0, 0.08), transparent 36%),
    rgba(10, 16, 28, 0.76);
  border-color: rgba(148, 163, 184, 0.12);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

.home-philosophy__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.8rem;
  align-items: start;
}

.home-principles {
  display: grid;
  gap: 0.9rem;
}

.home-principle {
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
}

.home-principle h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  font-weight: 800;
}

.home-principle p {
  margin: 0;
  color: #475569;
}

.dark .home-principle p {
  color: #cbd5e1;
}

.home-footer {
  position: relative;
  padding: 3.8rem 0 2.2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.52);
}

.dark .home-footer {
  background: rgba(6, 8, 12, 0.46);
  border-top-color: rgba(148, 163, 184, 0.12);
}

.home-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.65fr));
  gap: 1.8rem;
}

.home-footer__brand p {
  max-width: 26rem;
  margin-top: 1rem;
  color: #475569;
}

.dark .home-footer__brand p {
  color: #cbd5e1;
}

.home-footer__column {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.home-footer__title {
  margin-bottom: 0.4rem;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-footer__column a {
  width: fit-content;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.88;
}

.home-footer__column a:hover {
  opacity: 1;
  text-decoration: underline;
}

.home-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  color: #64748b;
  font-size: 0.9rem;
}

.home-footer__divider {
  opacity: 0.45;
}

html.home-motion [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

html.home-motion [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes home-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@media (max-width: 1180px) {
  .home-hero__inner,
  .home-showcase,
  .home-philosophy__grid {
    grid-template-columns: 1fr;
  }

  .home-hero__title {
    max-width: 13.5ch;
  }

  .home-stage {
    max-width: 760px;
    margin: 0 auto;
  }

  .home-value-card--adaptive,
  .home-value-card--feedback,
  .home-value-card--momentum {
    grid-column: span 12;
  }
}

@media (max-width: 960px) {
  .home-header__bar {
    min-height: 70px;
  }

  .home-nav {
    display: none;
  }

  .home-hero {
    padding-top: 3.75rem;
  }

  .home-signal-grid,
  .home-progress-strip,
  .home-preview-grid,
  .home-footer__grid {
    grid-template-columns: 1fr;
  }

  .home-product-window__body {
    grid-template-columns: 1fr;
  }

  .home-floating-card {
    position: static;
    max-width: none;
    margin-top: 1rem;
    animation: none;
  }
}

@media (max-width: 640px) {
  .home-hero {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }

  .home-hero__title {
    max-width: none;
    font-size: 2.9rem;
  }

  .home-hero__subtitle,
  .home-section__subtitle {
    font-size: 1rem;
    line-height: 1.72;
  }

  .home-btn {
    width: 100%;
  }

  .home-stage {
    padding-left: 0;
  }

  .home-product-window__body,
  .home-philosophy,
  .home-preview-board {
    padding: 1rem;
  }

  .home-value-card {
    min-height: auto;
  }

  .home-footer {
    padding-top: 3rem;
  }

  .home-footer__bottom {
    font-size: 0.84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-floating-card,
  html.home-motion [data-reveal] {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .home-btn,
  .home-nav__link,
  .home-value-card,
  .home-theme-toggle,
  .home-mobile-theme,
  .home-nav-toggle {
    transition: none !important;
  }
}
