:root {
  --ink: #18201f;
  --muted: #52615f;
  --subtle: #75827f;
  --line: #dfe3dc;
  --line-strong: #b8c1ba;
  --paper: #fbf8ef;
  --panel: #ffffff;
  --panel-soft: #fffdf8;
  --wash: #f2f7ed;
  --wash-strong: #e4eddf;
  --teal: #0d8a7d;
  --teal-dark: #07544f;
  --teal-bright: #1db4a1;
  --coral: #df6b56;
  --coral-soft: #ffe8df;
  --amber: #d99023;
  --sun: #f5c84c;
  --green: #2d7d50;
  --mint: #8bd7b5;
  --berry: #bf4f7a;
  --grape: #6f5bbd;
  --aqua: #5cc9c4;
  --navy-deep: #0b232a;
  --teal-vibrant: #14b8a6;
  --yellow-highlight: #facc15;
  --red: #b33f48;
  --blue: #3d75b7;
  --sky: #6db6d8;
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 20px 42px rgba(36, 45, 43, 0.12);
  --shadow-soft: 0 10px 24px rgba(36, 45, 43, 0.08);
  --shadow-strong: 0 24px 54px rgba(36, 45, 43, 0.16);
  --glow: 0 18px 40px rgba(20, 184, 166, 0.24);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(130deg, rgba(250, 204, 21, 0.12), transparent 34%),
    linear-gradient(24deg, rgba(20, 184, 166, 0.13), transparent 40%),
    repeating-linear-gradient(90deg, rgba(11, 35, 42, 0.018) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(0deg, rgba(11, 35, 42, 0.018) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, #f8faf6 0%, #eef8f3 48%, #fbfcfa 100%),
    var(--paper);
  min-height: 100vh;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.22);
  outline-offset: 2px;
}

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

.auth-panel {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: auto;
  padding: 48px 24px;
  background:
    radial-gradient(circle at 10% 8%, rgba(245, 200, 76, 0.36), transparent 26%),
    radial-gradient(circle at 88% 28%, rgba(92, 201, 196, 0.26), transparent 30%),
    linear-gradient(145deg, #fff4c9 0%, #fffdf6 42%, #d9fbf5 100%);
}

.auth-panel::before,
.auth-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.auth-panel::before {
  inset: auto auto -140px -120px;
  width: 420px;
  height: 420px;
  border: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.auth-panel::after {
  top: 16%;
  right: 4%;
  width: 220px;
  height: 360px;
  opacity: 0.4;
  background-image: radial-gradient(rgba(13, 138, 125, 0.34) 1.4px, transparent 1.4px);
  background-size: 18px 18px;
}

.auth-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1050px, 100%);
  overflow: hidden;
  border: 1px solid rgba(184, 193, 186, 0.64);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-strong);
}

.auth-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 20px;
  padding: 46px 50px 34px;
  border-bottom: 1px solid rgba(184, 193, 186, 0.34);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 78% 46%, rgba(29, 180, 161, 0.22), transparent 28%),
    #fbfffc;
}

.auth-hero-copy {
  display: grid;
  align-content: start;
  gap: 52px;
}

.auth-brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.auth-brand-mark {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 22px;
  background:
    radial-gradient(circle at 70% 76%, var(--sun), transparent 18%),
    radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(135deg, var(--teal-dark), var(--teal) 58%, var(--teal-bright));
  color: #fff;
  box-shadow: 0 18px 30px rgba(13, 138, 125, 0.25);
}

.auth-brand-mark svg {
  width: 42px;
  height: 42px;
}

.auth-brand-mark img {
  width: 132%;
  height: 132%;
  border-radius: inherit;
  object-fit: cover;
}

.auth-brand-row h1 {
  margin: 0;
  color: #09243c;
  font-size: 1.85rem;
  line-height: 1;
}

.auth-brand-row p {
  margin: 8px 0 0;
  color: var(--teal);
  font-size: 1.25rem;
  font-weight: 900;
}

.auth-headline {
  display: grid;
  gap: 22px;
  max-width: 560px;
}

.auth-headline h2 {
  margin: 0;
  color: #09243c;
  font-size: 3.25rem;
  line-height: 1.16;
}

.auth-headline h2 span {
  color: var(--teal);
}

.auth-headline p {
  margin: 0;
  color: #536378;
  font-size: 1.24rem;
  line-height: 1.58;
}

.auth-feature-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.auth-feature-row span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 9px;
  padding: 9px 15px;
  border: 1px solid rgba(184, 193, 186, 0.58);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.9);
  color: #163149;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(36, 45, 43, 0.05);
}

.auth-feature-row span::before {
  content: "";
  width: 19px;
  height: 19px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 42%, var(--teal) 43% 57%, transparent 58%),
    #f1fffb;
}

.auth-visual {
  position: relative;
  min-height: 360px;
}

.auth-mascot-card {
  position: absolute;
  z-index: 2;
  left: 4px;
  top: 116px;
  display: grid;
  width: 106px;
  height: 106px;
  place-items: center;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: var(--navy-deep);
  box-shadow: var(--glow);
}

.auth-mascot-card img {
  width: 145%;
  height: 145%;
  object-fit: cover;
  object-position: center 16%;
}

.auth-visual::before {
  content: "";
  position: absolute;
  top: 36px;
  right: 18px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(92, 201, 196, 0.28), rgba(109, 182, 216, 0.18));
}

.auth-visual-path {
  position: absolute;
  top: 96px;
  left: 26px;
  width: 300px;
  height: 210px;
  border: 2px dashed rgba(92, 201, 196, 0.42);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.auth-roadmap-card {
  position: absolute;
  top: 88px;
  left: 104px;
  display: grid;
  gap: 18px;
  width: 210px;
  min-height: 280px;
  padding: 34px 28px 24px;
  border: 1px solid rgba(184, 193, 186, 0.36);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 44px rgba(52, 95, 147, 0.16);
  transform: rotate(5deg);
}

.auth-roadmap-card strong {
  color: #17334b;
  font-size: 0.9rem;
}

.auth-roadmap-card span {
  position: relative;
  display: block;
  height: 12px;
  margin-left: 34px;
  border-radius: 999px;
  background: #dce7ed;
}

.auth-roadmap-card span::before {
  content: "";
  position: absolute;
  left: -34px;
  top: -7px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--teal-bright), var(--teal));
  box-shadow: 0 8px 14px rgba(13, 138, 125, 0.18);
}

.auth-float {
  position: absolute;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(184, 193, 186, 0.28);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 34px rgba(52, 95, 147, 0.13);
}

.auth-float-shield {
  top: 64px;
  left: 70px;
  isolation: isolate;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
}

.auth-float-shield::before {
  content: "";
  position: absolute;
  width: 42px;
  height: 48px;
  border-radius: 11px 11px 17px 17px;
  background: linear-gradient(180deg, var(--teal-bright), var(--teal));
  clip-path: polygon(50% 0, 90% 16%, 82% 76%, 50% 100%, 18% 76%, 10% 16%);
  z-index: 0;
}

.auth-float-doc {
  top: 58px;
  right: 50px;
}

.auth-float-doc::before {
  content: "";
  width: 34px;
  height: 44px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent 78%, rgba(255, 255, 255, 0.4) 79%),
    linear-gradient(180deg, #2d94e8, #2473c6);
}

.auth-float-bag {
  left: 12px;
  top: 205px;
}

.auth-float-bag::before {
  content: "";
  width: 42px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(180deg, #1f73c9, #0f4f94);
  box-shadow: inset 0 12px 0 rgba(255, 255, 255, 0.12);
}

.auth-float-store {
  right: 76px;
  bottom: 30px;
}

.auth-float-store::before {
  content: "";
  width: 42px;
  height: 38px;
  border-radius: 7px;
  background:
    linear-gradient(180deg, #50c7bd 0 30%, #0d8a7d 31% 100%);
}

.auth-plant {
  position: absolute;
  right: 8px;
  bottom: 22px;
  width: 96px;
  height: 150px;
  border-bottom: 46px solid #8fb6df;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-radius: 0 0 18px 18px;
}

.auth-plant::before {
  content: "";
  position: absolute;
  left: 44px;
  bottom: 36px;
  width: 5px;
  height: 112px;
  border-radius: 999px;
  background: #2c8e83;
}

.auth-plant span {
  position: absolute;
  width: 34px;
  height: 62px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, var(--teal-bright), #72d3c0);
}

.auth-plant span:nth-child(1) {
  right: 44px;
  top: 28px;
  transform: rotate(-30deg);
}

.auth-plant span:nth-child(2) {
  left: 50px;
  top: 52px;
  transform: rotate(38deg);
}

.auth-plant span:nth-child(3) {
  right: 42px;
  top: 78px;
  transform: rotate(-45deg);
}

.auth-form {
  display: grid;
  gap: 26px;
  padding: 40px 50px 46px;
  background: rgba(255, 255, 255, 0.98);
}

.auth-field {
  display: grid;
  gap: 11px;
}

.auth-field > span {
  color: #09243c;
  font-size: 1rem;
  font-weight: 900;
}

.auth-input-wrap {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 68px;
  border: 1px solid rgba(184, 193, 186, 0.78);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(36, 45, 43, 0.035);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.auth-input-wrap:focus-within {
  border-color: rgba(13, 138, 125, 0.55);
  box-shadow: 0 0 0 4px rgba(13, 138, 125, 0.1);
}

.auth-input-icon {
  display: grid;
  place-items: center;
  color: var(--teal);
}

.auth-input-icon svg,
.auth-eye-btn svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.auth-input-wrap input {
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 66px;
  border: 0;
  background: transparent;
  color: #09243c;
  font-size: 1.12rem;
  outline: 0;
}

.auth-input-wrap input::placeholder {
  color: #8a95a3;
}

.auth-eye-btn {
  display: grid;
  width: 52px;
  height: 52px;
  margin-right: 7px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #8a95a3;
}

.auth-eye-btn:hover {
  background: #f3fbf8;
  color: var(--teal);
}

.auth-field small {
  color: #5f6f7f;
  font-size: 0.96rem;
}

.auth-actions {
  display: grid;
  gap: 14px;
}

.auth-primary,
.auth-secondary {
  min-height: 64px;
  font-size: 1.16rem;
}

.auth-primary {
  position: relative;
  justify-content: center;
  gap: 22px;
  border-radius: 12px;
}

.auth-primary span {
  position: absolute;
  right: 28px;
  font-size: 1.6rem;
  line-height: 1;
}

.auth-secondary {
  border-color: rgba(13, 138, 125, 0.55);
  border-radius: 12px;
  background: #fff;
  color: #09243c;
}

.auth-message {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.auth-footnote {
  margin: 4px 0 0;
  color: #5f6f7f;
  text-align: center;
  font-weight: 800;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 22px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(20, 184, 166, 0.12), transparent 28%),
    linear-gradient(180deg, var(--navy-deep), #0f3b3c 100%);
  color: #f8faf6;
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.08), 18px 0 44px rgba(11, 35, 42, 0.08);
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--teal-vibrant);
  border-radius: 50%;
  background: var(--navy-deep);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.1), var(--glow);
}

.brand-mark img {
  width: 132%;
  height: 132%;
  object-fit: cover;
}

.brand-block h1 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.2;
  color: #fff;
}

.brand-block p {
  margin: 2px 0 0;
  color: #9cf2e8;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-list {
  display: grid;
  gap: 7px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  overflow: hidden;
  padding: 10px 12px 10px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: rgba(248, 250, 246, 0.72);
  text-align: left;
  font-weight: 700;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.nav-icon {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(156, 242, 232, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #9cf2e8;
  font-size: 0;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(36, 45, 43, 0.05);
}

.nav-icon::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

[data-view="dashboard"] .nav-icon::before {
  border: 0;
  background:
    linear-gradient(currentColor 0 0) 0 0 / 6px 6px,
    linear-gradient(currentColor 0 0) 9px 0 / 6px 6px,
    linear-gradient(currentColor 0 0) 0 9px / 6px 6px,
    linear-gradient(currentColor 0 0) 9px 9px / 6px 6px;
  background-repeat: no-repeat;
}

[data-view="roadmap"] .nav-icon::before {
  width: 17px;
  height: 11px;
  border: 0;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  border-radius: 0 0 0 7px;
  transform: rotate(-8deg);
}

[data-view="checklist"] .nav-icon::before {
  width: 16px;
  height: 9px;
  border-top: 0;
  border-right: 0;
  border-radius: 0;
  transform: rotate(-45deg) translate(1px, -1px);
}

[data-view="documents"] .nav-icon::before {
  width: 17px;
  height: 13px;
  border-radius: 3px;
  transform: skewX(-8deg);
}

[data-view="advisor"] .nav-icon::before {
  width: 15px;
  height: 12px;
  border-radius: 5px;
  box-shadow: 0 -5px 0 -3px currentColor;
}

[data-view="ecosystem"] .nav-icon::before {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  box-shadow:
    9px 0 0 -5px currentColor,
    -9px 0 0 -5px currentColor,
    0 9px 0 -5px currentColor;
}

[data-view="pricing"] .nav-icon::before {
  width: 10px;
  height: 16px;
  border-radius: 999px;
}

.nav-item::before {
  content: "";
  position: absolute;
  inset: 8px auto 8px 0;
  width: 3px;
  border-radius: 999px;
  background: var(--teal);
  opacity: 0;
  transition: opacity 160ms ease;
}

.nav-item:hover {
  border-color: rgba(156, 242, 232, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateX(2px);
}

.nav-item.active {
  border-color: rgba(20, 184, 166, 0.36);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.22), rgba(255, 255, 255, 0.08));
  color: #fff;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12), 0 0 18px rgba(20, 184, 166, 0.18);
}

.nav-item.active::before {
  opacity: 1;
}

.nav-item.active .nav-icon {
  border-color: rgba(13, 138, 125, 0.28);
  background: linear-gradient(135deg, var(--teal-bright), var(--teal));
  color: #fff;
}

.module-nav-group {
  display: grid;
  gap: 8px;
  margin-top: 5px;
  padding-top: 12px;
  border-top: 1px solid rgba(156, 242, 232, 0.16);
}

.module-nav-section {
  display: grid;
  gap: 6px;
}

.module-nav-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 10px 2px;
  color: rgba(156, 242, 232, 0.76);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.module-live-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #45d483;
  box-shadow: 0 0 0 4px rgba(69, 212, 131, 0.14);
}

.module-nav-item::before {
  background: var(--module-accent, var(--teal));
}

.module-nav-icon {
  color: color-mix(in srgb, var(--module-accent, #14b8a6) 72%, white);
  font-size: 0.72rem;
}

.module-nav-icon::before {
  display: none;
}

.sidebar-footer {
  margin-top: auto;
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sidebar .tiny-label {
  color: rgba(156, 242, 232, 0.72);
}

.sidebar .input,
.sidebar .select {
  border-color: rgba(156, 242, 232, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.main-panel {
  min-width: 0;
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 30px;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 250, 246, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(30, 48, 43, 0.07);
}

.topbar h2 {
  margin: 2px 0 0;
  font-size: 1.7rem;
}

.topbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.content-area {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 24px 30px 48px;
}

.disclaimer-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 28px 0;
  padding: 12px 14px;
  border: 1px solid #ead8bf;
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffaf0, #fff3df);
  color: #654617;
  font-size: 0.9rem;
  line-height: 1.45;
}

.disclaimer-strip.acknowledged {
  border-color: rgba(36, 112, 71, 0.24);
  border-left-color: var(--green);
  background: #f3fbf5;
  color: #275139;
}

.tiny-label {
  margin: 0;
  color: var(--subtle);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.dashboard-title {
  margin: 0;
  font-size: 2.75rem;
  line-height: 1.02;
}

.muted-text,
.hero-summary {
  color: var(--muted);
  line-height: 1.5;
}

.page-grid {
  display: grid;
  gap: 20px;
}

.hero-band {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 18px;
  align-items: stretch;
}

.launch-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 20px;
  align-items: stretch;
}

.hero-panel {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 22px;
  overflow: hidden;
  min-height: 270px;
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.16), rgba(250, 204, 21, 0.16) 54%, rgba(255, 255, 255, 0.9)),
    #fff;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), transparent 48%),
    repeating-linear-gradient(135deg, rgba(13, 138, 125, 0.06) 0 1px, transparent 1px 16px);
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.66fr);
  gap: 22px;
  align-items: center;
}

.launch-scene {
  --scene-score: 0;
  position: relative;
  min-height: 238px;
  overflow: hidden;
  border: 1px solid rgba(13, 138, 125, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(20, 184, 166, 0.48), transparent 52%),
    linear-gradient(24deg, rgba(250, 204, 21, 0.28), transparent 48%),
    linear-gradient(180deg, #0b232a, #0e4644);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 18px 36px rgba(36, 45, 43, 0.09);
}

.launch-scene.high {
  border-color: rgba(223, 107, 86, 0.24);
  background:
    linear-gradient(160deg, rgba(223, 107, 86, 0.32), transparent 44%),
    linear-gradient(24deg, rgba(245, 200, 76, 0.26), transparent 48%),
    linear-gradient(180deg, #2a1114, #0b232a);
}

.scene-window {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  width: 88px;
  height: 78px;
  padding: 7px;
  border: 1px solid rgba(61, 117, 183, 0.18);
  border-radius: var(--radius);
  background: #eaf8ff;
}

.scene-window span {
  border-radius: 5px;
  background: linear-gradient(180deg, #fff9da, #bfeaff);
}

.scene-monitor {
  position: absolute;
  left: 24px;
  bottom: 58px;
  width: 48%;
  min-width: 168px;
  height: 116px;
  padding: 12px;
  border: 8px solid #243633;
  border-radius: var(--radius);
  background: #18201f;
  box-shadow: 0 18px 30px rgba(36, 45, 43, 0.18);
}

.scene-monitor::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -32px;
  width: 54px;
  height: 32px;
  border-radius: 0 0 var(--radius) var(--radius);
  background: #304540;
  transform: translateX(-50%);
}

.scene-screen {
  display: grid;
  align-content: end;
  gap: 8px;
  height: 100%;
  padding: 12px;
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(92, 201, 196, 0.22), transparent 58%),
    #f8fffc;
}

.scene-screen span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--aqua), var(--sun));
}

.scene-screen span:nth-child(1) {
  width: calc(42% + var(--scene-score) * 0.28%);
}

.scene-screen span:nth-child(2) {
  width: calc(30% + var(--scene-score) * 0.22%);
  background: linear-gradient(90deg, var(--blue), var(--sky));
}

.scene-screen span:nth-child(3) {
  width: calc(24% + var(--scene-score) * 0.18%);
  background: linear-gradient(90deg, var(--berry), var(--sun));
}

.scene-card {
  position: absolute;
  width: 70px;
  height: 86px;
  border: 1px solid rgba(36, 45, 43, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 240, 0.96)),
    #fff;
  box-shadow: 0 12px 24px rgba(36, 45, 43, 0.09);
}

.scene-card::before,
.scene-card::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 8px;
  border-radius: 999px;
  background: rgba(13, 138, 125, 0.18);
}

.scene-card::before {
  top: 18px;
}

.scene-card::after {
  top: 36px;
  right: 22px;
  background: rgba(217, 144, 35, 0.22);
}

.scene-card-left {
  right: 96px;
  bottom: 50px;
  transform: rotate(-7deg);
}

.scene-card-right {
  right: 28px;
  bottom: 42px;
  transform: rotate(8deg);
}

.scene-desk {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 9px;
  height: 54px;
  padding: 0 18px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(210, 151, 76, 0.2));
}

.scene-desk span {
  display: block;
  width: 34px;
  border-radius: 7px 7px 3px 3px;
  background: linear-gradient(180deg, var(--sun), var(--amber));
}

.scene-desk span:nth-child(1) {
  height: 20px;
}

.scene-desk span:nth-child(2) {
  height: 34px;
  background: linear-gradient(180deg, var(--aqua), var(--teal));
}

.scene-desk span:nth-child(3) {
  height: 26px;
  background: linear-gradient(180deg, var(--berry), var(--coral));
}

.scene-path {
  position: absolute;
  left: 24px;
  right: 22px;
  top: 28px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.scene-path span {
  display: block;
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 8px 18px rgba(13, 138, 125, 0.14);
}

.scene-path span:nth-child(2) {
  background: var(--sun);
}

.scene-path span:nth-child(3) {
  background: var(--berry);
}

.flight-hero-panel {
  border-color: rgba(20, 184, 166, 0.2);
}

.flight-hero-panel .dashboard-title {
  color: #08242c;
}

.scene-glow-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), transparent 46%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 18px);
}

.scene-mascot-shell {
  position: absolute;
  left: 22px;
  bottom: 18px;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: var(--navy-deep);
  box-shadow: var(--glow);
}

.scene-mascot-shell img {
  width: 145%;
  height: 145%;
  object-fit: cover;
  object-position: center 16%;
}

.scene-flight-card {
  position: absolute;
  display: grid;
  gap: 5px;
  min-width: 118px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy-deep);
  box-shadow: 0 16px 26px rgba(11, 35, 42, 0.1);
  backdrop-filter: blur(14px);
}

.scene-flight-card span {
  color: var(--teal);
  font-weight: 900;
}

.scene-flight-card strong {
  font-size: 0.82rem;
}

.scene-flight-score {
  top: 20px;
  right: 18px;
  text-align: center;
}

.scene-flight-score span {
  font-size: 1.52rem;
}

.scene-flight-task {
  right: 26px;
  bottom: 22px;
}

.scene-flight-task span {
  color: var(--muted);
  font-size: 0.76rem;
}

.scene-flight-path {
  position: absolute;
  left: 36px;
  right: 36px;
  top: 44px;
  display: flex;
  justify-content: space-between;
  opacity: 0.95;
}

.scene-flight-path span {
  display: block;
  width: 16px;
  height: 16px;
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: var(--teal-vibrant);
  box-shadow: 0 0 18px rgba(20, 184, 166, 0.4);
}

.scene-flight-path span:nth-child(2) {
  background: var(--yellow-highlight);
}

.scene-flight-path span:nth-child(3) {
  background: var(--coral);
}

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

.readiness-panel {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  text-align: center;
  background:
    linear-gradient(180deg, #fff, #f9fff9),
    var(--panel);
}

.score-ring {
  --score: 0;
  display: grid;
  width: 136px;
  height: 136px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 58%, transparent 59%),
    conic-gradient(var(--teal-bright) calc(var(--score) * 1%), #e9eadf 0);
  box-shadow:
    inset 0 0 0 1px var(--line),
    0 16px 30px rgba(15, 118, 110, 0.14);
}

.score-ring span {
  display: grid;
  width: 98px;
  height: 98px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--teal-dark);
  font-size: 1.8rem;
  font-weight: 900;
}

.summary-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.summary-strip span {
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, #fffaf0);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.toolbar-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  margin: 14px 0;
}

.priority-task {
  display: grid;
  gap: 14px;
}

.priority-task p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.blocker-list li {
  padding: 10px 10px 10px 13px;
  border: 1px solid rgba(217, 144, 35, 0.18);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  background: #fffaf0;
  color: var(--muted);
  line-height: 1.45;
}

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

.focus-card {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(245, 200, 76, 0.16), transparent 44%),
    linear-gradient(180deg, #fff, #fffdf7);
  color: var(--ink);
  text-align: left;
  box-shadow: var(--shadow-soft);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.focus-card:hover {
  border-color: rgba(13, 138, 125, 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.focus-card:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(109, 182, 216, 0.18), transparent 44%),
    linear-gradient(180deg, #fff, #f8fdff);
}

.focus-card:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(191, 79, 122, 0.12), transparent 44%),
    linear-gradient(180deg, #fff, #fff8fb);
}

.focus-card strong {
  font-size: 1.08rem;
}

.focus-card span:last-child {
  color: var(--muted);
  line-height: 1.4;
}

.legal-hero {
  background:
    linear-gradient(135deg, rgba(245, 200, 76, 0.18), rgba(29, 180, 161, 0.12)),
    #fff;
}

.legal-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.legal-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 18px rgba(28, 45, 40, 0.04);
}

.legal-card h4 {
  margin: 0;
  font-size: 1rem;
}

.legal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.panel.pad {
  padding: 20px;
}

.panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fffdf7);
}

.panel-header h3 {
  margin: 2px 0 0;
  font-size: 1.02rem;
}

.panel-body {
  padding: 18px;
}

.compact-scroll {
  max-height: 292px;
  overflow: auto;
}

.task-scroll-grid,
.template-scroll {
  display: grid;
  gap: 14px;
  max-height: min(70vh, 760px);
  overflow: auto;
  padding: 2px 4px 8px 2px;
  scroll-behavior: smooth;
}

.template-scroll {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-height: min(62vh, 640px);
}

.work-scroll {
  max-height: min(68vh, 720px);
  overflow: auto;
}

.document-scroll {
  max-height: min(62vh, 640px);
}

.document-vault-hero .panel {
  min-height: 190px;
}

.vault-copy-card {
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(250, 204, 21, 0.11)),
    rgba(255, 255, 255, 0.8);
}

.vault-visual-card {
  position: relative;
  display: grid;
  align-content: center;
  gap: 10px;
  padding-right: 152px;
  background:
    linear-gradient(135deg, rgba(156, 242, 232, 0.28), rgba(255, 255, 255, 0.76)),
    #fff;
}

.vault-visual-card img {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 102px;
  height: 102px;
  border: 4px solid #fff;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: var(--glow);
}

.document-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  padding: 2px 4px 8px 2px;
}

.document-card {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
  min-height: 254px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.document-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--teal-vibrant);
}

.document-risk-medium::before {
  background: var(--yellow-highlight);
}

.document-risk-high::before {
  background: var(--red);
}

.document-card.ready {
  border-color: rgba(36, 112, 71, 0.25);
  background: linear-gradient(180deg, rgba(243, 251, 243, 0.9), rgba(255, 255, 255, 0.82));
}

.document-card h4 {
  margin: 0;
  font-size: 1.15rem;
}

.document-card p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.4;
}

.document-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.document-ready-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
}

.document-ready-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.document-task-list {
  padding: 12px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: var(--radius);
  background: rgba(248, 250, 246, 0.66);
}

.document-task-list ul {
  display: grid;
  gap: 6px;
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.35;
}

.document-upload {
  align-self: end;
}

.compact-scroll,
.task-scroll-grid,
.template-scroll,
.work-scroll,
.chat-window,
.report-box {
  scrollbar-color: rgba(13, 138, 125, 0.5) rgba(223, 227, 220, 0.52);
  scrollbar-width: thin;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.metric {
  position: relative;
  min-height: 112px;
  overflow: hidden;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), transparent 52%),
    linear-gradient(180deg, #fff, #fffdf7);
  box-shadow: var(--shadow-soft);
}

.metric::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-bright), var(--mint));
}

.metric-grid .metric:nth-child(2)::before {
  background: linear-gradient(90deg, var(--blue), var(--sky));
}

.metric-grid .metric:nth-child(3)::before {
  background: linear-gradient(90deg, var(--coral), var(--sun));
}

.metric-grid .metric:nth-child(4)::before {
  background: linear-gradient(90deg, var(--berry), var(--sun));
}

.metric strong {
  display: block;
  margin-top: 12px;
  font-size: 1.55rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.88rem;
}

.launch-map {
  --path: 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(245, 200, 76, 0.16), rgba(29, 180, 161, 0.09)),
    #fff;
}

.roadmap-command {
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.16), transparent 48%),
    linear-gradient(180deg, var(--navy-deep), #0d4541);
  color: #fff;
}

.roadmap-command .tiny-label {
  color: #9cf2e8;
}

.roadmap-command .section-title {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.roadmap-command p {
  color: rgba(248, 250, 246, 0.78);
  line-height: 1.5;
}

.roadmap-command-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 138px;
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
}

.roadmap-orbit {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.roadmap-orbit img {
  width: 84px;
  height: 84px;
  border: 3px solid rgba(156, 242, 232, 0.42);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--glow);
}

.roadmap-orbit span {
  min-height: 28px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(156, 242, 232, 0.14);
  color: #9cf2e8;
  font-weight: 900;
}

.roadmap-command .tab-btn {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(248, 250, 246, 0.78);
}

.roadmap-command .tab-btn.active {
  border-color: rgba(20, 184, 166, 0.66);
  background: linear-gradient(135deg, var(--teal-vibrant), var(--teal));
  color: #fff;
  box-shadow: 0 12px 24px rgba(20, 184, 166, 0.18);
}

.launch-map-copy h3 {
  margin: 3px 0 8px;
  font-size: 1.28rem;
}

.launch-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  min-height: 132px;
  align-items: stretch;
}

.launch-track-line,
.launch-track-fill {
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 8px;
  border-radius: 999px;
}

.launch-track-line {
  background: #e7e5d9;
}

.launch-track-fill {
  right: auto;
  width: calc(var(--path) * 1%);
  max-width: 84%;
  background: linear-gradient(90deg, var(--teal), var(--mint), var(--sun));
  box-shadow: 0 8px 18px rgba(13, 138, 125, 0.16);
}

.path-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding: 2px 6px 0;
  text-align: center;
}

.path-dot {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid #e7e5d9;
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(36, 45, 43, 0.09);
}

.path-step.ready .path-dot {
  border-color: rgba(13, 138, 125, 0.24);
  background: linear-gradient(135deg, var(--teal-bright), var(--teal));
  color: #fff;
}

.path-step strong {
  font-size: 0.95rem;
}

.path-step small {
  color: var(--muted);
  line-height: 1.25;
}

.progress-shell {
  overflow: hidden;
  height: 10px;
  margin-top: 12px;
  border-radius: 999px;
  background: #dce7e2;
  box-shadow: inset 0 1px 2px rgba(20, 32, 31, 0.08);
}

.progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--mint), var(--sun));
  transition: width 180ms ease;
}

.risk-badge,
.status-badge,
.source-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.risk-low {
  border-color: rgba(36, 112, 71, 0.28);
  background: #ecfbf1;
  color: var(--green);
}

.risk-medium {
  border-color: rgba(181, 118, 24, 0.3);
  background: #fff8df;
  color: var(--amber);
}

.risk-high {
  border-color: rgba(167, 53, 53, 0.3);
  background: #fff0ea;
  color: var(--red);
}

.source-badge {
  border-color: rgba(13, 138, 125, 0.22);
  color: var(--teal-dark);
}

.status-badge {
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 18px;
  align-items: start;
}

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

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.task-card,
.template-card,
.pricing-card,
.resource-card,
.category-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fffdf8);
}

.task-card {
  position: relative;
  display: grid;
  gap: 12px;
  overflow: hidden;
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.task-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--teal-vibrant);
}

.task-risk-medium::before {
  background: var(--yellow-highlight);
}

.task-risk-high::before {
  background: var(--red);
}

.task-card.complete {
  border-color: rgba(36, 112, 71, 0.3);
  background: #f3fbf3;
}

.ecosystem-hero {
  display: grid;
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.12), transparent 36%),
    linear-gradient(180deg, #ffffff, #fffdf8);
}

.ecosystem-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fffdf8);
  box-shadow: var(--shadow-soft);
}

.ecosystem-card-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.ecosystem-card h4 {
  margin: 2px 0 0;
  font-size: 1.1rem;
}

.module-card-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.module-card-shortcut {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 7px;
  background: rgba(20, 184, 166, 0.07);
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 900;
}

.module-card-shortcut:hover {
  border-color: rgba(15, 118, 110, 0.4);
  background: rgba(20, 184, 166, 0.13);
}

.module-address-settings {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.module-address-settings summary {
  cursor: pointer;
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 900;
}

.module-address-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 9px;
  padding-top: 10px;
}

.module-address-form .field {
  gap: 5px;
}

.module-address-form .field > span {
  font-size: 0.74rem;
}

.module-shortcuts-panel {
  overflow: hidden;
}

.module-shortcuts-header {
  border-bottom: 1px solid var(--line);
}

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

.module-shortcut-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 11px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--module-accent, var(--teal));
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  box-shadow: 0 8px 18px rgba(36, 45, 43, 0.05);
}

.module-shortcut-card:hover {
  border-color: color-mix(in srgb, var(--module-accent, #14b8a6) 48%, var(--line));
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(36, 45, 43, 0.1);
}

.module-shortcut-card > span:nth-child(2) {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.module-shortcut-card small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.module-shortcut-card strong {
  line-height: 1.2;
}

.module-shortcut-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: color-mix(in srgb, var(--module-accent, #14b8a6) 14%, white);
  color: color-mix(in srgb, var(--module-accent, #14b8a6) 74%, #07373a);
  font-weight: 950;
}

.module-shortcut-arrow {
  color: var(--module-accent, var(--teal));
  font-size: 1.25rem;
  font-weight: 900;
}

.ecosystem-frame-panel {
  overflow: hidden;
}

.module-workspace-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8fbfa;
}

.module-workspace-tab {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  font-weight: 850;
}

.module-workspace-tab:hover,
.module-workspace-tab.active {
  border-color: rgba(15, 118, 110, 0.22);
  background: #fff;
  color: var(--teal-deep);
  box-shadow: 0 6px 14px rgba(36, 45, 43, 0.06);
}

.module-frame-status {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.module-frame-status button {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--teal-deep);
  font-weight: 900;
}

.module-frame-shell {
  min-height: 520px;
  background: #f8fafc;
}

.ecosystem-frame {
  display: block;
  width: 100%;
  min-height: min(760px, calc(100vh - 190px));
  border: 0;
  background: #f8fafc;
}

.task-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.task-title {
  display: flex;
  gap: 10px;
  align-items: start;
}

.task-title input {
  margin-top: 4px;
  accent-color: var(--teal);
}

.task-title h4 {
  margin: 0;
  font-size: 1rem;
}

.task-title p {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.task-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.task-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.task-actions textarea {
  min-height: 72px;
  resize: vertical;
}

.task-actions .file-control {
  min-width: 260px;
}

.upload-field {
  gap: 8px;
}

.upload-status {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.phase-tabs,
.filter-row,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tab-btn,
.chip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.tab-btn.active,
.chip-btn.active {
  border-color: rgba(15, 118, 110, 0.28);
  background: linear-gradient(180deg, #eafbf6, #fff8df);
  color: var(--teal-dark);
  box-shadow: 0 6px 14px rgba(15, 118, 110, 0.08);
}

.input,
.textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 11px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fffdf9;
  color: var(--ink);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.input:hover,
.textarea:hover {
  border-color: var(--teal);
}

.input:focus,
.textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
  outline: none;
}

.textarea {
  min-height: 104px;
  resize: vertical;
}

.code-textarea {
  min-height: 220px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  line-height: 1.45;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field > span,
.check-field span {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.field small {
  color: var(--muted);
  line-height: 1.35;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.check-field {
  display: flex;
  align-items: start;
  gap: 9px;
  min-height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
  box-shadow: 0 4px 12px rgba(30, 48, 43, 0.035);
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.check-field:hover {
  border-color: rgba(15, 118, 110, 0.32);
  background: #f8fff9;
}

.check-field input {
  margin-top: 3px;
  accent-color: var(--teal);
}

.primary-btn,
.secondary-btn,
.danger-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(30, 48, 43, 0.06);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.primary-btn {
  border: 1px solid var(--teal-dark);
  background: linear-gradient(135deg, var(--navy-deep), var(--teal-vibrant));
  color: #fff;
  box-shadow: 0 12px 22px rgba(20, 184, 166, 0.22);
}

.primary-btn:hover {
  background: linear-gradient(135deg, #09242a, var(--teal));
  transform: translateY(-1px);
}

.secondary-btn {
  border: 1px solid rgba(15, 118, 110, 0.24);
  background: rgba(255, 255, 255, 0.78);
  color: var(--teal-dark);
}

.secondary-btn:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  transform: translateY(-1px);
}

.danger-btn {
  border: 1px solid rgba(167, 53, 53, 0.38);
  background: #fff0ea;
  color: var(--red);
}

.ghost-btn {
  border: 1px solid transparent;
  background: transparent;
  color: var(--teal-dark);
}

.ghost-btn:hover {
  background: rgba(15, 118, 110, 0.08);
}

.full-width {
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
}

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

th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: linear-gradient(180deg, #fff, #fffaf0);
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

tbody tr:hover {
  background: #fffaf0;
}

tr:last-child td {
  border-bottom: 0;
}

.empty-state {
  padding: 28px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: #fffdf9;
  color: var(--muted);
  text-align: center;
}

.warning-box {
  padding: 14px;
  border: 1px solid rgba(167, 53, 53, 0.25);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: #fff0ea;
}

.warning-box h4,
.info-box h4 {
  margin: 0 0 6px;
}

.warning-box p,
.info-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.info-box {
  padding: 14px;
  border: 1px solid rgba(52, 95, 147, 0.2);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  background: #f0f7ff;
}

.template-card,
.resource-card,
.pricing-card,
.category-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 15px;
  box-shadow: 0 8px 20px rgba(36, 45, 43, 0.055);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.template-card:hover,
.resource-card:hover,
.pricing-card:hover,
.category-card:hover {
  border-color: rgba(13, 138, 125, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.pricing-card.featured-plan {
  border-color: rgba(13, 138, 125, 0.36);
  background:
    linear-gradient(180deg, #fff, #eefbf8),
    #fff;
  box-shadow: 0 18px 38px rgba(13, 138, 125, 0.14);
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.version-hero {
  background:
    linear-gradient(135deg, rgba(245, 200, 76, 0.22), transparent 38%),
    linear-gradient(28deg, rgba(29, 180, 161, 0.16), transparent 42%),
    #fff;
}

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

.plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid rgba(217, 144, 35, 0.32);
  border-radius: 999px;
  background: #fff6df;
  color: #8b560d;
  font-size: 0.78rem;
  font-weight: 900;
}

.plan-badge.included {
  border-color: rgba(13, 138, 125, 0.28);
  background: #e9fbf6;
  color: var(--teal-dark);
}

.feature-list {
  display: grid;
  gap: 9px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  line-height: 1.45;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(29, 180, 161, 0.14);
}

.template-card h4,
.resource-card h4,
.pricing-card h4,
.category-card h4 {
  margin: 0 0 8px;
}

.template-card p,
.resource-card p,
.pricing-card p,
.category-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.45;
}

.price {
  margin: 8px 0 12px;
  font-size: 1.9rem;
  font-weight: 900;
}

.price small {
  color: var(--muted);
  font-size: 0.9rem;
}

.chat-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}

.advisor-panel {
  background:
    linear-gradient(140deg, rgba(156, 242, 232, 0.18), rgba(255, 255, 255, 0.72) 46%),
    rgba(255, 255, 255, 0.78);
}

.advisor-masthead {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.advisor-avatar {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  overflow: hidden;
  border: 3px solid var(--teal-vibrant);
  border-radius: 50%;
  background: var(--navy-deep);
  box-shadow: var(--glow);
}

.advisor-avatar img {
  width: 145%;
  height: 145%;
  object-fit: cover;
  object-position: center 16%;
}

.chat-window {
  display: grid;
  gap: 12px;
  max-height: 560px;
  overflow-y: auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(156, 242, 232, 0.12), rgba(250, 204, 21, 0.08)),
    #fff;
}

.message {
  max-width: 84%;
  padding: 12px 13px;
  border-radius: var(--radius);
  line-height: 1.45;
}

.message.user {
  justify-self: end;
  border-bottom-right-radius: 2px;
  background: linear-gradient(135deg, var(--navy-deep), var(--ink));
  color: #fff;
}

.message.advisor {
  justify-self: start;
  border-top-left-radius: 2px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.08);
}

.chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 12px;
}

.advisor-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.advisor-upgrade {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.advisor-context-card {
  background:
    linear-gradient(150deg, rgba(20, 184, 166, 0.15), rgba(255, 255, 255, 0.74)),
    rgba(255, 255, 255, 0.82);
}

.advisor-context-visual {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: 10px 0 16px;
  padding: 16px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.advisor-context-visual img {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: var(--glow);
}

.advisor-context-visual span {
  color: var(--teal-dark);
  font-weight: 900;
}

.advisor-upgrade strong {
  color: var(--ink);
}

.design-helper {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(13, 138, 125, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 200, 76, 0.22), transparent 34%),
    linear-gradient(180deg, #f7fffb, #fffdf6);
}

.design-helper h4 {
  margin: 0;
  color: #09243c;
}

.design-ai-form {
  display: grid;
  gap: 10px;
}

.design-ai-textarea {
  min-height: 114px;
  resize: vertical;
}

.helper-note {
  margin: 0;
  color: var(--subtle);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.4;
}

.source-list,
.plain-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-list a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.source-list a:hover {
  text-decoration: underline;
}

.plain-list li {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
}

.report-box {
  white-space: pre-wrap;
  min-height: 240px;
  max-height: 520px;
  overflow: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  line-height: 1.45;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  max-width: min(420px, calc(100vw - 36px));
  padding: 12px 14px;
  border: 1px solid rgba(15, 118, 110, 0.25);
  border-radius: var(--radius);
  background: #fffdf9;
  box-shadow: var(--shadow);
  color: var(--ink);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: 180ms ease;
}

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

.hide {
  display: none !important;
}

@media (max-width: 1040px) {
  .auth-panel {
    padding: 28px 20px;
  }

  .auth-card {
    width: min(760px, 100%);
  }

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

  .auth-hero-copy {
    gap: 34px;
  }

  .auth-headline h2 {
    font-size: 2.65rem;
  }

  .auth-visual {
    min-height: 320px;
  }

  .auth-roadmap-card {
    left: 50%;
    transform: translateX(-50%) rotate(4deg);
  }

  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .module-nav-group {
    grid-column: 1 / -1;
  }

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

  .module-nav-heading {
    grid-column: 1 / -1;
  }

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

  .sidebar-footer {
    margin-top: 0;
  }

  .hero-band,
  .launch-hero,
  .hero-copy,
  .launch-map,
  .two-col,
  .chat-layout {
    grid-template-columns: 1fr;
  }

  .launch-track {
    min-height: 126px;
  }

  .launch-scene {
    min-height: 220px;
  }

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

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

@media (min-width: 721px) and (max-height: 960px) {
  .auth-panel {
    padding: 26px 20px;
  }

  .auth-hero {
    padding: 24px 34px 20px;
  }

  .auth-hero-copy {
    gap: 20px;
  }

  .auth-brand-mark {
    width: 60px;
    height: 60px;
  }

  .auth-brand-mark svg {
    width: 34px;
    height: 34px;
  }

  .auth-brand-row h1 {
    font-size: 1.58rem;
  }

  .auth-brand-row p {
    font-size: 1rem;
  }

  .auth-headline h2 {
    font-size: 2.2rem;
  }

  .auth-headline p {
    font-size: 0.98rem;
  }

  .auth-visual {
    min-height: 238px;
  }

  .auth-roadmap-card {
    top: 50px;
    min-height: 205px;
    width: 188px;
    padding: 28px 22px 20px;
  }

  .auth-feature-row span {
    min-height: 36px;
    padding: 7px 12px;
  }

  .auth-form {
    gap: 16px;
    padding: 22px 34px 26px;
  }

  .auth-field > span {
    font-size: 0.96rem;
  }

  .auth-input-wrap {
    min-height: 52px;
  }

  .auth-input-wrap input {
    min-height: 50px;
    font-size: 1rem;
  }

  .auth-field small {
    font-size: 0.9rem;
  }

  .auth-primary,
  .auth-secondary {
    min-height: 52px;
    font-size: 1rem;
  }
}

@media (max-width: 720px) {
  .auth-panel {
    padding: 16px;
  }

  .auth-card {
    border-radius: 18px;
  }

  .auth-hero {
    padding: 22px 18px 20px;
  }

  .auth-brand-row {
    gap: 13px;
  }

  .auth-brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 17px;
  }

  .auth-brand-mark svg {
    width: 30px;
    height: 30px;
  }

  .auth-brand-row h1 {
    font-size: 1.5rem;
  }

  .auth-brand-row p {
    font-size: 1.02rem;
  }

  .auth-hero-copy {
    gap: 20px;
  }

  .auth-headline {
    gap: 12px;
  }

  .auth-headline h2 {
    font-size: 1.58rem;
    line-height: 1.16;
  }

  .auth-headline p {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .auth-feature-row {
    display: none;
  }

  .auth-feature-row span {
    flex: 1 1 calc(50% - 8px);
    min-height: 38px;
    padding: 7px 10px;
    font-size: 0.88rem;
  }

  .auth-visual {
    min-height: 164px;
  }

  .auth-visual::before {
    width: 148px;
    height: 148px;
    top: 18px;
  }

  .auth-roadmap-card {
    top: 22px;
    width: 126px;
    min-height: 142px;
    gap: 9px;
    padding: 18px 14px 14px;
  }

  .auth-roadmap-card strong {
    font-size: 0.72rem;
  }

  .auth-roadmap-card span {
    height: 8px;
    margin-left: 24px;
  }

  .auth-roadmap-card span::before {
    left: -24px;
    top: -5px;
    width: 20px;
    height: 20px;
  }

  .auth-float {
    width: 42px;
    height: 42px;
  }

  .auth-float-shield {
    left: 18px;
    top: 22px;
    font-size: 1.25rem;
  }

  .auth-float-shield::before {
    width: 28px;
    height: 32px;
  }

  .auth-float-doc {
    right: 12px;
    top: 22px;
  }

  .auth-float-doc::before {
    width: 24px;
    height: 32px;
  }

  .auth-float-bag {
    left: 4px;
    top: 112px;
  }

  .auth-float-bag::before {
    width: 28px;
    height: 23px;
  }

  .auth-float-store {
    right: 34px;
    bottom: 10px;
  }

  .auth-float-store::before {
    width: 28px;
    height: 25px;
  }

  .auth-plant {
    display: none;
  }

  .auth-form {
    gap: 14px;
    padding: 18px 18px 20px;
  }

  .auth-field > span {
    font-size: 1rem;
  }

  .auth-input-wrap {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    min-height: 54px;
  }

  .auth-input-wrap input {
    min-height: 52px;
    font-size: 1rem;
  }

  .auth-eye-btn {
    width: 44px;
    height: 44px;
  }

  .auth-field small {
    font-size: 0.96rem;
  }

  .auth-actions {
    gap: 12px;
  }

  .auth-primary,
  .auth-secondary {
    min-height: 52px;
    font-size: 1rem;
  }

  .topbar h2 {
    font-size: 1.45rem;
  }

  .dashboard-title {
    font-size: 2.1rem;
  }

  .topbar {
    align-items: stretch;
    flex-direction: column;
    padding: 16px;
  }

  .content-area {
    padding: 16px;
  }

  .topbar-actions,
  .hero-actions,
  .topbar-actions .primary-btn,
  .topbar-actions .secondary-btn,
  .hero-actions .primary-btn,
  .hero-actions .secondary-btn {
    width: 100%;
  }

  .disclaimer-strip {
    align-items: stretch;
    flex-direction: column;
    margin: 14px 16px 0;
  }

  .disclaimer-strip .secondary-btn {
    width: 100%;
  }

  .nav-list,
  .field-grid,
  .three-col,
  .metric-grid,
  .focus-grid,
  .template-scroll,
  .toolbar-row {
    grid-template-columns: 1fr;
  }

  .nav-item {
    min-height: 46px;
  }

  .launch-track {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
  }

  .launch-track-line,
  .launch-track-fill {
    display: none;
  }

  .path-step {
    grid-template-columns: 44px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fffdf9;
    text-align: left;
  }

  .path-dot {
    grid-row: 1 / span 2;
    width: 38px;
    height: 38px;
  }

  .task-topline,
  .panel-header {
    flex-direction: column;
  }

  .task-actions,
  .chat-form {
    grid-template-columns: 1fr;
  }

  .score-ring {
    width: 120px;
    height: 120px;
  }

  .score-ring span {
    width: 86px;
    height: 86px;
    font-size: 1.5rem;
  }

  .launch-scene {
    min-height: 190px;
  }

  .scene-monitor {
    left: 16px;
    bottom: 48px;
    min-width: 142px;
    height: 98px;
  }

  .scene-card {
    width: 58px;
    height: 72px;
  }

  .scene-card-left {
    right: 78px;
  }

  .scene-card-right {
    right: 18px;
  }

  .task-scroll-grid,
  .template-scroll,
  .work-scroll,
  .document-scroll {
    max-height: none;
  }

  .message {
    max-width: 100%;
  }

  .app-shell {
    padding-bottom: 86px;
  }

  .sidebar {
    position: fixed;
    z-index: 32;
    top: auto;
    right: 12px;
    bottom: 12px;
    left: 12px;
    height: 74px;
    max-height: 74px;
    padding: 8px;
    border: 1px solid rgba(156, 242, 232, 0.24);
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(11, 35, 42, 0.22);
  }

  .sidebar .brand-block,
  .sidebar-footer {
    display: none;
  }

  .nav-list {
    display: flex;
    grid-template-columns: none;
    gap: 7px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .module-nav-group,
  .module-nav-section {
    display: flex;
    flex: 0 0 auto;
    gap: 7px;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .module-nav-heading {
    display: none;
  }

  .nav-list::-webkit-scrollbar {
    display: none;
  }

  .nav-item {
    flex: 0 0 82px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-height: 58px;
    padding: 7px 8px;
    font-size: 0.72rem;
    text-align: center;
  }

  .nav-item::before {
    display: none;
  }

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

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

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

  .module-frame-status {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .module-frame-status button {
    width: 100%;
    margin-left: 18px;
    text-align: left;
  }

  .ecosystem-frame {
    min-height: 620px;
  }

  .nav-icon {
    width: 26px;
    height: 26px;
  }

  .roadmap-command-copy,
  .advisor-masthead {
    grid-template-columns: 1fr;
  }

  .roadmap-orbit {
    justify-items: start;
  }

  .vault-visual-card {
    padding-right: 18px;
    padding-bottom: 132px;
  }

  .vault-visual-card img {
    right: auto;
    left: 18px;
  }

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

  .auth-mascot-card {
    left: 10px;
    top: 88px;
    width: 64px;
    height: 64px;
    border-width: 3px;
  }
}
