/* EDITED ON 20250425 20:48 */

:root {
    --bg: #0a0a12ff;
    --text: #ececf7;
    --text-soft: #b5b6c8;
    --accent: #a855f7;
    --accent-soft: rgba(168, 85, 247, 0.22);
    --wip: #ff7700;
    --wip-soft: #ac5000;
    --wip-background: rgba(18, 14, 10, 0.72);
    --border: #2c2c4f;
    --border-wip: #462000;
    --gradient-wip: linear-gradient(145deg, rgba(255, 119, 0, 0.14), rgba(70, 32, 0, 0.6));
    --radius: 14px;
    --shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
    text-decoration: none;
}

a:visited, 
a:hover, 
a:focus, 
a:hover, 
a:active,
a { 
    text-decoration: none; 
    color: var(--text); 
}


body {
    margin: 0;
    min-height: 100vh;
    font-family: "JetBrains Mono", "Fira Code", "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 10%, rgba(168, 85, 247, 0.17), transparent 38%),
        radial-gradient(circle at 85% 85%, rgba(168, 85, 247, 0.12), transparent 30%),
        linear-gradient(165deg, var(--bg), #06060d 60%, #06060d);
    line-height: 1.6;
}

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

html {
  background-color: #0a0a12;
}


.site-header {
    position: sticky;
    top: 0;
    margin: 0 0;
    width: 100%;
    height: 100px;
    padding: 1.3rem 2.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
    background-color: transparent;
    z-index: 1000;
}

.site-header.scrolled {
  background-color: var(--bg);
}

.brand {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.site-nav {
    display: flex;
    gap: 0.5rem;
}

.site-nav a {
    text-decoration: none;
    color: var(--text-soft);
    border: 1px solid var(--border);
    background: rgba(20, 20, 39, 0.75);
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-size: 0.9rem;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--text);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 5000px;
    max-height: 50000px;
    
    display: flex;
    flex-direction: column;
    background-color: var(--bg);
    
    max-width: 0;
    overflow: hidden;
    transition: max-width 0.3s ease;
  }

  .site-nav.open {
    max-width: 100%;
  }

  .site-nav a {
    margin-top: 10px;
    text-decoration: none;
    color: var(--text-soft);
    border: 1px solid var(--border);
    background: rgba(20, 20, 39, 0.75);
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-size: 0.9rem;
    margin-left: 1rem;
    width: auto;
    max-width: 95%;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }
}

.content-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 1.2rem 1rem 2rem;
    display: grid;
    gap: 1.1rem;
}

.card {
    background: linear-gradient(180deg, rgba(26, 26, 50, 0.92), rgba(16, 16, 27, 0.9));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem;
    box-shadow: var(--shadow);
}

.card-wip {
    background: var(--gradient-wip);
    border: 1px dashed var(--wip);
    border-radius: var(--radius);
    padding: 1.2rem;
    box-shadow: var(--shadow);
}

.eyebrow {
    margin-top: 0;
    margin-bottom: 0.35rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

h1,
h2,
h3 {
    line-height: 1.25;
}

h1 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: clamp(1.6rem, 2.5vw, 2.3rem);
}

h2 {
    margin-top: 0;
}

.quick-points {
    margin: 0.8rem 0 0;
    padding-left: 1.2rem;
    color: var(--text-soft);
}

.photo-slot {
    display: flex;
    align-items: center;
}

.photo-box {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--accent);
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.14), rgba(20, 20, 39, 0.6));
    display: grid;
    place-content: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.photo-box a {
    transition: transform 0.2s ease;
}

.photo-box a:hover {
    transform: scale(1.1);
}

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

.photo-box p {
    margin: 0;
    font-weight: 700;
}

.photo-box span {
    color: var(--text-soft);
    font-size: 0.85rem;
}

.info-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

a.info-link > .info-cards {
    height: 100%;
    text-decoration: none;
    transition: all 0.2s ease;
}

a.info-link > .info-cards:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.project-grid,
.template-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
}

.stage,
.project-card,
.template-box {
    background: rgba(13, 10, 18, 0.72);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.9rem;
}

.info-grid p,
.project-card p,
.template-box p {
    margin-bottom: 0;
}

.info-cards {
    background: rgba(13, 10, 18, 0.72);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.9rem;
}


.project-description {
    margin-bottom: 0.8rem;
    color: var(--text-soft);
}

.chips {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.chips span {
    border: 1px solid var(--accent);
    background: var(--accent-soft);
    color: var(--text);
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
    font-size: 0.78rem;
    min-width: 50px;
    text-align: center;

}

.site-footer {
    justify-content: center;
    margin: 0 auto;
    padding: 0.8rem 1rem 1.5rem;
    color: var(--text-soft);
    font-size: 0.9rem;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.template-box {
    min-height: 180px;
    border-style: dashed;
}

.hero {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: 2fr 1fr;
}

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

.eyebrow-proj {
    margin-top: 0;
    margin-bottom: 0.35rem;
    color: #a855f7;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}
.eyebrow-wip {
    margin-top: 0;
    margin-bottom: 0.35rem;
    color: var(--wip);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}
.chips-wip span {
    border: 1px solid var(--wip);
    background: var(--wip-soft);
    color: var(--text);
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
    font-size: 0.78rem;
    min-width: 50px;
    text-align: center;

}

.project-card-wip {
    background: var(--wip-background);
    border: 1px dashed var(--wip);
    border-radius: 10px;
    padding: 0.9rem;
}

.project-card-wip p {
    margin-bottom: 0;
}

.stage {
    background: rgba(13, 10, 18, 0.72);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.9rem;
}

.stage-wip {
    background: var(--wip-background);
    border: 1px dashed var(--wip);
    border-radius: 10px;
    padding: 0.9rem;
}

.spacer {
    height: 1.2rem;
    width: 200px;
}

.social-links {
    justify-items: right;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 400px;
}

.social-links a {
    color: var(--text-soft);
    text-decoration: none;
    text-align: center;
    border: 1px solid var(--border);
    background: rgba(20, 20, 39, 0.75);
    border-radius: 999px;
    height: 40px;
    padding: 0.4rem 0.9rem;
    font-size: 0.9rem;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
    color: var(--text);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.project-card {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease;
    margin-bottom: 50px;
}

.project-card img {
    width: auto;
    height: 124px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

a.project-link > .project-card {
    height: 100%;
    text-decoration: none;
}

.project-link:hover > .project-card {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.impactful {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.04em;
}