:root {
    --bg: #090909;
    --bg2: #0d0d0d;
    --panel: #121212;
    --panel2: #171717;
    --panel3: #202020;
    --line: #2b2b2b;
    --text: #f4f4f4;
    --muted: #a8a8a8;
    --soft: #d9d9d9;
    --accent: #8e8e8e;
    --blue: #6f6f6f;
    --good: #44c277;
    --shadow: 0 24px 80px rgba(0, 0, 0, .42);
    --radius-xs: 3px;
    --radius-sm: 5px;
    --radius-md: 7px;
    --radius-lg: 8px;
    --radius-xl: 10px;
}

* {
    box-sizing: border-box
}

button,
input,
select,
textarea,
.primary,
.secondary,
.login-btn,
.menu-btn,
.nav a,
.suite-nav a,
.footer-links a,
.page-panel,
.auth-card,
.suite-sidebar,
.suite-header,
.suite-section,
.application-panel,
.access-card,
.mod-card,
.empty-state,
.form-shell,
.review-card,
.notice {
    border-radius: var(--radius-md);
}


html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: radial-gradient(circle at 20% 0%, #161616 0, #090909 34%, #070707 100%);
    color: var(--text);
    font-family: Inter, system-ui, Segoe UI, Arial, sans-serif
}

a {
    text-decoration: none;
    color: inherit
}

.site-header {
    height: 78px;
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 42px;
    background: rgba(9, 9, 9, .78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: .25s
}

.site-header.scrolled {
    height: 66px;
    background: rgba(9, 9, 9, .94);
    box-shadow: 0 15px 45px rgba(0, 0, 0, .32)
}

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

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .35)
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05
}

.brand-text b {
    font-size: 15px
}

.brand-text small {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .08em;
    text-transform: uppercase
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px
}

.nav a {
    font-size: 13px;
    font-weight: 700;
    color: #d0d0d0;
    padding: 10px 12px;
    border-radius: 6px
}

.nav a:hover,
.nav a.active {
    background: rgba(255, 255, 255, .07);
    color: #fff
}

.login-btn {
    background: #e8e8e8 !important;
    color: #090909 !important;
    margin-left: 6px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, .08)
}

.menu-btn {
    display: none;
    background: #171717;
    color: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 9px 12px
}

.hero {
    min-height: 760px;
    padding: 150px 8vw 90px;
    position: relative;
    overflow: hidden
}

.hero-fresh {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .75fr);
    gap: 48px;
    align-items: center
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 9, 9, .98), rgba(9, 9, 9, .72)), url('/img/warren-bg.svg') center/cover;
    opacity: .9
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(45px);
    opacity: .32;
    animation: floaty 8s ease-in-out infinite
}

.orb-one {
    width: 240px;
    height: 240px;
    background: #3c424c;
    left: 12%;
    top: 22%
}

.orb-two {
    width: 220px;
    height: 220px;
    background: #4a5260;
    right: 20%;
    bottom: 18%;
    animation-delay: 1.8s
}

.hero-copy,
.overview-board {
    position: relative;
    z-index: 2
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #c3c9d3;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em
}

.hero h1 {
    max-width: 780px;
    font-size: clamp(42px, 6vw, 86px);
    line-height: .95;
    margin: 22px 0 24px;
    letter-spacing: -.07em
}

.hero h1:after {
    content: "";
    display: block;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #f1f2f4, #777777);
    border-radius: 6px;
    margin-top: 24px
}

.hero p {
    max-width: 690px;
    color: #c8c8c8;
    font-size: 18px;
    line-height: 1.8
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px
}

.primary,
.secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 14px
}

.primary {
    background: #f1f1f1;
    color: #080808;
    box-shadow: 0 18px 40px rgba(255, 255, 255, .12)
}

.secondary {
    border: 1px solid rgba(255, 255, 255, .13);
    background: rgba(255, 255, 255, .055);
    color: #fff
}

.trust-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px
}

.trust-row span {
    font-size: 12px;
    font-weight: 800;
    color: #c7c7c7;
    background: #111111;
    border: 1px solid var(--line);
    padding: 9px 12px;
    border-radius: 6px
}

.overview-board {
    background: linear-gradient(180deg, rgba(23, 23, 23, .95), rgba(14, 14, 14, .95));
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: 22px;
    box-shadow: var(--shadow);
    transform: none
}

.overview-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line)
}

.overview-logo {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: #171717;
    border: 1px solid rgba(255, 255, 255, .08);
    display: grid;
    place-items: center;
    overflow: hidden;
    flex: 0 0 auto
}

.overview-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px
}

.overview-head div {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    flex: 1
}

.overview-head small {
    color: var(--muted);
    font-size: 12px
}

.live-dot {
    font-size: 11px;
    font-weight: 900;
    color: #b0b0b0;
    background: #2b2b2b;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    padding: 7px 10px
}

.live-dot.online {
    color: #baffe0;
    background: rgba(68, 194, 119, .15);
    border-color: rgba(68, 194, 119, .38)
}

.overview-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 18px 0
}

.overview-metrics div {
    background: #101010;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px
}

.overview-metrics small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800
}

.overview-metrics b {
    font-size: 28px;
    margin-top: 8px;
    display: block
}

.overview-footer {
    background: #0e0e0e;
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 16px
}

.overview-footer span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    display: block
}

.overview-footer b {
    display: block;
    margin-top: 7px;
    color: #e6e6e6
}

.profile-overview {
    margin-top: 16px;
    background: #101010;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: center
}

.profile-overview>img {
    width: 58px;
    height: 58px;
    border-radius: 7px;
    object-fit: cover;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, .08)
}

.profile-main {
    min-width: 0
}

.profile-main small,
.profile-dates small {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em
}

.profile-main b {
    display: block;
    font-size: 18px;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.profile-main span {
    display: block;
    color: #c4cad4;
    font-size: 12px;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.profile-dates {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.profile-dates div {
    background: #0c0c0c;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 8px;
    padding: 12px
}

.profile-dates b {
    display: block;
    font-size: 13px;
    margin-top: 6px;
    color: #eeeeee
}

.profile-login {
    display: block;
    margin-top: 16px;
    background: #101010;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px 16px;
    color: #d8d8d8;
    font-size: 13px;
    font-weight: 800
}

.profile-login:hover {
    background: #151515
}

.stat-note {
    color: #aab2bf;
    font-size: 12px;
    line-height: 1.6;
    margin: 14px 4px 0
}

.section {
    padding: 100px 8vw;
    position: relative
}

.section-head {
    margin-bottom: 44px
}

.section-head.split {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end
}

.section-head h2 {
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1;
    margin: 16px 0 0;
    letter-spacing: -.045em
}

.section-head p {
    max-width: 460px;
    color: var(--muted);
    line-height: 1.7
}

.section-head.center {
    text-align: center
}

.timeline-shell {
    position: relative;
    max-width: 1060px;
    margin: 0 auto;
    padding: 18px 0 8px
}

.timeline-spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
    border-radius: 6px;
    overflow: hidden
}

.timeline-spine span {
    display: block;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, #f2f2f2, #858585);
    border-radius: 6px;
    box-shadow: 0 0 24px rgba(255, 255, 255, .12);
    transition: height .18s ease
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 74px 1fr;
    align-items: center;
    min-height: 178px
}

.timeline-item:nth-child(odd) .timeline-card {
    grid-column: 1;
    text-align: right
}

.timeline-item:nth-child(even) .timeline-card {
    grid-column: 3
}

.timeline-dot {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    z-index: 3;
    display: grid;
    place-items: center
}

.timeline-dot:before {
    content: "";
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 7px;
    background: #121212;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 18px 36px rgba(0, 0, 0, .28);
    transition: .3s ease
}

.timeline-dot span {
    position: relative;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: #e9e9e9;
    color: #090909;
    font-weight: 950;
    font-size: 13px
}

.timeline-card {
    position: relative;
    background: linear-gradient(180deg, #171717, #101010);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 7px;
    padding: 23px 24px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
    transition: transform .28s ease, border-color .28s ease, background .28s ease
}

.timeline-card:before {
    content: "";
    position: absolute;
    top: 50%;
    width: 38px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22));
    transform: translateY(-50%)
}

.timeline-item:nth-child(odd) .timeline-card:before {
    right: -38px
}

.timeline-item:nth-child(even) .timeline-card:before {
    left: -38px;
    transform: translateY(-50%) rotate(180deg)
}

.timeline-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px
}

.timeline-item:nth-child(odd) .timeline-meta {
    flex-direction: row-reverse
}

.timeline-meta span {
    color: #eef1f6;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .1em;
    text-transform: uppercase
}

.timeline-meta b {
    color: #8e8e8e;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase
}

.timeline-card h3 {
    font-size: 24px;
    letter-spacing: -.02em;
    margin: 0 0 10px
}

.timeline-card p {
    color: #b0b0b0;
    line-height: 1.72;
    margin: 0
}

.timeline-item.is-active .timeline-card {
    border-color: rgba(242, 244, 247, .24);
    background: linear-gradient(180deg, #1b1b1b, #111111);
    transform: translateY(-4px)
}

.timeline-item.is-active .timeline-dot:before {
    border-color: rgba(242, 244, 247, .34);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .34), 0 0 0 8px rgba(255, 255, 255, .035)
}

.founders-section {
    padding-top: 60px
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.founder-card{
    background:#121212;
    border:1px solid var(--line);
    border-radius: 7px;
    padding:24px;
    text-align:center;
    transition:.2s ease;
}

.founder-card:hover{
    transform:translateY(-4px);
}

.founder-avatar{
    width:140px;
    height:140px;
    margin:0 auto 18px;
    border-radius: 7px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    background:#0f0f0f;
}

.founder-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

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

.founder-title{
    margin-top:6px;
    color:#9ca6b5;
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.founder-avatar span {
  color: #f4f5f7;
  font-size: 20px;
  font-weight: 900;
}

.founder-info {
  min-width: 0;
  flex: 1;
}

.founder-card p{
    margin-top:16px;
    color:#b8b8b8;
    line-height:1.7;
    font-size:14px;
}
.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 8vw;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: #0a0e14;
    color: #b0b0b0
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    font-weight: 600
}

.footer-mark {
    width: 44px;
    height: 44px;
    border-radius: 7px;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, .08);
    display: grid;
    place-items: center;
    overflow: hidden;
    flex: 0 0 auto
}

.footer-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px
}

.footer-links a {
    font-size: 13px;
    font-weight: 800;
    color: #e6e6e6;
    background: #111111;
    border: 1px solid var(--line);
    padding: 11px 16px;
    border-radius: 7px
}

.footer-links a:hover {
    background: #181818;
    border-color: #3a3a3a
}

.page {
    padding: 130px 8vw 90px;
    min-height: calc(100vh - 120px)
}

.page-panel {
    max-width: 960px;
    margin: auto;
    background: #121212;
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 34px;
    box-shadow: var(--shadow)
}

.page-panel h1 {
    font-size: 42px;
    margin: 0 0 14px
}

.page-panel p,
.page-panel li {
    color: #b8b8b8;
    line-height: 1.8
}

.center-page {
  min-height: calc(100vh - 120px);
  padding: 140px 8vw 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-page {
  min-height: calc(100vh - 120px);
  padding: 150px 8vw 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.06), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255,255,255,.04), transparent 34%);
}

.auth-card {
  width: min(520px, 100%);
  background: linear-gradient(180deg, #171717, #101010);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  padding: 42px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.36);
}

.auth-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 6px;
  background: #0d0d0d;
  border: 1px solid var(--line);
  color: #c9c9c9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
}

.auth-logo {
  width: 84px;
  height: 84px;
  margin: 26px auto 20px;
  border-radius: 8px;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.09);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.auth-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.auth-card h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -.045em;
}

.auth-card p {
  max-width: 410px;
  margin: 16px auto 0;
  color: #b0b0b0;
  line-height: 1.7;
}

.auth-discord-btn {
  margin-top: 30px;
  width: 100%;
  min-height: 54px;
  border-radius: 8px;
  background: #f1f1f1;
  color: #080808;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 950;
  box-shadow: 0 18px 40px rgba(255,255,255,.1);
}

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

.auth-icon {
  font-size: 12px;
}

.auth-note {
  margin-top: 18px;
  color: #8e8e8e;
  font-size: 12px;
  line-height: 1.6;
}

.suite-dashboard {
  min-height: calc(100vh - 120px);
  padding: 120px 6vw 80px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
}

.suite-sidebar {
  position: sticky;
  top: 96px;
  height: fit-content;
  background: #111111;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.suite-user {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.suite-user img {
  width: 52px;
  height: 52px;
  border-radius: 7px;
  object-fit: cover;
}

.suite-user b,
.suite-user span {
  display: block;
}

.suite-user span {
  color: var(--muted);
  font-size: 12px;
}

.suite-nav {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.suite-nav a {
  padding: 12px 14px;
  border-radius: 8px;
  color: #c9c9c9;
  font-weight: 800;
  font-size: 13px;
}

.suite-nav a:hover,
.suite-nav a.active {
  background: #1a1a1a;
  color: #fff;
}

.suite-logout {
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  background: #181818;
  color: #e0e0e0;
  border: 1px solid var(--line);
  font-weight: 900;
}

.suite-content {
  min-width: 0;
}

.suite-header {
  background: linear-gradient(180deg, #171717, #101010);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.suite-header h1 {
  margin: 14px 0 10px;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -.05em;
}

.suite-header p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
}

.access-status {
  min-width: 220px;
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 18px;
  height: fit-content;
}

.access-status small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.access-status b {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

.access-status.approved {
  border-color: rgba(68, 194, 119, .35);
}

.suite-section {
  margin-top: 24px;
  background: #111111;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.section-title h2 {
  margin: 0;
  font-size: 28px;
}

.section-title p {
  color: var(--muted);
  margin: 8px 0 22px;
}

.application-panel {
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.application-panel h3 {
  margin: 0 0 8px;
}

.application-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.access-card,
.data-grid div {
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 20px;
}

.access-card span,
.data-grid small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.access-card b,
.data-grid b {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 24px;
}

.access-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.mod-list {
  display: grid;
  gap: 12px;
}

.mod-card {
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.mod-card span {
  color: #c9c9c9;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.mod-card h3 {
  margin: 6px 0;
}

.mod-card p,
.empty-state p {
  color: var(--muted);
}

.empty-state {
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 24px;
}

@media (max-width: 980px) {
  .suite-dashboard {
    grid-template-columns: 1fr;
  }

  .suite-sidebar {
    position: static;
  }

  .suite-header,
  .application-panel {
    flex-direction: column;
  }

  .access-grid,
  .data-grid {
    grid-template-columns: 1fr;
  }
}

.error-page {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, .06), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, .04), transparent 34%);
}

.error-panel {
  width: min(620px, 100%);
  background: linear-gradient(180deg, #171717, #101010);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 8px;
  padding: 42px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
}

.error-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 64px;
  margin-bottom: 22px;
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #f4f5f7;
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -.04em;
}

.error-panel h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -.04em;
}

.error-panel p {
  max-width: 430px;
  margin: 16px auto 0;
  color: #b0b0b0;
  line-height: 1.7;
}

.error-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.login-panel {
    max-width: 520px;
    text-align: center
}

.suite-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px
}

.suite-card {
    background: #0f0f0f;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px
}

.suite-card small {
    color: var(--muted)
}

.suite-card b {
    display: block;
    font-size: 24px;
    margin-top: 7px
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.delay {
    transition-delay: .16s
}

@keyframes floaty {

    0%,
    100% {
        transform: translate3d(0, 0, 0)
    }

    50% {
        transform: translate3d(15px, -20px, 0)
    }
}

@media(max-width:980px) {
    .hero-fresh {
        grid-template-columns: 1fr
    }

    .overview-board {
        transform: none
    }

    .timeline-shell {
        padding-left: 10px
    }

    .timeline-spine {
        left: 27px;
        transform: none
    }

    .timeline-item {
        grid-template-columns: 58px 1fr;
        min-height: 0;
        margin-bottom: 18px
    }

    .timeline-dot {
        grid-column: 1
    }

    .timeline-item:nth-child(odd) .timeline-card,
    .timeline-item:nth-child(even) .timeline-card {
        grid-column: 2;
        text-align: left
    }

    .timeline-card:before,
    .timeline-item:nth-child(odd) .timeline-card:before,
    .timeline-item:nth-child(even) .timeline-card:before {
        left: -28px;
        right: auto;
        width: 28px;
        transform: translateY(-50%) rotate(180deg)
    }

    .timeline-item:nth-child(odd) .timeline-meta {
        flex-direction: row
    }

.founder-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
    max-width:1100px;
    margin:0 auto;
}

    .section-head.split {
        display: block
    }

    .suite-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:760px) {
    .site-header {
        padding: 0 18px
    }

    .brand-text small {
        display: none
    }

    .menu-btn {
        display: block
    }

    .nav {
        position: fixed;
        top: 76px;
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: #101010;
        border: 1px solid var(--line);
        border-radius: 7px;
        padding: 12px
    }

    .nav.open {
        display: flex
    }

    .hero {
        padding: 128px 22px 70px
    }

    .section {
        padding: 76px 22px
    }

    .hero h1 {
        font-size: 42px
    }

    .overview-metrics {
        grid-template-columns: 1fr
    }

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

    .footer-brand {
        flex-wrap: wrap
    }

    .founder-avatar {
        width: 72px;
        height: 72px;
        overflow: hidden;
        border-radius: 8px;
        flex-shrink: 0;
        border: 1px solid rgba(255, 255, 255, .08);
        background: rgba(255, 255, 255, .04);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .founder-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .footer-links {
        width: 100%;
        justify-content: flex-start
    }

    .profile-dates {
        grid-template-columns: 1fr
    }
}

/* WarrenConnect polished session/dashboard updates */
.nav a {
  position: relative;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.nav a:hover {
  transform: translateY(-1px);
}

.login-btn {
  border: 1px solid rgba(255,255,255,.14);
}

.suite-dashboard-pro {
  position: relative;
}

.suite-dashboard-pro:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,.055), transparent 28%),
    radial-gradient(circle at 82% 26%, rgba(255,255,255,.035), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.012), transparent 38%);
}

.suite-sidebar {
  overflow: hidden;
}

.suite-sidebar:before {
  content: "";
  display: block;
  height: 3px;
  margin: -18px -18px 18px;
  background: linear-gradient(90deg, #777777, #e8e8e8, #777777);
  opacity: .7;
}

.sidebar-status {
  margin-top: 14px;
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 13px;
}

.sidebar-status small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sidebar-status b {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #f2f2f2;
}

.sidebar-status.approved {
  border-color: rgba(68,194,119,.28);
  background: linear-gradient(180deg, rgba(68,194,119,.08), #0d0d0d);
}

.sidebar-status.pending {
  border-color: rgba(255,255,255,.12);
}

.suite-nav-pro a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.suite-nav-pro a span {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: #5f5f5f;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.suite-nav-pro a.active span,
.suite-nav-pro a:hover span {
  background: #eeeeee;
}

.suite-hero-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.suite-hero-card:before {
  content: "";
  position: absolute;
  right: -90px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.09), transparent 62%);
  z-index: -1;
  animation: suitePulse 7s ease-in-out infinite;
}

.access-status span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 8px;
  line-height: 1.5;
}

.access-status.pending {
  border-color: rgba(255,255,255,.14);
}

.suite-section {
  animation: sectionFloatIn .55s ease both;
}

.suite-section:nth-of-type(2) { animation-delay: .05s; }
.suite-section:nth-of-type(3) { animation-delay: .1s; }
.suite-section:nth-of-type(4) { animation-delay: .15s; }

.panel-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #c9cfd8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.application-panel-large {
  min-height: 170px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.045), transparent 42%),
    #0d0d0d;
}

.access-card {
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.access-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
  background: #121720;
}

.access-card b {
  font-size: 21px;
}

.data-grid-pro {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.data-grid-pro div {
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}

.data-grid-pro div:after {
  content: "";
  position: absolute;
  inset: auto 16px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  opacity: 0;
  transition: opacity .2s ease;
}

.data-grid-pro div:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.16);
}

.data-grid-pro div:hover:after {
  opacity: 1;
}

.clean-empty {
  background:
    linear-gradient(135deg, rgba(255,255,255,.035), transparent 40%),
    #0d0d0d;
}

.mod-card {
  transition: transform .2s ease, border-color .2s ease;
}

.mod-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.16);
}

@keyframes suitePulse {
  0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: .85; }
  50% { transform: translate3d(-18px,18px,0) scale(1.05); opacity: 1; }
}

@keyframes sectionFloatIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  .data-grid-pro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .data-grid-pro {
    grid-template-columns: 1fr;
  }

  .suite-dashboard {
    padding: 110px 18px 70px;
  }
}

/* WarrenConnect Staff, Applications, Appeals Upgrade */
.form-page,
.staff-page {
  min-height: calc(100vh - 120px);
  padding: 120px 6vw 80px;
}

.form-shell {
  width: min(860px, 100%);
  margin: 0 auto;
  background: linear-gradient(180deg, #171717, #101010);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  box-shadow: 0 24px 80px rgba(0,0,0,.32);
  position: relative;
  overflow: hidden;
}

.form-shell:before,
.staff-content .suite-hero-card:before,
.suite-section:before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  pointer-events: none;
}

.form-head h1 {
  margin: 14px 0 10px;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -.055em;
}

.form-head p {
  color: var(--muted);
  max-width: 680px;
  line-height: 1.7;
}

.pro-form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.pro-form label {
  display: grid;
  gap: 8px;
  color: #d8dde6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pro-form label small {
  color: var(--muted);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.pro-form input,
.pro-form select,
.pro-form textarea,
.inline-form select,
.appeal-status-form select,
.appeal-status-form input {
  width: 100%;
  border: 1px solid var(--line);
  background: #0d0d0d;
  color: var(--text);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  outline: none;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.pro-form textarea { resize: vertical; min-height: 110px; }

.pro-form input:focus,
.pro-form select:focus,
.pro-form textarea:focus,
.appeal-status-form input:focus {
  border-color: rgba(255,255,255,.22);
  background: #10151d;
  box-shadow: 0 0 0 4px rgba(255,255,255,.035);
}

.check-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 12px !important;
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 15px;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 13px !important;
  line-height: 1.5;
}

.check-row input { width: auto; margin-top: 3px; }

.notice {
  margin: 18px 0 0;
  border-radius: 7px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid var(--line);
  background: #0d0d0d;
}

.notice.success { border-color: rgba(68,194,119,.35); color: #baffe0; }
.notice.error { border-color: rgba(237,66,69,.45); color: #ffd1d1; }

.application-status-card {
  margin-top: 20px;
  display: grid;
  gap: 5px;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 7px;
  padding: 18px;
}

.application-status-card small,
.application-status-card span {
  color: var(--muted);
  font-size: 12px;
}

.application-status-card b { font-size: 24px; }

.staff-page {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
}

.staff-sidebar {
  position: sticky;
  top: 96px;
  height: fit-content;
  background: #111111;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}

.staff-content { min-width: 0; display: grid; gap: 24px; }
.staff-content .suite-section { margin-top: 0; position: relative; overflow: hidden; }
.staff-action-form { margin-top: 0; }

.review-list {
  display: grid;
  gap: 14px;
}

.review-card {
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 18px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.16);
  background: #10151d;
}

.review-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.review-top span,
.review-body b,
.activity-platform {
  color: #c9c9c9;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.review-top h3 {
  margin: 6px 0;
  font-size: 22px;
}

.review-top p,
.review-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.review-body {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.inline-form,
.appeal-status-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.inline-form select { min-width: 130px; }
.appeal-status-form { margin-top: 16px; }
.appeal-status-form select { max-width: 160px; }

.small-action { margin-top: 14px; width: fit-content; }

.staff-preview-section .access-card {
  position: relative;
  overflow: hidden;
}

.staff-preview-section .access-card:before,
.access-card:before,
.data-grid-pro div:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
  opacity: .9;
}

.access-card,
.data-grid-pro div {
  position: relative;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.access-card:hover,
.data-grid-pro div:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.16);
  background: #10151d;
}

@media (max-width: 1060px) {
  .staff-page { grid-template-columns: 1fr; }
  .staff-sidebar { position: static; }
  .form-grid.three { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .form-page,
  .staff-page { padding: 100px 22px 70px; }
  .form-shell { padding: 24px; }
  .form-grid.two { grid-template-columns: 1fr; }
  .review-top,
  .inline-form,
  .appeal-status-form { flex-direction: column; align-items: stretch; }
  .appeal-status-form select { max-width: none; }
}

/* WarrenConnect interaction polish + custom dropdowns */
a,
button,
.primary,
.secondary,
.suite-logout,
.auth-discord-btn,
.profile-login,
.access-card,
.review-card button,
.inline-form button,
.appeal-status-form button,
select,
input[type="checkbox"],
input[type="radio"],
label[for] {
  cursor: pointer;
}

button:disabled,
a[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: .6;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  min-height: 46px;
  padding: 0 44px 0 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background:
    linear-gradient(45deg, transparent 50%, #c9c9c9 50%) calc(100% - 20px) 19px / 6px 6px no-repeat,
    linear-gradient(135deg, #c9c9c9 50%, transparent 50%) calc(100% - 15px) 19px / 6px 6px no-repeat,
    linear-gradient(180deg, #121720, #0d0d0d);
  color: #f4f5f7;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

select:hover {
  border-color: rgba(255,255,255,.18);
  background:
    linear-gradient(45deg, transparent 50%, #ffffff 50%) calc(100% - 20px) 19px / 6px 6px no-repeat,
    linear-gradient(135deg, #ffffff 50%, transparent 50%) calc(100% - 15px) 19px / 6px 6px no-repeat,
    linear-gradient(180deg, #181818, #0f141c);
}

select:focus,
input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,.28) !important;
  box-shadow: 0 0 0 4px rgba(255,255,255,.045);
}

select option {
  background: #0d0d0d;
  color: #f4f5f7;
  font-weight: 700;
}

.inline-form select,
.appeal-status-form select {
  flex: 0 0 160px;
}

.primary,
.secondary,
.suite-logout,
button {
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.primary:hover,
.secondary:hover,
.suite-logout:hover,
button:hover {
  transform: translateY(-1px);
}

.review-card form button,
.staff-action-form button,
.application-form button,
.appeal-form button,
.inline-form button,
.appeal-status-form button {
  cursor: pointer !important;
}

.notice.info {
  background: rgba(79, 140, 255, .08);
  border: 1px solid rgba(79, 140, 255, .22);
  color: #c9d9ff;
}

.mod-card .action-meta {
  display: block;
  margin-top: 6px;
  color: #8e8e8e;
  font-size: 12px;
}

/* Smooth animation pass */
:root {
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.22, .61, .36, 1);
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.site-header,
.overview-board,
.timeline-card,
.founder-card,
.suite-sidebar,
.suite-header,
.suite-section,
.form-shell,
.auth-card,
.review-card,
.access-card,
.data-grid div {
  will-change: transform, opacity;
}

.site-header {
  transition: height .32s var(--ease-out), background .32s var(--ease-out), box-shadow .32s var(--ease-out), border-color .32s var(--ease-out);
}

.primary,
.secondary,
.auth-discord-btn,
.login-btn,
.footer-links a,
.profile-login,
.suite-logout,
button {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.primary:after,
.secondary:after,
.auth-discord-btn:after,
.login-btn:after,
.footer-links a:after,
.profile-login:after,
.suite-logout:after,
button:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.18) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s var(--ease-out);
  pointer-events: none;
}

.primary:hover:after,
.secondary:hover:after,
.auth-discord-btn:hover:after,
.login-btn:hover:after,
.footer-links a:hover:after,
.profile-login:hover:after,
.suite-logout:hover:after,
button:hover:after {
  transform: translateX(120%);
}

.primary:hover,
.secondary:hover,
.auth-discord-btn:hover,
.login-btn:hover,
.footer-links a:hover,
.profile-login:hover,
.suite-logout:hover,
button:hover {
  transform: translateY(-2px);
}

.primary:active,
.secondary:active,
.auth-discord-btn:active,
.login-btn:active,
.footer-links a:active,
.profile-login:active,
.suite-logout:active,
button:active {
  transform: translateY(0) scale(.985);
}

.hero-copy.visible h1,
.hero-copy.visible p,
.hero-copy.visible .hero-actions,
.hero-copy.visible .trust-row {
  animation: heroLift .72s var(--ease-out) both;
}

.hero-copy.visible p { animation-delay: .08s; }
.hero-copy.visible .hero-actions { animation-delay: .16s; }
.hero-copy.visible .trust-row { animation-delay: .24s; }

.overview-board.visible {
  animation: cardEntrance .78s var(--ease-out) both;
}

.overview-metrics div,
.profile-overview,
.profile-login,
.founder-card,
.access-card,
.data-grid div,
.review-card,
.mod-card,
.application-panel,
.empty-state {
  transition:
    transform .28s var(--ease-out),
    border-color .28s var(--ease-out),
    background .28s var(--ease-out),
    box-shadow .28s var(--ease-out),
    opacity .28s var(--ease-out);
}

.overview-metrics div:hover,
.profile-overview:hover,
.founder-card:hover,
.access-card:hover,
.data-grid div:hover,
.review-card:hover,
.mod-card:hover,
.application-panel:hover,
.empty-state:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
}

.timeline-card {
  transform-origin: center;
  transition: transform .42s var(--ease-out), border-color .42s var(--ease-out), background .42s var(--ease-out), box-shadow .42s var(--ease-out);
}

.timeline-dot:before,
.timeline-dot span {
  transition: transform .42s var(--ease-out), border-color .42s var(--ease-out), box-shadow .42s var(--ease-out), background .42s var(--ease-out);
}

.timeline-item.is-active .timeline-dot span {
  transform: scale(1.06);
}

.timeline-item.is-active .timeline-card {
  box-shadow: 0 22px 58px rgba(0,0,0,.26);
}

.reveal {
  transform: translate3d(0, 28px, 0) scale(.985);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out), filter .75s var(--ease-out);
  filter: blur(6px);
}

.reveal.visible {
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal.visible.delay { transition-delay: .12s; }

.suite-sidebar.visible,
.suite-content.visible,
.auth-card.visible,
.form-page.visible,
.form-shell.visible {
  animation: cardEntrance .7s var(--ease-out) both;
}

.suite-nav a,
.nav a {
  transition: transform .22s var(--ease-out), background .22s var(--ease-out), color .22s var(--ease-out), box-shadow .22s var(--ease-out);
}

.suite-nav a:hover,
.nav a:hover {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}

.suite-section {
  animation: sectionFloatIn .65s var(--ease-out) both;
}

.form-shell:focus-within,
.auth-card:hover,
.overview-board:hover,
.suite-sidebar:hover,
.suite-header:hover,
.suite-section:hover {
  border-color: rgba(255,255,255,.14);
}

.form-shell,
.auth-card,
.overview-board,
.suite-sidebar,
.suite-header,
.suite-section {
  transition: transform .35s var(--ease-out), border-color .35s var(--ease-out), box-shadow .35s var(--ease-out);
}

.overview-board[data-tilt="true"],
.auth-card[data-tilt="true"],
.suite-hero-card[data-tilt="true"] {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--tilt-lift, 0));
}

@keyframes heroLift {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes cardEntrance {
  from { opacity: 0; transform: translate3d(0, 22px, 0) scale(.97); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

.archive-list {
  display: grid;
  gap: 16px;
}

.archive-card {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(13,18,28,.72);
  border-radius: 8px;
  padding: 18px;
  display: grid;
  gap: 14px;
  transition: transform .28s var(--ease-out), border-color .28s var(--ease-out), background .28s var(--ease-out);
}

.archive-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.28);
  background: rgba(18,25,39,.88);
}

.archive-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.archive-top span,
.archive-meta span {
  color: var(--muted);
  font-size: .82rem;
}

.archive-top h3 {
  margin: 6px 0 5px;
  color: var(--text);
}

.archive-top p,
.archive-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.archive-state {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.archive-state.active {
  color: #9fc1ff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
}

.archive-state.inactive {
  color: #d8d8d8;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}

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

.archive-meta span {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
  border-radius: 8px;
  padding: 7px 10px;
}

.archive-body {
  display: grid;
  gap: 6px;
  padding-top: 4px;
}

.archive-body b {
  color: var(--text);
  font-size: .88rem;
}

.department-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(310px,1fr));gap:18px}.department-card{background:linear-gradient(180deg,var(--panel2),var(--panel));border:1px solid var(--line);border-radius:22px;padding:20px;box-shadow:var(--shadow)}.department-card-head{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;margin-bottom:14px}.department-card h3{margin:0 0 8px}.department-card h4{margin:16px 0 6px;color:var(--soft);font-size:13px;text-transform:uppercase;letter-spacing:.08em}.department-card p,.doc-text{color:var(--muted);white-space:pre-wrap}.status-pill{display:inline-flex;align-items:center;justify-content:center;border:1px solid var(--line);border-radius:999px;padding:6px 10px;font-size:12px;color:var(--soft);background:rgba(255,255,255,.04);white-space:nowrap}.status-pill.approved{border-color:rgba(68,194,119,.35);color:#8ee0b0;background:rgba(68,194,119,.08)}.status-pill.denied{border-color:rgba(237,66,69,.35);color:#ff9da0;background:rgba(237,66,69,.08)}.compact-form{margin-top:14px}.command-block{margin-bottom:18px}.table-wrap{overflow:auto;border:1px solid var(--line);border-radius:18px;background:var(--panel)}.suite-table{width:100%;border-collapse:collapse;min-width:760px}.suite-table th,.suite-table td{padding:14px;border-bottom:1px solid var(--line);text-align:left;vertical-align:top}.suite-table th{font-size:12px;text-transform:uppercase;letter-spacing:.08em;color:var(--muted);background:rgba(255,255,255,.03)}.inline-review{display:grid;gap:8px;min-width:220px}.inline-review select,.inline-review input{width:100%}

/* Department center polish: hub cards open dedicated pages instead of showing every form at once */
.departments-shell .suite-content{min-width:0}.dept-hero{position:relative;overflow:hidden}.dept-hero:after{content:"";position:absolute;inset:auto -90px -160px auto;width:360px;height:360px;border-radius:999px;background:radial-gradient(circle,rgba(75,131,241,.18),transparent 62%);pointer-events:none}.department-select-grid{grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}.department-select-card{display:flex;min-height:215px;flex-direction:column;justify-content:space-between;text-decoration:none;color:inherit;position:relative;overflow:hidden;transition:transform .22s ease,border-color .22s ease,background .22s ease,box-shadow .22s ease}.department-select-card:before{content:"";position:absolute;inset:0;background:linear-gradient(135deg,rgba(75,131,241,.10),transparent 42%);opacity:0;transition:opacity .22s ease}.department-select-card:hover{transform:translateY(-5px);border-color:rgba(75,131,241,.45);box-shadow:0 26px 70px rgba(0,0,0,.46)}.department-select-card:hover:before{opacity:1}.department-select-card>*{position:relative}.department-select-card p{margin:0;line-height:1.55}.dept-card-footer{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-top:24px;padding-top:16px;border-top:1px solid var(--line);color:var(--muted);font-size:13px}.dept-card-footer strong{color:var(--text);font-size:14px}.department-command-grid{grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}.command-shortcut{min-height:170px}.dept-detail-layout{display:grid;grid-template-columns:1fr 1fr;gap:18px}.dept-info-card{min-height:210px}.application-focus-card{max-width:820px}.empty-state{padding:28px;text-align:center;border:1px dashed var(--line);border-radius:18px;background:rgba(255,255,255,.025)}.empty-state h3{margin:0 0 8px}.empty-state p{margin:0;color:var(--muted)}.dept-detail-hero .access-status.denied{border-color:rgba(237,66,69,.35);background:rgba(237,66,69,.08)}
@media(max-width:900px){.dept-detail-layout{grid-template-columns:1fr}.department-select-grid{grid-template-columns:1fr}.department-select-card{min-height:180px}}
