:root {
  --purple: #4f26e9;
  --purple-dark: #3b16c8;
  --purple-soft: #efe9ff;
  --ink: #111118;
  --muted: #5c586c;
  --page: #f3f4f7;
  --panel: #ffffff;
  --line: #e7e5ef;
  --max: 1120px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--page);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 20px 0;
}

.panel {
  background: var(--panel);
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(30, 20, 70, 0.05);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(243, 244, 247, 0.92);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.lang-btn {
  border: 0;
  background: transparent;
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
}

.lang-btn.is-active {
  background: var(--purple);
  color: #fff;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
  image-rendering: auto;
}

@media (max-width: 720px) {
  .logo img {
    height: 30px;
  }
}

.nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a span {
  opacity: 0.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--purple);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  background: var(--purple-dark);
}

.btn-lg {
  padding: 14px 22px;
}

.btn-ghost {
  background: var(--purple-soft);
  color: var(--purple);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 3px auto;
  background: #111;
}

/* Hero */
.hero-panel {
  padding: 34px;
}

.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.accent {
  color: var(--purple);
}

.sub {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 500;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.video {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 500;
}

.play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple-soft);
  color: var(--purple);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
}

.hero-art {
  border-radius: 22px;
  overflow: hidden;
  background: #120c28;
  display: flex;
  flex-direction: column;
}

.hero-art img,
.hero-video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: #120c28;
}

.hero-video-cta {
  padding: 16px 18px 18px;
  background: linear-gradient(180deg, #1a1233 0%, #120c28 100%);
  color: #ebe6f8;
}

.hero-video-line {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 500;
  color: #f4f0ff;
}

.hero-video-links {
  margin: 12px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: baseline;
  font-size: 0.92rem;
  line-height: 1.4;
}

.hero-video-links a {
  color: #c4b5fd;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-video-links a:hover {
  color: #fff;
}

.hero-video-or {
  color: rgba(235, 230, 248, 0.55);
  font-weight: 500;
}

.hero-video-tg {
  margin: 10px 0 0;
  font-size: 0.88rem;
}

.hero-video-tg a {
  color: rgba(235, 230, 248, 0.75);
  font-weight: 500;
  text-decoration: none;
}

.hero-video-tg a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rhythm {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr 1.45fr;
  gap: 20px;
}

.rhythm-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.rhythm-item p {
  margin: 0;
  color: var(--muted);
}

.ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--purple-soft);
  color: var(--purple);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.rhythm-item.wide {
  align-items: center;
}

.lounge {
  width: 84px;
  height: 84px;
  object-fit: contain;
  background: transparent;
}

/* Shared numbered section titles */
.section-title {
  margin: 0 0 22px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-num {
  color: var(--purple);
  font-weight: 700;
  font-size: 0.95em;
}

/* Why it works (02) */
.why-panel {
  padding: 34px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px 18px;
  background: #fafafc;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 14px 16px;
  align-items: center;
}

.why-copy {
  min-width: 0;
}

.why-art {
  border-radius: 16px;
  overflow: visible;
  background: transparent;
  display: grid;
  place-items: center;
  min-width: 0;
  /* Let natural illustration AR show — forced square was clipping labels */
  aspect-ratio: auto;
  min-height: 160px;
}

.why-art img {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
}

.why-card h3 {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.why-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* 10x (03) */
.tenx-panel {
  padding: 34px;
}

.tenx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tenx-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tenx-art {
  width: auto;
  max-width: 96%;
  max-height: 240px;
  height: auto;
  /* No forced aspect-ratio — denser 3D scenes must stay fully visible */
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
  display: block;
  margin-inline: auto;
  align-self: center;
}

/* Crowd scene is wider/denser than single-character art */
.tenx-art--crowd {
  max-width: 100%;
  max-height: 280px;
}

.tenx-col h3 {
  margin: 0;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.tenx-col p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Roles flow (04) */
.roles-panel {
  padding: 34px;
}

.roles-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: start;
}

.roles-step {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  background: #fafafc;
  min-width: 0;
  height: auto;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.roles-label {
  display: inline-block;
  margin-bottom: 0;
  color: var(--purple);
  font-weight: 700;
  font-size: 0.85rem;
}

.roles-art {
  border-radius: 14px;
  overflow: visible;
  background: transparent;
  margin-bottom: 0;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.roles-art img {
  /* Wide block04 scenes — contain without forced crop */
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  display: block;
  margin-inline: auto;
  border-radius: 0;
}

.roles-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  overflow: visible;
  white-space: normal;
  text-overflow: unset;
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  max-height: none;
}

.roles-arrow {
  color: var(--purple);
  font-size: 1.4rem;
  font-weight: 700;
  padding-top: 28px;
  align-self: center;
}

/* Process */
.process-panel {
  padding: 34px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 6px;
  background: #2a1570;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.process-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(1.4rem, 2.3vw, 1.85rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.process-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 34ch;
}

.process-art img {
  width: 100%;
  height: auto;
  background: transparent;
}

.process-captions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.process-captions strong {
  display: block;
  font-size: 0.82rem;
  line-height: 1.25;
  margin-bottom: 4px;
}

.process-captions span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

/* Overheard videos */
.overheard-panel {
  position: relative;
  padding: 28px;
}

.overheard-panel .news-head {
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.overheard-lead {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.overheard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.overheard-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.overheard-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 9 / 16;
  max-height: 520px;
}

.overheard-media video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  vertical-align: middle;
  background: #111;
}

.overheard-card h3 {
  margin: 12px 0 0;
  font-size: 1.05rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.overheard-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  flex: 1;
}

/* News */
.news-panel {
  position: relative;
  padding: 28px;
}

.news-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.news-head h2 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.news-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--purple);
}

.news-head a {
  color: var(--purple);
  font-weight: 600;
  white-space: nowrap;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.card-link {
  color: inherit;
  transition: transform 0.2s ease;
}

.card-link:hover {
  transform: translateY(-3px);
}

.news-more {
  margin-top: auto;
  padding-top: 12px;
  color: var(--purple);
  font-weight: 600;
  font-size: 0.9rem;
}

.card.card-link .news-more {
  display: inline-block;
}

.article-panel {
  padding: 28px 32px 36px;
  max-width: 760px;
  margin: 0 auto;
}

.article-back {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--purple);
  font-weight: 600;
}

.article-hero {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-panel h1 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.article-meta {
  margin: -8px 0 18px;
  color: #666;
  font-size: 0.92rem;
}

.article-body p {
  margin: 0 0 14px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #222;
}

.article-body h2 {
  margin: 28px 0 12px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.article-body ul,
.article-body ol {
  margin: 0 0 16px 1.2rem;
  padding: 0;
  color: #222;
  line-height: 1.55;
}

.article-body li {
  margin-bottom: 6px;
}

.article-body a {
  color: var(--purple);
}

.article-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.dash-panel {
  padding: 28px;
}

.dash-panel h1 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.dash-help {
  color: var(--muted);
  margin: 0 0 16px;
}

.dash-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
}

.table-wrap {
  overflow-x: auto;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.dash-table th,
.dash-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.dash-table th {
  color: var(--muted);
  font-weight: 600;
}

.card-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
}

.card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 8px;
  background: var(--purple);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
}

.card h3 {
  margin: 12px 0 0;
  font-size: 1.1rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  flex: 1;
}

.card > a {
  margin-top: 12px;
  color: var(--purple);
  font-weight: 600;
  font-size: 0.9rem;
}

.news-next {
  position: absolute;
  right: 12px;
  top: 56%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--purple);
  box-shadow: 0 8px 20px rgba(20, 16, 50, 0.12);
  cursor: pointer;
}

/* CTA */
.cta-panel {
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 20px;
  align-items: center;
}

.cta-mascot {
  width: 118px;
  height: auto;
  max-height: 140px;
  object-fit: contain;
  background: transparent;
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  letter-spacing: -0.03em;
  line-height: 1.3;
  max-width: 36ch;
}

.cta-side {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.tg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.tg:hover {
  color: var(--text);
}

.tg-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2aabee;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.tg-lg {
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
}

.tg-lg .tg-ico {
  width: 32px;
  height: 32px;
}

.header-tg {
  white-space: nowrap;
  padding: 6px 10px 6px 6px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
}

.header-tg:hover {
  border-color: #2aabee;
  color: var(--text);
}

.mid-early-panel {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  padding: 36px 28px;
}

.mid-early-panel h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  letter-spacing: -0.03em;
}

.mid-early-panel p {
  margin: 0;
  max-width: 42ch;
  color: var(--muted);
  line-height: 1.45;
}

.cta-access-note {
  margin: 0 0 8px;
  max-width: 40ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero-video-access {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.hero-video-tg .tg {
  font-size: 0.95rem;
}

/* Morning brief — product demo card (forest-green accent; scoped to this block) */
.morning-brief {
  --mb-green: #0c4a26;
  --mb-green-soft: #e8f3ec;
  --mb-green-mid: #1a6b3c;
  --mb-orange: #c56a1a;
  --mb-orange-soft: #fff1e4;
  --mb-blue: #2f5f9e;
  --mb-blue-soft: #eaf1fa;
  --mb-line: #e6e8ec;
  --mb-muted: #6b7280;
  --mb-ink: #111827;
  padding: 28px 0 36px;
  background: #f5f6f8;
}

.morning-brief .container {
  width: min(980px, calc(100% - 40px));
}

.morning-brief__intro {
  text-align: center;
  margin-bottom: 28px;
}

.morning-brief__intro h2 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  color: var(--mb-ink);
  font-weight: 700;
}

.morning-brief__sub {
  margin: 0 auto;
  max-width: 42rem;
  color: var(--mb-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.morning-brief__card {
  background: #fff;
  border: 1px solid var(--mb-line);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.04);
  overflow: hidden;
}

.morning-brief__card-head {
  padding: 18px 22px 16px;
  border-bottom: 1px solid var(--mb-line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.morning-brief__card-head-main {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.morning-brief__sun {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mb-green-soft);
  color: var(--mb-green);
  display: grid;
  place-items: center;
}

.morning-brief__sun svg {
  width: 22px;
  height: 22px;
}

.morning-brief__card-head h3 {
  margin: 2px 0 4px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--mb-ink);
}

.morning-brief__meta {
  margin: 0;
  color: var(--mb-muted);
  font-size: 0.88rem;
}

.morning-brief__ready {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #e7f6ec;
  color: var(--mb-green-mid);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.morning-brief__body {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr 0.95fr;
  gap: 0;
  border-bottom: 1px solid var(--mb-line);
}

.morning-brief__col {
  padding: 18px 20px 20px;
}

.morning-brief__col + .morning-brief__col {
  border-left: 1px solid var(--mb-line);
}

.morning-brief__col-title {
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--mb-ink);
}

.morning-brief__col-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f3f4f6;
  color: var(--mb-muted);
  display: grid;
  place-items: center;
}

.morning-brief__col-ico svg {
  width: 15px;
  height: 15px;
}

.morning-brief__highlights {
  display: grid;
  gap: 10px;
  align-content: start;
}

.morning-brief__hl {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--mb-line);
  background: #fafbfc;
}

.morning-brief__hl-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.morning-brief__hl-ico svg {
  width: 18px;
  height: 18px;
}

.morning-brief__hl strong {
  display: block;
  font-size: 0.84rem;
  margin-bottom: 2px;
}

.morning-brief__hl p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--mb-muted);
  line-height: 1.4;
}

.morning-brief__hl--signal .morning-brief__hl-ico {
  background: var(--mb-green-soft);
  color: var(--mb-green);
}

.morning-brief__hl--signal strong {
  color: var(--mb-green);
}

.morning-brief__hl--opp .morning-brief__hl-ico {
  background: var(--mb-orange-soft);
  color: var(--mb-orange);
}

.morning-brief__hl--opp strong {
  color: var(--mb-orange);
}

.morning-brief__hl--next .morning-brief__hl-ico {
  background: var(--mb-blue-soft);
  color: var(--mb-blue);
}

.morning-brief__hl--next strong {
  color: var(--mb-blue);
}

.morning-brief__timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 10px;
  display: grid;
  gap: 0;
  position: relative;
}

.morning-brief__timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: #cfe3d6;
}

.morning-brief__timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
}

.morning-brief__avatar {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 0 3px #fff;
}

.morning-brief__avatar--maya {
  background: #1f7a45;
}

.morning-brief__avatar--leo {
  background: #d4a017;
}

.morning-brief__avatar--nora {
  background: #3b6fb6;
}

.morning-brief__avatar--kaito {
  background: #6b7280;
}

.morning-brief__agent {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 10px;
  font-size: 0.86rem;
  color: var(--mb-ink);
}

.morning-brief__agent strong {
  font-weight: 700;
}

.morning-brief__tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}

.morning-brief__tag--signal {
  background: var(--mb-green-soft);
  color: var(--mb-green);
}

.morning-brief__tag--wallets {
  background: var(--mb-orange-soft);
  color: var(--mb-orange);
}

.morning-brief__tag--intro {
  background: var(--mb-blue-soft);
  color: var(--mb-blue);
}

.morning-brief__tag--a2a {
  background: #eef0f3;
  color: #4b5563;
}

.morning-brief__metrics {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.morning-brief__metrics li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 8px;
  align-items: center;
  font-size: 0.86rem;
  color: var(--mb-ink);
}

.morning-brief__metric-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f3f4f6;
  color: var(--mb-muted);
  display: grid;
  place-items: center;
}

.morning-brief__metric-ico svg {
  width: 15px;
  height: 15px;
}

.morning-brief__delta {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--mb-green-mid);
  font-weight: 700;
  font-size: 0.86rem;
}

.morning-brief__delta svg {
  width: 11px;
  height: 11px;
}

.morning-brief__confidence {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--mb-line);
  font-size: 0.86rem;
  color: var(--mb-muted);
}

.morning-brief__confidence-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--mb-green-soft);
  color: var(--mb-green);
  font-weight: 700;
  font-size: 0.78rem;
}

.morning-brief__confidence-pill svg {
  width: 14px;
  height: 14px;
}

.morning-brief__actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 14px 16px 16px;
  background: #fafbfc;
}

.morning-brief__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--mb-line);
  background: #fff;
  color: var(--mb-ink);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.morning-brief__btn svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.morning-brief__btn:hover {
  background: #f3f4f6;
}

.morning-brief__btn--primary {
  background: var(--mb-green);
  border-color: var(--mb-green);
  color: #fff;
}

.morning-brief__btn--primary:hover {
  background: #08381c;
}

.morning-brief__btn--secondary {
  background: var(--mb-green-soft);
  border: 2px solid var(--mb-green);
  color: var(--mb-green);
  font-weight: 700;
}

.morning-brief__btn--secondary:hover {
  background: #d5ebd9;
  border-color: #08381c;
  color: #08381c;
}

@media (max-width: 900px) {
  .morning-brief__body {
    grid-template-columns: 1fr;
  }

  .morning-brief__col + .morning-brief__col {
    border-left: 0;
    border-top: 1px solid var(--mb-line);
  }

  .morning-brief__actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .morning-brief__actions {
    grid-template-columns: 1fr;
  }

  .morning-brief__btn {
    white-space: normal;
  }

  .morning-brief__agent {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(16, 12, 36, 0.5);
  z-index: 50;
  padding: 20px;
}

.modal.is-open {
  display: grid;
}

.modal-card {
  width: min(420px, 100%);
  background: #fff;
  border-radius: 22px;
  padding: 24px;
}

.modal-card h3 {
  margin: 0 0 8px;
}

.modal-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.modal-card label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.modal-card input {
  width: 100%;
  margin-bottom: 12px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.modal-actions {
  display: flex;
  gap: 10px;
}

.form-note {
  margin-top: 12px;
  font-size: 0.84rem;
}

@media (max-width: 1100px) {
  .overheard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .overheard-media {
    max-height: 440px;
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .header-tg span[data-i18n] {
    max-width: 14ch;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav.is-open {
    display: flex;
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 16px 40px rgba(20, 16, 50, 0.12);
  }

  .nav.is-open a {
    padding: 12px;
  }

  .hero,
  .process-panel,
  .process-captions,
  .news-grid,
  .overheard-grid,
  .rhythm,
  .cta-panel,
  .why-grid,
  .tenx-grid {
    grid-template-columns: 1fr;
  }

  .overheard-media {
    max-height: 420px;
    margin: 0 auto;
    width: min(100%, 320px);
  }

  .why-card {
    grid-template-columns: 1fr;
  }

  .why-art {
    order: -1;
    aspect-ratio: auto;
    min-height: 0;
    max-height: none;
  }

  .why-art img {
    max-height: 220px;
  }

  .tenx-art {
    max-width: 92%;
    max-height: 220px;
  }

  .tenx-art--crowd {
    max-width: 100%;
    max-height: 250px;
  }

  .roles-art img {
    max-height: 200px;
  }

  .roles-flow {
    grid-template-columns: 1fr;
  }

  .roles-arrow {
    display: none;
  }

  .cta-side {
    justify-items: start;
  }

  .news-next {
    display: none;
  }
}
