:root {
    --gram-blue: #2AABEE;
    --gram-blue-dark: #1c7db1;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-white: #fafafa;
    --sketch-grey: #e0e0e0;
    --font-serif: 'Fredoka', sans-serif;
    --font-sans: 'Quicksand', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default; /* We will use custom cursor via JS */
}

/* Custom Paper Plane Cursor */
#plane-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background-image: url('assets/paper-plane.svg');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
    opacity: 0;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h2 {
    font-size: 3rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--gram-blue);
    border-radius: 2px;
}

h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: -0.2px;
}

.text-center { text-align: center; }

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.4rem;
}

.header-logo img {
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-nav {
    display: flex;
    gap: 2.5rem;
}

.header-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: var(--gram-blue);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gram-blue);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.header-nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Header Menu Container */
.header-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* Mobile Hamburger Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
    .mobile-toggle {
        display: flex;
    }
    
    .header-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1000;
    }
    
    .header-menu.active {
        right: 0;
    }
    
    .header-nav {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .header-nav a {
        font-size: 1.5rem;
    }
    
    .header-cta {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-socials a {
    color: var(--text-dark);
    opacity: 0.7;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.header-socials a:hover {
    color: var(--gram-blue);
    opacity: 1;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    font-family: var(--font-sans);
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
}

.btn-icon {
    flex-shrink: 0;
}

.btn-primary {
    background-color: var(--gram-blue);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(42, 171, 238, 0.3);
}

.btn-primary:hover {
    background-color: var(--gram-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 171, 238, 0.4);
}

.btn-secondary {
    position: relative;
    background-color: transparent;
    color: currentColor;
    border: 2px solid transparent;
}

.btn-secondary::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 40px; 
    padding: 2.5px; /* Ketebalan border gradasi */
    background: linear-gradient(135deg, var(--gram-blue), #00d2ff, #9b51e0); /* Gradasi biru ke ungu muda */
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.btn-secondary:hover {
    color: var(--gram-blue);
    background-color: rgba(42, 171, 238, 0.05);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

/* Shape Dividers */
.shape-divider-bottom, .shape-divider-top {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.shape-divider-bottom {
    bottom: -1px; /* -1px prevents pixel gap */
}

.shape-divider-top {
    top: -1px;
    transform: rotate(180deg);
}

.shape-divider-bottom svg, .shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* Section 1: Hero */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(250, 251, 245);
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 2rem;
    text-align: center;
    margin-top: -15vh; /* Menggeser teks lebih ke atas agar bebas dari karakter di bawah */
}

.headline {
    font-size: 5.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: #0b1b36;
    letter-spacing: -2px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 1), 0 0 15px rgba(255, 255, 255, 0.8); /* Glow putih yang kuat agar teks menonjol */
}

.subheadline {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #111;
    line-height: 1.6;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 2px 4px rgba(255, 255, 255, 1);
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-group .btn-primary {
    background: linear-gradient(135deg, var(--gram-blue), #1e90ff);
    box-shadow: 0 8px 25px rgba(42, 171, 238, 0.4);
    border: none;
    color: white;
}

.cta-group .btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid transparent;
    color: var(--text-dark);
}

.cta-group .btn-secondary:hover {
    background: #fff;
    border: 2px solid var(--gram-blue);
    color: var(--gram-blue);
}

/* Clouds Animation */
.clouds {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/dust.png');
    opacity: 0.5;
    animation: drift 100s linear infinite;
    pointer-events: none;
}

@keyframes drift {
    from { background-position: 0 0; }
    to { background-position: 1000px 0; }
}

/* Section 2: Why Gram */
.why-section {
    background-color: var(--bg-white);
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-text-content {
    text-align: left;
}

.why-text-content h2::after {
    left: 0;
    transform: none;
}

.lead-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--gram-blue-dark);
    margin: 2rem 0;
    line-height: 1.6;
}

.desc-text {
    font-weight: 600;
    font-size: 1.2rem;
    color: #444;
}

.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.check-item {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    font-weight: 600;
    border: 1px solid rgba(42, 171, 238, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.check-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(42, 171, 238, 0.15);
    border-color: var(--gram-blue);
}

.check-icon {
    width: 40px;
    height: 40px;
    background: rgba(42, 171, 238, 0.1);
    color: var(--gram-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.check-item p {
    font-size: 1.05rem;
    line-height: 1.4;
    color: var(--text-dark);
}

/* Section 3: Journey */
.journey-section {
    background-image: url('assets/journey-path-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-dark);
}

.journey-section h2 {
    color: var(--text-dark);
}

.journey-path {
    max-width: 800px;
    margin: 4rem auto 0;
    position: relative;
    padding: 2rem 0;
}

/* Vertical dashed line */
.journey-path::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background: repeating-linear-gradient(to bottom, var(--gram-blue) 0, var(--gram-blue) 10px, transparent 10px, transparent 20px);
    z-index: 1;
    opacity: 0.6;
}

.journey-step {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
    margin-bottom: 3rem;
    width: calc(50% - 40px);
    border-left: 5px solid var(--gram-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.journey-step:nth-of-type(odd) {
    margin-left: 0;
    border-left: none;
    border-right: 5px solid var(--gram-blue);
    text-align: right;
}

.journey-step:nth-of-type(even) {
    margin-left: auto;
    text-align: left;
}

/* Nodes */
.journey-step::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 5px solid var(--gram-blue);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 0 5px rgba(255,255,255,0.8);
}

.journey-step:nth-of-type(odd)::before {
    right: -40px;
    transform: translate(50%, -50%);
}

.journey-step:nth-of-type(even)::before {
    left: -40px;
    transform: translate(-50%, -50%);
}

.journey-step h3 {
    color: var(--gram-blue);
    margin-bottom: 0.8rem;
    font-size: 1.8rem;
}

.journey-step p {
    font-size: 1.15rem;
    color: #555;
}

/* Section 4: Tracks */
.tracks-section {
    background-color: var(--bg-white);
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.track-card {
    background-image: url('assets/track-card-bg.png');
    background-size: cover;
    background-color: #fff; /* fallback */
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.track-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Section 5: Highlights */
.highlights-section {
    background-color: var(--bg-white);
    padding-top: 2rem;
}

.magazine-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    margin-top: 3rem;
}

.highlight-item {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(42, 171, 238, 0.1);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: rgba(42, 171, 238, 0.3);
}

.highlight-item .tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gram-blue);
    margin-bottom: 1rem;
}

.highlight-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.highlight-item p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.highlight-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.highlight-main .real-img {
    margin-top: auto;
    height: 250px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.highlight-blue {
    background: linear-gradient(135deg, var(--gram-blue), var(--gram-blue-dark));
    color: white;
}

.highlight-blue .tag {
    color: rgba(255, 255, 255, 0.8);
}

.highlight-blue h3, .highlight-blue p {
    color: white;
}

.highlight-featured {
    grid-column: 2 / 4;
}

.member-avatars {
    display: flex;
    margin-top: auto;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f0f0f0;
    border: 3px solid #fff;
    margin-left: -15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #555;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.audio-wave {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
    margin-top: auto;
}

.audio-wave span {
    display: block;
    width: 8px;
    background-color: var(--gram-blue);
    border-radius: 4px;
    animation: wave 1.2s ease-in-out infinite alternate;
}

.audio-wave span:nth-child(1) { height: 20%; animation-delay: 0.0s; }
.audio-wave span:nth-child(2) { height: 60%; animation-delay: 0.2s; }
.audio-wave span:nth-child(3) { height: 100%; animation-delay: 0.4s; }
.audio-wave span:nth-child(4) { height: 40%; animation-delay: 0.6s; }
.audio-wave span:nth-child(5) { height: 80%; animation-delay: 0.8s; }

@keyframes wave {
    0% { transform: scaleY(0.5); opacity: 0.5; }
    100% { transform: scaleY(1); opacity: 1; }
}

/* Section 6: Community City */
.community-city-section {
    background-image: url('assets/future-city-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.community-city-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.7);
}

.city-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 3rem;
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Section 7: Values */
.values-section {
    background-color: var(--bg-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.value-item h3 {
    font-size: 2rem;
    color: var(--gram-blue);
}

.value-item p {
    font-style: italic;
    font-family: var(--font-serif);
    font-size: 1.2rem;
}

/* Section 8: FOMO */
.fomo-section {
    background-image: url('assets/stars-bg.png');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 8rem 0;
}

.fomo-section h2 {
    color: var(--text-light);
}

.fomo-section h2::after {
    background-color: var(--text-light);
}

.fomo-text {
    font-size: 1.3rem;
    margin: 2rem auto;
    max-width: 600px;
    opacity: 0.9;
}

.fomo-question {
    font-size: 1.1rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

/* Section 6: Community City (CTA) */
.city-section {
    position: relative;
    padding: 8rem 0;
    background-image: url('assets/stars-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.city-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
    z-index: 1;
}

.city-section .container {
    position: relative;
    z-index: 2;
}

.city-section h2 {
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.4);
    margin-bottom: 2rem;
}

.city-section .lead-text {
    font-size: 1.6rem;
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.cta-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3.5rem;
    border-radius: 24px;
    max-width: 700px;
    margin: 3rem auto 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.cta-box h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 2rem;
}

.cta-box p {
    color: var(--gram-blue);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-sans);
    margin-bottom: 1rem;
}

.cta-box .btn-primary {
    transform: scale(1.1);
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--gram-blue), #1e90ff);
    box-shadow: 0 0 30px rgba(42, 171, 238, 0.6);
    border: none;
    color: white;
}

.cta-box .btn-primary:hover {
    transform: scale(1.15);
    box-shadow: 0 0 50px rgba(42, 171, 238, 0.8);
}

/* Section 9: Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 6rem 2rem 2rem;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    padding-right: 2rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    border-radius: 50%; /* Membuat logo bulat sempurna */
    margin-right: 1.5rem; /* Memberi jarak agar judul tidak menempel */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.brand-logo h2 {
    font-size: 2rem;
    color: var(--bg-white);
    margin: 0;
}

/* Pembatas Body Premium (Garis Cahaya) */
.body-divider {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--gram-blue), transparent);
    box-shadow: 0 0 15px var(--gram-blue);
    border: none;
    margin: 0;
    position: relative;
    z-index: 20;
}

.footer-tagline {
    color: #a0aec0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.footer-links-group h3, .footer-social h3 {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links-group a {
    display: block;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-links-group a:hover {
    color: var(--gram-blue);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--bg-white);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--gram-blue);
    border-color: var(--gram-blue);
    transform: translateY(-3px);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-tagline-bottom {
    color: var(--bg-white);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.copyright {
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Section: Founder's Journey */
.story-section {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: #ffffff;
    padding: 7rem 0;
}

.story-section h2 {
    color: #ffffff;
}

.story-section .lead-text {
    color: #94a3b8 !important;
}

.story-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.story-panel {
    background: rgba(30, 41, 59, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.story-panel:hover {
    transform: translateY(-8px);
    border-color: rgba(42, 171, 238, 0.4);
    box-shadow: 0 25px 50px rgba(42, 171, 238, 0.15), 0 0 25px rgba(42, 171, 238, 0.08);
}

.panel-media {
    height: 250px;
    overflow: hidden;
    position: relative;
    background: #090d16;
}

.panel-image-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease;
}

.story-panel:hover .panel-image-placeholder {
    transform: scale(1.05);
}

.panel-image-placeholder.first-chapter {
    background: radial-gradient(circle at center, rgba(42, 171, 238, 0.25) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.panel-image-placeholder.second-chapter {
    background: radial-gradient(circle at center, rgba(239, 68, 68, 0.2) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.panel-image-placeholder.third-chapter {
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.2) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.sketch-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.06;
    background: repeating-linear-gradient(45deg, #ffffff, #ffffff 1px, transparent 1px, transparent 8px),
                repeating-linear-gradient(-45deg, #ffffff, #ffffff 1px, transparent 1px, transparent 8px);
    pointer-events: none;
    z-index: 1;
}

.illustration-concept {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    transition: all 0.4s ease;
}

.first-chapter .illustration-concept {
    color: var(--gram-blue);
    filter: drop-shadow(0 0 15px rgba(42, 171, 238, 0.5));
}

.second-chapter .illustration-concept {
    color: #ef4444;
    filter: drop-shadow(0 0 15px rgba(239, 68, 68, 0.5));
}

.third-chapter .illustration-concept {
    color: #10b981;
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.5));
}

.story-panel:hover .illustration-concept {
    transform: scale(1.1) rotate(5deg);
}

.chapter-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    z-index: 3;
}

.panel-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.panel-content h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.story-panel:hover .panel-content h3 {
    color: var(--gram-blue);
}

.panel-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.panel-date {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gram-blue);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.25rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .story-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-brand { padding-right: 0; }
    .header-cta .btn { padding: 0.5rem 1rem; font-size: 0.85rem; }
    .headline { font-size: 3.5rem; }
    .cta-group { flex-direction: column; }
    .magazine-layout { grid-template-columns: 1fr; }
    .highlight-main { grid-column: 1 / -1; grid-row: auto; }
    .highlight-featured { grid-column: 1 / -1; }
    .values-grid { grid-template-columns: 1fr; }
    
    .why-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .why-text-content {
        text-align: center;
    }
    .why-text-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .check-grid {
        grid-template-columns: 1fr;
    }

    
    .journey-path::before {
        left: 20px;
    }
    .journey-step {
        width: calc(100% - 50px);
        margin-left: 50px !important;
        text-align: left !important;
        border-right: none !important;
        border-left: 5px solid var(--gram-blue) !important;
        padding: 2rem;
    }
    .journey-step:nth-of-type(odd)::before, 
    .journey-step:nth-of-type(even)::before {
        left: -30px !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
    }
}

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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