:root {
  --color-brand-dark: #18110d;
  --color-brand-mid: #f26b1d;
  --color-brand-mid-strong: #d95810;
  --color-brand-light: #fff3e8;
  --color-accent: #ffcb9f;
  --color-surface: #f4efe9;
  --color-white: #ffffff;
  --text: #221812;
  --text-secondary: #67554b;
  --text-tertiary: #9a8477;
  --line: rgba(34, 24, 18, 0.1);
  --shadow: 0 28px 60px rgba(73, 43, 20, 0.12);
  --shadow-soft: 0 16px 32px rgba(73, 43, 20, 0.08);
  --radius: 18px;
  --font: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --container: 1180px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(242, 107, 29, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 203, 159, 0.18), transparent 24%),
    linear-gradient(180deg, #fff8f2 0%, #fffdfb 24%, #f8f0e8 100%);
  line-height: 1.7;
}

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

a {
  color: inherit;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 0.95rem 1.35rem;
  background: rgba(255, 248, 242, 0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(34, 24, 18, 0.06);
  box-shadow: 0 12px 28px rgba(34, 24, 18, 0.04);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-mark-shell {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 243, 232, 0.92));
  border: 1px solid rgba(242, 107, 29, 0.12);
  box-shadow: 0 12px 22px rgba(242, 107, 29, 0.08);
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
}

.brand-lockup h1,
.eyebrow,
.header-meta {
  margin: 0;
}

.brand-lockup h1 {
  font-size: 1.05rem;
  line-height: 1.24;
  font-weight: 750;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

.eyebrow,
.workspace-label,
.section-label,
.hub-kicker {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow,
.section-label,
.hub-kicker {
  color: var(--color-brand-mid-strong);
  font-weight: 700;
}

.header-meta,
.workspace-copy,
.section-subtext,
.hub-card p,
.story-block p,
.conversation-card p,
.faq-item p,
.hero-card-copy,
.project-list {
  color: var(--text-secondary);
}

.topbar-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(242, 107, 29, 0.1);
  border: 1px solid rgba(242, 107, 29, 0.12);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
}

.status-chip-soft {
  background: rgba(255, 255, 255, 0.9);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.7rem;
  border: 0;
  border-radius: 12px;
  background: rgba(242, 107, 29, 0.12);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.mobile-nav {
  display: none;
}

.site-nav a,
.workspace-nav a {
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.site-nav a {
  font-size: 0.94rem;
  font-weight: 600;
}

.app-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  min-height: 100vh;
  padding-top: 82px;
}

.workspace-sidebar {
  position: sticky;
  top: 82px;
  align-self: start;
  height: calc(100vh - 82px);
  padding: 1.3rem 1rem 1.3rem 1.25rem;
  border-right: 1px solid rgba(34, 24, 18, 0.06);
  background: linear-gradient(180deg, #fff6ee 0%, #fffaf6 100%);
}

.workspace-sidebar-inner,
.workspace-section,
.section-stack {
  display: grid;
  gap: var(--space-md);
}

.workspace-section h2,
.workspace-section p,
.section-intro h2,
.section-intro p,
.hero-copy h2,
.hero-copy p,
.hero-card h3 {
  margin: 0;
}

.workspace-copy {
  font-size: 0.95rem;
}

.workspace-nav {
  display: grid;
  gap: 0.35rem;
}

.workspace-nav a {
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.workspace-nav a:hover,
.workspace-nav a.is-active,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(242, 107, 29, 0.1);
}

.workspace-section-soft {
  padding: 1rem;
  border: 1px solid rgba(242, 107, 29, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.workspace-bullets,
.project-list {
  margin: 0;
  padding-left: 1.1rem;
}

.presentation {
  display: grid;
  gap: 1.25rem;
}

.panel {
  padding: 2rem 0 3.6rem;
}

.first-panel {
  padding-top: 1.5rem;
}

.hero-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border: 1px solid rgba(34, 24, 18, 0.06);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 250, 245, 0.98), rgba(255, 242, 230, 0.92)),
    radial-gradient(circle at top right, rgba(242, 107, 29, 0.1), transparent 30%);
  box-shadow: var(--shadow);
}

.hero-copy h2,
.section-intro h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-family: var(--font-display);
}

.section-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.hero-copy .section-subtext,
.section-intro .section-subtext {
  margin-top: 1rem;
  font-size: 1.05rem;
  max-width: 50rem;
}

.summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.hero-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero-signal {
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(34, 24, 18, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.hero-signal strong,
.hero-signal p,
.signal-band p,
.person-role {
  margin: 0;
}

.hero-signal-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--color-brand-mid-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-signal strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.hero-signal p {
  margin-top: 0.45rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  background: linear-gradient(180deg, var(--color-brand-mid), var(--color-brand-mid-strong));
  color: var(--color-white);
  box-shadow: 0 16px 26px rgba(242, 107, 29, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border: 1px solid rgba(34, 24, 18, 0.08);
}

.hero-card,
.hub-card,
.story-block,
.conversation-card,
.faq-item {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.2rem;
}

.hero-card-image {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  padding: 0;
}

.hero-illustration {
  width: min(100%, 250px);
  margin: 0 auto 1rem;
}

.hero-scene {
  width: 100%;
  min-height: 540px;
  height: 100%;
  object-fit: cover;
}

.hero-card-copy h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.hero-card-overlay {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  max-width: 290px;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  background: rgba(255, 250, 245, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 36px rgba(89, 53, 28, 0.15);
}

.signal-band-panel {
  padding-top: 0;
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(34, 24, 18, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.signal-band article {
  padding: 1.2rem 1.25rem;
}

.signal-band article + article {
  border-left: 1px solid rgba(34, 24, 18, 0.08);
}

.signal-band p {
  margin-top: 0.45rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.content-panel {
  padding-top: 0;
}

.section-intro {
  max-width: 56rem;
  padding-top: 0.25rem;
}

.section-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.section-visual-image {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.project-grid,
.split-grid,
.conversation-grid,
.faq-list,
.intro-dashboard,
.module-grid,
.moment-grid,
.people-grid,
.contact-grid,
.daily-grid,
.compare-grid,
.roadmap-track,
.roadmap-shell {
  display: grid;
  gap: 1.1rem;
}

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intro-dashboard {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.moment-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.people-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.daily-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compare-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.roadmap-shell {
  gap: 1.3rem;
}

.roadmap-intro {
  padding: 1.4rem 1.45rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 246, 238, 0.98), rgba(255, 255, 255, 0.94));
  box-shadow: var(--shadow-soft);
}

.roadmap-intro h3,
.roadmap-step h3 {
  margin: 0.35rem 0 0.55rem;
  line-height: 1.2;
}

.roadmap-intro p,
.roadmap-step p {
  margin: 0;
  color: var(--text-secondary);
}

.roadmap-track {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  position: relative;
}

.roadmap-track::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 28px;
  right: 28px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(242, 107, 29, 0.28),
    rgba(242, 107, 29, 0.16)
  );
}

.roadmap-step {
  position: relative;
  padding: 3.2rem 1.2rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.roadmap-step::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 22px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--color-white);
  border: 6px solid rgba(242, 107, 29, 0.24);
  box-shadow: 0 0 0 6px rgba(255, 243, 232, 0.9);
}

.roadmap-step-done::before {
  border-color: rgba(217, 88, 16, 0.95);
}

.roadmap-step-now {
  background: linear-gradient(180deg, rgba(255, 243, 232, 0.98), rgba(255, 255, 255, 0.94));
}

.roadmap-step-now::before {
  border-color: rgba(242, 107, 29, 0.95);
}

.roadmap-stage {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.28rem 0.72rem;
  margin-bottom: 0.55rem;
  border-radius: 999px;
  background: rgba(242, 107, 29, 0.1);
  border: 1px solid rgba(242, 107, 29, 0.14);
  color: var(--color-brand-mid-strong);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.onboarding-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.onboarding-step-card {
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.onboarding-step-card h3 {
  margin: 0.4rem 0 0.55rem;
  font-size: 1.08rem;
  line-height: 1.3;
}

.hub-card,
.story-block,
.conversation-card,
.faq-item,
.dashboard-card,
.module-card,
.moment-card,
.person-card,
.first-week-note,
.contact-card,
.daily-card,
.compare-card {
  padding: 1.35rem;
}

.hub-card h3,
.story-block h3,
.conversation-card h3,
.faq-item h3,
.dashboard-card h3,
.module-card h3 {
  margin: 0.4rem 0 0.55rem;
  font-size: 1.08rem;
  line-height: 1.3;
}

.conversation-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-card,
.module-card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.moment-card,
.person-card,
.first-week-note,
.contact-card,
.daily-card,
.compare-card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.person-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  justify-items: start;
}

.person-avatar {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
}

.person-avatar-text {
  background: linear-gradient(180deg, rgba(242, 107, 29, 0.2), rgba(255, 203, 159, 0.18));
  border: 1px solid rgba(242, 107, 29, 0.18);
  color: var(--color-brand-mid-strong);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.person-role {
  color: var(--color-brand-mid-strong);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.person-card-highlight {
  background: linear-gradient(180deg, rgba(255, 243, 232, 0.98), rgba(255, 255, 255, 0.94));
}

.contact-card-highlight {
  background: linear-gradient(180deg, rgba(255, 243, 232, 0.98), rgba(255, 255, 255, 0.94));
}

.team-photo {
  width: 132px;
  height: 132px;
  object-fit: cover;
  object-position: center 20%;
  border: 1px solid rgba(34, 24, 18, 0.08);
  background: #f5f1ec;
  box-shadow: 0 16px 28px rgba(73, 43, 20, 0.12);
}

.team-photo-circle {
  border-radius: 50%;
  outline: 6px solid rgba(255, 255, 255, 0.92);
}

.compare-card-yes {
  background: linear-gradient(180deg, rgba(255, 247, 238, 0.98), rgba(255, 255, 255, 0.94));
}

.compare-card-no {
  background: linear-gradient(180deg, rgba(255, 252, 249, 0.98), rgba(255, 255, 255, 0.94));
}

.module-card {
  display: grid;
  gap: 1rem;
}

.dashboard-card-highlight {
  background: linear-gradient(180deg, rgba(255, 243, 232, 0.98), rgba(255, 255, 255, 0.94));
}

.dashboard-card-head,
.module-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.dashboard-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand-mid-strong);
}

.dashboard-pill,
.module-badge,
.module-state {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.dashboard-pill,
.module-badge {
  background: rgba(242, 107, 29, 0.12);
  color: var(--color-brand-mid-strong);
  border: 1px solid rgba(242, 107, 29, 0.12);
}

.dashboard-pill-soft,
.module-state {
  background: rgba(34, 24, 18, 0.04);
  color: var(--text-secondary);
  border: 1px solid rgba(34, 24, 18, 0.06);
}

.module-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.module-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: fit-content;
  padding: 0.68rem 0.95rem;
  border-radius: 999px;
  background: rgba(242, 107, 29, 0.1);
  border: 1px solid rgba(242, 107, 29, 0.12);
  color: var(--color-brand-mid-strong);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.module-link:hover {
  background: rgba(242, 107, 29, 0.16);
}

.first-week-note h3,
.moment-card h3,
.person-card h3,
.contact-card h3,
.daily-card h3,
.compare-card h3 {
  margin: 0.4rem 0 0.55rem;
  line-height: 1.25;
}

.first-week-note {
  background: linear-gradient(180deg, rgba(255, 246, 238, 0.98), rgba(255, 255, 255, 0.96));
}

.first-week-note ul {
  margin-top: 0.9rem;
}

.module-page {
  min-height: 100vh;
  padding-top: 92px;
}

.module-page-shell {
  display: grid;
  gap: 1.25rem;
}

.module-hero {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  align-items: stretch;
}

.module-summary,
.module-track,
.module-checklist,
.module-section-card {
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.module-summary h2,
.module-track h3,
.module-checklist h3,
.module-section-card h3 {
  margin: 0 0 0.75rem;
  line-height: 1.18;
}

.module-summary p,
.module-track p,
.module-section-card p {
  margin: 0;
  color: var(--text-secondary);
}

.module-track-grid,
.module-sections-grid {
  display: grid;
  gap: 1rem;
}

.module-track-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.module-sections-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.module-section-card ul,
.module-checklist ul {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-secondary);
}

.module-cover {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.module-cover img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.module-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(34, 24, 18, 0.08);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.conversation-step {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--color-brand-light);
  color: var(--color-brand-mid-strong);
  font-size: 0.9rem;
  font-weight: 800;
}

.compact li + li {
  margin-top: 0.2rem;
}

@media (max-width: 1100px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .workspace-sidebar {
    position: relative;
    top: 0;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(34, 24, 18, 0.06);
  }

  .project-grid,
  .conversation-grid,
  .intro-dashboard,
  .module-grid,
  .moment-grid,
  .people-grid,
  .contact-grid,
  .daily-grid,
  .compare-grid,
  .onboarding-grid,
  .roadmap-track,
  .module-track-grid,
  .module-sections-grid,
  .hero-signals,
  .signal-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .module-hero {
    grid-template-columns: 1fr;
  }

  .hero-card-image,
  .hero-scene {
    min-height: 380px;
  }

  .signal-band article:nth-child(3) {
    border-left: 0;
  }

  .signal-band article:nth-child(n + 3) {
    border-top: 1px solid rgba(34, 24, 18, 0.08);
  }
}

@media (max-width: 720px) {
  .topbar {
    padding-inline: 1rem;
  }

  .topbar-status,
  .workspace-sidebar {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .mobile-nav a {
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
  }

  .app-shell {
    padding-top: 78px;
  }

  .hero-grid,
  .project-grid,
  .split-grid,
  .conversation-grid,
  .intro-dashboard,
  .module-grid,
  .moment-grid,
  .people-grid,
  .contact-grid,
  .daily-grid,
  .compare-grid,
  .onboarding-grid,
  .roadmap-track,
  .module-track-grid,
  .module-sections-grid,
  .hero-signals,
  .signal-band {
    grid-template-columns: 1fr;
  }

  .hero-card-image,
  .hero-scene {
    min-height: 340px;
  }

  .hero-grid {
    padding: 1.1rem;
    border-radius: 24px;
  }

  .hero-card-overlay {
    position: static;
    max-width: none;
    margin: 1rem;
  }

  .brand-lockup h1 {
    font-size: 0.98rem;
  }

  .header-meta {
    font-size: 0.78rem;
  }

  .panel {
    padding-bottom: 2.75rem;
  }

  .signal-band article + article {
    border-left: 0;
    border-top: 1px solid rgba(34, 24, 18, 0.08);
  }

  .roadmap-track::before {
    left: 26px;
    top: 20px;
    bottom: 24px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(242, 107, 29, 0.28),
      rgba(242, 107, 29, 0.12)
    );
  }

  .roadmap-step {
    padding-top: 2.2rem;
    padding-left: 4rem;
  }

  .roadmap-step::before {
    top: 18px;
    left: 13px;
  }
}
