/* ============================================
   SWBA – Siddharth Wagh Badminton Academy
   Plain HTML/CSS Stylesheet
   ============================================ */

/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap");

/* CSS Variables */
:root {
    --bg: #000000;
    --surface: #0a0a0a;
    --surface-2: #1a1a1a;
    --border: rgba(255, 255, 255, 0.1);
    --border-soft: rgba(255, 255, 255, 0.05);
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-faint: rgba(255, 255, 255, 0.4);
    --primary: #facc15;
    --primary-hover: #eab308;
    --primary-soft: rgba(250, 204, 21, 0.06);
    --max-width: 1280px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    background: var(--bg);
    color: var(--text);
    font-family: "DM Sans", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.005em;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font: inherit;
}
ul {
    list-style: none;
}

::selection {
    background: var(--primary);
    color: #000;
}

/* Typography */
.heading {
    font-family: "Barlow Condensed", "DM Sans", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 0.9;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    margin-bottom: 16px;
}
.eyebrow::before {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--primary);
}
.text-yellow {
    color: var(--primary);
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s ease;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
}
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    height: 80px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (min-width: 768px) {
    .nav-inner {
        padding: 0 48px;
    }
}
.nav-logo {
    display: flex;
    align-items: center;
}
.nav-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}
@media (min-width: 768px) {
    .nav-logo-img {
        height: 56px;
    }
}
.nav-logo:hover .nav-logo-img {
    transform: scale(1.05);
}
.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    font-size: 22px;
}
.nav-links {
    display: none;
    align-items: center;
    gap: 40px;
}
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}
.nav-link {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    transition: color 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}
.menu-toggle {
    display: block;
    color: #fff;
    padding: 8px;
}
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}
.mobile-menu {
    display: none;
    background: #000;
    border-top: 1px solid var(--border);
    padding: 24px;
    flex-direction: column;
    gap: 20px;
}
.mobile-menu.open {
    display: flex;
}
@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 128px 0 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 1) 100%
    );
    z-index: 1;
}
.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at top left,
        rgba(250, 204, 21, 0.18),
        transparent 60%
    );
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero h1 {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 9vw, 120px);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: #fff;
}
.hero-subtitle {
    margin-top: 32px;
    max-width: 640px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}
@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 18px;
    }
}
.hero-cta-row {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}
@media (min-width: 768px) {
    .btn {
        font-size: 14px;
    }
}
.btn-primary {
    background: var(--primary);
    color: #000;
}
.btn-primary:hover {
    background: #fff;
}
.btn-primary svg {
    transition: transform 0.3s ease;
}
.btn-primary:hover svg {
    transform: translateX(4px);
}
.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}
.btn-outline:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Stats */
.hero-stats {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    max-width: 768px;
}
@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}
.stat {
    background: #000;
    padding: 20px;
}
.stat-num {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    color: var(--primary);
    font-size: 28px;
    line-height: 1;
}
@media (min-width: 768px) {
    .stat-num {
        font-size: 40px;
    }
    .stat {
        padding: 24px;
    }
}
.stat-label {
    margin-top: 4px;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
@media (min-width: 768px) {
    .stat-label {
        font-size: 12px;
    }
}

/* Marquee */
.marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: #000;
    overflow: hidden;
    border-top: 1px solid rgba(234, 179, 8, 0.4);
    z-index: 3;
}
.marquee-track {
    display: flex;
    white-space: nowrap;
    padding: 12px 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    animation: marquee 30s linear infinite;
}
.marquee-item {
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    gap: 24px;
}
.marquee-sep {
    opacity: 0.5;
}
@media (min-width: 768px) {
    .marquee-track {
        font-size: 14px;
    }
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   PLAYERS SECTION
   ============================================ */
.section {
    padding: 96px 0;
    background: #000;
}
@media (min-width: 768px) {
    .section {
        padding: 128px 0;
    }
}
.section-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 56px;
}
@media (min-width: 768px) {
    .section-header {
        flex-direction: row;
        align-items: flex-end;
    }
}
.section-title {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 40px;
    line-height: 1;
    letter-spacing: -0.01em;
}
@media (min-width: 768px) {
    .section-title {
        font-size: 64px;
    }
}
.section-lede {
    color: var(--text-muted);
    max-width: 420px;
    font-size: 14px;
    line-height: 1.7;
}
@media (min-width: 768px) {
    .section-lede {
        font-size: 16px;
    }
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 768px) {
    .players-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}
@media (min-width: 1024px) {
    .players-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.player-card {
    position: relative;
    overflow: hidden;
    background: #171717;
    border: 1px solid var(--border);
    transition: all 0.5s ease;
}
.player-card:hover {
    border-color: rgba(250, 204, 21, 0.6);
    transform: translateY(-4px);
}
.player-image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}
.player-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.7s ease;
}
.player-card:hover .player-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}
.player-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        #000 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%
    );
    pointer-events: none;
}
.player-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
}
@media (min-width: 768px) {
    .player-info {
        padding: 20px;
    }
}
.player-cat {
    font-size: 10px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 4px;
}
@media (min-width: 768px) {
    .player-cat {
        font-size: 11px;
    }
}
.player-name {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}
@media (min-width: 768px) {
    .player-name {
        font-size: 20px;
    }
}
.player-arrow {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}
.player-card:hover .player-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   TOURNAMENTS
   ============================================ */
.tournaments {
    background: #050505;
    border-top: 1px solid var(--border-soft);
    position: relative;
    padding: 96px 0;
}
@media (min-width: 768px) {
    .tournaments {
        padding: 128px 0;
    }
}
.tournaments::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 1) 1px,
            transparent 1px
        );
    background-size: 60px 60px;
    pointer-events: none;
}
.tournaments-inner {
    position: relative;
}

.t-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.t-filter-icon {
    margin-right: 4px;
    color: var(--text-faint);
}
.filter-btn {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    padding: 8px 12px;
    border: 1px solid var(--border);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}
@media (min-width: 768px) {
    .filter-btn {
        font-size: 12px;
    }
}
.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.filter-btn.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

/* Desktop table */
.t-table {
    display: none;
    border: 1px solid var(--border);
    background: #000;
}
@media (min-width: 768px) {
    .t-table {
        display: block;
    }
}
.t-row {
    display: grid;
    grid-template-columns: 3fr 6fr 2fr 1fr;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-soft);
    font-size: 14px;
    transition: background 0.2s ease;
    align-items: center;
}
.t-row:hover {
    background: var(--primary-soft);
}
.t-row:hover .t-name {
    color: var(--primary);
}
.t-head {
    background: rgba(255, 255, 255, 0.03);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-faint);
    font-weight: 700;
    border-bottom: 1px solid var(--border);
}
.t-head:hover {
    background: rgba(255, 255, 255, 0.03);
}
.t-date {
    font-family: "Courier New", monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}
.t-name {
    transition: color 0.2s ease;
}
.t-loc {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}
.t-loc svg {
    color: rgba(255, 255, 255, 0.3);
}
.t-level {
    text-align: right;
}
.t-rows {
    max-height: 640px;
    overflow-y: auto;
}
.t-rows::-webkit-scrollbar {
    width: 6px;
}
.t-rows::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
}
.t-rows::-webkit-scrollbar-thumb {
    background: rgba(250, 204, 21, 0.4);
}
.t-rows::-webkit-scrollbar-thumb:hover {
    background: rgba(250, 204, 21, 0.7);
}

/* Mobile cards */
.t-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media (min-width: 768px) {
    .t-mobile {
        display: none;
    }
}
.t-card {
    border: 1px solid var(--border);
    background: #000;
    padding: 16px;
    transition: border-color 0.3s ease;
}
.t-card:hover {
    border-color: rgba(250, 204, 21, 0.5);
}
.t-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}
.t-card-date {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    font-family: "Courier New", monospace;
}
.t-card-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}
.t-card-loc {
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-faint);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Level badges */
.badge {
    display: inline-block;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    padding: 4px 8px;
}
.badge-international {
    background: var(--primary);
    color: #000;
}
.badge-national {
    background: #fff;
    color: #000;
}
.badge-state {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid var(--border);
}
.badge-district {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-soft);
}

.t-count {
    margin-top: 24px;
    text-align: center;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-faint);
}
@media (min-width: 768px) {
    .t-count {
        font-size: 12px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #000;
    border-top: 1px solid var(--border);
    color: #fff;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 0;
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 5fr 3fr 4fr;
    }
}
.footer-brand .logo-mark {
    width: 48px;
    height: 48px;
    font-size: 26px;
}
.footer-brand-title {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 0.08em;
}
.footer-brand-sub {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
.footer-desc {
    margin-top: 24px;
    color: var(--text-muted);
    max-width: 420px;
    font-size: 14px;
    line-height: 1.7;
}
.footer-title {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
}
.footer-links a:hover {
    color: var(--primary);
}
.footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    transition: color 0.2s ease;
}
.footer-contact:hover {
    color: var(--primary);
}
.footer-contact svg {
    margin-top: 2px;
    color: var(--primary);
    flex-shrink: 0;
}
.footer-bar {
    border-top: 1px solid var(--border);
}
.footer-bar-inner {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 11px;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
@media (min-width: 768px) {
    .footer-bar-inner {
        flex-direction: row;
    }
}

/* ============================================
   ABOUT COACH PAGE
   ============================================ */
.page-header {
    position: relative;
    padding: 128px 0 48px;
    border-bottom: 1px solid var(--border-soft);
    overflow: hidden;
}
@media (min-width: 768px) {
    .page-header {
        padding: 160px 0 64px;
    }
}
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at top right,
        rgba(250, 204, 21, 0.15),
        transparent 60%
    );
}
.page-header > .container {
    position: relative;
}
.page-title {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 8vw, 100px);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.coach-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 0;
    align-items: start;
}
@media (min-width: 1024px) {
    .coach-split {
        grid-template-columns: 5fr 7fr;
        gap: 64px;
        padding: 96px 0;
    }
}
.coach-photo-wrap {
    position: relative;
}
.coach-photo-wrap::before {
    content: "";
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(250, 204, 21, 0.6);
    transform: translate(12px, 12px);
    z-index: 0;
    transition: transform 0.5s ease;
}
.coach-photo-wrap:hover::before {
    transform: translate(16px, 16px);
}
.coach-photo-inner {
    position: relative;
    overflow: hidden;
    background: #171717;
    z-index: 1;
}
.coach-photo-inner img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.7s ease;
}
.coach-photo-wrap:hover .coach-photo-inner img {
    transform: scale(1.03);
}
.coach-photo-shade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 33%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.3) 50%,
        transparent
    );
    pointer-events: none;
}
.coach-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
}
@media (min-width: 768px) {
    .coach-photo-label {
        padding: 28px;
    }
}
.coach-photo-label .role {
    font-size: 10px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    margin-bottom: 4px;
}
.coach-photo-label .name {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 26px;
    line-height: 1;
    letter-spacing: -0.01em;
}
@media (min-width: 768px) {
    .coach-photo-label .role {
        font-size: 12px;
    }
    .coach-photo-label .name {
        font-size: 30px;
    }
}

.coach-bio {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.75;
}
@media (min-width: 768px) {
    .coach-bio {
        font-size: 18px;
    }
}
.coach-bio strong {
    color: var(--primary);
    font-weight: 600;
}
.coach-cta-row {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Pillars */
.pillars {
    padding: 64px 0;
    background: #050505;
    border-top: 1px solid var(--border-soft);
}
@media (min-width: 768px) {
    .pillars {
        padding: 96px 0;
    }
}
.pillars-head {
    margin-bottom: 48px;
    max-width: 640px;
}
.pillars-title {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 32px;
    line-height: 1;
}
@media (min-width: 768px) {
    .pillars-title {
        font-size: 56px;
    }
}
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (min-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.pillar {
    border: 1px solid var(--border);
    background: #000;
    padding: 28px;
    transition: all 0.5s ease;
}
.pillar:hover {
    border-color: rgba(250, 204, 21, 0.6);
    transform: translateY(-4px);
}
.pillar-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.pillar:hover .pillar-icon {
    transform: rotate(3deg);
}
.pillar-title {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
@media (min-width: 768px) {
    .pillar-title {
        font-size: 22px;
    }
}
.pillar-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-up {
    opacity: 0;
    animation: fadeUp 0.9s var(--ease) forwards;
}

/* Utility */
.hidden {
    display: none !important;
}
