:root {
  --black: #050606;
  --black-2: #0d0d0b;
  --panel: #211a17;
  --paper: #fff7f2;
  --paper-2: #f3e3dc;
  --nude: #e5c7bc;
  --nude-2: #f8e6df;
  --gold: #a9822a;
  --gold-2: #d2ad48;
  --gold-soft: rgba(169, 130, 42, 0.12);
  --terracotta: #a8644f;
  --olive: #667052;
  --ink: #211a17;
  --muted: #776f68;
  --muted-2: #a3968d;
  --line: rgba(169, 130, 42, 0.24);
  --line-light: #ead6cc;
  --green: #1fbf75;
  --red: #b64a3b;
  --shadow: 0 22px 60px rgba(33, 26, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 247, 242, 0.92), rgba(243, 227, 220, 0.9)),
    repeating-linear-gradient(90deg, rgba(33, 26, 23, 0.018) 0 1px, transparent 1px 7px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 360px 1fr;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 22px;
  overflow-y: auto;
  background:
    linear-gradient(180deg, rgba(255, 247, 242, 0.98), rgba(238, 218, 209, 0.96)),
    repeating-linear-gradient(0deg, rgba(33, 26, 23, 0.016) 0 1px, transparent 1px 8px);
  color: var(--ink);
  border-right: 1px solid rgba(33, 26, 23, 0.08);
}

.brand-lockup {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 162, 39, 0.8);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
}

.brand-lockup strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: 0.14em;
}

.brand-lockup span:last-child {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.nav-list {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(21, 25, 34, 0.08);
  border-radius: 18px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.86), rgba(247, 232, 225, 0.58));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 24px 70px rgba(33, 26, 23, 0.08);
  overflow: visible;
}

.nav-center {
  display: none;
}

.nav-center strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  letter-spacing: 0.1em;
}

.nav-center span {
  max-width: 86px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.nav-item {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 9px 14px;
  background: rgba(255, 250, 246, 0.48);
  color: var(--muted);
  text-align: left;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.15;
  transform: none;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-item:hover,
.nav-item.active {
  color: var(--ink);
  border-color: rgba(169, 130, 42, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 242, 0.72));
  transform: translateX(2px);
}

.nav-icon {
  display: none;
}

.nav-item.active {
  min-height: 44px;
}

.nav-item.active .nav-icon {
  display: none;
}

.nav-item:hover .nav-icon,
.nav-item.active .nav-icon {
  display: none;
}

.side-card {
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 249, 247, 0.74);
  backdrop-filter: blur(16px);
}

.side-card strong {
  display: block;
  margin: 8px 0;
  color: var(--ink);
}

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

.main {
  min-width: 0;
  padding: 24px;
}

.topbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.topbar h1 {
  margin: 4px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

.top-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tiny-label {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gold-button,
.ghost-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.gold-button {
  border: 1px solid rgba(169, 130, 42, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 237, 175, 0.92), rgba(169, 130, 42, 0.98)),
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.5), transparent 58%);
  color: #211a17;
  box-shadow: 0 14px 34px rgba(169, 130, 42, 0.28), 0 0 0 5px rgba(169, 130, 42, 0.08);
}

.gold-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.gold-button:hover {
  box-shadow: 0 18px 42px rgba(169, 130, 42, 0.34), 0 0 0 7px rgba(169, 130, 42, 0.1);
}

.ghost-button {
  border: 1px solid var(--line-light);
  background: rgba(255, 250, 246, 0.72);
  color: var(--ink);
}

.ghost-button.dark {
  border-color: rgba(21, 25, 34, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.view {
  display: none;
}

.view.active {
  display: block;
}

.hero-panel {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(440px, 0.74fr);
  gap: 30px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(21, 25, 34, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 247, 242, 0.99) 0%, rgba(255, 247, 242, 0.95) 44%, rgba(255, 247, 242, 0.82) 74%, rgba(255, 247, 242, 0.72) 100%),
    url("./assets/lotyz-universe-hero-v2.png") center right / cover no-repeat,
    var(--paper);
  box-shadow: 0 30px 80px rgba(33, 26, 23, 0.1);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 247, 242, 0.08), rgba(255, 247, 242, 0.72)),
    repeating-linear-gradient(90deg, rgba(33, 26, 23, 0.014) 0 1px, transparent 1px 10px);
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 178, 50, 0.55), transparent);
}

.hero-copy,
.orbit-card,
.academy-header,
.academy-video,
.video-feature,
.revenue-panel,
.profile-panel,
.timeline-panel,
.lesson-card,
.metric-card,
.role-card,
.lead-card,
.partner-card,
.quick-card,
.operation-card,
.owner-card,
.media-card,
.photographer-card,
.agent-card,
.legal-card,
.community-card {
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.94), rgba(255, 247, 242, 0.82)),
    repeating-linear-gradient(90deg, rgba(33, 26, 23, 0.012) 0 1px, transparent 1px 8px);
  box-shadow: 0 12px 34px rgba(33, 26, 23, 0.06);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(26px, 5vw, 56px);
  min-height: 520px;
  border-right: 1px solid rgba(169, 130, 42, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.64), rgba(255, 247, 242, 0.18));
  box-shadow: none;
  color: var(--ink);
}

.hero-copy h2 {
  max-width: 560px;
  margin: 12px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 12px 32px rgba(33, 26, 23, 0.08);
}

.hero-copy p {
  max-width: 610px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.orbit-card {
  z-index: 2;
  align-self: center;
  justify-self: end;
  position: relative;
  width: min(100%, 520px);
  min-height: 520px;
  margin-right: clamp(14px, 3vw, 34px);
  overflow: hidden;
  border-color: rgba(169, 130, 42, 0.22);
  background:
    radial-gradient(circle at 50% 50%, rgba(229, 199, 188, 0.44), rgba(255, 247, 242, 0.78) 34%, rgba(255, 255, 255, 0.52) 62%),
    repeating-linear-gradient(45deg, rgba(33, 26, 23, 0.012) 0 1px, transparent 1px 8px);
  color: var(--gold);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

.orbit-card::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 130, 42, 0.18), transparent 58%);
  filter: blur(18px);
  pointer-events: none;
}

.orbit-ring {
  position: absolute;
  z-index: 1;
  inset: 12%;
  border: 1px solid rgba(201, 162, 39, 0.16);
  border-radius: 50%;
}

.orbit-center {
  position: absolute;
  z-index: 3;
  inset: 50% auto auto 50%;
  width: 188px;
  height: 188px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(169, 130, 42, 0.92);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.92), rgba(255, 247, 242, 0.82) 58%),
    var(--paper);
  box-shadow: 0 18px 44px rgba(33, 26, 23, 0.1), 0 0 0 10px rgba(169, 130, 42, 0.08), 0 0 54px rgba(169, 130, 42, 0.22);
}

.orbit-center strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 37px;
  letter-spacing: 0.12em;
}

.orbit-center span {
  color: var(--muted);
  font-size: 23px;
}

.hero-window-stack {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(18px, 3vw, 34px) clamp(22px, 3vw, 34px);
  pointer-events: auto;
}

.ecosystem-window {
  position: relative;
  inset: auto;
  width: auto;
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(33, 26, 23, 0.1);
  border-radius: 18px;
  padding: 34px 18px 18px;
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.92) 0 28px, rgba(255, 247, 242, 0.8) 28px 100%),
    repeating-linear-gradient(90deg, rgba(33, 26, 23, 0.012) 0 1px, transparent 1px 8px);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 22px 60px rgba(33, 26, 23, 0.12);
  backdrop-filter: blur(18px);
  overflow: hidden;
  pointer-events: auto;
}

.ecosystem-window::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 14px;
  width: 38px;
  height: 8px;
  background:
    radial-gradient(circle at 4px 4px, rgba(169, 130, 42, 0.72) 0 3px, transparent 3.5px),
    radial-gradient(circle at 19px 4px, rgba(168, 100, 79, 0.44) 0 3px, transparent 3.5px),
    radial-gradient(circle at 34px 4px, rgba(102, 112, 82, 0.48) 0 3px, transparent 3.5px);
  pointer-events: none;
}

.ecosystem-window span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ecosystem-window strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0;
}

.ecosystem-window:hover {
  transform: translateY(-2px);
}

.window-opportunities {
  top: auto;
  right: auto;
}

.window-services {
  right: auto;
  bottom: auto;
}

.window-visibility {
  left: auto;
  bottom: auto;
}

.orbit-node {
  position: absolute;
  z-index: 2;
  width: 118px;
  min-height: 92px;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  color: rgba(215, 178, 50, 0.92);
}

.orbit-node span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: rgba(255, 247, 242, 0.92);
  box-shadow: 0 14px 30px rgba(33, 26, 23, 0.08), 0 0 0 5px rgba(169, 130, 42, 0.06);
  font-weight: 900;
  font-size: 13px;
}

.orbit-node small {
  color: rgba(91, 80, 43, 0.82);
  font-weight: 800;
  text-transform: uppercase;
}

.node-1 { top: 9%; left: 50%; transform: translateX(-50%); }
.node-2 { top: 18%; right: 9%; }
.node-3 { top: 45%; right: 3%; }
.node-4 { bottom: 15%; right: 10%; }
.node-5 { bottom: 5%; left: 50%; transform: translateX(-50%); }
.node-6 { bottom: 15%; left: 10%; }
.node-7 { top: 45%; left: 3%; }
.node-8 { top: 18%; left: 9%; }

.stats-grid,
.role-grid,
.lead-grid,
.partner-grid,
.quick-grid,
.operation-grid,
.owner-grid,
.media-grid,
.photographer-grid,
.agent-grid,
.legal-grid,
.community-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.metric-card,
.role-card,
.lead-card,
.partner-card,
.quick-card,
.operation-card,
.owner-card,
.media-card,
.photographer-card,
.agent-card,
.legal-card,
.community-card {
  padding: 20px;
}

.metric-card span,
.lead-card .meta,
.partner-card .meta,
.owner-card .meta,
.media-card .meta,
.photographer-card .meta,
.agent-card .meta,
.legal-card .meta,
.community-card .meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-card strong {
  display: block;
  margin: 8px 0;
  color: var(--gold);
  font-size: 30px;
  line-height: 1;
}

.metric-card p,
.role-card p,
.lead-card p,
.partner-card p,
.owner-card p,
.media-card p,
.photographer-card p,
.agent-card p,
.legal-card p,
.community-card p,
.quick-card small,
.operation-card p,
.lesson-card p,
.lesson-card li {
  color: var(--muted);
}

.quick-card {
  min-height: 166px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  color: var(--ink);
}

.quick-card span {
  color: var(--gold);
  font-weight: 950;
  letter-spacing: 0.12em;
}

.quick-card strong {
  font-size: 19px;
}

.quick-card:hover,
.operation-card:hover {
  border-color: rgba(215, 178, 50, 0.48);
}

.section-block {
  margin-top: 34px;
}

.video-feature,
.academy-video {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.video-copy h3,
.academy-video h3 {
  margin: 8px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

.video-copy p,
.academy-video p {
  max-width: 620px;
  color: var(--muted);
}

.lotyz-video {
  width: 100%;
  max-width: 360px;
  max-height: 560px;
  aspect-ratio: 9 / 16;
  justify-self: end;
  display: block;
  border: 1px solid rgba(215, 178, 50, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.78), transparent 34%),
    linear-gradient(180deg, rgba(248, 231, 225, 0.95), rgba(255, 249, 247, 0.9));
  box-shadow: 0 18px 46px rgba(21, 25, 34, 0.12);
  object-fit: cover;
  overflow: hidden;
}

.lotyz-video.compact {
  max-width: 280px;
  max-height: 460px;
}

.section-heading {
  margin-bottom: 16px;
}

.section-heading.row,
.academy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.section-heading h2,
.section-heading h3,
.academy-header h2,
.profile-panel h2 {
  margin: 6px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.role-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  border-color: var(--line-light);
}

.role-card.active {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(215, 178, 50, 0.12), var(--paper));
}

.role-avatar {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  font-weight: 900;
}

.academy-header {
  min-height: 146px;
  padding: 28px;
}

.academy-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.academy-header p {
  margin: 8px 0 0;
  color: var(--muted);
}

.rank-pill {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 999px;
  padding: 0 18px;
  background: #f0f0f1;
  color: #707785;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.course-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 16px;
  margin-top: 16px;
}

.module-list {
  display: grid;
  gap: 10px;
}

.module-button {
  min-height: 62px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: var(--paper);
  padding: 10px 12px;
  color: var(--ink);
  text-align: left;
  font-weight: 850;
}

.module-button span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.module-button.active {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.lesson-card {
  min-height: 540px;
  padding: clamp(24px, 4vw, 54px);
}

.lesson-hero {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.lesson-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--gold);
  color: #11100c;
  font-weight: 900;
  font-size: 24px;
}

.lesson-card h2 {
  margin: 4px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
}

.quote {
  margin: 20px 0;
  border-left: 4px solid rgba(215, 178, 50, 0.44);
  padding: 8px 0 8px 20px;
  color: var(--muted);
  font-size: 24px;
  font-style: italic;
}

.lesson-intro {
  max-width: 820px;
  font-size: 18px;
}

.lesson-sections {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.lesson-section {
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(215, 178, 50, 0.05), rgba(255, 255, 255, 0.76));
}

.lesson-section h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 19px;
}

.lesson-section p {
  margin-bottom: 0;
}

.lesson-card ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.exercise-card {
  margin-top: 22px;
  border: 1px solid rgba(215, 178, 50, 0.32);
  border-radius: 8px;
  padding: 20px;
  background: var(--black);
  color: var(--paper);
}

.exercise-card ol {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding-left: 20px;
}

.exercise-card li {
  color: rgba(251, 250, 247, 0.82);
}

.lesson-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.segmented {
  display: inline-flex;
  min-height: 42px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.66);
}

.segment {
  min-width: 86px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 850;
}

.segment.active {
  background: var(--black);
  color: var(--gold);
}

.market-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: -8px 0 18px;
  padding: 14px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.market-row label {
  display: grid;
  gap: 6px;
  min-width: min(260px, 100%);
  color: var(--ink);
  font-weight: 850;
}

.market-row select {
  min-height: 42px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 0 12px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.market-row p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.lead-summary {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.summary-pill {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.94), rgba(255, 247, 242, 0.74)),
    repeating-linear-gradient(90deg, rgba(33, 26, 23, 0.012) 0 1px, transparent 1px 8px);
  box-shadow: 0 12px 28px rgba(33, 26, 23, 0.05);
}

.summary-pill span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-pill strong {
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.lead-grid,
.partner-grid,
.operation-grid,
.owner-grid,
.media-grid,
.photographer-grid,
.agent-grid,
.legal-grid,
.community-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lead-card h3,
.partner-card h3,
.operation-card h3,
.owner-card h3,
.media-card h3,
.photographer-card h3,
.agent-card h3,
.legal-card h3,
.community-card h3 {
  margin: 10px 0 8px;
  font-size: 21px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  color: var(--muted);
  font-weight: 800;
}

.rating-row strong {
  color: var(--gold);
  font-size: 18px;
}

.review-quote {
  margin: 14px 0;
  border-left: 3px solid var(--gold);
  padding-left: 12px;
  color: var(--ink-soft);
  font-style: italic;
}

.course-chip {
  display: grid;
  gap: 4px;
  margin: 14px 0;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 12px;
  background: rgba(215, 178, 50, 0.08);
}

.course-chip span,
.course-chip small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.course-chip strong {
  color: var(--black);
}

.os-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.os-step {
  position: relative;
  min-height: 178px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.76);
  overflow: hidden;
}

.os-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  font-weight: 950;
}

.os-step h3 {
  margin: 14px 0 8px;
  font-size: 20px;
}

.os-step p {
  color: var(--muted);
}

.mortgage-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 16px;
  margin-top: 18px;
}

.mortgage-chat,
.mortgage-result {
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.mortgage-chat {
  display: grid;
  gap: 14px;
}

.mortgage-chat label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}

.mortgage-chat input,
.mortgage-chat select {
  min-height: 46px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 0 12px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.chat-bubble {
  display: grid;
  gap: 6px;
  border-radius: 8px;
  padding: 14px;
}

.chat-bubble.system {
  background: var(--black);
  color: var(--paper);
}

.chat-bubble.system strong {
  color: var(--gold);
}

.chat-bubble.system span,
.mortgage-result p {
  color: var(--muted);
}

.mortgage-result h3 {
  margin: 8px 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.trial-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(215, 178, 50, 0.36);
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(135deg, var(--black), #211d14);
  color: var(--paper);
}

.trial-band h3 {
  margin: 6px 0 8px;
  font-size: clamp(24px, 3vw, 34px);
}

.trial-band p {
  max-width: 760px;
  color: rgba(251, 250, 247, 0.72);
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.plan-card {
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.plan-card.featured {
  border-color: rgba(215, 178, 50, 0.66);
  background: linear-gradient(180deg, rgba(215, 178, 50, 0.13), rgba(255, 255, 255, 0.9));
}

.plan-card h3 {
  margin: 0;
  font-size: 24px;
}

.plan-card strong {
  color: var(--gold);
  font-size: 30px;
}

.plan-card p,
.plan-card li {
  color: var(--muted);
}

.plan-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.value-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.value-card h3 {
  margin: 0;
  font-size: 23px;
}

.value-card p {
  color: var(--muted);
}

.value-card strong {
  color: var(--black);
  line-height: 1.35;
}

.conversion-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.conversion-map article {
  border: 1px solid rgba(215, 178, 50, 0.32);
  border-radius: 8px;
  padding: 18px;
  background: var(--black);
  color: var(--paper);
}

.conversion-map span {
  color: var(--gold);
  font-weight: 950;
}

.conversion-map h3 {
  margin: 10px 0 8px;
}

.conversion-map p {
  color: rgba(251, 250, 247, 0.72);
}

.import-panel,
.import-status {
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.import-panel {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.import-panel label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.import-panel textarea {
  width: 100%;
  min-height: 260px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 14px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.import-status {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  background: var(--gold-soft);
  color: #8a6f18;
  font-size: 12px;
  font-weight: 900;
}

.lead-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.operation-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.revenue-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 22px;
}

.revenue-panel h3 {
  margin: 8px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

.revenue-panel p {
  margin: 0;
  color: var(--muted);
}

.revenue-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.revenue-items span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--gold-soft);
  color: #8a6f18;
  font-weight: 900;
  text-align: center;
}

.progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(21, 25, 34, 0.08);
  margin: 16px 0 12px;
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.next-step {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
}

.step-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}

.step-row span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  background: rgba(21, 25, 34, 0.06);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.property-facts {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  padding: 14px;
  border-radius: 8px;
  background: rgba(21, 25, 34, 0.05);
}

.property-facts strong {
  color: var(--gold);
  font-size: 20px;
}

.property-facts span {
  color: var(--muted);
  font-weight: 800;
}

.space-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 16px;
}

.profile-panel,
.timeline-panel {
  padding: 28px;
}

.signup-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.signup-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 850;
}

.signup-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
}

.access-card {
  margin-top: 20px;
  border: 1px solid rgba(215, 178, 50, 0.28);
  border-radius: 8px;
  padding: 18px;
  background: linear-gradient(135deg, var(--black), #17140c);
  color: var(--paper);
}

.access-card strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 20px;
}

.access-card p {
  margin: 0 0 14px;
  color: rgba(251, 250, 247, 0.68);
}

.access-card-actions,
.access-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(12px);
}

.modal-backdrop.show {
  display: flex;
}

.access-modal {
  position: relative;
  width: min(560px, 100%);
  border: 1px solid rgba(215, 178, 50, 0.32);
  border-radius: 8px;
  padding: 28px;
  background:
    radial-gradient(circle at 80% 0%, rgba(215, 178, 50, 0.16), transparent 34%),
    var(--paper);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.access-modal h2 {
  margin: 8px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.05;
}

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

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.access-form {
  display: grid;
  gap: 13px;
}

.access-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 850;
}

.access-form input,
.access-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
}

.bank-box {
  display: none;
  gap: 12px;
  border: 1px solid rgba(215, 178, 50, 0.32);
  border-radius: 8px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(215, 178, 50, 0.08), rgba(255, 255, 255, 0.78));
}

.bank-box h3 {
  margin: 0;
  font-size: 20px;
}

.bank-box p {
  margin: 0;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.plan-option {
  min-height: 122px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  text-align: left;
}

.plan-option span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-option strong {
  font-size: 24px;
}

.plan-option small {
  color: var(--muted);
  font-weight: 750;
}

.plan-option.active {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.bank-detail {
  display: grid;
  gap: 4px;
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.82);
}

.bank-detail span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bank-detail strong {
  overflow-wrap: anywhere;
  color: var(--ink);
}

.access-options {
  margin-top: 12px;
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

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

.timeline-dot {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.timeline-item strong {
  display: block;
}

.timeline-item span {
  color: var(--muted);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  max-width: min(360px, calc(100% - 40px));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  background: var(--black);
  color: var(--paper);
  box-shadow: var(--shadow);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

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

  .sidebar {
    position: static;
    height: auto;
    padding: 16px;
  }

  .nav-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    min-height: auto;
    padding: 10px;
    border-radius: 18px;
  }

  .nav-list::before,
  .nav-list::after,
  .nav-center {
    display: none;
  }

  .nav-item {
    min-height: 54px;
    font-size: 13px;
    transform: none;
  }

  .nav-item:hover,
  .nav-item.active {
    transform: none;
  }

  .nav-icon {
    display: none;
  }

  .side-card {
    display: none;
  }

  .hero-panel,
  .space-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
    background-position: center top;
  }

  .hero-copy {
    min-height: auto;
  }

  .orbit-card {
    justify-self: center;
    min-height: 520px;
    margin: 0 18px 22px;
  }

  .hero-window-stack {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 56px;
    padding: 0 18px 22px;
    pointer-events: auto;
  }

  .ecosystem-window {
    position: relative;
    width: auto;
    min-height: 104px;
  }

  .stats-grid,
  .role-grid,
  .quick-grid,
  .lead-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-grid,
  .partner-grid,
  .operation-grid,
  .owner-grid,
  .media-grid,
  .photographer-grid,
  .agent-grid,
  .legal-grid,
  .community-grid,
  .os-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-feature,
  .academy-video,
  .revenue-panel,
  .mortgage-layout,
  .plan-cards,
  .value-grid,
  .conversion-map {
    grid-template-columns: 1fr;
  }

  .lotyz-video {
    justify-self: center;
  }

  .trial-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .main {
    padding: 14px;
  }

  .topbar,
  .section-heading.row,
  .academy-header,
  .market-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-actions,
  .hero-actions,
  .segmented {
    width: 100%;
  }

  .gold-button,
  .ghost-button,
  .segment {
    flex: 1;
  }

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

  .hero-panel {
    background:
      linear-gradient(180deg, rgba(255, 253, 249, 0.96) 0%, rgba(255, 253, 249, 0.82) 58%, rgba(255, 253, 249, 0.96) 100%),
      url("./assets/lotyz-universe-hero-v2.png") center top / cover no-repeat,
      var(--paper);
  }

  .hero-copy {
    min-height: auto;
    padding: 28px;
  }

  .orbit-card {
    width: calc(100% - 28px);
    min-height: 540px;
    margin: 0 14px 18px;
  }

  .hero-window-stack {
    grid-template-columns: 1fr;
    padding: 0 14px 18px;
  }

  .orbit-ring {
    inset: 16%;
  }

  .orbit-node {
    width: 102px;
  }

  .node-2 { right: 2%; }
  .node-3 { right: 0; }
  .node-4 { right: 3%; }
  .node-6 { left: 3%; }
  .node-7 { left: 0; }
  .node-8 { left: 2%; }

  .stats-grid,
  .role-grid,
  .lead-grid,
  .partner-grid,
  .quick-grid,
  .lead-summary,
  .operation-grid,
  .owner-grid,
  .media-grid,
  .photographer-grid,
  .agent-grid,
  .legal-grid,
  .community-grid,
  .os-flow,
  .course-layout {
    grid-template-columns: 1fr;
  }

  .plan-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .orbit-center {
    width: 154px;
    height: 154px;
  }

  .orbit-center strong {
    font-size: 28px;
  }

  .orbit-center span {
    font-size: 19px;
  }

  .orbit-node span {
    width: 48px;
    height: 48px;
  }
}
