/* ============================================================
   cherrypop.xyz — Botanical Rebellion Stylesheet
   Palette: Void Black #0d0d0d, Deep Ultra-Violet #1a0a2e,
            Orchid Plasma #2a1540, Voltage Violet #7b2fff,
            Cherry Overload #ff2d6b, Circuit Green #c8ff00,
            Bioluminescent Cyan #00e5c8, Faded Parchment #f5e6c8
   Fonts: Barlow Condensed (display), Share Tech Mono (body),
          Oswald (accent)
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
    --void-black:       #0d0d0d;
    --deep-uv:          #1a0a2e;
    --orchid-plasma:    #2a1540;
    --voltage-violet:   #7b2fff;
    --cherry-overload:  #ff2d6b;
    --circuit-green:    #c8ff00;
    --biolum-cyan:      #00e5c8;
    --faded-parchment:  #f5e6c8;

    --font-display:     'Barlow Condensed', sans-serif;
    --font-mono:        'Share Tech Mono', monospace;
    --font-accent:      'Oswald', sans-serif;

    /* Hex geometry */
    --hex-clip: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    --hex-nav-w: 120px;
    --hex-nav-h: 52px;
}

/* ---- Reset ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--void-black);
    color: var(--faded-parchment);
    font-family: var(--font-mono);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* ---- Grain Overlay ---- */
.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    background-repeat: repeat;
    opacity: 0.35;
    mix-blend-mode: overlay;
}

/* ---- Botanical Background Layer ---- */
.botanical-layer-bg {
    position: fixed;
    inset: -20%;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 40% at 20% 30%, rgba(42, 21, 64, 0.5) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 80% 70%, rgba(26, 10, 46, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse 30% 30% at 50% 50%, rgba(123, 47, 255, 0.08) 0%, transparent 70%);
    will-change: transform;
}

/* ---- Circuit Vine Overlay ---- */
.circuit-vine-overlay {
    position: fixed;
    inset: -10%;
    z-index: 2;
    pointer-events: none;
    width: 120%;
    height: 120%;
    will-change: transform;
}

.circuit-svg {
    width: 100%;
    height: 100%;
}

/* ---- Navigation ---- */
.hex-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 255, 0, 0.12);
    padding: 12px 40px;
    transition: background 0.3s ease;
}

.hex-nav.scrolled {
    background: rgba(13, 13, 13, 0.96);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.brand-text {
    color: var(--faded-parchment);
}

.brand-accent {
    color: var(--cherry-overload);
    text-shadow: 0 0 12px rgba(255, 45, 107, 0.6);
}

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

.hex-nav-item {
    text-decoration: none;
    display: block;
}

.nav-hex {
    width: var(--hex-nav-w);
    height: var(--hex-nav-h);
    clip-path: var(--hex-clip);
    background: rgba(42, 21, 64, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.nav-hex::before {
    content: '';
    position: absolute;
    inset: 1px;
    clip-path: var(--hex-clip);
    background: transparent;
    border: 1px solid rgba(200, 255, 0, 0.15);
    pointer-events: none;
}

.nav-hex:hover,
.nav-hex.active {
    background: rgba(255, 45, 107, 0.18);
    box-shadow: 0 0 16px rgba(255, 45, 107, 0.25);
}

.nav-label {
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: var(--faded-parchment);
    text-transform: uppercase;
}

/* ---- Hero Section ---- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 10;
    padding-top: 80px;
}

.hex-grid-hero {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-hex-cell {
    position: absolute;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background: rgba(42, 21, 64, 0.2);
    border: 1px solid rgba(123, 47, 255, 0.12);
    opacity: 0;
    transition: opacity 0.6s ease, background 0.4s ease;
}

.hero-hex-cell.visible {
    opacity: 1;
}

.hero-hex-cell.bloom {
    background: rgba(255, 45, 107, 0.08);
    border-color: rgba(255, 45, 107, 0.25);
}

.hero-hex-cell.circuit {
    background: rgba(200, 255, 0, 0.04);
    border-color: rgba(200, 255, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    max-width: 900px;
    padding: 0 40px;
}

.hero-taxonomy {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--biolum-cyan);
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    opacity: 0.8;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.88;
    margin-bottom: 28px;
}

.title-line {
    display: block;
}

.line-1 {
    font-size: clamp(5rem, 14vw, 14rem);
    color: var(--faded-parchment);
    text-shadow:
        0 0 30px rgba(245, 230, 200, 0.15),
        0 0 60px rgba(245, 230, 200, 0.05);
}

.line-2 {
    font-size: clamp(5rem, 14vw, 14rem);
    color: var(--cherry-overload);
    text-shadow:
        0 0 20px rgba(255, 45, 107, 0.6),
        0 0 60px rgba(255, 45, 107, 0.3),
        0 0 100px rgba(255, 45, 107, 0.1);
    -webkit-text-stroke: 1px rgba(255, 45, 107, 0.8);
}

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: rgba(245, 230, 200, 0.6);
    letter-spacing: 0.08em;
    margin-bottom: 36px;
    padding-left: 2px;
}

.subtitle-text::before {
    content: '// ';
    color: var(--circuit-green);
    opacity: 0.7;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--void-black);
    background: var(--circuit-green);
    padding: 14px 32px;
    clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    box-shadow: 0 0 20px rgba(200, 255, 0, 0.35);
}

.cta-primary:hover {
    background: var(--cherry-overload);
    color: var(--faded-parchment);
    box-shadow: 0 0 30px rgba(255, 45, 107, 0.5);
    transform: translateX(4px);
}

.cta-text {
    font-size: 0.85rem;
}

.cta-data {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(200, 255, 0, 0.5);
    letter-spacing: 0.05em;
    display: flex;
    gap: 8px;
}

.data-sep {
    color: rgba(200, 255, 0, 0.2);
}

/* Scan line effect */
.hero-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(200, 255, 0, 0.3), transparent);
    animation: scan-line 4s linear infinite;
    z-index: 15;
    pointer-events: none;
}

@keyframes scan-line {
    0%   { top: -2px; opacity: 0; }
    5%   { opacity: 1; }
    95%  { opacity: 1; }
    100% { top: calc(100% + 2px); opacity: 0; }
}

/* ---- Section Headers ---- */
.section-header {
    margin-bottom: 60px;
}

.section-index {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--circuit-green);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 8px;
    opacity: 0.7;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.4rem, 6vw, 5.5rem);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: var(--faded-parchment);
    text-shadow:
        0 0 40px rgba(245, 230, 200, 0.1),
        0 0 1px rgba(245, 230, 200, 0.9);
    line-height: 1;
}

/* ---- About Section ---- */
.about-section {
    position: relative;
    z-index: 10;
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.body-text {
    font-family: var(--font-mono);
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(245, 230, 200, 0.75);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.data-readout {
    margin-top: 32px;
    border-left: 2px solid rgba(200, 255, 0, 0.3);
    padding-left: 20px;
}

.data-row {
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
}

.data-key {
    color: var(--circuit-green);
    opacity: 0.8;
    min-width: 110px;
    letter-spacing: 0.06em;
}

.data-val {
    color: var(--faded-parchment);
    opacity: 0.7;
}

.blink-text {
    animation: blink-anim 1.4s step-end infinite;
    color: var(--cherry-overload) !important;
    opacity: 1 !important;
}

@keyframes blink-anim {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

.botanical-circuit-svg {
    width: 100%;
    max-width: 340px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 20px rgba(255, 45, 107, 0.25));
}

/* ---- Work / Hex Card Grid ---- */
.work-section {
    position: relative;
    z-index: 10;
    padding: 120px 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 10, 46, 0.4) 30%, rgba(26, 10, 46, 0.4) 70%, transparent 100%);
}

.work-section .section-header {
    max-width: 1400px;
    margin: 0 auto 60px;
}

.hex-card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.hex-card-wrapper {
    flex: 0 0 auto;
}

/* Hexagonal card shape */
.hex-card {
    width: 260px;
    height: 300px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    cursor: pointer;
    perspective: 800px;
    position: relative;
}

.hex-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.hex-card:hover .hex-card-inner,
.hex-card.flipped .hex-card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    text-align: center;
}

.card-front {
    background: rgba(123, 47, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(200, 255, 0, 0.25);
    box-shadow:
        inset 0 2px 8px rgba(255, 45, 107, 0.15),
        0 16px 40px rgba(0, 0, 0, 0.7);
}

.card-back {
    background: rgba(255, 45, 107, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 45, 107, 0.3);
    box-shadow:
        inset 0 2px 8px rgba(255, 45, 107, 0.3),
        0 16px 40px rgba(0, 0, 0, 0.7);
    transform: rotateY(180deg);
}

.card-category {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    color: var(--circuit-green);
    opacity: 0.8;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.card-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--faded-parchment);
    line-height: 1.05;
    text-shadow: 0 0 16px rgba(245, 230, 200, 0.2);
    margin-bottom: 16px;
}

.card-meta {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.meta-tag {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    color: var(--orchid-plasma);
    background: rgba(200, 255, 0, 0.12);
    border: 1px solid rgba(200, 255, 0, 0.2);
    padding: 3px 8px;
    text-transform: uppercase;
}

.card-desc {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: rgba(245, 230, 200, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.card-link {
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--cherry-overload);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 45, 107, 0.4);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.card-link:hover {
    color: var(--circuit-green);
    border-color: rgba(200, 255, 0, 0.5);
}

/* ---- Lab Section ---- */
.lab-section {
    position: relative;
    z-index: 10;
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.lab-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.step-hex {
    flex-shrink: 0;
}

.step-hex-cell {
    width: 72px;
    height: 62px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background: rgba(42, 21, 64, 0.6);
    border: 1px solid rgba(123, 47, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1rem;
    color: rgba(200, 255, 0, 0.5);
    letter-spacing: 0.05em;
    transition: background 0.3s, border-color 0.3s;
}

.step-hex-cell.active-step {
    background: rgba(123, 47, 255, 0.25);
    border-color: rgba(200, 255, 0, 0.5);
    color: var(--circuit-green);
    box-shadow: 0 0 20px rgba(200, 255, 0, 0.2);
}

.step-content {
    padding-top: 8px;
}

.step-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--faded-parchment);
    margin-bottom: 8px;
}

.step-desc {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: rgba(245, 230, 200, 0.6);
    line-height: 1.7;
    letter-spacing: 0.02em;
}

.timeline-connector {
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, rgba(200, 255, 0, 0.15), rgba(200, 255, 0, 0.4));
    margin: 8px 0 8px 36px;
    transform: rotate(90deg);
    transform-origin: left center;
    height: 36px;
    width: 2px;
    margin: 4px 0 4px 35px;
    background: linear-gradient(180deg, rgba(200, 255, 0, 0.15), rgba(200, 255, 0, 0.4));
}

/* Terminal */
.lab-terminal {
    background: rgba(13, 13, 13, 0.9);
    border: 1px solid rgba(200, 255, 0, 0.2);
    border-radius: 2px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(200, 255, 0, 0.06),
        0 20px 60px rgba(0, 0, 0, 0.7);
}

.terminal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(26, 10, 46, 0.8);
    border-bottom: 1px solid rgba(200, 255, 0, 0.15);
}

.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: rgba(200, 255, 0, 0.7);
    letter-spacing: 0.1em;
}

.terminal-status {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--cherry-overload);
    letter-spacing: 0.1em;
    animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

.terminal-body {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.terminal-line {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    display: flex;
    gap: 10px;
    align-items: baseline;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.terminal-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.t-prompt {
    color: var(--circuit-green);
    flex-shrink: 0;
}

.t-cmd {
    color: rgba(245, 230, 200, 0.9);
    letter-spacing: 0.02em;
}

.t-out {
    color: rgba(0, 229, 200, 0.7);
    letter-spacing: 0.04em;
}

.t-success {
    color: var(--circuit-green);
}

.terminal-cursor {
    display: inline-block;
    color: var(--circuit-green);
    animation: cursor-blink 1s step-end infinite;
}

@keyframes cursor-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ---- Manifest Section ---- */
.manifest-section {
    position: relative;
    z-index: 10;
    padding: 120px 40px;
    background: linear-gradient(180deg, transparent, rgba(42, 21, 64, 0.25) 30%, rgba(42, 21, 64, 0.25) 70%, transparent);
    max-width: 100%;
}

.manifest-section .section-header {
    max-width: 1400px;
    margin: 0 auto 60px;
}

.manifest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.manifest-statement {
    background: rgba(26, 10, 46, 0.5);
    border: 1px solid rgba(123, 47, 255, 0.15);
    padding: 48px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    transition: background 0.3s, border-color 0.3s;
}

.manifest-statement:hover {
    background: rgba(42, 21, 64, 0.6);
    border-color: rgba(255, 45, 107, 0.25);
}

.statement-number {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2.5rem;
    color: rgba(255, 45, 107, 0.3);
    line-height: 1;
    flex-shrink: 0;
    letter-spacing: -0.04em;
}

.statement-text {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(245, 230, 200, 0.7);
    letter-spacing: 0.025em;
}

.manifest-signature {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid rgba(200, 255, 0, 0.12);
}

.sig-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: rgba(200, 255, 0, 0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sig-coords {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: rgba(0, 229, 200, 0.5);
    letter-spacing: 0.1em;
}

/* ---- Contact Section ---- */
.contact-section {
    position: relative;
    z-index: 10;
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.form-taxonomy {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--biolum-cyan);
    letter-spacing: 0.15em;
    margin-bottom: 32px;
    opacity: 0.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    color: var(--circuit-green);
    opacity: 0.75;
    text-transform: uppercase;
}

.field-input {
    background: rgba(26, 10, 46, 0.6);
    border: 1px solid rgba(123, 47, 255, 0.25);
    border-bottom: 2px solid rgba(200, 255, 0, 0.3);
    padding: 12px 16px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--faded-parchment);
    letter-spacing: 0.04em;
    outline: none;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
    resize: none;
}

.field-input::placeholder {
    color: rgba(245, 230, 200, 0.25);
}

.field-input:focus {
    background: rgba(42, 21, 64, 0.7);
    border-color: rgba(255, 45, 107, 0.4);
    border-bottom-color: var(--cherry-overload);
    box-shadow: 0 4px 16px rgba(255, 45, 107, 0.1);
}

.submit-btn {
    align-self: flex-start;
    background: transparent;
    border: 1px solid var(--cherry-overload);
    padding: 14px 40px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cherry-overload);
    cursor: pointer;
    clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
    transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}

.submit-btn:hover {
    background: var(--cherry-overload);
    color: var(--void-black);
    box-shadow: 0 0 24px rgba(255, 45, 107, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-channel {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-left: 2px solid rgba(123, 47, 255, 0.3);
    padding-left: 18px;
}

.channel-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    color: rgba(200, 255, 0, 0.5);
    text-transform: uppercase;
}

.channel-value {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--faded-parchment);
    letter-spacing: 0.04em;
}

.contact-hex-deco {
    margin-top: 12px;
    display: flex;
    justify-content: flex-start;
}

.deco-hex-svg {
    width: 140px;
    height: 160px;
    filter: drop-shadow(0 0 12px rgba(123, 47, 255, 0.2));
}

/* ---- Footer ---- */
.site-footer {
    position: relative;
    z-index: 10;
    background: rgba(13, 13, 13, 0.95);
    border-top: 1px solid rgba(200, 255, 0, 0.1);
    padding: 32px 40px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.brand-domain {
    color: rgba(245, 230, 200, 0.3);
}

.footer-data {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: rgba(245, 230, 200, 0.3);
    letter-spacing: 0.1em;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-sep {
    color: rgba(200, 255, 0, 0.2);
}

/* ---- Scroll-reveal utility ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---- Hex Cell Base (generic reuse) ---- */
.hex-cell {
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

/* ---- Petal bloom particles ---- */
.petal-particle {
    position: fixed;
    pointer-events: none;
    z-index: 50;
    width: 12px;
    height: 14px;
    opacity: 0;
}

.petal-particle svg {
    width: 100%;
    height: 100%;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .about-grid,
    .lab-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual-col {
        display: flex;
        justify-content: center;
    }

    .hex-nav-items {
        display: none;
    }

    .manifest-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 20px;
    }

    .about-section,
    .work-section,
    .lab-section,
    .manifest-section,
    .contact-section {
        padding: 80px 20px;
    }

    .hex-nav {
        padding: 12px 20px;
    }

    .hex-card {
        width: 220px;
        height: 254px;
    }

    .line-1, .line-2 {
        font-size: clamp(3.5rem, 18vw, 7rem);
    }

    .manifest-statement {
        padding: 28px;
    }
}
