:root {
  --home-space-2: 8px;
  --home-space-3: 12px;
  --home-space-4: 16px;
  --home-space-5: 20px;
  --home-space-6: 24px;
  --home-space-8: 32px;
  --home-radius-sm: 12px;
  --home-radius-md: 16px;
  --home-radius-lg: 20px;
  --home-radius-xl: 24px;
  --home-bg: #f6f3ed;
  --home-surface: rgba(255, 255, 255, 0.94);
  --home-surface-strong: #ffffff;
  --home-ink: #121820;
  --home-ink-soft: #5f6876;
  --home-line: rgba(18, 24, 32, 0.08);
  --home-brand: #11161d;
  --home-brand-soft: #1a212c;
  --home-accent: #cba66d;
  --home-shadow: 0 20px 42px rgba(18, 24, 32, 0.09);
  --home-shadow-soft: 0 12px 26px rgba(18, 24, 32, 0.06);
  --home-shadow-strong: 0 26px 54px rgba(12, 18, 28, 0.14);
  --home-outline: 0 0 0 4px rgba(203, 166, 109, 0.14);
}

body.home-screen {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 30%),
    radial-gradient(circle at 88% 0, rgba(203, 166, 109, 0.12), transparent 22%),
    linear-gradient(180deg, #fbf9f4 0%, #f4efe6 48%, #e9e2d6 100%);
  min-height: 100dvh;
}

body.home-screen::before {
  opacity: 0.26;
}

body.drawer-open {
  overflow: hidden;
}

.short-home {
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px;
  display: grid;
  gap: 16px;
  min-height: 100dvh;
  height: auto;
  grid-template-rows: auto auto auto;
  align-content: start;
  overflow: visible;
}

.short-top-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--home-space-3);
  min-height: 60px;
  padding: 8px 10px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.66));
  border: 1px solid rgba(18, 24, 32, 0.07);
  box-shadow: 0 14px 30px rgba(18, 24, 32, 0.05);
  backdrop-filter: blur(16px);
}

.short-top-nav__menu,
.side-drawer__close {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18, 24, 32, 0.06);
  background: rgba(255, 255, 255, 0.84);
  color: var(--home-ink);
  box-shadow: none;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.short-top-nav__menu svg,
.side-drawer__close svg {
  width: 22px;
  height: 22px;
}

.short-top-nav__menu:hover,
.side-drawer__close:hover {
  transform: none;
  border-color: rgba(18, 24, 32, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}

.short-top-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  color: var(--home-ink);
}

.short-top-nav__brand:hover {
  text-decoration: none;
}

.short-top-nav__logo {
  width: 108px;
  height: 38px;
  padding: 5px 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--home-line);
  box-shadow: var(--home-shadow-soft);
}

.short-top-nav__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.short-top-nav__copy {
  display: grid;
  gap: 2px;
}

.short-top-nav__copy strong {
  font-size: 15px;
  line-height: 1.15;
  color: var(--home-ink);
  letter-spacing: -0.01em;
}

.short-top-nav__copy span {
  font-size: 11px;
  color: #7b8290;
}

.short-top-nav__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 249, 245, 0.9));
  border: 1px solid rgba(18, 24, 32, 0.07);
  color: var(--home-ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: var(--home-shadow-soft);
  transition:
    transform 0.18s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.short-top-nav__action:hover {
  text-decoration: none;
  transform: translateY(-1px);
  border-color: rgba(203, 166, 109, 0.3);
  box-shadow: 0 14px 28px rgba(18, 24, 32, 0.08);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms cubic-bezier(0.22, 1, 0.36, 1), visibility 260ms ease;
  z-index: 50;
}

.drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.side-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(88vw, 352px);
  padding: 22px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
  background: rgba(251, 252, 253, 0.98);
  border-right: 1px solid rgba(18, 24, 32, 0.06);
  box-shadow: 8px 0 24px rgba(15, 23, 42, 0.06);
  transform: translate3d(-100%, 0, 0);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 60;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.side-drawer.is-open {
  transform: translateX(0);
}

.side-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.side-drawer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.side-drawer__logo {
  width: 98px;
  height: 36px;
  padding: 4px 6px;
  border-radius: 14px;
  background: var(--home-brand);
}

.side-drawer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
}

.side-drawer__brand-copy {
  display: grid;
  gap: 2px;
}

.side-drawer__brand-copy strong {
  font-size: 15px;
  color: var(--home-ink);
}

.side-drawer__brand-copy span {
  font-size: 12px;
  color: #7b8290;
}

.side-drawer__profile {
  padding: 18px;
  border-radius: 22px;
  background: rgba(17, 23, 31, 0.03);
  color: var(--home-ink);
  display: grid;
  gap: 8px;
  box-shadow: none;
}

.side-drawer__label {
  color: #8a909c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.side-drawer__profile strong {
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.side-drawer__profile p {
  margin: 0;
  color: #6c7481;
  font-size: 13px;
  line-height: 1.62;
}

.side-drawer__nav {
  display: grid;
  gap: 10px;
  align-content: start;
  overflow-y: auto;
  padding-right: 4px;
}

.side-drawer__group {
  display: grid;
  gap: 6px;
}

.side-drawer__group--collapsible {
  gap: 6px;
}

.side-drawer__group-toggle {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(18, 24, 32, 0);
  border-radius: 14px;
  background: transparent;
  color: var(--home-ink);
  font: inherit;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.side-drawer__group-toggle:hover,
.side-drawer__group.is-current .side-drawer__group-toggle {
  background: rgba(17, 23, 31, 0.05);
}

.side-drawer__group-title {
  color: #8a909c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.side-drawer__group-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.side-drawer__group-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--home-ink);
  letter-spacing: -0.01em;
}

.side-drawer__group-chevron {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8a909c;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), color 180ms ease;
}

.side-drawer__group-chevron svg {
  width: 18px;
  height: 18px;
}

.side-drawer__group.is-expanded .side-drawer__group-chevron {
  transform: rotate(90deg);
  color: var(--home-ink);
}

.side-drawer__subnav {
  display: grid;
  gap: 6px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 220ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease,
    transform 180ms ease;
}

.side-drawer__group.is-expanded .side-drawer__subnav {
  max-height: 360px;
  opacity: 1;
  transform: translateY(0);
}

.side-drawer__item {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  border: 1px solid rgba(18, 24, 32, 0);
  background: rgba(18, 24, 32, 0);
  color: var(--home-ink);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.side-drawer__item:hover {
  text-decoration: none;
  background: rgba(18, 24, 32, 0.04);
  border-color: rgba(18, 24, 32, 0);
  transform: none;
  box-shadow: none;
}

.side-drawer__item.is-active {
  background: rgba(17, 23, 31, 0.07);
  border-color: rgba(18, 24, 32, 0);
  color: var(--home-ink);
  box-shadow: none;
}

.side-drawer__item--primary {
  padding-right: 14px;
}

.side-drawer__item--button {
  cursor: pointer;
}

.side-drawer__item--sub {
  min-height: 42px;
  margin-left: 14px;
  padding-left: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #4d5562;
  border-left: 1px solid rgba(18, 24, 32, 0.08);
  border-radius: 0 14px 14px 0;
}

.side-drawer__item--sub.is-active {
  background: rgba(17, 23, 31, 0.06);
  color: var(--home-ink);
}

.side-drawer__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
}

.side-drawer__icon svg {
  width: 22px;
  height: 22px;
}

.home-stage {
  min-height: 0;
  display: grid;
  gap: 14px;
  align-content: start;
  overflow: visible;
}

.compact-hero {
  padding: 24px 24px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(192px, 0.82fr);
  gap: 20px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 18%, rgba(203, 166, 109, 0.18), transparent 24%),
    linear-gradient(145deg, #0f141b 0%, #171d26 56%, #222b38 100%);
  color: #fbf8f1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--home-shadow-strong);
}

.compact-hero__copy {
  display: grid;
  align-content: center;
  gap: 0;
  min-width: 0;
}

.compact-hero__pill {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f2d19e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.compact-hero__copy h1 {
  margin: 16px 0 0;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 11.4ch;
  text-wrap: balance;
}

.compact-hero__copy p {
  margin: 14px 0 0;
  max-width: 46ch;
  color: rgba(251, 248, 241, 0.8);
  font-size: 14px;
  line-height: 1.68;
}

.compact-hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 144px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition:
    transform 0.16s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.cta-primary:hover,
.cta-secondary:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.cta-primary {
  background: linear-gradient(135deg, #ffffff 0%, #f4f4f2 100%);
  color: #11161d;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fbf8f1;
}

.cta-primary:focus-visible,
.cta-secondary:focus-visible,
.short-top-nav__action:focus-visible,
.short-top-nav__menu:focus-visible,
.side-drawer__close:focus-visible,
.side-drawer__item:focus-visible,
.guide-flow__item:focus-visible,
.story-carousel__cta:focus-visible {
  outline: none;
  box-shadow: var(--home-outline);
}

.compact-hero__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-width: 0;
}

.compact-hero__mascot-shell {
  width: min(100%, 188px);
  aspect-ratio: 0.94 / 1;
  padding: 12px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06)),
    linear-gradient(160deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 32px rgba(8, 12, 18, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
}

.compact-hero__mascot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(1.02) drop-shadow(0 12px 18px rgba(0, 0, 0, 0.12));
}

.quick-start-guide,
.bottom-cta-mini {
  padding: 18px 20px;
  border-radius: 28px;
  background: var(--home-surface);
  border: 1px solid var(--home-line);
  box-shadow: var(--home-shadow);
}

.quick-start-guide {
  display: grid;
  gap: 16px;
  align-content: start;
  background:
    radial-gradient(circle at top right, rgba(203, 166, 109, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 244, 236, 0.92));
}

.quick-start-guide__head {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.quick-start-guide__head h2 {
  margin: 0;
  color: var(--home-ink);
  font-size: 20px;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.quick-start-guide__eyebrow,
.guide-flow__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(203, 166, 109, 0.12);
  color: #9b7440;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.guide-flow__index {
  width: 34px;
  min-width: 34px;
  min-height: 34px;
  padding: 0;
  border-radius: 12px;
  font-size: 10px;
}

.quick-start-guide__intro {
  margin: 0;
  color: var(--home-ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.guide-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  flex: none;
}

.guide-flow__item {
  min-height: 76px;
  padding: 14px 15px;
  border-radius: 20px;
  border: 1px solid rgba(18, 24, 32, 0.06);
  background:
    radial-gradient(circle at top right, rgba(203, 166, 109, 0.06), transparent 34%),
    rgba(18, 24, 32, 0.03);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--home-ink);
  transition:
    transform 0.16s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.guide-flow__item:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(18, 24, 32, 0.06);
  border-color: rgba(203, 166, 109, 0.24);
}

.guide-flow__copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.guide-flow__copy strong {
  color: var(--home-ink);
  font-size: 14px;
  line-height: 1.24;
  word-break: keep-all;
  letter-spacing: -0.01em;
}

.guide-flow__copy p {
  margin: 0;
  color: var(--home-ink-soft);
  font-size: 11px;
  line-height: 1.5;
  word-break: keep-all;
}

.bottom-cta-mini {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(203, 166, 109, 0.18), transparent 30%),
    linear-gradient(145deg, #11161d 0%, #1a2230 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fbf8f1;
  box-shadow: var(--home-shadow-strong);
}

.bottom-cta-mini__copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.bottom-cta-mini__eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  padding: 0 10px;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f2d19e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.bottom-cta-mini h2 {
  margin: 0;
  color: #fbf8f1;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.08;
  max-width: 14ch;
  letter-spacing: -0.02em;
}

.bottom-cta-mini p {
  margin: 0;
  color: rgba(251, 248, 241, 0.74);
  font-size: 13px;
  line-height: 1.62;
}

@media (max-width: 760px) {
  .short-home {
    padding: 12px;
    gap: 10px;
    grid-template-rows: auto auto auto;
  }

  .short-top-nav {
    min-height: 54px;
    padding: 6px 7px;
    border-radius: 20px;
  }

  .short-top-nav__logo {
    width: 92px;
    height: 32px;
    padding: 4px 6px;
  }

  .short-top-nav__copy strong {
    font-size: 14px;
  }

  .short-top-nav__copy span {
    font-size: 11px;
  }

  .short-top-nav__action {
    min-width: 72px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .side-drawer {
    width: min(88vw, 320px);
    padding: 16px;
    gap: 16px;
  }

  .home-stage {
    gap: 10px;
    overflow: visible;
    padding-right: 0;
  }

  .compact-hero,
  .quick-start-guide,
  .bottom-cta-mini {
    padding: 14px;
    border-radius: 20px;
  }

  .compact-hero {
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 12px;
    align-items: end;
  }

  .compact-hero__copy h1 {
    font-size: clamp(26px, 7vw, 32px);
    max-width: 10.4ch;
  }

  .compact-hero__copy p {
    font-size: 12px;
    line-height: 1.56;
  }

  .compact-hero__actions {
    margin-top: 16px;
    gap: 8px;
    flex-wrap: wrap;
  }

  .compact-hero__visual {
    align-items: flex-end;
    justify-content: flex-end;
  }

  .compact-hero__mascot-shell {
    width: min(100%, 112px);
    padding: 8px;
    border-radius: 18px;
  }

  .cta-primary,
  .cta-secondary {
    flex: 1 1 0;
    min-width: 0;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 15px;
    font-size: 12px;
  }

  .quick-start-guide {
    gap: 10px;
  }

  .quick-start-guide__head {
    gap: 6px;
  }

  .quick-start-guide__head h2 {
    font-size: 16px;
  }

  .quick-start-guide__intro {
    font-size: 12px;
    line-height: 1.52;
  }

  .guide-flow {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .guide-flow__item {
    min-height: 62px;
    padding: 10px 11px;
    gap: 10px;
  }

  .guide-flow__copy strong {
    font-size: 12px;
    line-height: 1.24;
  }

  .guide-flow__copy p {
    font-size: 10px;
    line-height: 1.42;
  }

  .bottom-cta-mini {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 10px;
  }

  .bottom-cta-mini h2 {
    font-size: 18px;
    max-width: 14ch;
  }

  .bottom-cta-mini p {
    font-size: 11px;
    line-height: 1.5;
  }

  .bottom-cta-mini .cta-primary {
    min-width: 0;
    flex: 0 0 auto;
    min-height: 40px;
    font-size: 12px;
  }
}

.home-insight-row {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 14px;
  align-items: start;
}

.story-carousel {
  position: relative;
  min-height: 248px;
  padding: 14px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(203, 166, 109, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--home-line);
  box-shadow: var(--home-shadow);
  overflow: hidden;
}

.story-carousel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.34), transparent 46%);
  pointer-events: none;
}

.story-carousel__track,
.story-card {
  height: 100%;
}

.story-card {
  position: relative;
  padding: 20px;
  border-radius: 22px;
  display: grid;
  gap: 16px;
  align-content: start;
  color: #fbf8f1;
  background:
    radial-gradient(circle at 86% 16%, rgba(255,255,255,0.14), transparent 24%),
    linear-gradient(155deg, #121720 0%, #1a212c 56%, #212938 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 16px 26px rgba(8, 12, 18, 0.12);
}

.story-card--amber {
  background:
    radial-gradient(circle at 86% 16%, rgba(242, 209, 158, 0.24), transparent 24%),
    linear-gradient(155deg, #141a22 0%, #202733 56%, #2b3444 100%);
}

.story-card--graphite {
  background:
    radial-gradient(circle at 86% 16%, rgba(123, 143, 170, 0.22), transparent 24%),
    linear-gradient(155deg, #10141b 0%, #19212b 56%, #253141 100%);
}

.story-card--olive {
  background:
    radial-gradient(circle at 86% 16%, rgba(177, 189, 143, 0.22), transparent 24%),
    linear-gradient(155deg, #11161d 0%, #1d262f 56%, #28313b 100%);
}

.story-card--empty {
  background:
    radial-gradient(circle at 86% 16%, rgba(203, 166, 109, 0.18), transparent 24%),
    linear-gradient(155deg, #131820 0%, #1b222c 100%);
}

.story-card__header,
.story-card__body,
.story-card__footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.story-card__body {
  align-items: stretch;
  justify-content: space-between;
}

.story-card__header-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.story-card__copy {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.story-card__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.story-card__meta-pill {
  min-height: 26px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(251, 248, 241, 0.76);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.story-card__badge,
.story-card__counter,
.story-card__hint {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.story-card__badge {
  background: rgba(255, 255, 255, 0.12);
  color: #f2d19e;
}

.story-card__counter,
.story-card__hint {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(251, 248, 241, 0.72);
}

.story-card__ad-flag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(251, 248, 241, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.story-card__counter {
  font-size: 10px;
  letter-spacing: 0.08em;
}

.story-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.06;
  letter-spacing: -0.02em;
  max-width: 15ch;
}

.story-card p {
  margin: 0;
  color: rgba(251, 248, 241, 0.76);
  font-size: 13px;
  line-height: 1.62;
  max-width: 46ch;
}

.story-card__description {
  color: rgba(251, 248, 241, 0.64);
}

.story-card__support {
  margin: 0;
  color: rgba(251, 248, 241, 0.8);
  font-size: 12px;
  line-height: 1.55;
  max-width: 40ch;
}

.story-card__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.story-card__visual {
  width: min(100%, 252px);
  flex: 0 0 252px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.story-card__visual--insight {
  align-self: stretch;
}

.story-card__metric,
.story-card__poster {
  width: 100%;
  min-height: 180px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.story-card__cover-shell {
  width: 100%;
  min-height: 150px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.story-card__cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-card__metric {
  padding: 18px;
  display: grid;
  align-content: space-between;
}

.story-card__metric span {
  color: rgba(251, 248, 241, 0.64);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-card__metric strong {
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.story-card__metric small {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(251, 248, 241, 0.7);
}

.story-card__poster {
  position: relative;
  overflow: hidden;
  padding: 16px;
}

.story-card__poster-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.story-card__poster-header span {
  color: rgba(251, 248, 241, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.story-card__poster-header strong {
  min-height: 24px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(242, 209, 158, 0.12);
  color: #f2d19e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.story-card__poster::before {
  content: '';
  position: absolute;
  inset: 18px 20px auto auto;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 209, 158, 0.32), transparent 66%);
}

.story-card__poster-core {
  position: relative;
  z-index: 1;
  width: 112px;
  height: 112px;
  margin: 0 auto 14px;
  border-radius: 999px;
  display: grid;
  place-content: center;
  gap: 4px;
  text-align: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
}

.story-card__poster-core span {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(251, 248, 241, 0.66);
}

.story-card__poster-core strong {
  font-size: 22px;
  letter-spacing: -0.03em;
}

.story-card__poster-tags {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.story-card__poster-tags span {
  min-height: 26px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(251, 248, 241, 0.84);
  font-size: 10px;
  font-weight: 700;
}

.story-card__point {
  min-height: 30px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(251, 248, 241, 0.8);
  font-size: 11px;
  font-weight: 700;
}

.story-card__poster-stack {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.story-card__persona {
  min-height: 58px;
  padding: 10px 10px 11px;
  display: grid;
  gap: 4px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.story-card__persona strong {
  font-size: 11px;
  line-height: 1.2;
  color: #ffffff;
}

.story-card__persona p {
  margin: 0;
  color: rgba(251, 248, 241, 0.72);
  font-size: 10px;
  line-height: 1.45;
}

.story-carousel__footer {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

.story-carousel__dots {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.story-carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(18, 24, 32, 0.18);
}

.story-carousel__dot.is-active {
  width: 24px;
  background: linear-gradient(135deg, #cba66d, #9b7440);
}

.story-carousel__cta {
  grid-column: 3;
  justify-self: end;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 24, 32, 0.05);
  border: 1px solid rgba(18, 24, 32, 0.07);
  color: var(--home-ink);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(18, 24, 32, 0.05);
  transition:
    transform 0.16s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.story-carousel__cta:hover {
  text-decoration: none;
  transform: translateY(-1px);
  border-color: rgba(203, 166, 109, 0.24);
  box-shadow: 0 14px 22px rgba(18, 24, 32, 0.08);
}

@media (max-width: 760px) {
  .home-insight-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .story-carousel {
    min-height: 196px;
    padding: 10px;
  }

  .story-card {
    padding: 14px;
    gap: 12px;
  }

  .story-card__body {
    flex-direction: column;
  }

  .story-card__visual {
    width: 100%;
    flex: none;
  }

  .story-card__support {
    font-size: 11px;
  }

  .story-card__meta-row {
    gap: 6px;
  }

  .story-card h3 {
    font-size: 18px;
  }

  .story-card p {
    font-size: 12px;
    line-height: 1.5;
  }

  .story-card__badge,
  .story-card__counter,
  .story-card__point {
    min-height: 24px;
    padding: 0 9px;
    font-size: 10px;
  }

  .story-card__points {
    gap: 6px;
  }

  .story-card__poster-stack {
    grid-template-columns: 1fr;
  }

  .story-card__poster-core {
    width: 96px;
    height: 96px;
  }

  .story-carousel__cta {
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }

  .guide-flow__item {
    min-height: 56px;
  }
}
