﻿/* --- Aurora Service Detail Card --- */
.aurora-service-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02); /* Glassy base */
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 30px;
    padding: 0; /* Remove default padding, handle in wrapper */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.aurora-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.aurora-blobs-service {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
    filter: blur(60px);
}

.blob-service {
    position: absolute;
    border-radius: 50%;
    animation: floatService 15s infinite ease-in-out;
}

.blob-s1 {
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, #4f46e5, transparent 70%);
    top: -20%;
    right: -20%;
    animation-delay: 0s;
}

.blob-s2 {
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, #06b6d4, transparent 70%);
    bottom: -10%;
    left: -10%;
    animation-delay: -5s;
}

.blob-s3 {
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, #db2777, transparent 70%);
    top: 40%;
    left: 60%;
    animation-delay: -2s;
}

@keyframes floatService {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 20px) scale(1.1); }
    100% { transform: translate(0, 0) scale(1); }
}

.service-content-wrapper {
    position: relative;
    z-index: 1;
    padding: clamp(3rem, 5vw, 5rem);
    text-align: left;
}

/* Ensure text is readable over aurora */
.service-detail-title {
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.service-detail-hook {
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.service-detail-desc {
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* --- Aurora About Card --- */
.aurora-about-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 40px;
    padding: 5rem 3rem;
    max-width: 900px;
    margin: 0 auto;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.aurora-about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.aurora-blobs-about {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
    filter: blur(70px);
}

.blob-about {
    position: absolute;
    border-radius: 50%;
    animation: floatAbout 18s infinite ease-in-out;
}

.blob-a1 {
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, #4f46e5, transparent 70%); /* Indigo */
    top: -20%;
    left: -20%;
    animation-delay: 0s;
}

.blob-a2 {
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, #db2777, transparent 70%); /* Pink */
    bottom: -10%;
    right: -10%;
    animation-delay: -6s;
}

.blob-a3 {
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, #06b6d4, transparent 70%); /* Cyan */
    top: 40%;
    left: 40%;
    animation-delay: -12s;
}

@keyframes floatAbout {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
    100% { transform: translate(0, 0) scale(1); }
}

.about-content-wrapper {
    position: relative;
    z-index: 1;
}

/* --- Aurora CTA Section --- */
.aurora-section {
    padding: 10rem 20px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.aurora-container {
    width: 100%;
    max-width: 1000px;
    position: relative;
    padding: 2rem;
}

.aurora-card {
    position: relative;
    width: 100%;
    min-height: 500px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.aurora-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    filter: blur(80px);
    opacity: 0.6;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    animation: floatBlob 10s infinite ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #4f46e5; /* Indigo */
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #db2777; /* Pink */
    bottom: -50px;
    right: -50px;
    animation-delay: -2s;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: #06b6d4; /* Cyan */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -4s;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

.aurora-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.aurora-title {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
    mix-blend-mode: overlay; /* Blends nicely with blobs */
}

.aurora-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.aurora-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.aurora-btn:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* --- Manifesto Section (Text Reveal) --- */
.manifesto-section {
    padding: 10rem 20px;
    background: #000;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manifesto-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.manifesto-text {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.2); /* Dim initial state */
    text-transform: uppercase;
    font-weight: 700;
    text-align: left;
}

.manifesto-text .word {
    display: inline-block;
    transition: color 0.3s ease, opacity 0.3s ease;
    will-change: color, opacity;
}

/* --- Capabilities Accordion Section --- */
.capabilities-section {
    padding: 8rem 20px;
    background: #050505;
}

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

.capabilities-header {
    margin-bottom: 4rem;
    text-align: left;
}

.capabilities-header .section-title {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.accordion {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    padding: 2rem 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-number {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.2rem;
    color: var(--accent-1);
    margin-right: 2rem;
    opacity: 0.7;
}

.accordion-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #fff;
    font-weight: 400;
    flex: 1;
    transition: color 0.3s ease;
}

.accordion-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, color 0.3s ease;
}

.accordion-content {
    height: 0;
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-content p {
    padding-bottom: 2rem;
    padding-left: 4rem; /* Indent to match title */
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
}

/* Active State for Accordion */
.accordion-item.active .accordion-title {
    color: var(--accent-2); /* Highlight color */
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: #fff;
}

/* --- About CTA Section --- */
.about-cta-container {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    opacity: 0; /* Initial state for animation */
    transform: translateY(20px);
}

.about-cta-text {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.3;
    max-width: 800px;
    background: linear-gradient(90deg, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(79, 70, 229, 0.3);
}

.about-cta-btn {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: #fff;
    color: #000;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.about-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--accent-3);
    z-index: -1;
    transition: width 0.4s ease;
    border-radius: 50px;
}

.about-cta-btn:hover {
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(79, 70, 229, 0.4);
}

.about-cta-btn:hover::before {
    width: 100%;
}

/* --- Smokey Aurora Section --- */
.smokey-section {
    position: relative;
    padding: 12rem 20px;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smoke-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    filter: blur(80px) contrast(1.2);
    opacity: 0.8;
}

.smoke-blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    animation: smokeFloat 20s infinite ease-in-out;
}

.s-1 {
    top: 20%;
    left: 20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #4f46e5, transparent 60%); /* Indigo */
    animation-delay: 0s;
}

.s-2 {
    bottom: 10%;
    right: 10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, #db2777, transparent 60%); /* Pink */
    animation-delay: -5s;
}

.s-3 {
    top: 40%;
    left: 40%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #06b6d4, transparent 60%); /* Cyan */
    animation-delay: -10s;
}

@keyframes smokeFloat {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.6; }
    33% { transform: translate(50px, -50px) scale(1.1) rotate(10deg); opacity: 0.8; }
    66% { transform: translate(-30px, 50px) scale(0.9) rotate(-5deg); opacity: 0.6; }
    100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.6; }
}

.smokey-content {
    position: relative;
    z-index: 1;
    text-align: center;
    /* Removed mix-blend-mode for better text visibility */
}

.smokey-title {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 50px rgba(255,255,255,0.5);
}

.smokey-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* --- Nebula Aurora Section --- */
.nebula-section {
    position: relative;
    padding: 12rem 20px;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Subtle separator */
}

.nebula-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    filter: blur(60px);
    opacity: 0.9;
}

.nebula-blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: exclusion; /* Different blend mode for variety */
    animation: nebulaPulse 15s infinite alternate;
}

.n-1 {
    top: -10%;
    right: 20%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #7c3aed, transparent 60%); /* Violet */
    animation-delay: 0s;
}

.n-2 {
    bottom: -20%;
    left: 10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #2563eb, transparent 60%); /* Royal Blue */
    animation-delay: -3s;
}

.n-3 {
    top: 30%;
    left: 40%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, #db2777, transparent 60%); /* Pink */
    opacity: 0.6;
    animation-delay: -7s;
}

/* Star field effect */
.nebula-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 10% 10%, #fff, transparent),
        radial-gradient(1px 1px at 20% 80%, #fff, transparent),
        radial-gradient(2px 2px at 40% 40%, #fff, transparent),
        radial-gradient(1px 1px at 60% 30%, #fff, transparent),
        radial-gradient(2px 2px at 80% 90%, #fff, transparent);
    opacity: 0.3;
    animation: starTwinkle 5s infinite;
}

@keyframes nebulaPulse {
    0% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    100% { transform: scale(1.2) rotate(15deg); opacity: 0.9; }
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 0.6; transform: translateY(-10px); }
}

.nebula-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.nebula-title {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1rem;
    position: relative;
}

.nebula-title::after {
    content: attr(data-text); /* Use JS to populate if needed, or simple duplicate */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    opacity: 0;
    transition: opacity 0.5s;
}

.nebula-section:hover .nebula-title {
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.nebula-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-top: 2rem;
}

/* --- Aurora Results Section --- */
.aurora-results-section {
    position: relative;
    padding: 10rem 20px;
    background: #000;
    overflow: hidden;
    text-align: center;
}

.aurora-blobs-results {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    filter: blur(90px);
    opacity: 0.5;
    pointer-events: none;
}

.blob-result {
    position: absolute;
    border-radius: 50%;
    animation: floatResults 25s infinite ease-in-out;
}

.blob-r1 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #4338ca, transparent 70%); /* Darker Indigo */
    top: -20%;
    left: -10%;
    animation-delay: 0s;
}

.blob-r2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #be185d, transparent 70%); /* Darker Pink */
    bottom: -10%;
    right: -10%;
    animation-delay: -8s;
}

.blob-r3 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, #0e7490, transparent 70%); /* Darker Cyan */
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
    animation-delay: -15s;
}

@keyframes floatResults {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.95); }
    100% { transform: translate(0, 0) scale(1); }
}

.results-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.aurora-subtitle-small {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--accent-1);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.aurora-title-medium {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.aurora-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.glass-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.glass-stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1;
}

.gradient-text-1 {
    background: linear-gradient(135deg, #fff 30%, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-2 {
    background: linear-gradient(135deg, #fff 30%, #f9a8d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-3 {
    background: linear-gradient(135deg, #fff 30%, #67e8f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-4 {
    background: linear-gradient(135deg, #fff 30%, #fde047);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 250px;
}

/* --- Crystalline Core Section (Minimal Refactor) --- */
.crystalline-section {
    position: relative;
    padding: 12rem 20px;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crystal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.crystal-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
    filter: blur(50px);
    animation: pulseMinimal 8s infinite ease-in-out alternate;
}

/* Minimal smooth glowing element - The "Horizon" */
.c1 {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 60%); /* Indigo tint */
    animation-delay: 0s;
}

.c2 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1), transparent 60%); /* Pink tint */
    animation-duration: 12s;
    animation-delay: -2s;
}

.c3 {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1), transparent 60%); /* Cyan tint */
    animation-duration: 10s;
    animation-delay: -5s;
}

/* Central minimalist line */
.crystal-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #fff, transparent);
    opacity: 0.3;
    animation: verticalLine 4s infinite ease-in-out;
}

@keyframes pulseMinimal {
    0% { transform: scale(0.9); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes verticalLine {
    0%, 100% { height: 150px; opacity: 0.2; }
    50% { height: 250px; opacity: 0.5; }
}

.crystalline-content {
    position: relative;
    z-index: 1;
    text-align: center;
    /* Removed mix-blend-mode for better clarity */
}

.crystal-title {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    color: #fff;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.crystal-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 10px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.crystal-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: var(--accent-1);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .aurora-card {
        min-height: 400px;
    }
    
    .manifesto-section {
        padding: 6rem 20px;
    }

    .accordion-content p {
        padding-left: 0; /* Remove indent on mobile */
    }

    .smokey-section {
        padding: 8rem 20px;
    }

    .nebula-section {
        padding: 8rem 20px;
    }

    .aurora-results-section {
        padding: 8rem 20px;
    }

    /* Crystalline Mobile Fixes */
    .crystalline-section {
        padding: 8rem 20px;
    }

    .crystal-container {
        width: 90vw;
        height: 90vw;
    }

    .crystal-title {
        font-size: 2.5rem; /* Explicit fallback */
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .crystal-subtitle {
        font-size: 0.9rem;
        letter-spacing: 4px; /* Reduce spacing to prevent overflow */
    }
}
/* --- Smokey Aurora Contact Section --- */
.aurora-contact-section {
    position: relative;
    padding: 10rem 5vw;
    background: #000;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 800px;
}

/* Background Aurora Gradient */
.aurora-contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(79, 70, 229, 0.15), 
        rgba(219, 39, 119, 0.1), 
        rgba(6, 182, 212, 0.1), 
        transparent 70%);
    animation: auroraRotate 20s linear infinite;
    z-index: 0;
    filter: blur(60px);
}

@keyframes auroraRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.aurora-contact-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.aurora-contact-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 40px;
    padding: clamp(3rem, 5vw, 5rem);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.aurora-contact-title {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

/* Form Grid */
.aurora-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.aurora-input-group {
    position: relative;
}

.aurora-input-group.full-width {
    grid-column: span 2;
}

/* Premium Inputs */
.aurora-input, .aurora-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.2rem;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.aurora-input::placeholder, .aurora-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.aurora-input:focus, .aurora-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.aurora-textarea {
    min-height: 150px;
    resize: vertical;
}

/* Submit Button */
.aurora-submit-btn {
    width: 100%;
    padding: 1.5rem;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 15px;
    font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.aurora-submit-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Smoke Effect Layers */
.smoke-container-contact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.smoke-blob-contact {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatSmokeContact 15s infinite ease-in-out;
}

.smoke-c1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.2), transparent 70%);
    top: -100px;
    left: -100px;
}

.smoke-c2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(219, 39, 119, 0.2), transparent 70%);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.smoke-c3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -8s;
}

@keyframes floatSmokeContact {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .aurora-form-grid {
        grid-template-columns: 1fr;
    }
    .aurora-input-group.full-width {
        grid-column: span 1;
    }
    .aurora-contact-card {
        padding: 2rem;
    }
    .aurora-contact-section {
        padding: 6rem 20px;
    }
}

/* --- Premium Success Modal --- */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10001; /* Above preloader and cursor */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    backdrop-filter: blur(10px);
}

.success-modal.active {
    opacity: 1;
    visibility: visible;
}

.success-card {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 40px;
    padding: 3rem;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-modal.active .success-card {
    transform: scale(1);
}

/* Modal Aurora Background */
.success-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(79, 70, 229, 0.2), 
        rgba(219, 39, 119, 0.15), 
        rgba(6, 182, 212, 0.15), 
        transparent 60%);
    animation: auroraRotate 15s linear infinite;
    z-index: 0;
    filter: blur(50px);
}

.success-content {
    position: relative;
    z-index: 2;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #4f46e5, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.success-title {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.success-message {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.success-close-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50px;
    font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.success-close-btn:hover {
    background: #e0e0e0;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

 
 / *   - - -   P r e m i u m   A u r o r a   S m o k e y   P o r t f o l i o   C a r d s   - - -   * / 
 
 . p o r t f o l i o - g r i d   { 
 
         d i s p l a y :   g r i d ; 
 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 3 8 0 p x ,   1 f r ) ) ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         g a p :   4 r e m ; 
 
         w i d t h :   1 0 0 % ; 
 
         m a r g i n - t o p :   4 r e m ; 
 
         p a d d i n g :   0   2 r e m ; 
 
 } 
 
 
 
 . p o r t f o l i o - i t e m   { 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 2 ) ; 
 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 8 ) ; 
 
         b o r d e r - r a d i u s :   3 0 p x ; 
 
         o v e r f l o w :   h i d d e n ; 
 
         t r a n s i t i o n :   a l l   0 . 5 s   c u b i c - b e z i e r ( 0 . 2 3 ,   1 ,   0 . 3 2 ,   1 ) ; 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         m i n - h e i g h t :   5 5 0 p x ; 
 
         b a c k d r o p - f i l t e r :   b l u r ( 2 0 p x ) ; 
 
         - w e b k i t - b a c k d r o p - f i l t e r :   b l u r ( 2 0 p x ) ; 
 
         b o x - s h a d o w :   0   2 0 p x   4 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 4 ) ; 
 
         t r a n s f o r m - s t y l e :   p r e s e r v e - 3 d ; 
 
 } 
 
 
 
 / *   A u r o r a   G l o w   B a c k g r o u n d   L a y e r   * / 
 
 . p o r t f o l i o - i t e m : : b e f o r e   { 
 
         c o n t e n t :   ' ' ; 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   - 5 0 % ; 
 
         l e f t :   - 5 0 % ; 
 
         w i d t h :   2 0 0 % ; 
 
         h e i g h t :   2 0 0 % ; 
 
         b a c k g r o u n d :   r a d i a l - g r a d i e n t ( c i r c l e   a t   5 0 %   5 0 % ,   
 
                 r g b a ( 7 9 ,   7 0 ,   2 2 9 ,   0 . 1 5 ) ,   
 
                 r g b a ( 2 1 9 ,   3 9 ,   1 1 9 ,   0 . 1 ) ,   
 
                 r g b a ( 6 ,   1 8 2 ,   2 1 2 ,   0 . 1 ) ,   
 
                 t r a n s p a r e n t   6 0 % ) ; 
 
         o p a c i t y :   0 ; 
 
         t r a n s i t i o n :   o p a c i t y   0 . 6 s   e a s e ; 
 
         z - i n d e x :   0 ; 
 
         p o i n t e r - e v e n t s :   n o n e ; 
 
         a n i m a t i o n :   a u r o r a R o t a t e   2 0 s   l i n e a r   i n f i n i t e ; 
 
 } 
 
 
 
 . p o r t f o l i o - i t e m : h o v e r   { 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 5 p x )   s c a l e ( 1 . 0 2 ) ; 
 
         b o r d e r - c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 5 ) ; 
 
         b o x - s h a d o w :   0   4 0 p x   8 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 6 ) ,   
 
                                 0   0   3 0 p x   r g b a ( 7 9 ,   7 0 ,   2 2 9 ,   0 . 2 ) ;   / *   G l o w   * / 
 
 } 
 
 
 
 . p o r t f o l i o - i t e m : h o v e r : : b e f o r e   { 
 
         o p a c i t y :   1 ; 
 
 } 
 
 
 
 / *   I m a g e   C o n t a i n e r   * / 
 
 . p o r t f o l i o - i m a g e   { 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   3 5 0 p x ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         o v e r f l o w :   h i d d e n ; 
 
         p a d d i n g :   0 ; 
 
         b a c k g r o u n d :   # 0 0 0 ; 
 
         z - i n d e x :   1 ; 
 
         b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ; 
 
 } 
 
 
 
 . p o r t f o l i o - i m a g e   a   { 
 
         d i s p l a y :   b l o c k ; 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   1 0 0 % ; 
 
 } 
 
 
 
 . p o r t f o l i o - i m a g e   i m g   { 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   1 0 0 % ; 
 
         o b j e c t - f i t :   c o v e r ;   / *   F i l l   t h e   a r e a   n i c e l y   * / 
 
         t r a n s i t i o n :   t r a n s f o r m   0 . 8 s   c u b i c - b e z i e r ( 0 . 2 5 ,   0 . 4 6 ,   0 . 4 5 ,   0 . 9 4 ) ,   f i l t e r   0 . 5 s   e a s e ; 
 
         f i l t e r :   b r i g h t n e s s ( 0 . 9 )   g r a y s c a l e ( 2 0 % ) ; 
 
 } 
 
 
 
 . p o r t f o l i o - i t e m : h o v e r   . p o r t f o l i o - i m a g e   i m g   { 
 
         t r a n s f o r m :   s c a l e ( 1 . 1 ) ; 
 
         f i l t e r :   b r i g h t n e s s ( 1 . 1 )   g r a y s c a l e ( 0 % ) ; 
 
 } 
 
 
 
 / *   S m o k e y   O v e r l a y   o n   I m a g e   * / 
 
 . p o r t f o l i o - i m a g e : : a f t e r   { 
 
         c o n t e n t :   ' ' ; 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         b o t t o m :   0 ; 
 
         l e f t :   0 ; 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   6 0 % ; 
 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( t o   t o p ,   r g b a ( 0 , 0 , 0 , 0 . 9 ) ,   t r a n s p a r e n t ) ; 
 
         z - i n d e x :   2 ; 
 
         o p a c i t y :   0 . 8 ; 
 
         t r a n s i t i o n :   o p a c i t y   0 . 5 s   e a s e ; 
 
 } 
 
 
 
 . p o r t f o l i o - i t e m : h o v e r   . p o r t f o l i o - i m a g e : : a f t e r   { 
 
         o p a c i t y :   0 . 6 ; 
 
 } 
 
 
 
 / *   C o n t e n t   A r e a   * / 
 
 . p o r t f o l i o - i n f o   { 
 
         p a d d i n g :   2 . 5 r e m ; 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         t e x t - a l i g n :   c e n t e r ; 
 
         f l e x - g r o w :   1 ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         z - i n d e x :   2 ; 
 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( t o   b o t t o m ,   r g b a ( 0 , 0 , 0 , 0 . 2 ) ,   t r a n s p a r e n t ) ; 
 
 } 
 
 
 
 . p o r t f o l i o - i n f o   h 3   { 
 
         f o n t - f a m i l y :   ' S y n c o p a t e ' ,   s a n s - s e r i f ; 
 
         f o n t - s i z e :   1 . 6 r e m ; 
 
         c o l o r :   # f f f ; 
 
         m a r g i n - b o t t o m :   0 . 5 r e m ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         l i n e - h e i g h t :   1 . 3 ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
         l e t t e r - s p a c i n g :   1 p x ; 
 
         t e x t - s h a d o w :   0   2 p x   1 0 p x   r g b a ( 0 , 0 , 0 , 0 . 5 ) ; 
 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( t o   r i g h t ,   # f f f ,   # c c c ) ; 
 
         - w e b k i t - b a c k g r o u n d - c l i p :   t e x t ; 
 
         - w e b k i t - t e x t - f i l l - c o l o r :   t r a n s p a r e n t ; 
 
 } 
 
 
 
 . p r o j e c t - t a g   { 
 
         f o n t - f a m i l y :   ' S p a c e   G r o t e s k ' ,   s a n s - s e r i f ; 
 
         f o n t - s i z e :   0 . 8 5 r e m ; 
 
         c o l o r :   v a r ( - - a c c e n t - 2 ) ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
         l e t t e r - s p a c i n g :   3 p x ; 
 
         m a r g i n - b o t t o m :   2 r e m ; 
 
         o p a c i t y :   0 . 8 ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
 } 
 
 
 
 / *   P r e m i u m   B u t t o n s   * / 
 
 . p o r t f o l i o - b u t t o n s   { 
 
         m a r g i n - t o p :   a u t o ; 
 
         d i s p l a y :   f l e x ; 
 
         g a p :   1 5 p x ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         w i d t h :   1 0 0 % ; 
 
 } 
 
 
 
 . p o r t f o l i o - a c t i o n - b t n   { 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         d i s p l a y :   i n l i n e - f l e x ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         p a d d i n g :   1 4 p x   2 8 p x ; 
 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ; 
 
         c o l o r :   # f f f ; 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
         f o n t - f a m i l y :   ' S p a c e   G r o t e s k ' ,   s a n s - s e r i f ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         b o r d e r - r a d i u s :   5 0 p x ; 
 
         f o n t - s i z e :   0 . 9 5 r e m ; 
 
         t r a n s i t i o n :   a l l   0 . 4 s   e a s e ; 
 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 5 ) ; 
 
         b a c k d r o p - f i l t e r :   b l u r ( 5 p x ) ; 
 
         o v e r f l o w :   h i d d e n ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
         l e t t e r - s p a c i n g :   1 p x ; 
 
 } 
 
 
 
 . p o r t f o l i o - a c t i o n - b t n : : b e f o r e   { 
 
         c o n t e n t :   ' ' ; 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   0 ; 
 
         l e f t :   0 ; 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   1 0 0 % ; 
 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 4 5 d e g ,   v a r ( - - a c c e n t - 3 ) ,   v a r ( - - a c c e n t - 2 ) ) ; 
 
         z - i n d e x :   - 1 ; 
 
         t r a n s i t i o n :   t r a n s f o r m   0 . 5 s   e a s e ; 
 
         t r a n s f o r m :   s c a l e X ( 0 ) ; 
 
         t r a n s f o r m - o r i g i n :   r i g h t ; 
 
 } 
 
 
 
 . p o r t f o l i o - a c t i o n - b t n : h o v e r   { 
 
         b o r d e r - c o l o r :   t r a n s p a r e n t ; 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ; 
 
         b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ; 
 
 } 
 
 
 
 . p o r t f o l i o - a c t i o n - b t n : h o v e r : : b e f o r e   { 
 
         t r a n s f o r m :   s c a l e X ( 1 ) ; 
 
         t r a n s f o r m - o r i g i n :   l e f t ; 
 
 } 
 
 
 
 . p o r t f o l i o - a c t i o n - b t n . o u t l i n e   { 
 
         b a c k g r o u n d :   t r a n s p a r e n t ; 
 
         b o r d e r - c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ; 
 
 } 
 
 
 
 . p o r t f o l i o - a c t i o n - b t n . o u t l i n e : h o v e r   { 
 
         b a c k g r o u n d :   # f f f ; 
 
         c o l o r :   # 0 0 0 ; 
 
 } 
 
 
 
 . p o r t f o l i o - a c t i o n - b t n . o u t l i n e : h o v e r : : b e f o r e   { 
 
         d i s p l a y :   n o n e ; 
 
 } 
 
 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
 
         . p o r t f o l i o - g r i d   { 
 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
 
                 p a d d i n g :   0 ; 
 
                 g a p :   3 r e m ; 
 
         } 
 
         
 
         . p o r t f o l i o - i t e m   { 
 
                 m i n - h e i g h t :   a u t o ; 
 
         } 
 
         
 
         . p o r t f o l i o - i m a g e   { 
 
                 h e i g h t :   2 5 0 p x ; 
 
         } 
 
         
 
         . p o r t f o l i o - i n f o   h 3   { 
 
                 f o n t - s i z e :   1 . 4 r e m ; 
 
         } 
 
 } 
 
 
