:root {
  --brand: #2b2623;
  --brand-light: #3d3430;
  --brand-muted: #6b5e59;
  --brand-faint: #9b8c87;
  --accent: #c8a96e;
  --accent-hover: #d4bb85;
  --accent-light: #e8d5a8;
  --accent-pale: rgba(200, 169, 110, 0.08);
  --accent-border: rgba(200, 169, 110, 0.25);
  --white: #ffffff;
  --off-white: #fafaf8;
  --surface: #f4f2ef;
  --border: rgba(43, 38, 35, 0.09);
  --border-med: rgba(43, 38, 35, 0.15);
  --border-strong: rgba(43, 38, 35, 0.2);
  --shadow-sm: 0 4px 20px rgba(43, 38, 35, 0.07);
  --shadow-md: 0 12px 48px rgba(43, 38, 35, 0.11);
  --shadow-lg: 0 24px 80px rgba(43, 38, 35, 0.14);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;

  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--brand-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(43, 38, 35, 0.25);
}

.btn-accent {
  background: var(--accent);
  color: var(--brand);
  padding: 0.95rem 2.1rem;
  font-size: 0.975rem;
  border-radius: 10px;
}

.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 169, 110, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
}

.btn-outline:hover {
  background: var(--brand);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--brand);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 0.95rem 2.1rem;
  font-size: 0.975rem;
  border-radius: 10px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--brand-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43, 38, 35, 0.25);
}

.btn-accent {
  background: var(--accent);
  color: var(--brand);
}

.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
}

.btn-outline:hover {
  background: var(--brand);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: #fff;
  color: #2b2623;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: 100px 0 100px;
}

@media (max-width: 767px) {
.hero {
  padding-bottom: 0;
}
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1800&q=80');
  background-size: cover;
  background-position: center 35%;
  filter: saturate(0.3) brightness(0.3);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      rgba(43, 38, 35, 0.97) 0%,
      rgba(43, 38, 35, 0.88) 42%,
      rgba(43, 38, 35, 0.45) 70%,
      rgba(43, 38, 35, 0.2) 100%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-bloom {
  position: absolute;
  top: -15%;
  right: -8%;
  z-index: 1;
  pointer-events: none;
  width: 750px;
  height: 750px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200, 169, 110, 0.12) 0%, transparent 58%);
}

.hero-split {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-num {

  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.3rem;
}

/* HERO RIGHT COLUMN: Floating dashboard cards */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  animation: heroFloat 7s ease-in-out infinite;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(0.2deg);
  }
}

.hcard {
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.55), 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hc-bar {
  background: rgba(43, 38, 35, 0.75);
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hcd {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.hcd-r {
  background: #ff5f57;
}

.hcd-y {
  background: #febc2e;
}

.hcd-g {
  background: #28c840;
}

.hc-bar-title {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.38);
  margin-left: 0.4rem;
  font-weight: 500;
}

.hc-body {
  padding: 1.1rem;
}

.hc-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.hc-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 0.65rem 0.5rem;
  text-align: center;
}

.hcs-n {

  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hcs-l {
  font-size: 0.57rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.15rem;
}

.hc-task {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 7px;
  margin-bottom: 0.35rem;
}

.hc-task:last-of-type {
  margin-bottom: 0.7rem;
}

.hct-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hct-done {
  background: #22c55e;
}

.hct-prog {
  background: var(--accent);
}

.hct-todo {
  background: rgba(255, 255, 255, 0.22);
}

.hct-name {
  font-size: 0.69rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  flex: 1;
}

.hct-team {
  font-size: 0.59rem;
  color: rgba(255, 255, 255, 0.35);
}

.hc-prog {}

.hc-prog-lbl {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 0.28rem;
}

.hc-prog-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}

.hc-prog-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

/* Second smaller notification card */
.hcard-mini {
  background: rgba(200, 169, 110, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 169, 110, 0.22);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hcm-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  padding: 10px;
}

.hcm-text h2 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.hcm-text p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.hcm-badge {
  margin-left: auto;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  white-space: nowrap;
}

/* ── FEATURE NAV ── */
.feat-nav {
  background: #2b2623;
  /*position: sticky;
  top: 78px;*/
  z-index: 100;
  padding: 0 5vw;
}

@media (max-width: 375px) {
  .feat-nav {
    top: 65px;
  }
}

.feat-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.feat-nav-inner::-webkit-scrollbar {
  display: none;
}

.feat-tab {
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 4px solid transparent;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.feat-tab:hover {
  color: #c8a96e;
}

.feat-tab.active {
  color: #c8a96e;
  border-color: var(--accent);
  font-weight: 500;
}

/* ── SECTION COMMONS ── */
.feat-section {
  padding: 70px 0;
}

.feat-section-alt {
  background: var(--off-white);
}

.feat-section-dark {
  background: var(--brand);
}

.feat-inner {
  max-width: 1280px;
  margin: 0 auto;
  	padding: 0 2rem;
}

h2 {

  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--brand);
  margin-bottom: 1rem;
}

h2 em {
  font-style: italic;
  color: var(--accent);
}

.section-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--brand-muted);
  max-width: 600px;
}

/* ── FEATURE OVERVIEW GRID ── */
.feat-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.fo-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  cursor: default;
}

.fo-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.fo-card:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.fo-card:hover::after {
  transform: scaleX(1);
}

.fo-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  background: var(--accent-cyan);
}

.fo-icon img {
  max-width: 32px;
  width: 100%;
  max-height: 32px;
}

.fo-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.65rem;
}

.fo-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--brand-muted);
}

/* ── FEATURE SPLITS ── */
.feat-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.feat-split.reverse {
  direction: rtl;
}

.feat-split.reverse>* {
  direction: ltr;
}

.feat-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.feat-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: #6f6a65;
  margin-top: 1rem;
}

.feat-content h2 {
  margin-top: 0.5rem;
}

.feat-list {
  list-style: none;
  padding: 0;
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.875rem 1.1rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  color: var(--brand);
  line-height: 1.5;
  transition: all 0.2s;
}

.feat-list li:hover {
  border-color: var(--accent-border);
  background: var(--accent-pale);
}

.feat-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.feat-list-dark li {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

.feat-list-dark li:hover {
  border-color: rgba(200, 169, 110, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.feat-list-dark li::before {
  background: rgba(255, 255, 255, 0.08);
}

.feat-dark-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.internal-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(200, 169, 110, 0.4);
}

.collab-approved i {
  font-size: 13px;
  color: #4ade80;
  vertical-align: -1px;
}

.section-label-gold {
  color: rgba(200, 169, 110, 0.8);
}

.feat-lbl-gold {
  color: rgba(200, 169, 110, 0.8);
}

.h2-white {
  color: var(--white);
}

.panel-body-dark {
  background: var(--brand-light);
}

/* ── PANELS ── */
.feat-panel {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border-med);
  overflow: hidden; 
}

.feat-panel-container {
  overflow: auto;
}

.panel-topbar {
  background: var(--brand);
  padding: 0.85rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.pd {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pd-r {
  background: #ff5f57;
}

.pd-y {
  background: #febc2e;
}

.pd-g {
  background: #28c840;
}

.panel-ttl {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  margin-left: 0.5rem;
  font-weight: 500;
}

.panel-body {
  padding: 1.25rem;
  background: var(--off-white);
}

/* Kanban */
.kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

@media (max-width: 767px) {
  .kanban {
     grid-template-columns: 1fr;
  }
}

.k-col {
  background: var(--white);
  border-radius: 8px;
  padding: 0.75rem;
  border: 1px solid var(--border);
}

.k-col-h {
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-muted);
  margin-bottom: 0.6rem;
  display: flex;
  justify-content: space-between;
}

.k-count {
  background: var(--surface);
  padding: 0.1rem 0.4rem;
  border-radius: 100px;
  font-size: 0.6rem;
}

.k-card {
  background: var(--off-white);
  border-radius: 6px;
  padding: 0.6rem;
  margin-bottom: 0.4rem;
  border: 1px solid var(--border);
}

.k-card:last-child {
  margin-bottom: 0;
}

.k-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 0.3rem;
}

.k-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.k-tag {
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 100px;
}

.t-eng {
  background: rgba(59, 130, 246, 0.1);
  color: #1d4ed8;
}

.t-prod {
  background: rgba(200, 169, 110, 0.15);
  color: #7a5c1a;
}

.t-comp {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
}

.t-ops {
  background: rgba(168, 85, 247, 0.1);
  color: #7e22ce;
}

.k-prio {
  font-size: 0.58rem;
  color: var(--brand-faint);
}

/* Audit log */
.audit-row {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.audit-row:last-child {
  border-bottom: none;
}

.a-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  padding: 7px;
}

.a-text {
  font-size: 0.72rem;
  color: var(--brand);
  font-weight: 500;
  line-height: 1.4;
}

.a-text span {
  color: var(--accent);
  font-weight: 600;
}

.a-meta {
  font-size: 0.62rem;
  color: var(--brand-faint);
  margin-top: 0.2rem;
}

.a-badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  margin-left: auto;
  flex-shrink: 0;
  margin-top: 3px;
}

.ab-task {
  background: rgba(59, 130, 246, 0.1);
  color: #1d4ed8;
}

.ab-access {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
}

.ab-comment {
  background: rgba(200, 169, 110, 0.12);
  color: #7a5c1a;
}

.ab-status {
  background: rgba(168, 85, 247, 0.1);
  color: #7e22ce;
}

/* Progress bars */
.dp-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.dp-row:last-child {
  margin-bottom: 0;
}

.dp-label {
  font-size: 0.63rem;
  font-weight: 600;
  color: var(--brand-muted);
  width: 80px;
  flex-shrink: 0;
}

.dp-track {
  flex: 1;
  height: 6px;
  background: var(--surface);
  border-radius: 3px;
}

.dp-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--accent);
}

.dp-pct {
  font-size: 0.63rem;
  color: var(--brand-muted);
  width: 28px;
  text-align: right;
}

.dash-stat {
  background: var(--white);
  border-radius: 8px;
  padding: 0.75rem;
  border: 1px solid var(--border);
  text-align: center;
}

.dash-num {

  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
}

.dash-lbl {
  font-size: 0.6rem;
  color: var(--brand-muted);
  font-weight: 500;
  margin-top: 0.1rem;
}

/* Access table */
.access-table {
  width: 100%;
  border-collapse: collapse;
}

.access-table th {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-muted);
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.access-table td {
  padding: 0.55rem 0.75rem;
  font-size: 0.7rem;
  border-bottom: 1px solid var(--border);
}

.access-table tr:last-child td {
  border-bottom: none;
}

.role-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
}

.r-admin {
  background: rgba(43, 38, 35, 0.08);
  color: var(--brand);
}

.r-pm {
  background: rgba(200, 169, 110, 0.15);
  color: #7a5c1a;
}

.r-eng {
  background: rgba(59, 130, 246, 0.1);
  color: #1d4ed8;
}

.r-ops {
  background: rgba(168, 85, 247, 0.1);
  color: #7e22ce;
}

.p-yes {
  color: #22c55e;
  font-size: 0.85rem;
}

.p-no {
  color: #d1d5db;
  font-size: 0.85rem;
}

.p-part {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
}

/* Roadmap */
.q-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-muted);
  margin-bottom: 0.4rem;
}

.q-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.65rem;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border);
  margin-bottom: 0.35rem;
}

.q-item:last-child {
  margin-bottom: 0;
}

.q-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.q-dot.done {
  background: #22c55e;
}

.q-dot.prog {
  background: var(--accent);
}

.q-dot.plan {
  background: var(--border-strong);
}

.q-txt {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--brand);
  flex: 1;
}

.q-team {
  font-size: 0.6rem;
  color: var(--brand-faint);
}

.q-bar-wrap {
  height: 3px;
  background: var(--surface);
  border-radius: 2px;
  margin-top: 0.5rem;
}

.q-bar {
  height: 100%;
  border-radius: 2px;
  background: var(--accent);
}

/* Sprint panel */
.sprint-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--accent);
  padding: 3rem 5vw;
  text-align: center;
}

.cta-banner h3 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  font-size: 1rem;
  color: rgba(43, 38, 35, 0.65);
  margin-bottom: 1.75rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FINAL CTA ── */
.cta-final {
  background: var(--brand);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.cring1 {
  width: 350px;
  height: 350px;
}

.cring2 {
  width: 650px;
  height: 650px;
  border-color: rgba(255, 255, 255, 0.025);
}

.cring3 {
  width: 950px;
  height: 950px;
  border-color: rgba(255, 255, 255, 0.015);
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-final h2 {
  color: var(--white);
}

.cta-final h2 em {
  font-style: italic;
  color: var(--accent);
}

.cta-final p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin: 1.25rem 0 2.5rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 2rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

footer img {
  height: 26px;
}

footer p {
  font-size: 0.8125rem;
  color: var(--brand-muted);
}

footer nav a {
  color: var(--brand-muted);
  text-decoration: none;
  font-size: 0.8125rem;
  margin-left: 1.5rem;
  transition: color 0.2s;
}

footer nav a:hover {
  color: var(--brand);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-left>* {
  animation: fadeUp 0.7s ease forwards;
  opacity: 0;
}

.hero-left> :nth-child(1) {
  animation-delay: 0.1s;
}

.hero-left> :nth-child(2) {
  animation-delay: 0.22s;
}

.hero-left> :nth-child(3) {
  animation-delay: 0.34s;
}

.hero-left> :nth-child(4) {
  animation-delay: 0.46s;
}

.hero-left> :nth-child(5) {
  animation-delay: 0.58s;
}


/* ── Audit log additions ── */
.a-icon i {
  font-size: 14px;
  color: var(--accent);
}

/* ── fo-icon override ── */
.fo-icon i {
  font-size: 20px;
  color: var(--white);
}

/* ── Collab panel styles ── */
.collab-msg {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.collab-msg-accent {
  background: rgba(200, 169, 110, 0.08);
  border-radius: 8px;
  padding: 0.75rem;
  border: 1px solid rgba(200, 169, 110, 0.2);
}

.collab-msg-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.collab-author {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
}

.collab-author-neutral {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.collab-time {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.35);
}

.collab-text {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.collab-mention {
  color: var(--accent);
}

.collab-approved {
  background: rgba(34, 197, 94, 0.07);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(34, 197, 94, 0.15);
  font-size: 0.67rem;
  color: rgba(255, 255, 255, 0.45);
}

.collab-approved i {
  font-size: 13px;
  color: #4ade80;
  vertical-align: -1px;
}

.section-label-gold {
  color: rgba(200, 169, 110, 0.8);
}

.feat-lbl-gold {
  color: rgba(200, 169, 110, 0.8);
}

.h2-white {
  color: var(--white);
}

.panel-body-dark {
  background: var(--brand-light);
}

/* ── Roadmap label margins ── */
.q-lbl-sm {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-muted);
  margin-bottom: 0.4rem;
}

/* ── Dashboard extras ── */
.dp-section-label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-muted);
  margin-bottom: 0.65rem;
}

/* ── Sprint panel ── */
.sprint-backlog-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-muted);
  margin-bottom: 0.4rem;
}

.sprint-pts {
  font-size: 0.6rem;
  color: var(--accent);
  font-weight: 600;
}

/* ── Panel white body ── */
.panel-body-white {
  padding: 1rem;
  background: var(--white);
}

/* ── Legend row ── */
.legend-row {
  font-size: 0.62rem;
  color: var(--brand-faint);
  margin-top: 0.75rem;
  display: flex;
  gap: 1rem;
}

/* ── Progress section ── */
.dash-progress-wrap {
  background: var(--white);
  border-radius: 8px;
  padding: 0.85rem;
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
}

/* ── Kanban tag accent ── */
.collab-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* ── Sprint mini stat grid ── */
.sprint-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

/* ── Progress wrap ── */
.prog-wrap {
  background: var(--white);
  border-radius: 8px;
  padding: 0.85rem;
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
}

/* ── Q progress text ── */
.q-prog-note {
  font-size: 0.62rem;
  color: var(--brand-faint);
  margin-top: 0.3rem;
}

/* ── Compliance pct ── */
.comp-pct-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.63rem;
  color: var(--brand-muted);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {

  .feat-split,
  .feat-split.reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    direction: ltr;
  }

  .feat-overview-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-right {
    display: none;
  }
}

@media (max-width: 767px) {
  .feat-section {
    padding: 50px 0;
  }
}

@media (max-width: 640px) {
  .feat-overview-grid {
    grid-template-columns: 1fr;
  }

  .nav-links a:not(.nav-pill) {
    display: none;
  }

  .hero-stats {
    gap: 1.75rem;
  }

  .hero-split {
    padding: 0 5vw 80px;
  }
}

@media (max-width: 320px) {
  .hero h1 {
    font-size: 1.75rem;
    letter-spacing: -0.02em;
  }

}