        :root {
            --bg: #212724;
            --card: #2a302b;
            --accent: #8cb4a3;
            --text: #e5e5e5;
            --muted: #a3b2a8;
	    scroll-padding-top: 150px; /* 80px (header) + 80px (body padding) */
       }

        body {
            margin: 0;
            background: var(--bg);
            font-family: Georgia, "Times New Roman", serif;
            color: var(--text);
            padding: 80px 20px;
            line-height: 1.6;
        }

h3 {
    display: block;
    scroll-margin-top: 160px; 
}

        .diagram-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .diagram-title {
            text-align: center;
            font-size: 2.8rem;
            font-weight: 300;
            letter-spacing: -1px;
            margin-bottom: 8px;
            color: #8cb4a3;
        }

        .diagram-subtitle {
            text-align: center;
            color: #a3b2a8;
            font-size: 1.15rem;
            max-width: 680px;
            margin: 0 auto 60px;
            font-style: italic;
        }

        .streams-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-bottom: 20px;
        }

        .stream {
            background: #2a302b;
            border-radius: 18px;
            padding: 32px 28px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(140, 180, 163, 0.15);
            position: relative;
        }

        .stream.left  { border-top: 6px solid #8cb4a3; }
        .stream.right { border-top: 6px solid #c8a080; }

        .stream h2 {
            margin: 0 0 22px 0;
            text-align: center;
            font-size: 1.5rem;
            font-weight: 400;
        }

        .stream ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .stream li {
            padding: 9px 0;
            border-bottom: 1px solid rgba(140, 180, 163, 0.1);
        }

        .stream li:last-child {
            border-bottom: none;
        }

      /* Arrows below the streams */
.arrow-container {
    display: flex;
    justify-content: space-between;
    max-width: 820px;
    margin: 10px auto 0;
    padding: 0 100px;
}

.arrow {
    font-size: 8rem;           /* Makes them much longer */
    font-weight: 900;            /* Makes them thicker */
    color: #8cb4a3;
    opacity: 0.75;
    line-height: 1;
}

.arrow-left  { transform: rotate(25deg); }
.arrow-right { transform: rotate(-25deg); }

        .synthesis-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 40px;
        }

        .synthesis {
            background: linear-gradient(135deg, #2a302b, #3a423d);
            border: 2px solid #8cb4a3;
            border-radius: 22px;
            padding: 32px 40px;
            text-align: center;
            max-width: 460px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
        }

        .synthesis h2 {
            margin: 0 0 12px 0;
            font-size: 1.65rem;
            color: #8cb4a3;
        }

        .synthesis p {
            margin: 0;
            color: #c8d4cc;
            font-size: 1.02rem;
        }

        .result-box {
            margin-top: 60px;           /* Reduced gap */
            background: #2a302b;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(140, 180, 163, 0.15);
            max-width: 820px;
            margin-left: auto;
            margin-right: auto;
        }

        .result-box h3 {
            text-align: center;
            margin: 0 0 32px 0;
            color: #8cb4a3;
            font-size: 1.65rem;
            font-weight: 400;
        }

        .result-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
            gap: 16px;
        }

        .result-item {
            background: #212724;
            padding: 18px 12px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgba(140, 180, 163, 0.2);
        }


        .wrapper {
            max-width: 920px;
            margin: 0 auto;
            text-align: center;
        }

        .title {
            font-size: 2.8rem;
            font-weight: 300;
            letter-spacing: -1px;
            margin-bottom: 12px;
            color: var(--accent);
        }

        .subtitle {
            color: var(--muted);
            font-size: 1.15rem;
            max-width: 680px;
            margin: 0 auto 60px;
            font-style: italic;
        }

        .flow {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
        }

        .node {
            background: var(--card);
            padding: 32px 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
            min-width: 320px;
            border: 1px solid rgba(140, 180, 163, 0.15);
            transition: all 0.3s ease;
        }

        .node:hover {
            transform: translateY(-4px);
            border-color: rgba(140, 180, 163, 0.4);
        }

        .node h2 {
            margin: 0;
            font-size: 1.45rem;
            font-weight: 400;
            color: #e5e5e5;
        }

        .node.small {
            font-size: 1.2rem;
            padding: 26px 40px;
        }

        .node.group {
            font-size: 1.35rem;
            font-weight: 400;
        }

        .arrow {
            font-size: 2.4rem;
            color: #8cb4a3;
            opacity: 0.6;
            line-height: 1;
        }

        .connector {
            width: 3px;
            height: 28px;
            background: linear-gradient(to bottom, transparent, #8cb4a3, transparent);
        }

        .top {
            border-top: 5px solid #8cb4a3;
        }

        .middle {
            border-top: 5px solid #a3b2a8;
        }

        .bottom {
            border-top: 5px solid #c8a080;
        }

        .caption {
            margin-top: 70px;
            color: var(--muted);
            font-size: 1.05rem;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
            font-style: italic;
            line-height: 1.8;
        }

        @media (max-width: 640px) {
            .node {
                min-width: unset;
                width: 100%;
                padding: 28px 24px;
            }
            .title {
                font-size: 2.3rem;
            }
        }
        .scrollbar-hide::-webkit-scrollbar {

            display: none;

        }

        .scrollbar-hide {

            -ms-overflow-style: none;

            scrollbar-width: none;

        }
        body { 
            font-family: 'Georgia', 'Times New Roman', serif; 
            line-height: 1.85;
        }
        .hero-bg {
            background: linear-gradient(135deg, #1f2421, #2a2f2a);
        }
        .accent { color: #8cb4a3; }
        .section-header {
            font-family: system-ui, -apple-system, sans-serif;
            letter-spacing: -0.025em;
        }
        .album-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .album-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.15);
        }
        table {
            border-collapse: collapse;
        }
        th, td {
            padding: 16px 20px;
            text-align: left;
            border-bottom: 1px solid #33443a;
        }
        th {
            background-color: #212724;
            color: #a8c4b5;
        }





/* Default paragraph styling */

p {

    margin: 0 0 1rem 0;

    text-indent: 0;

}

/* Only indent a paragraph that directly follows another paragraph */

ul + p {

    margin-top: 0.5rem;   /* equivalent to Tailwind's mt-2 */

}

ol + p {

    margin-top: 0.5rem;   /* equivalent to Tailwind's mt-2 */

}

li {

    line-height: 1.6;

}


.analysis-block {
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  background: ##212724;
}

.analysis-header h2 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #71717A;
}

.analysis-subtitle {
  margin-top: 0.3rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: #555;
}

.analysis-content p {
  line-height: 1.6;
  margin: 1rem 0;
  font-style: italic;
  text-indent: 0;
}


/* Updated: Target p + p only if they are NOT inside .analysis-content */
/* :not(.analysis-content) > p + p {
  text-indent: 2em;
}*/

.section-divider {
  margin-top: 2rem;
  border: none;
  border-top: 1px solid #ccc;
}

.evolution-item {
  margin-top: 2.2rem;   /* increased top margin */
  margin-bottom: 1.8rem;
}

.evolution-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.7px;

  margin-bottom: 0.6rem;
  padding: 0.3rem 0.6rem;

  border-left: 4px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.10);  /* subtle elegance */
  border-radius: 4px;

  font-family: "Helvetica Neue", "Inter", sans-serif;
}


/* ===== Canterbury Architecture Aesthetic (White Text Variant) ===== */
.architecture-card {
  border-left: 4px solid #1F7A53;        /* Emerald structural accent */
  padding: 1.2rem 1.4rem;                /* Internal spacing */
  margin-top: 2rem;                      /* Breathing room */
  margin-bottom: 1.8rem;                 /* Bottom spacing */
  background: rgba(255, 255, 255, 0.06); /* Translucent layer */
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);/* Shadow profile */
}


/* Section Title */
.section-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  color: #FFFFFF;
}


/* Card Title */
.force-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #8cb4a3; /* matches your header accent color */
}

/* Card Text */
.force-description {
  font-size: 1rem;
  line-height: 1.55;
  color: #FFFFFF;
}

/* Strong text inside cards */
.force-description strong {
  color: #8cb4a3; 
  font-weight: 600;
}

.role-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #8cb4a3;
}

.role-description {
  font-size: 1rem;
  line-height: 1.55;
  color: #FFFFFF;
  text-indent: 0;
  margin: 0 0 1rem 0;
  padding: 0;
}

.role-description strong {
  color: #8cb4a3;
  font-weight: 600;
}

.album-tag,
.role-tag {
  font-weight: 600;
  color: #8cb4a3;
}


.force-card p.force-description {
  text-indent: 0;
  margin-left: 0;
  padding-left: 0;
}

html {
    scroll-behavior: smooth;
}


