﻿:root {
  --bg-deep: #06122b;
  --bg-mid: #0a2a56;
  --panel-soft: rgba(9, 34, 79, 0.72);
  --panel-strong: rgba(6, 25, 61, 0.9);
  --ink: #f5f8ff;
  --muted: #b8ccef;
  --line: rgba(121, 177, 255, 0.36);
  --accent-blue: #47d4ff;
  --accent-green: #1fd7b4;
  --accent-gold: #ffd47e;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow-main: 0 22px 54px rgba(2, 10, 28, 0.5);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  color-scheme: dark;
  line-height: 1.45;
  background:
    radial-gradient(1100px 560px at 92% -8%, rgba(77, 169, 255, 0.22), transparent 64%),
    radial-gradient(900px 500px at -8% 18%, rgba(39, 205, 178, 0.17), transparent 62%),
    linear-gradient(154deg, var(--bg-deep) 0%, #08224d 54%, #0f3b7e 100%);
}

.background-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 88%);
}

body[data-theme="light"] {
  color-scheme: light;
  --ink: #102847;
  --muted: #516c92;
  background:
    radial-gradient(1050px 520px at 94% -10%, rgba(122, 186, 247, 0.26), transparent 66%),
    radial-gradient(900px 500px at -10% 16%, rgba(106, 205, 178, 0.2), transparent 64%),
    linear-gradient(156deg, #f7f9fc 0%, #edf3fb 55%, #e6eef9 100%);
}

body[data-theme="light"] .background-layer {
  background-image:
    linear-gradient(rgba(10, 56, 120, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 56, 120, 0.06) 1px, transparent 1px);
}

.shell {
  width: min(1140px, calc(100% - 2.6rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0.55rem;
  z-index: 20;
  padding-top: 1rem;
  margin-bottom: 0.45rem;
}

.header-shell {
  border-radius: 22px;
  border: 1px solid rgba(135, 189, 255, 0.3);
  background: linear-gradient(160deg, rgba(9, 35, 82, 0.9), rgba(7, 28, 69, 0.82));
  box-shadow: 0 14px 36px rgba(3, 14, 35, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.82rem 0.9rem;
  display: grid;
  gap: 0.68rem;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

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

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-title {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-subtitle {
  margin: 0.15rem 0 0;
  font-size: 0.84rem;
  line-height: 1.35;
  color: var(--muted);
  max-width: 52ch;
}

.phase-pill {
  border-radius: 999px;
  border: 1px solid rgba(133, 188, 255, 0.44);
  background: rgba(7, 30, 72, 0.75);
  color: #e0ecff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-page-indicator {
  border-radius: 999px;
  border: 1px solid rgba(133, 188, 255, 0.36);
  background: rgba(7, 30, 72, 0.5);
  color: #d8eaff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.42rem 0.7rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.45rem;
  min-width: 0;
}

.main-nav-link {
  border-radius: 999px;
  border: 1px solid rgba(133, 188, 255, 0.36);
  background: rgba(7, 30, 72, 0.55);
  color: #d5e8ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.44rem 0.76rem;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.main-nav-link:hover {
  transform: translateY(-1px);
  background: rgba(10, 42, 96, 0.86);
  border-color: rgba(154, 206, 255, 0.56);
}

.main-nav-link.is-active {
  color: #0e3558;
  border-color: rgba(204, 239, 255, 0.86);
  background: linear-gradient(130deg, #84e8ff, #4fd7ff);
  box-shadow: 0 5px 14px rgba(63, 200, 255, 0.35);
}

.main-nav-link:focus-visible,
.theme-toggle:focus-visible {
  outline: 2px solid rgba(110, 216, 255, 0.75);
  outline-offset: 2px;
}

.theme-toggle {
  border-radius: 999px;
  border: 1px solid rgba(133, 188, 255, 0.44);
  background: rgba(7, 30, 72, 0.75);
  color: #deebff;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.55rem 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  background: rgba(9, 41, 96, 0.9);
}

.hero {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 1.4rem;
}

.hero-copy {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(8, 35, 82, 0.88), rgba(7, 25, 60, 0.76));
  border: 1px solid rgba(133, 184, 255, 0.34);
  box-shadow: var(--shadow-main);
}

.hero-eyebrow {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c2ddff;
}

.hero-title {
  margin: 0.88rem 0 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 2.9vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  font-weight: 800;
}

.hero-description {
  margin: 1rem 0 0;
  color: #d2e2ff;
  max-width: 56ch;
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.72rem 1.08rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.btn-primary {
  color: #06233b;
  background: linear-gradient(136deg, #67e2ff, #2adcb7);
  box-shadow: 0 10px 22px rgba(59, 219, 198, 0.35);
}

.btn-secondary {
  color: #dfebff;
  background: rgba(7, 26, 62, 0.54);
  border: 1px solid rgba(137, 189, 255, 0.42);
}

.btn-danger {
  color: #ffdbe0;
  background: rgba(92, 16, 35, 0.64);
  border: 1px solid rgba(233, 126, 153, 0.5);
}

.btn-danger:hover {
  background: rgba(111, 18, 42, 0.76);
}

.hero-metrics {
  display: grid;
  gap: 0.85rem;
}

.metric-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(136, 190, 255, 0.33);
  background: linear-gradient(150deg, rgba(10, 40, 92, 0.82), rgba(7, 25, 62, 0.86));
  box-shadow: var(--shadow-main);
  padding: 1.12rem 1rem;
}

.metric-value {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.metric-label {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(129, 183, 255, 0.3);
  background: linear-gradient(164deg, var(--panel-soft), var(--panel-strong));
  box-shadow: var(--shadow-main);
}

.home-overview {
  margin-top: 1.6rem;
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.home-card {
  border-radius: 16px;
  border: 1px solid rgba(135, 189, 255, 0.34);
  background: linear-gradient(155deg, rgba(10, 40, 92, 0.82), rgba(7, 26, 63, 0.88));
  padding: 1rem;
}

.home-checklist {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
  color: #d4e7ff;
}

.home-feature-grid {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-feature-card {
  border-radius: 14px;
  border: 1px solid rgba(135, 189, 255, 0.33);
  background: linear-gradient(150deg, rgba(8, 34, 79, 0.9), rgba(5, 22, 54, 0.92));
  padding: 0.9rem;
}

.home-feature-actions {
  margin-top: 0.65rem;
}

.home-faq-list {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.65rem;
}

.home-faq-item {
  border-radius: 12px;
  border: 1px solid rgba(143, 199, 255, 0.32);
  background: rgba(8, 32, 74, 0.48);
  overflow: hidden;
}

.home-faq-item summary {
  position: relative;
  padding: 0.62rem 2.1rem 0.62rem 0.72rem;
  cursor: pointer;
  font-weight: 700;
  color: #ecf4ff;
  list-style: none;
}

.home-faq-item summary::-webkit-details-marker {
  display: none;
}

.home-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0.72rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #cde4ff;
}

.home-faq-item[open] summary::after {
  content: "−";
}

.home-faq-item p {
  margin: 0;
  padding: 0 0.72rem 0.7rem;
  color: #d8e8ff;
  font-size: 0.9rem;
}

.home-cta-card .hero-actions {
  margin-top: 0.9rem;
}

.home-trust-line {
  margin: 0.55rem 0 0;
  color: #c7dcff;
  font-size: 0.88rem;
}

.phase-guide {
  margin-top: 2rem;
  padding: 1.65rem;
}

.guide-header {
  text-align: center;
}

.guide-title {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 800;
}

.guide-subtitle {
  margin: 0.42rem 0 0;
  color: var(--muted);
}

.lane-grid {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
}

.lane-card {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(138, 192, 255, 0.33);
  background: linear-gradient(150deg, rgba(10, 41, 92, 0.87), rgba(6, 24, 58, 0.9));
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.lane-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  border: 1px solid rgba(147, 198, 255, 0.38);
  background: rgba(13, 45, 96, 0.7);
  color: #9ddfff;
  display: grid;
  place-items: center;
}

.lane-title {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.lane-caption {
  margin: 0.35rem 0 0;
  color: #c9dcff;
  font-size: 0.9rem;
}

.lane-arrow {
  display: grid;
  place-items: center;
  color: #86ceff;
  font-size: 1.2rem;
  font-weight: 700;
}

.lane-arrow::before {
  content: "->";
}

.markets-row {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.markets-label {
  color: #c0d7fa;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

.flag-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.flag-chip {
  padding: 0.24rem 0.5rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #05324e;
  background: linear-gradient(120deg, #9ce8ff, #72d8ff);
  border: 1px solid rgba(202, 239, 255, 0.9);
}

.down-arrow-wrap {
  margin-top: 1rem;
  display: grid;
  justify-items: center;
  gap: 0.65rem;
}

.down-arrow {
  width: 2px;
  height: 36px;
  background: linear-gradient(180deg, rgba(109, 205, 255, 0.92), rgba(42, 120, 255, 0.48));
  position: relative;
  border-radius: 99px;
}

.down-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #73cbff;
  border-bottom: 2px solid #73cbff;
  transform: translateX(-50%) rotate(45deg);
}

.how-strip {
  border-radius: 999px;
  padding: 0.42rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d8e8ff;
  background: rgba(10, 38, 87, 0.74);
  border: 1px solid rgba(138, 193, 255, 0.4);
}

.steps-lane {
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
}

.step-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(137, 191, 255, 0.33);
  background: linear-gradient(150deg, rgba(11, 44, 98, 0.86), rgba(7, 27, 65, 0.9));
  padding: 0.95rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.72rem;
}

.step-number {
  position: absolute;
  top: -12px;
  left: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.76rem;
  font-weight: 800;
  color: #083156;
  background: linear-gradient(130deg, var(--accent-gold), #ffb84f);
  border: 1px solid rgba(255, 221, 168, 0.88);
  box-shadow: 0 7px 16px rgba(255, 188, 88, 0.3);
}

.step-title {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.step-detail {
  margin: 0.36rem 0 0;
  color: #c9dcff;
  font-size: 0.9rem;
}

.lane-arrow.step::before {
  content: "=>";
}

.cta-wrap {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
}

.outcomes-card {
  margin-top: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 212, 150, 0.45);
  background: linear-gradient(160deg, rgba(79, 59, 20, 0.45), rgba(67, 42, 12, 0.35));
  padding: 1rem;
}

.outcomes-title {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.02rem;
}

.outcomes-list {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.62rem;
}

.outcomes-item {
  position: relative;
  padding-left: 1.3rem;
  color: #ecf4ff;
}

.outcomes-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent-gold), #ffac47);
  box-shadow: 0 0 0 4px rgba(255, 193, 104, 0.2);
}

.full-structure {
  margin-top: 1.6rem;
  padding: 1.5rem;
}

.structure-header {
  text-align: center;
}

.structure-title {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 800;
}

.structure-subtitle {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.vision-card {
  margin-top: 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(134, 188, 255, 0.34);
  background: linear-gradient(150deg, rgba(10, 39, 88, 0.85), rgba(6, 24, 58, 0.88));
  padding: 0.95rem;
}

.vision-title {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
}

.vision-text {
  margin: 0.5rem 0 0;
  color: #d7e7ff;
}

.levels-grid {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.82rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.level-card {
  border-radius: 16px;
  border: 1px solid rgba(136, 190, 255, 0.33);
  background: linear-gradient(150deg, rgba(10, 40, 92, 0.82), rgba(7, 25, 62, 0.86));
  padding: 0.92rem;
}

.level-title {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.99rem;
  font-weight: 800;
}

.level-list {
  margin: 0.68rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.48rem;
}

.level-list.compact {
  margin-top: 0.4rem;
  gap: 0.36rem;
}

.level-bullet {
  position: relative;
  padding-left: 1.1rem;
  color: #d5e6ff;
  font-size: 0.9rem;
}

.level-bullet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(120deg, #93eaff, #4fd0ff);
}

.level-groups {
  margin-top: 0.65rem;
  display: grid;
  gap: 0.55rem;
}

.level-group {
  border-radius: 12px;
  border: 1px solid rgba(129, 184, 255, 0.28);
  background: rgba(8, 33, 76, 0.56);
  padding: 0.66rem;
}

.level-group-title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #e8f3ff;
}

.flow-track {
  margin-top: 0.78rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  align-items: center;
}

.flow-node {
  border-radius: 999px;
  border: 1px solid rgba(147, 198, 255, 0.42);
  background: rgba(10, 41, 92, 0.82);
  color: #e4f1ff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.26rem 0.58rem;
}

.flow-arrow {
  color: #86ceff;
  font-weight: 700;
}

.roadmap {
  margin-top: 1.6rem;
  padding: 1.5rem;
}

.roadmap-header {
  text-align: center;
}

.roadmap-title {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 800;
}

.roadmap-subtitle {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.roadmap-grid {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.82rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.roadmap-card {
  border-radius: 16px;
  border: 1px solid rgba(136, 190, 255, 0.33);
  background: linear-gradient(150deg, rgba(10, 40, 92, 0.82), rgba(7, 25, 62, 0.86));
  padding: 0.92rem;
}

.roadmap-phase {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.99rem;
  font-weight: 800;
}

.roadmap-focus,
.roadmap-goal {
  margin: 0.55rem 0 0;
  color: #d0e3ff;
  font-size: 0.9rem;
}

.roadmap-goal {
  margin-top: 0.62rem;
}

.roadmap-list {
  margin: 0.62rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.roadmap-bullet {
  position: relative;
  padding-left: 1.1rem;
  color: #d5e6ff;
  font-size: 0.9rem;
}

.roadmap-bullet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(120deg, #ffd47e, #ffb856);
}

.monetization-card {
  margin-top: 0.88rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 212, 150, 0.45);
  background: linear-gradient(160deg, rgba(79, 59, 20, 0.45), rgba(67, 42, 12, 0.35));
  padding: 1rem;
}

.monetization-title {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.monetization-formula {
  margin: 0.5rem 0 0;
  border-radius: 999px;
  border: 1px solid rgba(143, 199, 255, 0.42);
  background: rgba(9, 33, 77, 0.55);
  color: #e6f2ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-block;
  padding: 0.32rem 0.7rem;
}

.roadmap-summary {
  margin: 0.85rem 0 0;
  color: #d4e7ff;
}

.marketplace {
  margin-top: 1.6rem;
  padding: 1.5rem;
}

.company-directory,
.opportunities,
.messaging,
.admin-panel,
.project-details,
.contact-page {
  margin-top: 1.6rem;
  padding: 1.5rem;
}

.project-details-card {
  margin-top: 0.4rem;
}

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

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.admin-tab {
  border-radius: 999px;
  border: 1px solid rgba(134, 188, 255, 0.36);
  background: rgba(8, 28, 62, 0.45);
  color: #d8e9ff;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.admin-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(134, 188, 255, 0.6);
}

.admin-tab.is-active {
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.95), rgba(76, 141, 245, 0.95));
  border-color: rgba(173, 214, 255, 0.85);
  color: #ffffff;
}

.admin-content {
  margin-top: 1rem;
}

.admin-metrics {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.settings-grid {
  display: grid;
  gap: 0.75rem;
}

.setting-row {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: #d8e9ff;
  font-weight: 600;
  line-height: 1.4;
}

.setting-row input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: #1a73e8;
}

.marketplace-header {
  margin-bottom: 1rem;
}

.marketplace-title {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 800;
}

.marketplace-subtitle {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.auth-gate {
  margin: 0.95rem 0 1rem;
  border-radius: 16px;
  border: 1px solid rgba(134, 188, 255, 0.34);
  background: linear-gradient(150deg, rgba(10, 39, 88, 0.85), rgba(6, 24, 58, 0.88));
  padding: 0.9rem;
  display: grid;
  gap: 0.7rem;
}

.auth-gate-title {
  margin: 0;
}

.auth-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.auth-identity {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.auth-signed-in {
  margin: 0;
  color: #c5dcff;
  font-size: 0.88rem;
}

.auth-signed-in strong {
  color: #edf5ff;
}

.auth-status {
  min-height: 1.2rem;
}

.marketplace-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1.15fr;
}

.marketplace-grid.secondary-grid {
  margin-top: 1rem;
}

.directory-controls {
  grid-template-columns: 1.4fr 1fr 1fr;
}

.controls-grid-4 {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.project-form,
.project-board {
  border-radius: 16px;
  border: 1px solid rgba(135, 189, 255, 0.34);
  background: linear-gradient(155deg, rgba(10, 40, 92, 0.82), rgba(7, 26, 63, 0.88));
  padding: 1rem;
}

.block-title {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
}

.field-grid {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.72rem;
  grid-template-columns: 1fr 1fr;
}

.field-group {
  display: grid;
  gap: 0.35rem;
}

.field-group.full {
  grid-column: 1 / -1;
}

.profile-picture-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
}

.profile-picture-preview {
  display: inline-flex;
}

.profile-picture-controls {
  display: grid;
  gap: 0.5rem;
}

.profile-picture-clear {
  justify-self: flex-start;
}

.profile-role-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.22rem;
  border-radius: 999px;
  border: 1px solid rgba(133, 188, 255, 0.4);
  background: rgba(7, 30, 72, 0.62);
}

.profile-role-switch.is-disabled {
  opacity: 0.78;
}

.profile-role-btn {
  border: 1px solid rgba(133, 188, 255, 0.34);
  background: rgba(7, 30, 72, 0.45);
  color: #d8eaff;
  border-radius: 999px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.38rem 0.75rem;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.profile-role-btn:hover {
  transform: translateY(-1px);
  background: rgba(10, 42, 96, 0.84);
  border-color: rgba(154, 206, 255, 0.56);
}

.profile-role-btn.is-active {
  color: #0e3558;
  border-color: rgba(204, 239, 255, 0.86);
  background: linear-gradient(130deg, #84e8ff, #4fd7ff);
  box-shadow: 0 4px 12px rgba(63, 200, 255, 0.28);
}

.profile-role-btn:disabled {
  cursor: default;
}

.field-label {
  color: #d2e5ff;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.field-input,
.field-select,
.field-textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(131, 187, 255, 0.4);
  background: rgba(6, 24, 58, 0.7);
  color: #ecf4ff;
  font: inherit;
  padding: 0.58rem 0.68rem;
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: #9eb8e2;
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  outline: 2px solid rgba(87, 200, 255, 0.38);
  border-color: rgba(140, 203, 255, 0.7);
}

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

.form-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.status-note {
  margin: 0;
  color: #b9d7ff;
  font-size: 0.84rem;
}

.status-note.is-error {
  color: #ffd3d3;
}

.status-note.is-success {
  color: #b9ffd9;
}

.form-locked {
  margin-top: 0.9rem;
  border-radius: 12px;
  border: 1px dashed rgba(140, 194, 255, 0.42);
  background: rgba(7, 28, 66, 0.55);
  padding: 0.92rem;
}

.locked-note {
  margin: 0;
  color: #d2e4ff;
  font-size: 0.9rem;
}

.board-controls {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.62rem;
  grid-template-columns: 1fr auto;
}

.search-input {
  min-width: 0;
}

.sector-filter {
  min-width: 180px;
}

.project-list {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.68rem;
}

.messaging-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.thread-list {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.6rem;
}

.thread-item {
  border-radius: 12px;
  border: 1px solid rgba(135, 189, 255, 0.33);
  background: linear-gradient(150deg, rgba(8, 34, 79, 0.9), rgba(5, 22, 54, 0.92));
  color: #e6f2ff;
  text-align: left;
  cursor: pointer;
  padding: 0.72rem;
  display: grid;
  gap: 0.2rem;
}

.thread-item:hover {
  border-color: rgba(154, 206, 255, 0.54);
}

.thread-item.is-active {
  border-color: rgba(145, 224, 194, 0.62);
  box-shadow: 0 0 0 1px rgba(42, 220, 183, 0.28);
}

.thread-item-title {
  font-weight: 700;
}

.thread-item-meta,
.thread-item-preview {
  color: #bdd7fb;
  font-size: 0.82rem;
}

.thread-messages {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.55rem;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 0.2rem;
}

.message-row {
  display: flex;
}

.message-row.self {
  justify-content: flex-end;
}

.message-row.peer {
  justify-content: flex-start;
}

.message-bubble {
  max-width: min(88%, 520px);
  border-radius: 12px;
  border: 1px solid rgba(136, 190, 255, 0.33);
  background: linear-gradient(150deg, rgba(8, 34, 79, 0.9), rgba(5, 22, 54, 0.92));
  padding: 0.65rem 0.72rem;
}

.message-row.self .message-bubble {
  border-color: rgba(90, 216, 176, 0.45);
  background: linear-gradient(150deg, rgba(11, 59, 64, 0.84), rgba(6, 41, 44, 0.88));
}

.message-author {
  margin: 0;
  font-size: 0.78rem;
  color: #9ac2f3;
}

.message-text {
  margin: 0.2rem 0 0;
  color: #e6f2ff;
}

.message-time {
  margin: 0.35rem 0 0;
  font-size: 0.74rem;
  color: #9cbfe8;
}

.project-card {
  border-radius: 14px;
  border: 1px solid rgba(135, 189, 255, 0.33);
  background: linear-gradient(150deg, rgba(8, 34, 79, 0.9), rgba(5, 22, 54, 0.92));
  padding: 0.9rem;
}

.project-top {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: start;
}

.project-title {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
}

.project-company {
  margin: 0.2rem 0 0;
  color: #b9d4fb;
  font-size: 0.9rem;
}

.project-budget {
  border-radius: 999px;
  background: linear-gradient(130deg, rgba(102, 224, 255, 0.94), rgba(53, 198, 255, 0.9));
  color: #052945;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.28rem 0.62rem;
}

.project-meta {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.meta-pill {
  border-radius: 999px;
  border: 1px solid rgba(143, 199, 255, 0.44);
  background: rgba(9, 33, 77, 0.64);
  color: #dceaff;
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  padding: 0.2rem 0.55rem;
}

.project-summary {
  margin: 0.62rem 0 0;
  color: #d8e8ff;
  font-size: 0.9rem;
}

.project-details-grid {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.project-details-item {
  border-radius: 12px;
  border: 1px solid rgba(143, 199, 255, 0.32);
  background: rgba(8, 32, 74, 0.48);
  padding: 0.58rem 0.65rem;
}

.project-details-label {
  margin: 0;
  color: #a8c8f3;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.project-details-value {
  margin: 0.26rem 0 0;
  color: #e8f3ff;
  font-size: 0.9rem;
  font-weight: 600;
  word-break: break-word;
}

.project-details-section-title {
  margin: 0.8rem 0 0.25rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #dcecff;
}

.project-footer {
  margin-top: 0.72rem;
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: center;
  flex-wrap: wrap;
}

.project-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  align-items: center;
}

.project-contact {
  border-radius: 999px;
  border: 1px solid rgba(143, 199, 255, 0.38);
  background: rgba(8, 32, 74, 0.62);
  color: #9ed4ff;
  text-decoration: none;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.22rem 0.58rem;
}

.project-contact:hover {
  text-decoration: none;
  background: rgba(10, 42, 98, 0.82);
}

.project-contact-whatsapp {
  color: #9dffd4;
  border-color: rgba(125, 224, 181, 0.38);
  background: rgba(7, 48, 39, 0.5);
}

.profile-avatar {
  border-radius: 999px;
  border: 1px solid rgba(143, 199, 255, 0.44);
  background: rgba(9, 33, 77, 0.64);
  color: #dceaff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.profile-avatar-sm {
  width: 34px;
  height: 34px;
}

.profile-avatar-lg {
  width: 72px;
  height: 72px;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-avatar-initials {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.profile-avatar-sm .profile-avatar-initials {
  font-size: 0.74rem;
}

.profile-avatar-lg .profile-avatar-initials {
  font-size: 1.1rem;
}

.interest-group {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.interest-button {
  border: 1px solid rgba(135, 193, 255, 0.5);
  background: rgba(7, 30, 72, 0.8);
  color: #e3efff;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  padding: 0.34rem 0.75rem;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease;
}

.interest-button:hover {
  transform: translateY(-1px);
  background: rgba(9, 42, 96, 0.88);
}

.interest-button:disabled {
  cursor: not-allowed;
  transform: none;
  opacity: 0.62;
  background: rgba(8, 31, 73, 0.58);
}

.interest-count {
  color: #cbe0ff;
  font-size: 0.82rem;
}

.empty-state {
  border-radius: 14px;
  border: 1px dashed rgba(145, 199, 255, 0.42);
  background: rgba(6, 24, 58, 0.54);
  color: #d4e7ff;
  padding: 0.95rem;
  font-size: 0.92rem;
}

.is-hidden {
  display: none !important;
}

body.modal-open {
  overflow: hidden;
}

.auth-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(3, 14, 36, 0.66);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.auth-modal-card {
  width: min(430px, 100%);
  border-radius: 20px;
  border: 1px solid rgba(209, 227, 255, 0.8);
  background: #ffffff;
  color: #1f1f1f;
  padding: 1rem 1rem 1.1rem;
  box-shadow: 0 20px 48px rgba(2, 10, 28, 0.4);
  position: relative;
}

.auth-modal-close {
  position: absolute;
  top: 0.55rem;
  right: 0.62rem;
  border: 0;
  background: transparent;
  color: #606367;
  font-size: 1.15rem;
  cursor: pointer;
}

.auth-modal-brand {
  display: flex;
  gap: 0.04rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.google-letter.blue {
  color: #4285f4;
}

.google-letter.red {
  color: #ea4335;
}

.google-letter.yellow {
  color: #fbbc05;
}

.google-letter.green {
  color: #34a853;
}

.auth-modal-tag {
  margin: 0.45rem 0 0;
  color: #5f6368;
  font-size: 0.77rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.auth-modal-title {
  margin: 0.7rem 0 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #202124;
}

.auth-modal-copy {
  margin: 0.42rem 0 0.9rem;
  color: #5f6368;
  font-size: 0.9rem;
}

.auth-modal-card .field-label {
  color: #5f6368;
}

.auth-modal-card .field-input {
  border-color: #dadce0;
  background: #ffffff;
  color: #202124;
}

.auth-modal-card .field-select {
  border-color: #dadce0;
  background: #ffffff;
  color: #202124;
  padding: 0.58rem 0.68rem;
}

.auth-modal-card .field-input::placeholder {
  color: #9aa0a6;
}

.auth-modal-card .field-input:focus {
  outline: 2px solid rgba(26, 115, 232, 0.28);
  border-color: #1a73e8;
}

.auth-modal-card .btn-primary {
  color: #ffffff;
  background: #1a73e8;
  box-shadow: none;
}

.auth-modal-card .btn-primary:hover {
  background: #1765cc;
}

.auth-modal-card .btn-secondary {
  border-color: #dadce0;
  background: #ffffff;
  color: #3c4043;
}

.auth-modal-card .btn-secondary:hover {
  background: #f8f9fa;
}

.modal-actions {
  margin-top: 0.8rem;
}

.auth-submit {
  min-width: 130px;
}

.auth-google-demo {
  min-width: 210px;
}

.auth-modal-status {
  min-height: 1.2rem;
  color: #5f6368;
}

.auth-modal-status.is-error {
  color: #d93025;
}

.auth-modal-status.is-success {
  color: #188038;
}

.auth-switch {
  margin-top: 0.7rem;
  border: 0;
  background: transparent;
  color: #1a73e8;
  font: inherit;
  font-size: 0.9rem;
  padding: 0;
  cursor: pointer;
}

.auth-switch:hover {
  text-decoration: underline;
}

.auth-help-row {
  margin-top: 0.55rem;
  display: flex;
  justify-content: flex-end;
}

.auth-help-link {
  color: #1a73e8;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
}

body[data-theme="light"] .auth-help-link {
  color: #1a4f84;
}

.closing-ribbon {
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
  padding: 1.05rem;
  text-align: center;
  background: linear-gradient(144deg, rgba(12, 63, 130, 0.9), rgba(7, 38, 88, 0.92));
}

.closing-ribbon-text {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(1.02rem, 1.9vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.site-footer {
  border-top: 1px solid rgba(131, 186, 255, 0.28);
  color: #b5cdee;
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem 0 1.7rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.35rem;
}

.footer-links a {
  color: #cbe0ff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  border-bottom-color: currentColor;
}

.footer-contact {
  margin: 0.2rem 0 0.35rem;
}

.cookie-consent {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: min(560px, calc(100% - 2rem));
  border-radius: 18px;
  border: 1px solid rgba(142, 196, 255, 0.38);
  background: linear-gradient(160deg, rgba(7, 30, 72, 0.96), rgba(5, 24, 58, 0.94));
  box-shadow: 0 18px 40px rgba(2, 10, 28, 0.5);
  padding: 0.9rem 1rem;
  z-index: 80;
  display: grid;
  gap: 0.62rem;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.cookie-consent.is-closing {
  opacity: 0;
  transform: translateY(8px);
}

.cookie-consent-title {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #edf5ff;
}

.cookie-consent-copy {
  margin: 0;
  color: #c9dcff;
  font-size: 0.88rem;
  line-height: 1.4;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.cookie-consent .btn {
  min-width: 140px;
}

body[data-theme="light"] .brand-title,
body[data-theme="light"] .hero-title,
body[data-theme="light"] .guide-title,
body[data-theme="light"] .structure-title,
body[data-theme="light"] .vision-title,
body[data-theme="light"] .level-title,
body[data-theme="light"] .level-group-title,
body[data-theme="light"] .roadmap-title,
body[data-theme="light"] .roadmap-phase,
body[data-theme="light"] .monetization-title,
body[data-theme="light"] .marketplace-title,
body[data-theme="light"] .block-title,
body[data-theme="light"] .step-title,
body[data-theme="light"] .lane-title,
body[data-theme="light"] .project-title,
body[data-theme="light"] .outcomes-title,
body[data-theme="light"] .closing-ribbon-text {
  color: #112d4f;
}

body[data-theme="light"] .brand-subtitle,
body[data-theme="light"] .hero-description,
body[data-theme="light"] .guide-subtitle,
body[data-theme="light"] .structure-subtitle,
body[data-theme="light"] .vision-text,
body[data-theme="light"] .roadmap-subtitle,
body[data-theme="light"] .roadmap-focus,
body[data-theme="light"] .roadmap-goal,
body[data-theme="light"] .roadmap-summary,
body[data-theme="light"] .level-bullet,
body[data-theme="light"] .roadmap-bullet,
body[data-theme="light"] .monetization-formula,
body[data-theme="light"] .marketplace-subtitle,
body[data-theme="light"] .metric-label,
body[data-theme="light"] .lane-caption,
body[data-theme="light"] .step-detail,
body[data-theme="light"] .project-company,
body[data-theme="light"] .project-summary,
body[data-theme="light"] .outcomes-item,
body[data-theme="light"] .markets-label,
body[data-theme="light"] .home-checklist,
body[data-theme="light"] .home-faq-item p,
body[data-theme="light"] .home-trust-line,
body[data-theme="light"] .auth-signed-in,
body[data-theme="light"] .locked-note,
body[data-theme="light"] .status-note,
body[data-theme="light"] .site-footer {
  color: #455f84;
}

body[data-theme="light"] .panel,
body[data-theme="light"] .hero-copy,
body[data-theme="light"] .home-card,
body[data-theme="light"] .home-feature-card,
body[data-theme="light"] .home-faq-item,
body[data-theme="light"] .metric-card,
body[data-theme="light"] .lane-card,
body[data-theme="light"] .step-card,
body[data-theme="light"] .project-form,
body[data-theme="light"] .project-board,
body[data-theme="light"] .project-card,
body[data-theme="light"] .outcomes-card,
body[data-theme="light"] .vision-card,
body[data-theme="light"] .level-card,
body[data-theme="light"] .roadmap-card,
body[data-theme="light"] .monetization-card,
body[data-theme="light"] .closing-ribbon {
  border-color: rgba(97, 136, 178, 0.24);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.96));
  box-shadow: 0 14px 28px rgba(32, 74, 128, 0.1);
}

body[data-theme="light"] .auth-gate,
body[data-theme="light"] .form-locked {
  border-color: rgba(97, 136, 178, 0.24);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.96));
}

body[data-theme="light"] .cookie-consent {
  border-color: rgba(97, 136, 178, 0.3);
  background: linear-gradient(156deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 255, 0.95));
  box-shadow: 0 14px 28px rgba(32, 74, 128, 0.16);
}

body[data-theme="light"] .cookie-consent-title {
  color: #16395f;
}

body[data-theme="light"] .cookie-consent-copy {
  color: #3f618c;
}

body[data-theme="light"] .header-shell {
  border-color: rgba(97, 136, 178, 0.28);
  background: linear-gradient(156deg, rgba(255, 255, 255, 0.96), rgba(242, 249, 255, 0.92));
  box-shadow: 0 12px 24px rgba(28, 73, 127, 0.14);
}

body[data-theme="light"] .phase-pill,
body[data-theme="light"] .theme-toggle {
  border-color: rgba(97, 145, 199, 0.42);
  background: rgba(240, 247, 255, 0.98);
  color: #1f4d7a;
}

body[data-theme="light"] .header-page-indicator {
  border-color: rgba(97, 145, 199, 0.34);
  background: rgba(240, 247, 255, 0.94);
  color: #245786;
}

body[data-theme="light"] .main-nav-link {
  border-color: rgba(97, 145, 199, 0.34);
  background: rgba(240, 247, 255, 0.94);
  color: #1f4f7c;
}

body[data-theme="light"] .main-nav-link:hover {
  background: rgba(228, 240, 255, 0.98);
  border-color: rgba(91, 152, 212, 0.44);
}

body[data-theme="light"] .main-nav-link.is-active {
  color: #083a66;
  border-color: rgba(91, 152, 212, 0.55);
  background: linear-gradient(135deg, #9ee8ff, #73d4ff);
}

body[data-theme="light"] .hero-eyebrow {
  color: #2f5f93;
}

body[data-theme="light"] .lane-arrow {
  color: #4c73a6;
}

body[data-theme="light"] .btn-primary {
  color: #ffffff;
  background: linear-gradient(136deg, #1a73e8, #2a8cff);
  box-shadow: 0 10px 18px rgba(26, 115, 232, 0.22);
}

body[data-theme="light"] .btn-primary:hover {
  background: linear-gradient(136deg, #1769d6, #2480ec);
}

body[data-theme="light"] .btn-secondary,
body[data-theme="light"] .interest-button {
  border-color: rgba(103, 155, 211, 0.4);
  background: rgba(232, 242, 255, 0.92);
  color: #1d4773;
}

body[data-theme="light"] .btn-danger {
  border-color: rgba(221, 122, 145, 0.54);
  background: rgba(255, 231, 236, 0.96);
  color: #7a1f35;
}

body[data-theme="light"] .btn-danger:hover {
  background: rgba(255, 220, 227, 0.98);
}

body[data-theme="light"] .btn-secondary:hover,
body[data-theme="light"] .interest-button:hover {
  background: rgba(220, 236, 255, 0.98);
}

body[data-theme="light"] .field-input,
body[data-theme="light"] .field-select,
body[data-theme="light"] .field-textarea {
  border-color: rgba(105, 161, 219, 0.42);
  background: rgba(248, 252, 255, 0.96);
  color: #123156;
}

body[data-theme="light"] .field-input::placeholder,
body[data-theme="light"] .field-textarea::placeholder {
  color: #6f8fb9;
}

body[data-theme="light"] .field-label,
body[data-theme="light"] .meta-pill,
body[data-theme="light"] .interest-count,
body[data-theme="light"] .project-contact,
body[data-theme="light"] .project-details-label {
  color: #355881;
}

body[data-theme="light"] .profile-avatar {
  border-color: rgba(107, 161, 216, 0.36);
  background: rgba(229, 240, 255, 0.88);
  color: #355881;
}

body[data-theme="light"] .profile-role-switch {
  border-color: rgba(97, 145, 199, 0.34);
  background: rgba(240, 247, 255, 0.94);
}

body[data-theme="light"] .profile-role-btn {
  border-color: rgba(97, 145, 199, 0.34);
  background: rgba(240, 247, 255, 0.94);
  color: #1f4f7c;
}

body[data-theme="light"] .profile-role-btn:hover {
  background: rgba(228, 240, 255, 0.98);
  border-color: rgba(91, 152, 212, 0.44);
}

body[data-theme="light"] .profile-role-btn.is-active {
  color: #083a66;
  border-color: rgba(91, 152, 212, 0.55);
  background: linear-gradient(135deg, #9ee8ff, #73d4ff);
}

body[data-theme="light"] .project-details-item {
  border-color: rgba(107, 161, 216, 0.36);
  background: rgba(229, 240, 255, 0.88);
}

body[data-theme="light"] .project-details-value,
body[data-theme="light"] .project-details-section-title {
  color: #173a61;
}

body[data-theme="light"] .home-faq-item summary {
  color: #173a61;
}

body[data-theme="light"] .home-faq-item summary::after {
  color: #336494;
}

body[data-theme="light"] .project-contact:hover {
  color: #1a4f84;
}

body[data-theme="light"] .project-contact {
  border-color: rgba(107, 161, 216, 0.36);
  background: rgba(229, 240, 255, 0.88);
}

body[data-theme="light"] .project-contact-whatsapp {
  color: #167e54;
  border-color: rgba(77, 171, 130, 0.42);
  background: rgba(223, 247, 235, 0.92);
}

body[data-theme="light"] .admin-tab {
  background: rgba(15, 46, 82, 0.06);
  border-color: rgba(15, 46, 82, 0.2);
  color: rgba(15, 46, 82, 0.95);
}

body[data-theme="light"] .admin-tab.is-active {
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.95), rgba(76, 141, 245, 0.95));
  border-color: rgba(15, 46, 82, 0.2);
  color: #ffffff;
}

body[data-theme="light"] .setting-row {
  color: rgba(15, 46, 82, 0.95);
}

body[data-theme="light"] .thread-item,
body[data-theme="light"] .message-bubble {
  border-color: rgba(97, 136, 178, 0.24);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.96));
  color: #123156;
}

body[data-theme="light"] .message-row.self .message-bubble {
  border-color: rgba(77, 171, 130, 0.42);
  background: rgba(223, 247, 235, 0.92);
}

body[data-theme="light"] .thread-item-meta,
body[data-theme="light"] .thread-item-preview,
body[data-theme="light"] .message-author,
body[data-theme="light"] .message-time,
body[data-theme="light"] .message-text {
  color: #355881;
}

body[data-theme="light"] .status-note.is-error {
  color: #b42318;
}

body[data-theme="light"] .status-note.is-success {
  color: #1f7a3f;
}

body[data-theme="light"] .auth-signed-in strong {
  color: #2a507a;
}

body[data-theme="light"] .site-footer {
  border-top-color: rgba(97, 136, 178, 0.34);
}

body[data-theme="light"] .footer-links a {
  color: #1f4f7c;
}

body[data-theme="light"] .footer-links a:hover {
  color: #143f67;
  border-bottom-color: currentColor;
}

body[data-theme="light"] .footer-contact {
  color: #2b5784;
}

body[data-theme="light"] .meta-pill {
  border-color: rgba(107, 161, 216, 0.36);
  background: rgba(229, 240, 255, 0.88);
}

body[data-theme="light"] .project-budget {
  color: #0c355a;
}

body[data-theme="light"] .empty-state {
  border-color: rgba(107, 161, 216, 0.4);
  background: rgba(236, 245, 255, 0.76);
  color: #3a5f89;
}

body[data-theme="light"] .how-strip {
  color: #2c4d74;
  background: rgba(228, 240, 255, 0.9);
  border-color: rgba(109, 163, 216, 0.4);
}

body[data-theme="light"] .flow-node {
  color: #1f4f7c;
  border-color: rgba(103, 155, 211, 0.4);
  background: rgba(228, 240, 255, 0.92);
}

body[data-theme="light"] .flow-arrow {
  color: #4c73a6;
}

body[data-theme="light"] .level-group {
  border-color: rgba(97, 136, 178, 0.24);
  background: rgba(242, 248, 255, 0.9);
}

body[data-theme="light"] .monetization-formula {
  color: #355881;
}

body[data-theme="light"] .down-arrow {
  background: linear-gradient(180deg, rgba(74, 165, 228, 0.95), rgba(56, 130, 207, 0.5));
}

body[data-theme="light"] .down-arrow::after {
  border-right-color: #4093d8;
  border-bottom-color: #4093d8;
}

body[data-theme="light"] .auth-modal-backdrop {
  background: rgba(62, 99, 143, 0.3);
}

body[data-theme="light"] .auth-modal-card .field-input {
  border-color: #dadce0;
  background: #ffffff;
  color: #202124;
}

body[data-theme="light"] .auth-modal-card .field-select {
  border-color: #dadce0;
  background: #ffffff;
  color: #202124;
}

body[data-theme="light"] .auth-modal-card .btn-secondary {
  border-color: #dadce0;
  background: #ffffff;
  color: #3c4043;
}

body[data-theme="light"] .auth-modal-card .btn-secondary:hover {
  background: #f8f9fa;
}

.noscript-note {
  width: min(1140px, calc(100% - 2.6rem));
  margin: 0 auto 1.8rem;
  border-radius: 11px;
  border: 1px solid rgba(255, 188, 120, 0.54);
  background: rgba(80, 45, 17, 0.5);
  color: #ffe4bf;
  padding: 0.75rem;
}

[data-animate] {
  opacity: 0;
  transform: translateY(15px);
  filter: blur(3px);
}

body.ready [data-animate] {
  animation: reveal 0.66s cubic-bezier(0.2, 0.84, 0.24, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
    filter: none;
  }

  body.ready [data-animate] {
    animation: none;
  }
}

@media (max-width: 1020px) {
  .header-top {
    align-items: flex-start;
  }

  .header-controls {
    justify-content: flex-start;
  }

  .main-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 0.12rem;
  }

  .main-nav::-webkit-scrollbar {
    height: 6px;
  }

  .main-nav::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(132, 191, 255, 0.45);
  }

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

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

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

  .messaging-layout {
    grid-template-columns: 1fr;
  }

  .directory-controls {
    grid-template-columns: 1fr 1fr;
  }

  .controls-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .admin-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .lane-grid,
  .steps-lane {
    grid-template-columns: 1fr;
  }

  .lane-arrow {
    min-height: 28px;
  }

  .lane-arrow::before {
    content: "v";
    font-size: 1.05rem;
  }

  .lane-arrow.step::before {
    content: "v";
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(1140px, calc(100% - 1.5rem));
  }

  .site-header {
    top: 0.32rem;
    padding-top: 0.72rem;
  }

  .header-shell {
    border-radius: 16px;
    padding: 0.68rem 0.7rem;
    gap: 0.55rem;
  }

  .header-top {
    gap: 0.6rem;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .header-controls {
    width: 100%;
    gap: 0.45rem;
    justify-content: space-between;
  }

  .header-page-indicator {
    font-size: 0.68rem;
    letter-spacing: 0.07em;
    padding: 0.38rem 0.6rem;
  }

  .main-nav {
    gap: 0.38rem;
  }

  .main-nav-link {
    font-size: 0.72rem;
    padding: 0.36rem 0.6rem;
  }

  .phase-pill,
  .theme-toggle {
    font-size: 0.72rem;
    padding: 0.44rem 0.72rem;
  }

  .cookie-consent {
    right: 0.7rem;
    bottom: 0.7rem;
    width: calc(100% - 1.4rem);
    border-radius: 14px;
    padding: 0.75rem 0.82rem;
  }

  .cookie-consent-actions {
    flex-direction: column;
  }

  .cookie-consent .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-copy,
  .home-overview,
  .phase-guide,
  .full-structure,
  .roadmap,
  .marketplace {
    padding: 1.2rem;
  }

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

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

  .home-feature-grid,
  .home-faq-list {
    grid-template-columns: 1fr;
  }

  .project-details-grid {
    grid-template-columns: 1fr;
  }

  .profile-picture-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .profile-role-switch {
    width: 100%;
    justify-content: space-between;
  }

  .profile-role-btn {
    flex: 1 1 0;
    text-align: center;
  }

  .board-controls {
    grid-template-columns: 1fr;
  }

  .sector-filter {
    min-width: 0;
  }

  .modal-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .auth-submit,
  .auth-google-demo {
    width: 100%;
    min-width: 0;
  }
}
