/* Panthos Portal — Shared Styles (brand-aligned with panthos.au) */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;500;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #030308;
  --bg-elev: #0F0F1C;
  --bg-card: #14142a;
  --bg-card-hover: #1d1d35;

  --ink: #FFFFFF;
  --ink-dim: #A2A2A2;
  --ink-faint: #6b6878;

  --accent: #E156E6;
  --accent-hover: #D532DB;
  --accent-purple: #9752E5;
  --accent-purple-deep: #8336D9;

  --rule: #3E3E3E;
  --rule-bright: #4a4a5e;

  --success: #7fb069;
  --pending: #E156E6;
  --neutral: #A2A2A2;

  --display: 'Bebas Neue', Impact, sans-serif;
  --body: 'Roboto', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;

  --max: 1260px;
  --shadow: 0 1px 0 rgba(225, 86, 230, 0.06) inset, 0 20px 40px -20px rgba(0,0,0,0.6);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  background-image:
    radial-gradient(ellipse 70% 50% at 50% -5%, rgba(225, 86, 230, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(151, 82, 229, 0.10), transparent 70%);
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.site-header {
  padding: 28px 0 24px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 56px;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}

.brand .mark {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(225, 86, 230, 0.6);
}

.meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.meta a { color: inherit; text-decoration: none; transition: color 200ms ease; }
.meta a:hover { color: var(--accent); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 0.95;
}

h1 {
  font-size: clamp(48px, 7vw, 84px);
  margin-bottom: 24px;
}

h1 .accent { color: var(--accent); }

h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 56ch;
  margin-bottom: 56px;
  font-weight: 300;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 64px 0 28px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.projects {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.project {
  background: var(--bg);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 32px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: background 200ms ease, padding 200ms ease;
  position: relative;
}

.project:hover {
  background: var(--bg-elev);
  padding-left: 16px;
  padding-right: 16px;
}

.project-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
}

.project-title {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 6px;
}

.project-desc {
  font-size: 14px;
  color: var(--ink-dim);
  font-weight: 300;
  line-height: 1.5;
}

.project-status {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--rule-bright);
  color: var(--ink-dim);
  white-space: nowrap;
}

.project-status.live {
  color: var(--accent);
  border-color: rgba(225, 86, 230, 0.4);
  background: rgba(225, 86, 230, 0.06);
}
.project-status.pending {
  color: var(--accent-purple);
  border-color: rgba(151, 82, 229, 0.4);
  background: rgba(151, 82, 229, 0.06);
}

.project-arrow {
  font-family: var(--mono);
  color: var(--ink-faint);
  transition: transform 200ms ease, color 200ms ease;
  font-size: 18px;
}

.project:hover .project-arrow {
  color: var(--accent);
  transform: translateX(6px);
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.deliverable {
  background: var(--bg);
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 200ms ease;
  min-height: 200px;
  position: relative;
}

.deliverable::after {
  content: '→';
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--mono);
  color: var(--ink-faint);
  transition: color 200ms ease, transform 200ms ease;
}

.deliverable:hover {
  background: var(--bg-elev);
}

.deliverable:hover::after {
  color: var(--accent);
  transform: translateX(4px);
}

.deliverable-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: flex;
  justify-content: space-between;
}

.deliverable-title {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-top: auto;
  text-transform: uppercase;
  line-height: 1;
}

.deliverable-desc {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.5;
  font-weight: 300;
}

.site-footer {
  margin-top: 120px;
  padding: 28px 0 40px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.signin {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
}

.signin-card {
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.signin-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: 0.04em;
  margin-bottom: 56px;
  text-transform: uppercase;
}

.signin-mark .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(225, 86, 230, 0.7);
}

.signin h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.signin .lead {
  margin: 0 auto 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #FFFFFF;
  padding: 16px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px -8px rgba(225, 86, 230, 0.5);
}

.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(225, 86, 230, 0.7);
}

.btn .arrow {
  font-family: var(--mono);
  font-weight: 400;
}

.signin-hint {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 36px;
}

.notes {
  max-width: 60ch;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-dim);
  font-weight: 300;
}

.notes p { margin-bottom: 14px; }
.notes em { color: var(--ink); font-style: normal; font-weight: 500; }
.notes strong { color: var(--ink); font-weight: 500; }

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

.rise { animation: rise 700ms cubic-bezier(0.2, 0.7, 0.2, 1) backwards; }
.rise-1 { animation-delay: 60ms; }
.rise-2 { animation-delay: 140ms; }
.rise-3 { animation-delay: 220ms; }
.rise-4 { animation-delay: 300ms; }
.rise-5 { animation-delay: 380ms; }
.rise-6 { animation-delay: 460ms; }

@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .project {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    padding: 20px 0;
  }
  .project-arrow { display: none; }
  .project-desc { grid-column: 2 / -1; }
  .site-footer .wrap { flex-direction: column; gap: 12px; }
  .signin h1 { font-size: 44px; }
  .signin-mark { font-size: 28px; }
}
