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

body {
    font-family: 'TASA Orbiter', sans-serif;
    background: #060709;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

h2 {
    color: #eef0f4;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 16px;
    opacity: 0.35;
}

/* Banner container & scaling */
.banner-wrap {
    transform: scale(0.5);
    transform-origin: top center;
}
.banner-wrap.sq { margin-bottom: calc(-1080px * 0.5); }
.banner-wrap.ls { margin-bottom: calc(-630px * 0.5); }
.banner-wrap.st { margin-bottom: calc(-1920px * 0.5); }
.banner-wrap.lc { margin-bottom: calc(-396px * 0.5); }
.banner-wrap.lp { margin-bottom: calc(-400px * 0.5); }

.banner {
    position: relative;
    overflow: hidden;
    --dark: #0b0d11;
    --deep: #060709;
    --light: #eef0f4;
    --blue: #4a9eff;
    --blue-soft: #6db3ff;
    --blue-glow: rgba(74, 158, 255, 0.3);
}

.square { width: 1080px; height: 1080px; }
.landscape { width: 1200px; height: 630px; }
.story { width: 1080px; height: 1920px; }
.li-cover { width: 1584px; height: 396px; }
.li-profile { width: 400px; height: 400px; }

.banner canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Grid overlay */
.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(238,240,244,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(238,240,244,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 2;
}

/* Noise */
.banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 3;
}

.banner > *:not(canvas) {
    position: relative;
    z-index: 4;
}

/* Shared elements */
.pygmalios-logo {
    height: 11px;
    opacity: 0.5;
}

.big-y {
    font-family: 'TASA Orbiter', sans-serif;
    font-weight: 800;
    color: var(--light);
    line-height: 0.65;
    letter-spacing: -0.04em;
    transform: translateY(-0.22em);
}

.big-y-glow {
    text-shadow:
        0 0 80px rgba(74, 158, 255, 0.4),
        0 0 160px rgba(74, 158, 255, 0.15);
}

/* Concentric rings SVG — data spine visual */
.data-rings {
    position: absolute;
    z-index: 1;
    opacity: 0.5;
}

.data-rings circle {
    fill: none;
    stroke-width: 1.5;
}

.data-rings .ring-track { stroke: rgba(238,240,244,0.06); }
.data-rings .ring-arc { stroke-linecap: round; }
.data-rings .ring-l0 { stroke: var(--blue); opacity: 0.7; }
.data-rings .ring-l1 { stroke: #1aab55; opacity: 0.5; }
.data-rings .ring-l2 { stroke: #d69e2e; opacity: 0.4; }
.data-rings .ring-l3 { stroke: #a78bfa; opacity: 0.35; }
.data-rings .ring-l4 { stroke: #f472b6; opacity: 0.3; }

.data-rings .core-glow {
    fill: rgba(74, 158, 255, 0.08);
}
.data-rings .core-ring {
    fill: none;
    stroke: var(--blue);
    stroke-width: 2;
    opacity: 0.4;
}

/* ==========================================
   BANNER 1 — Hero Announce (Square)
   ========================================== */
.banner-1 {
    background: radial-gradient(ellipse 80% 60% at 50% 55%, rgba(74,158,255,0.06) 0%, var(--dark) 70%);
    display: flex;
    flex-direction: column;
}

.banner-1 .top-bar {
    padding: 36px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(238,240,244,0.06);
}

.banner-1 .pill {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--blue);
    border: 1px solid rgba(74,158,255,0.25);
    padding: 6px 16px;
    border-radius: 100px;
    text-transform: uppercase;
}

.banner-1 .main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    position: relative;
}

.banner-1 .big-y {
    font-size: 420px;
    position: relative;
}

.banner-1 .tagline {
    font-family: 'TASA Orbiter', sans-serif;
    font-weight: 500;
    font-size: 36px;
    color: var(--light);
    margin-top: 20px;
    opacity: 0.7;
    letter-spacing: -0.01em;
}

.banner-1 .tagline em {
    color: var(--blue);
    font-style: normal;
    font-weight: 700;
}

.banner-1 .sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    color: var(--light);
    letter-spacing: 0.3em;
    margin-top: 28px;
    opacity: 0.3;
    text-transform: uppercase;
}

.banner-1 .bottom-bar {
    background: var(--blue);
    padding: 26px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-1 .cta {
    font-family: 'TASA Orbiter', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.banner-1 .website {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    opacity: 0.7;
}

/* ==========================================
   BANNER 2 — Grid Tease (Square)
   ========================================== */
.banner-2 {
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.banner-2 .cell {
    border: 0.5px solid rgba(238,240,244,0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.banner-2 .cell-blue {
    background: var(--blue);
}

.banner-2 .cell-glow {
    background: radial-gradient(circle at 50% 50%, rgba(74,158,255,0.1) 0%, transparent 70%);
}

.banner-2 .big-y {
    font-size: 380px;
    color: var(--dark);
}

.banner-2 .cell-text {
    text-align: center;
}

.banner-2 .cell-text h3 {
    font-family: 'TASA Orbiter', sans-serif;
    font-weight: 700;
    font-size: 44px;
    color: var(--light);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.banner-2 .cell-text p {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    color: var(--light);
    opacity: 0.4;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 14px;
}

.banner-2 .cell-light {
    background: var(--light);
}

.banner-2 .cell-cta {
    font-family: 'TASA Orbiter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--dark);
    text-align: center;
    letter-spacing: -0.01em;
}

.banner-2 .cell-cta span {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 500;
    font-size: 14px;
    opacity: 0.5;
    letter-spacing: 0.15em;
    margin-top: 8px;
}

.banner-2 .cell-brand {
    text-align: center;
}

.banner-2 .cell-brand img {
    height: 11px;
    opacity: 0.4;
    margin-bottom: 14px;
}

.banner-2 .cell-brand .desc {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--blue);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ==========================================
   BANNER 3 — OG Image (Landscape)
   ========================================== */
.banner-3 {
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 340px;
}

.banner-3 .left {
    padding: 56px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.banner-3 .logo-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.banner-3 .logo-row img {
    height: 11px;
    opacity: 0.4;
}

.banner-3 .logo-row .new-badge {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--blue);
    border: 1px solid rgba(74,158,255,0.3);
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
}

.banner-3 .headline {
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.banner-3 .headline .big-y {
    font-size: 180px;
}

.banner-3 .headline .text {
    display: flex;
    flex-direction: column;
}

.banner-3 .headline .text .line1 {
    font-family: 'TASA Orbiter', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: var(--light);
    opacity: 0.6;
}

.banner-3 .headline .text .line2 {
    font-family: 'TASA Orbiter', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: var(--blue);
}

.banner-3 .right {
    background: linear-gradient(180deg, rgba(74,158,255,0.12) 0%, rgba(74,158,255,0.04) 100%);
    border-left: 1px solid rgba(74,158,255,0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
}

.banner-3 .right .data-rings {
    position: relative;
    width: 260px;
    height: 260px;
    opacity: 0.8;
}

.banner-3 .right .rings-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--light);
    opacity: 0.35;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 20px;
}

/* ==========================================
   BANNER 4 — Story (Vertical)
   ========================================== */
.banner-4 {
    background: var(--dark);
    display: flex;
    flex-direction: column;
}

.banner-4 .top {
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(238,240,244,0.06);
}

.banner-4 .top .pill {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--blue);
    border: 1px solid rgba(74,158,255,0.25);
    padding: 5px 14px;
    border-radius: 100px;
    text-transform: uppercase;
}

.banner-4 .y-section {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.banner-4 .y-section .big-y {
    font-size: 520px;
}

.banner-4 .y-section .data-rings {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
}

.banner-4 .msg-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 80px;
    background: linear-gradient(0deg, rgba(74,158,255,0.06) 0%, transparent 100%);
}

.banner-4 .msg-section .tagline {
    font-family: 'TASA Orbiter', sans-serif;
    font-weight: 700;
    font-size: 52px;
    color: var(--light);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.banner-4 .msg-section .tagline em {
    color: var(--blue);
    font-style: normal;
}

.banner-4 .msg-section .sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 16px;
    color: var(--light);
    opacity: 0.4;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 24px;
}

.banner-4 .bottom {
    background: var(--blue);
    padding: 36px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-4 .bottom .cta {
    font-family: 'TASA Orbiter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--dark);
    text-transform: uppercase;
}

.banner-4 .bottom img {
    height: 11px;
    filter: brightness(0);
    opacity: 0.35;
}

/* ==========================================
   BANNER 5 — Inverted / Light (Square)
   ========================================== */
.banner-5 {
    background: var(--light);
    display: flex;
    flex-direction: column;
}

.banner-5::before {
    background-image: none;
}

.banner-5 .top-bar {
    background: var(--dark);
    padding: 30px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-5 .top-bar img {
    height: 11px;
    opacity: 0.4;
}

.banner-5 .top-bar .pill {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--blue);
    text-transform: uppercase;
}

.banner-5 .main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px;
    position: relative;
}

.banner-5 .main .big-y {
    font-size: 360px;
    color: var(--dark);
    text-shadow: 0 0 120px rgba(74,158,255,0.2);
}

.banner-5 .main .tagline {
    font-family: 'TASA Orbiter', sans-serif;
    font-weight: 600;
    font-size: 34px;
    color: var(--dark);
    opacity: 0.5;
    margin-top: 16px;
    letter-spacing: -0.01em;
}

.banner-5 .main .tagline em {
    font-style: normal;
    opacity: 1;
    color: #2a7de0;
}

.banner-5 .metrics-strip {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 40px;
}

.banner-5 .metric {
    text-align: center;
}

.banner-5 .metric .val {
    font-family: 'TASA Orbiter', sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: var(--dark);
}

.banner-5 .metric .lbl {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--dark);
    opacity: 0.4;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 4px;
}

.banner-5 .bottom-bar {
    background: var(--blue);
    padding: 32px 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.banner-5 .bottom-bar .cta {
    font-family: 'TASA Orbiter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--dark);
    text-transform: uppercase;
}

.banner-5 .bottom-bar .sep {
    width: 1px;
    height: 24px;
    background: var(--dark);
    opacity: 0.2;
}

.banner-5 .bottom-bar .web {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    opacity: 0.6;
}

/* ==========================================
   BANNER 6 — Atmospheric / Teaser (Square)
   ========================================== */
.banner-6 {
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(74,158,255,0.08) 0%, var(--dark) 70%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px;
    position: relative;
}

.banner-6 .logo-mark {
    margin-bottom: 48px;
}

.banner-6 .logo-mark img {
    height: 14px;
    opacity: 0.4;
}

.banner-6 .big-y {
    font-size: 200px;
    margin-bottom: 24px;
}

.banner-6 .tagline {
    font-family: 'TASA Orbiter', sans-serif;
    font-weight: 600;
    font-size: 38px;
    color: var(--light);
    opacity: 0.65;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.banner-6 .tagline em {
    color: var(--blue);
    font-style: normal;
    font-weight: 700;
    opacity: 1;
}

.banner-6 .sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    color: var(--light);
    letter-spacing: 0.25em;
    opacity: 0.3;
    text-transform: uppercase;
    margin-bottom: 56px;
}

.banner-6 .verticals {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-6 .vertical-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: var(--light);
    opacity: 0.35;
    letter-spacing: 0.1em;
    border: 1px solid rgba(238,240,244,0.08);
    padding: 6px 16px;
    border-radius: 100px;
    text-transform: uppercase;
}

.banner-6 .meta {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    font-weight: 500;
    color: var(--light);
    letter-spacing: 0.2em;
    opacity: 0.4;
    margin-top: 56px;
}

.banner-6 .meta span {
    color: var(--blue);
    opacity: 1;
}

/* ==========================================
   BANNER 7 — LinkedIn Cover (1584x396)
   ========================================== */
.banner-7 {
    background: var(--dark);
    display: flex;
    align-items: center;
    padding: 0 80px;
    gap: 60px;
}

.banner-7 .left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.banner-7 .left img {
    height: 11px;
    opacity: 0.4;
}

.banner-7 .big-y {
    font-size: 180px;
}

.banner-7 .divider {
    width: 1px;
    height: 120px;
    background: rgba(238,240,244,0.08);
    flex-shrink: 0;
}

.banner-7 .right {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.banner-7 .tagline {
    font-family: 'TASA Orbiter', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: var(--light);
    opacity: 0.7;
}

.banner-7 .tagline em {
    color: var(--blue);
    font-style: normal;
    font-weight: 700;
    opacity: 1;
}

.banner-7 .sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--light);
    opacity: 0.3;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ==========================================
   BANNER 8 — LinkedIn Profile (400x400)
   ========================================== */
.banner-8 {
    background: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-8 .big-y {
    font-size: 260px;
}

/* Sub-page navigation */
.socials-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 40px;
    background: rgba(6,7,9,0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(238,240,244,0.06);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
}
.socials-nav a {
    color: rgba(238,240,244,0.4);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 0.08em;
    transition: color 0.2s, background 0.2s;
}
.socials-nav a:hover {
    color: #eef0f4;
    background: rgba(238,240,244,0.06);
}
.socials-nav a.active {
    color: #4a9eff;
    background: rgba(74,158,255,0.1);
}

/* Footer tip */
.tip {
    color: rgba(238,240,244,0.2);
    font-size: 12px;
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.05em;
    margin-top: 40px;
}
