/* ======================================
   PARGODA — styles.css
   Design System: Linear / Modern Dark
   Accent: #7000FF (Indigo Purple)
   Canvas: #050506 / Void: #020203
====================================== */

/* --- Brand Variables (Global) --- */
:root {
    --pg-void:           #020203;
    --pg-canvas:         #050506;
    --pg-surface:        rgba(255, 255, 255, 0.05);
    --pg-surface-hover:  rgba(255, 255, 255, 0.08);
    --pg-accent:         #7000FF;
    --pg-accent-glow:    rgba(112, 0, 255, 0.3);
    --pg-accent-subtle:  rgba(112, 0, 255, 0.12);
    --pg-border:         rgba(255, 255, 255, 0.06);
    --pg-border-hover:   rgba(255, 255, 255, 0.14);
    --pg-text:           #EDEDEF;
    --pg-muted:          #8A8F98;
    --pg-white:          #ffffff;
    --radius-card:       16px;
    --transition-base:   all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-card:       0 1px 0 0 rgba(255,255,255,0.06) inset,
                         0 4px 24px rgba(0,0,0,0.45),
                         0 0 0 1px rgba(255,255,255,0.06);
    --shadow-accent:     0 0 40px var(--pg-accent-glow),
                         0 4px 24px rgba(0,0,0,0.5);
}

/* ======== RESET & BASE ======== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--pg-canvas);
    color: var(--pg-text);
    direction: ltr;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }

/* ======== HEADER ======== */
.pargoda-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 9999;
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    background: transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}
.pargoda-header.scrolled {
    background: rgba(5, 5, 6, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--pg-border);
}
.header-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.header-logo img {
    height: 34px;
    width: auto;
    display: block;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-anchor {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--pg-muted);
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
    white-space: nowrap;
}
.nav-anchor:hover { color: var(--pg-text); }
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ======== NAV TOGGLE (MOBILE) ======== */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
}
.bar {
    display: block;
    width: 20px;
    height: 1.5px;
    background-color: var(--pg-text);
    border-radius: 2px;
    transition: var(--transition-base);
}
.nav-toggle.open .bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ======== MOBILE NAV DRAWER ======== */
.mobile-nav {
    position: fixed;
    top: 64px; left: 0;
    width: 100%;
    background: rgba(5, 5, 6, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--pg-border);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    padding: 24px 28px 32px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav-link {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--pg-muted);
    padding: 13px 0;
    border-bottom: 1px solid var(--pg-border);
    transition: color 0.2s ease;
}
.mobile-nav-link:hover { color: var(--pg-text); }
.mobile-cta { margin-top: 20px; align-self: flex-start; }

/* ======== BUTTONS ======== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--pg-white);
    background: var(--pg-accent);
    border-radius: 10px;
    border: 1px solid rgba(112, 0, 255, 0.6);
    box-shadow: 0 0 0 1px rgba(130,0,255,0.25) inset, var(--shadow-accent);
    transition: var(--transition-base);
    white-space: nowrap;
    letter-spacing: -0.01em;
}
.btn-primary:hover {
    background: #8020ff;
    box-shadow: 0 0 70px var(--pg-accent-glow), 0 4px 32px rgba(0,0,0,0.6);
    transform: translateY(-2px);
}
.btn-primary-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--pg-white);
    background: var(--pg-accent);
    border-radius: 8px;
    border: 1px solid rgba(112, 0, 255, 0.5);
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.25);
    transition: var(--transition-base);
    white-space: nowrap;
    letter-spacing: -0.01em;
}
.btn-primary-sm:hover {
    background: #8020ff;
    box-shadow: 0 0 30px var(--pg-accent-glow);
    transform: translateY(-1px);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--pg-muted);
    background: var(--pg-surface);
    border-radius: 10px;
    border: 1px solid var(--pg-border);
    box-shadow: 0 1px 0 0 rgba(255,255,255,0.04) inset;
    transition: var(--transition-base);
    white-space: nowrap;
}
.btn-ghost:hover {
    color: var(--pg-text);
    background: var(--pg-surface-hover);
    border-color: var(--pg-border-hover);
    box-shadow: 0 0 24px rgba(112, 0, 255, 0.15);
    transform: translateY(-1px);
}
.btn-ghost svg { width: 16px; height: 16px; }
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--pg-white);
    background: rgba(112, 0, 255, 0.14);
    border-radius: 12px;
    border: 1px solid rgba(112, 0, 255, 0.35);
    transition: var(--transition-base);
    letter-spacing: -0.01em;
    width: 100%;
}
.btn-whatsapp:hover {
    background: rgba(112, 0, 255, 0.25);
    border-color: rgba(112, 0, 255, 0.65);
    box-shadow: 0 0 40px rgba(112, 0, 255, 0.3);
    transform: translateY(-2px);
}
.btn-whatsapp svg { width: 18px; height: 18px; }

/* ======== SHARED SECTION UTILITIES ======== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.section-label-row { margin-bottom: 48px; }
.section-mono-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pg-accent);
    display: inline-block;
}
.section-mono-label.centered {
    display: block;
    text-align: center;
    margin-bottom: 24px;
}
.section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--pg-text);
    margin-bottom: 60px;
}
.section-heading span {
    background: linear-gradient(135deg, var(--pg-accent) 0%, #b060ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ======== HERO SECTION ======== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 90px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 90% 55% at 50% 0%, rgba(112, 0, 255, 0.14) 0%, transparent 70%),
        var(--pg-canvas);
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.55;
    animation: blobFloat 14s ease-in-out infinite alternate;
    will-change: transform;
}
.blob-1 {
    width: 900px;
    height: 700px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.45) 0%, transparent 65%);
    top: -200px;
    left: -200px;
}
.blob-2 {
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(80, 0, 200, 0.38) 0%, transparent 65%);
    bottom: -150px;
    right: -150px;
    animation-duration: 18s;
    animation-delay: -7s;
}
.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.018;
    background-size: 200px 200px;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 64px 64px;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 12px;
    border-radius: 100px;
    background: rgba(112, 0, 255, 0.12);
    border: 1px solid rgba(112, 0, 255, 0.28);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #b080ff;
    margin-bottom: 36px;
}
.hero-badge svg { width: 14px; height: 14px; stroke: #b080ff; stroke-width: 1.5px; }
.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.045em;
    color: var(--pg-text);
    margin-bottom: 28px;
}
.hero-title-gradient {
    background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.92) 45%, rgba(255,255,255,0.62) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.72;
    color: var(--pg-muted);
    max-width: 600px;
    margin: 0 auto 52px;
    letter-spacing: -0.01em;
}
.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ======== THE DEAL SECTION ======== */
.deal-section {
    padding: 120px 0;
    background: var(--pg-void);
}
.deal-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 16px;
    align-items: stretch;
}
.bento-card {
    position: relative;
    border-radius: var(--radius-card);
    background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--pg-border);
    padding: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: border-color 0.3s ease;
}
.bento-card:hover { border-color: var(--pg-border-hover); }
.card-spotlight {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.14) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.25s ease;
    top: 0; left: 0;
    z-index: 0;
}
.bento-card:hover .card-spotlight { opacity: 1; }
.card-icon-wrap {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--pg-border);
    margin-bottom: 24px;
}
.card-icon-wrap svg { width: 20px; height: 20px; stroke: var(--pg-muted); stroke-width: 1.5px; }
.card-icon-wrap.accent { background: rgba(112, 0, 255, 0.14); border-color: rgba(112, 0, 255, 0.3); }
.card-icon-wrap.accent svg { stroke: #b080ff; }
.card-title {
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--pg-text);
    margin-bottom: 16px;
}
.card-body {
    position: relative;
    z-index: 1;
    font-size: 0.925rem;
    line-height: 1.72;
    color: var(--pg-muted);
    margin-bottom: 28px;
}
.problem-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.problem-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--pg-muted);
}
.problem-list li svg { width: 14px; height: 14px; stroke: #ff4466; flex-shrink: 0; stroke-width: 2.5px; }
.framework-pills {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.pill {
    padding: 6px 18px;
    border-radius: 100px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--pg-border);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pg-muted);
}
.pill.accent-pill {
    background: rgba(112, 0, 255, 0.18);
    border-color: rgba(112, 0, 255, 0.4);
    color: #c0a0ff;
}
.pill-arrow { width: 14px; height: 14px; stroke: var(--pg-muted); opacity: 0.4; stroke-width: 1.5px; }

/* Full-bleed image card */
.bento-card.full-bleed {
    padding: 0;
    min-height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.card-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: var(--radius-card);
    overflow: hidden;
}
.card-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-card.full-bleed:hover .card-bg-img { transform: scale(1.06); }
.card-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.problem-overlay {
    background: linear-gradient(
        to top,
        rgba(2, 2, 3, 1) 0%,
        rgba(2, 2, 3, 0.9) 40%,
        rgba(2, 2, 3, 0.45) 70%,
        rgba(2, 2, 3, 0.1) 100%
    );
}
.opportunity-overlay {
    background: linear-gradient(
        to top,
        rgba(2, 2, 3, 1) 0%,
        rgba(8, 0, 24, 0.95) 38%,
        rgba(40, 0, 100, 0.6) 65%,
        rgba(112, 0, 255, 0.12) 100%
    );
}
.card-content-inner {
    position: relative;
    z-index: 2;
    padding: 40px;
}
.card-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pg-muted);
    border: 1px solid var(--pg-border);
    background: rgba(255,255,255,0.05);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.card-tag.accent-tag {
    color: #b080ff;
    border-color: rgba(112, 0, 255, 0.3);
    background: rgba(112, 0, 255, 0.1);
}
.card-title {
    position: relative;
    z-index: 1;
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--pg-text);
    margin-bottom: 20px;
}
.card-title-accent {
    background: linear-gradient(135deg, var(--pg-accent) 0%, #b060ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ======== MARKET SECTION ======== */
.market-section {
    padding: 120px 0;
    background: var(--pg-canvas);
}
.market-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.market-card {
    padding: 48px 40px;
    border-radius: var(--radius-card);
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--pg-border);
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.market-card:hover { border-color: var(--pg-border-hover); }
.market-card.visible { opacity: 1; transform: translateY(0); }
.market-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(112, 0, 255, 0.12);
    border: 1px solid rgba(112, 0, 255, 0.22);
    margin-bottom: 24px;
}
.market-card-icon svg { width: 22px; height: 22px; stroke: #a060ff; stroke-width: 1.5px; }
.market-title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--pg-text);
    margin-bottom: 16px;
}
.market-desc {
    font-size: 0.925rem;
    line-height: 1.75;
    color: var(--pg-muted);
    margin-bottom: 28px;
}
.market-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.market-tags span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #9050ff;
    background: rgba(112, 0, 255, 0.1);
    border: 1px solid rgba(112, 0, 255, 0.2);
    padding: 4px 12px;
    border-radius: 100px;
}

/* ======== VALUE SECTION ======== */
.value-section {
    padding: 120px 0;
    background: var(--pg-void);
}
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.value-card {
    padding: 32px 28px;
    border-radius: var(--radius-card);
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--pg-border);
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.value-card.visible { opacity: 1; transform: translateY(0); }
.value-card:hover {
    border-color: rgba(112, 0, 255, 0.28);
    box-shadow: 0 0 32px rgba(112, 0, 255, 0.1), var(--shadow-card);
}
.value-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--pg-border);
    margin-bottom: 24px;
}
.value-icon-wrap svg { width: 20px; height: 20px; stroke: #a060ff; stroke-width: 1.5px; }
.value-card-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--pg-text);
    margin-bottom: 12px;
}
.value-card-body {
    font-size: 0.875rem;
    line-height: 1.72;
    color: var(--pg-muted);
}

/* ======== PRODUCT / FRAMEWORK SECTION ======== */
.product-section {
    padding: 120px 0;
    background: var(--pg-canvas);
}
.section-subtext {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--pg-muted);
    max-width: 560px;
    margin: -36px 0 56px;
    letter-spacing: -0.01em;
}

/* Framework 3-card grid */
.fw-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
}

/* Connecting arrows between cards */
.fw-cards::before,
.fw-cards::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 16px;
    height: 1px;
    background: linear-gradient(90deg, rgba(112,0,255,0.5), rgba(112,0,255,0.2));
    z-index: 5;
}
.fw-cards::before { left: calc(33.33% + 0px); }
.fw-cards::after  { left: calc(66.66% + 0px); }

.fw-card {
    padding: 40px 36px 36px;
    border-radius: var(--radius-card);
    background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--pg-border);
    box-shadow: var(--shadow-card);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}
.fw-card.visible { opacity: 1; transform: translateY(0); }
.fw-card:hover {
    border-color: var(--pg-border-hover);
    box-shadow: 0 0 24px rgba(112,0,255,0.08), var(--shadow-card);
}
.fw-card--elevated {
    background: linear-gradient(180deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
    border-color: rgba(255,255,255,0.1);
    transform: translateY(28px) translateY(-8px);
}
.fw-card--elevated.visible { transform: translateY(-8px); }
.fw-card--accent {
    background: linear-gradient(180deg, rgba(112,0,255,0.14) 0%, rgba(112,0,255,0.04) 100%);
    border-color: rgba(112, 0, 255, 0.28);
}
.fw-card--accent:hover {
    border-color: rgba(112, 0, 255, 0.45);
    box-shadow: 0 0 40px rgba(112,0,255,0.15), var(--shadow-card);
}
.fw-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.fw-number {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--pg-accent);
}
.fw-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--pg-border);
}
.fw-icon-wrap svg { width: 20px; height: 20px; stroke: var(--pg-muted); stroke-width: 1.5px; }
.fw-icon-wrap.accent { background: rgba(112,0,255,0.14); border-color: rgba(112,0,255,0.3); }
.fw-icon-wrap.accent svg { stroke: #b080ff; }
.fw-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--pg-text);
    margin-bottom: 16px;
    line-height: 1.0;
}
.fw-card--accent .fw-title {
    background: linear-gradient(135deg, var(--pg-accent) 0%, #b060ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fw-body {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--pg-muted);
    flex: 1;
    margin-bottom: 28px;
}
.fw-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}
.fw-tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pg-muted);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--pg-border);
    padding: 4px 10px;
    border-radius: 100px;
}
.fw-tag--accent {
    color: #a060ff;
    background: rgba(112,0,255,0.1);
    border-color: rgba(112,0,255,0.25);
}

/* ======== TRACTION SECTION ======== */
.traction-section {
    padding: 120px 0;
    background: var(--pg-void);
    overflow: hidden;
}
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    margin: 0 0 80px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}
.marquee-inner {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 16px 40px;
}
.marquee-logo {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.22);
    white-space: nowrap;
    transition: color 0.2s ease;
    cursor: default;
    user-select: none;
}
.marquee-logo:hover { color: var(--pg-text); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.testimonial-card {
    padding: 36px 32px;
    border-radius: var(--radius-card);
    background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--pg-border);
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial-card.visible { opacity: 1; transform: translateY(0); }
.testimonial-quote {
    font-size: 0.925rem;
    line-height: 1.78;
    color: var(--pg-text);
    margin-bottom: 28px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(112,0,255,0.5) 0%, rgba(80,0,200,0.3) 100%);
    border: 1px solid rgba(112,0,255,0.3);
    flex-shrink: 0;
}
.author-info { display: flex; flex-direction: column; gap: 3px; }
.author-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pg-text);
    letter-spacing: -0.01em;
}
.author-role {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--pg-muted);
}

/* ======== IMPACT SECTION ======== */
.impact-section {
    position: relative;
    padding: 160px 40px;
    background: var(--pg-void);
    text-align: center;
    overflow: hidden;
}
.impact-spotlight-glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 700px;
    background: radial-gradient(circle at center, rgba(112, 0, 255, 0.22) 0%, transparent 62%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}
.impact-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    z-index: 0;
}
.impact-content {
    position: relative;
    z-index: 2;
}
.impact-headline {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.045em;
    color: var(--pg-text);
    margin-bottom: 28px;
}
.impact-headline-accent {
    background: linear-gradient(135deg, var(--pg-accent) 0%, #a050ff 55%, #c080ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.impact-subtext {
    font-size: 1.1rem;
    line-height: 1.72;
    color: var(--pg-muted);
    max-width: 520px;
    margin: 0 auto 52px;
    letter-spacing: -0.01em;
}

/* ======== TEAM SECTION ======== */
.team-section {
    padding: 120px 0 140px;
    background: var(--pg-canvas);
    border-top: 1px solid var(--pg-border);
}
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.founder-card {
    display: flex;
    flex-direction: column;
    gap: 28px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.founder-card.visible { opacity: 1; transform: translateY(0); }
.founder-portrait-wrap {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--pg-border);
    box-shadow:
        0 1px 0 0 rgba(255,255,255,0.08) inset,
        0 8px 48px rgba(0,0,0,0.65),
        0 0 0 1px rgba(112,0,255,0.1);
    background: rgba(255,255,255,0.03);
}
.founder-portrait { width: 100%; height: 100%; object-fit: cover; }
.founder-info { display: flex; flex-direction: column; gap: 12px; }
.founder-name {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--pg-text);
}
.founder-role-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pg-accent);
}
.founder-bio {
    font-size: 0.95rem;
    line-height: 1.78;
    color: var(--pg-muted);
    max-width: 400px;
}
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid var(--pg-border);
    background: var(--pg-surface);
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, background 0.25s ease;
}
.contact-item.visible { opacity: 1; transform: translateX(0); }
.contact-item:hover { border-color: var(--pg-border-hover); background: var(--pg-surface-hover); }
.contact-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--pg-border);
    flex-shrink: 0;
}
.contact-icon-wrap svg { width: 18px; height: 18px; stroke: var(--pg-muted); stroke-width: 1.5px; }
.contact-icon-wrap.accent { background: rgba(112,0,255,0.12); border-color: rgba(112,0,255,0.25); }
.contact-icon-wrap.accent svg { stroke: #a060ff; }
.contact-details { display: flex; flex-direction: column; gap: 3px; }
.contact-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pg-muted);
}
.contact-value {
    font-size: 0.925rem;
    font-weight: 600;
    color: var(--pg-text);
    transition: color 0.2s ease;
}
.contact-value:hover { color: #a060ff; }
.contact-value.accent { color: #a060ff; }
.contact-cta-wrap { margin-top: 8px; }

/* ======== FOOTER ======== */
.pargoda-footer {
    background: var(--pg-void);
    border-top: 1px solid var(--pg-border);
    padding: 48px 40px 0;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 56px;
    padding-bottom: 40px;
    flex-wrap: wrap;
}
.footer-logo-wrap { margin-right: auto; }
.footer-logo {
    height: 26px;
    width: auto;
    opacity: 0.55;
    transition: opacity 0.2s ease;
}
.footer-logo:hover { opacity: 1; }
.footer-contact-item { display: flex; flex-direction: column; gap: 5px; }
.footer-contact-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
}
.footer-contact-value {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s ease;
}
.footer-contact-value:hover { color: var(--pg-text); }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid var(--pg-border);
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.18);
    letter-spacing: 0.03em;
}

/* ======== KEYFRAMES ======== */
@keyframes fadeInUp {
    0%   { opacity: 0; transform: translateY(32px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes blobFloat {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(40px, -30px) scale(1.05); }
    66%  { transform: translate(-25px, 22px) scale(0.97); }
    100% { transform: translate(18px, -12px) scale(1.02); }
}
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 16px var(--pg-accent-glow), 0 0 32px var(--pg-accent-glow); }
    50%       { box-shadow: 0 0 26px rgba(112,0,255,0.55), 0 0 52px rgba(112,0,255,0.4); }
}

/* ======== RESPONSIVE — 768px ======== */
@media (max-width: 768px) {
    .pargoda-header { padding: 0 20px; height: 64px; }
    .header-nav { display: none; }
    .nav-toggle { display: flex; }
    .btn-primary-sm { display: none; }

    .hero-section { padding: 100px 24px 64px; min-height: 100svh; }
    .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); letter-spacing: -0.035em; }
    .hero-subtitle { font-size: 1rem; }
    .hero-cta-group { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-ghost { text-align: center; justify-content: center; }

    .section-container { padding: 0 20px; }
    .deal-section, .market-section, .value-section,
    .product-section, .traction-section, .team-section { padding: 80px 0; }
    .section-heading { font-size: clamp(1.7rem, 7vw, 2.5rem); margin-bottom: 40px; }
    .section-label-row { margin-bottom: 28px; }

    .deal-grid { grid-template-columns: 1fr; }
    .bento-card.full-bleed { min-height: 420px; }
    .card-content-inner { padding: 28px 24px; }
    .card-title { font-size: 1.4rem; }
    .fw-cards { grid-template-columns: 1fr; gap: 12px; }
    .fw-card--elevated { transform: translateY(28px); }
    .fw-card--elevated.visible { transform: translateY(0); }
    .fw-title { font-size: 1.6rem; }
    .section-subtext { margin: -24px 0 40px; }
    .market-grid { grid-template-columns: 1fr; }
    .market-card { padding: 32px 28px; }
    .value-grid { grid-template-columns: 1fr; gap: 12px; }
    .value-card { padding: 24px 20px; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .timeline-wrapper { grid-template-columns: 36px 1fr; gap: 0 20px; }
    .timeline-steps { gap: 56px; }

    .impact-section { padding: 100px 24px; }
    .impact-headline { font-size: clamp(2.5rem, 12vw, 4rem); }

    .team-grid { grid-template-columns: 1fr; gap: 40px; }
    .founder-portrait-wrap { max-width: 100%; aspect-ratio: 4 / 3; }

    .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; padding-bottom: 32px; }
    .footer-logo-wrap { margin-right: 0; }
    .pargoda-footer { padding: 36px 20px 0; }
}

/* ======== RESPONSIVE — 1024px tablet ======== */
@media (max-width: 1024px) and (min-width: 769px) {
    .pargoda-header { padding: 0 28px; }
    .header-nav { gap: 22px; }
    .section-container { padding: 0 28px; }

    .deal-grid { grid-template-columns: 1fr; }
    .bento-card.full-bleed { min-height: 480px; }
    .fw-cards { grid-template-columns: 1fr; gap: 12px; }
    .fw-card--elevated { transform: translateY(28px); }
    .fw-card--elevated.visible { transform: translateY(0); }
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { gap: 48px; }
    .founder-portrait-wrap { max-width: 380px; }
    .impact-headline { font-size: clamp(2.8rem, 6vw, 5rem); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .testimonials-grid .testimonial-card:last-child { grid-column: span 2; max-width: 60%; margin: 0 auto; }
}
