/* === Base Reset & Variables === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* New Color Palette */
    --primary: #6863F2;
    --secondary: #0BD9D9;
    --accent: #66D96E;
    --bg: #0c0e0e;
    --surface: rgba(44, 49, 63, 0.8);

    /* Slate Scale */
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --white: #ffffff;

    /* Legacy colors mapped to new palette */
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --teal-400: var(--secondary);
    --teal-500: var(--secondary);
    --indigo-400: #9d99ff;
    --indigo-500: var(--primary);
    --indigo-600: var(--primary);
    --indigo-700: #4f4bc9;
    --rose-400: #fb7185;
    --emerald-400: var(--accent);
    --emerald-500: var(--accent);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--slate-950);
}

::-webkit-scrollbar-thumb {
    background: var(--slate-800);
    border-radius: 5px;
    border: 2px solid var(--slate-950);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--indigo-600);
}

/* === Animations === */
@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(80px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes loading-bar {
    0% {
        width: 0%;
        left: 0;
    }

    50% {
        width: 60%;
        left: 20%;
    }

    100% {
        width: 100%;
        left: 0;
    }
}

@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes pulse-slow {

    0%,
    100% {
        opacity: 0.1;
        transform: scale(1);
    }

    50% {
        opacity: 0.2;
        transform: scale(1.1);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.animate-fade-in {
    animation: fade-in 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-slide-up {
    animation: slide-up 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.animate-spin-slow {
    animation: spin-slow 35s linear infinite;
}

.animate-spin-reverse {
    animation: spin-reverse 50s linear infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-pulse-slow {
    animation: pulse-slow 8s ease-in-out infinite;
}

.animate-bounce-slow {
    animation: bounce-slow 6s ease-in-out infinite;
}

/* === Typography === */
h1,
h2,
h3,
h4 {
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.font-serif,
.hero-accent,
.story-quote,
.tw-accent {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.text-white {
    color: var(--white);
}

.font-bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

.text-indigo {
    color: var(--indigo-500);
}

.gradient-text {
    background: linear-gradient(to right, var(--white), var(--white), rgba(255, 255, 255, 0.2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-text-fade {
    background: linear-gradient(to right, var(--white), rgba(255, 255, 255, 0.1));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* === Buttons === */
button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    padding: 0.875rem 2rem;
    background: var(--indigo-600);
    color: var(--white);
    border-radius: 1rem;
    font-weight: 900;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-primary:hover {
    background: var(--indigo-500);
    transform: scale(1.05);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-secondary {
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1rem;
    border-radius: 2rem;
}

.btn-white {
    background: var(--white);
    color: var(--indigo-950);
    font-weight: 900;
    font-size: 1.25rem;
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3);
}

.btn-white:hover {
    background: #f0f0ff;
    transform: scale(1.05);
}

.btn-nav {
    padding: 0.75rem 1.5rem;
}

/* === Navbar === */
#navbar {
    position: fixed;
    width: 100%;
    z-index: 50;
    transition: all 0.7s;
    padding: 2rem 0;
}

#navbar.scrolled {
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    background: var(--indigo-600);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(255, 255, 255, 0.2), transparent);
}

.logo-icon svg {
    color: var(--white);
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    z-index: 1;
}

.logo:hover .logo-icon {
    transform: rotate(12deg);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.logo-accent {
    color: var(--indigo-400);
    font-weight: 200;
    letter-spacing: 0.1em;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 3rem;
}

.nav-links a {
    color: var(--slate-400);
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--indigo-500);
    transition: width 0.3s;
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.8);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: flex;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }
}

/* === Mobile Menu === */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(30px);
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.7s;
}

.mobile-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu a {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.05em;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--indigo-400);
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 0 5rem;
    overflow: hidden;
    background: var(--slate-950);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
}

.glow-1 {
    top: -10%;
    left: 20%;
    width: 800px;
    height: 800px;
    background: rgba(99, 102, 241, 0.15);
    animation: pulse-slow 8s ease-in-out infinite;
}

.glow-2 {
    bottom: -20%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: rgba(20, 184, 166, 0.1);
    animation: pulse-slow 8s ease-in-out infinite 2s;
}

.glow-3 {
    top: 40%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: rgba(245, 158, 11, 0.05);
}

.dot-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 1.5px 1.5px, white 0.5px, transparent 0);
    background-size: 48px 48px;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--indigo-400);
    font-size: 0.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: fit-content;
}

.badge-dot {
    width: 0.625rem;
    height: 0.625rem;
    background: var(--indigo-500);
    border-radius: 50%;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero h1 {
    font-size: clamp(3.5rem, 10vw, 9rem);
    color: var(--white);
    line-height: 0.85;
    letter-spacing: -0.05em;
}

.hero-accent {
    background: linear-gradient(to right, var(--amber-400), #fde68a, var(--amber-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.3));
    padding: 0.5rem 0;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--slate-400);
    max-width: 42rem;
    line-height: 1.7;
    font-weight: 200;
    letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
    .hero-desc {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-buttons .btn-primary {
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.5);
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-buttons .btn-primary:hover::before {
    opacity: 1;
}

/* === Hero Visual === */
.hero-visual {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: block;
    }
}

.browser-frame {
    position: relative;
    z-index: 10;
    padding: 4px;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05), transparent);
    border-radius: 4rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.browser-frame>div {
    background: var(--slate-900);
    border-radius: 3.9rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    transition: transform 0.7s;
}

.browser-frame:hover>div {
    transform: scale(0.98);
}

.browser-header {
    background: rgba(2, 6, 23, 0.8);
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.browser-dots {
    display: flex;
    gap: 0.625rem;
}

.browser-dots span {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
}

.dot-red {
    background: rgba(244, 63, 94, 0.4);
    box-shadow: 0 0 10px rgba(244, 63, 94, 0.3);
}

.dot-yellow {
    background: rgba(245, 158, 11, 0.4);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.dot-green {
    background: rgba(16, 185, 129, 0.4);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.browser-title {
    font-size: 0.625rem;
    color: var(--indigo-400);
    font-family: monospace;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 900;
    opacity: 0.8;
}

.browser-content {
    padding: 4rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--slate-950);
}

.browser-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(99, 102, 241, 0.1);
    animation: pulse-slow 8s ease-in-out infinite;
}

.engine-display {
    position: relative;
    z-index: 20;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(30px);
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.engine-icon {
    position: relative;
}

.engine-icon svg {
    width: 100px;
    height: 100px;
    color: var(--indigo-500);
    animation: bounce-slow 6s ease-in-out infinite;
}

.engine-icon::after {
    content: '';
    position: absolute;
    inset: -1rem;
    background: rgba(99, 102, 241, 0.2);
    filter: blur(20px);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.loading-bar {
    height: 6px;
    width: 12rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.loading-progress {
    height: 100%;
    background: linear-gradient(to right, var(--indigo-500), var(--teal-400), var(--indigo-600));
    animation: loading-bar 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    box-shadow: 0 0 15px var(--indigo-500);
    position: relative;
}

.engine-text {
    font-size: 0.7rem;
    color: var(--indigo-300);
    font-family: monospace;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    font-weight: 900;
    animation: pulse 2s ease-in-out infinite;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 50%;
}

.orbit-1 {
    top: -4rem;
    left: -4rem;
    width: 14rem;
    height: 14rem;
    animation: spin-slow 35s linear infinite;
}

.orbit-2 {
    bottom: -6rem;
    right: -6rem;
    width: 32rem;
    height: 32rem;
    border-color: rgba(255, 255, 255, 0.05);
    animation: spin-reverse 50s linear infinite;
}

/* === Section Styles === */
.section-header {
    max-width: 56rem;
    margin-bottom: 8rem;
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    color: var(--indigo-500);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    font-size: 0.7rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-tag.center {
    justify-content: center;
}

.section-tag.light {
    color: rgba(255, 255, 255, 0.6);
}

.tag-line {
    height: 1px;
    width: 2.5rem;
    background: rgba(99, 102, 241, 0.5);
}

.tag-line.light {
    background: rgba(255, 255, 255, 0.3);
}

.section-header h2 {
    font-size: clamp(2.5rem, 8vw, 7rem);
    color: var(--white);
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin-bottom: 2.5rem;
}

.section-desc {
    font-size: 1.25rem;
    color: var(--slate-400);
    font-weight: 200;
    line-height: 1.7;
    letter-spacing: -0.02em;
    max-width: 42rem;
}

@media (min-width: 1024px) {
    .section-desc {
        font-size: 1.5rem;
    }
}

/* === Roots Section === */
.roots {
    padding: 10rem 0;
    background: var(--slate-950);
    position: relative;
    overflow: hidden;
}

.roots-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .roots-grid {
        grid-template-columns: 5fr 7fr;
    }
}

.story-tabs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-tab {
    width: 100%;
    text-align: left;
    padding: 2.5rem;
    border-radius: 2.5rem;
    transition: all 0.7s;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    background: transparent;
    opacity: 0.3;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.story-tab:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(0.5rem);
}

.story-tab.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(1rem) scale(1.05);
    opacity: 1;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.tab-icon {
    padding: 1.25rem;
    border-radius: 1.5rem;
    background: var(--slate-900);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s;
}

.tab-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.tab-icon.amber svg {
    color: var(--amber-400);
}

.tab-icon.indigo svg {
    color: var(--indigo-400);
}

.tab-icon.teal svg {
    color: var(--teal-400);
}

.tab-icon.rose svg {
    color: var(--rose-400);
}

.story-tab:hover .tab-icon,
.story-tab.active .tab-icon {
    transform: rotate(12deg);
}

.story-tab.active .tab-icon {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.2);
}

.tab-subtitle {
    font-size: 0.55rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--slate-500);
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s;
}

.story-tab.active .tab-subtitle {
    color: var(--indigo-400);
}

.tab-content h3 {
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.story-display {
    background: rgba(15, 23, 42, 0.3);
    border-radius: 4rem;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .story-display {
        padding: 7rem;
    }
}

.story-bg-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 4rem;
    opacity: 0.05;
    transform: rotate(12deg);
    transition: transform 1s;
}

.story-bg-icon svg {
    width: 400px;
    height: 400px;
    color: var(--white);
}

.story-display:hover .story-bg-icon {
    transform: rotate(0deg);
}

.story-content {
    position: relative;
    z-index: 10;
    animation: fade-in 0.8s ease-out;
}

.story-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 900;
    color: var(--indigo-400);
    letter-spacing: 0.5em;
    margin-bottom: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.story-quote {
    font-size: 2.5rem;
    color: var(--indigo-400);
    margin-bottom: 3rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .story-quote {
        font-size: 3.5rem;
    }
}

.story-text {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 200;
    line-height: 1.5;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
    .story-text {
        font-size: 2rem;
    }
}

.story-footer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--slate-500);
}

.footer-line {
    height: 2px;
    width: 5rem;
    background: rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.story-footer span:last-child {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.6em;
    color: var(--indigo-400);
}

/* === Manifesto Section === */
.manifesto {
    padding: 12rem 0;
    background: var(--indigo-700);
    position: relative;
    overflow: hidden;
}

.manifesto::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23000' fill-opacity='0.2' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
    opacity: 0.2;
}

.manifesto-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.manifesto-icon {
    position: relative;
    display: inline-block;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 2.5rem;
    box-shadow: 0 30px 60px -15px rgba(255, 255, 255, 0.3);
    transition: transform 0.7s;
}

.manifesto:hover .manifesto-icon {
    transform: rotate(6deg);
}

.manifesto-icon::before {
    content: '';
    position: absolute;
    inset: -1rem;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(30px);
    border-radius: 50%;
}

.manifesto-icon svg {
    color: var(--indigo-700);
    width: 4rem;
    height: 4rem;
    position: relative;
    z-index: 1;
}

.manifesto h2 {
    font-size: clamp(2rem, 6vw, 5rem);
    color: var(--white);
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.underline-accent {
    text-decoration: underline;
    text-decoration-color: var(--amber-400);
    text-decoration-thickness: 8px;
    text-underline-offset: 16px;
    filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.5));
}

@media (min-width: 1024px) {
    .underline-accent {
        text-decoration-thickness: 12px;
        text-underline-offset: 24px;
    }
}

.manifesto p {
    font-size: 1.5rem;
    color: rgba(199, 210, 254, 1);
    font-weight: 200;
    line-height: 1.6;
    letter-spacing: -0.02em;
    max-width: 64rem;
}

@media (min-width: 1024px) {
    .manifesto p {
        font-size: 2rem;
    }
}

.italic-accent {
    color: var(--white);
    font-weight: 900;
    font-style: italic;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
}

.manifesto-tag {
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8em;
    color: rgba(255, 255, 255, 0.6);
}

.manifesto::after {
    content: '';
    position: absolute;
    bottom: -12rem;
    left: -12rem;
    width: 40rem;
    height: 40rem;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    filter: blur(150px);
}

/* === Triangle Section === */
.triangle-section {
    padding: 10rem 0;
    background: var(--slate-950);
}

.triangle-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .triangle-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.triangle-visual {
    position: relative;
    aspect-ratio: 1;
    max-width: 40rem;
    margin: 0 auto;
    width: 100%;
}

.triangle-glow {
    position: absolute;
    inset: 0;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    filter: blur(150px);
    transition: background 1s;
}

.triangle-visual:hover .triangle-glow {
    background: rgba(99, 102, 241, 0.2);
}

.triangle-svg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25));
}

.triangle-svg line {
    transition: all 1s;
    stroke-width: 0.8;
    stroke: var(--slate-800);
    opacity: 0.3;
}

.triangle-svg line.active {
    stroke-width: 1.8;
    opacity: 1;
}

.line-indigo.active {
    stroke: var(--indigo-400);
}

.line-teal.active {
    stroke: var(--teal-400);
}

.line-amber.active {
    stroke: var(--amber-400);
}

.vertex circle {
    transition: all 1s;
    cursor: pointer;
}

.vertex-amber {
    fill: var(--slate-800);
}

.vertex-amber.active {
    fill: var(--amber-400);
    transform: scale(1.25);
    transform-origin: 50px 10px;
}

.vertex-indigo {
    fill: var(--slate-800);
}

.vertex-indigo.active {
    fill: var(--indigo-400);
    transform: scale(1.25);
    transform-origin: 90px 80px;
}

.vertex-teal {
    fill: var(--slate-800);
}

.vertex-teal.active {
    fill: var(--teal-400);
    transform: scale(1.25);
    transform-origin: 10px 80px;
}

.vertex-label {
    fill: var(--white);
    font-size: 4px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.center-circle {
    fill: var(--slate-900);
    transition: all 0.7s;
    cursor: pointer;
}

.center-circle.active {
    fill: var(--white);
    transform: scale(1.1);
    transform-origin: 50px 56px;
}

.center-text {
    fill: var(--slate-600);
    font-size: 5px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: fill 0.7s;
}

.center-circle.active+.center-text {
    fill: var(--slate-950);
}

.triangle-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-card {
    padding: 2.5rem;
    border-radius: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(15, 23, 42, 0.3);
    opacity: 0.4;
    transition: all 0.7s;
    cursor: pointer;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.feature-card:hover {
    opacity: 1;
}

.feature-card.active {
    opacity: 1;
    transform: scale(1.05);
}

.feature-card.teal.active {
    background: rgba(20, 184, 166, 0.1);
    border-color: rgba(20, 184, 166, 0.3);
}

.feature-card.indigo.active {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

.feature-card.amber.active {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: color 0.3s;
}

.feature-card h3 svg {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.5s;
}

.feature-card.active h3 svg {
    transform: rotate(12deg) scale(1.1);
}

.feature-card.teal.active h3 {
    color: var(--teal-400);
}

.feature-card.indigo.active h3 {
    color: var(--indigo-400);
}

.feature-card.amber.active h3 {
    color: var(--amber-400);
}

.feature-card p {
    font-size: 1.125rem;
    color: var(--slate-400);
    font-weight: 200;
    font-style: italic;
    letter-spacing: -0.02em;
    line-height: 1.6;
}

/* === Methodology Section === */
.methodology {
    padding: 12rem 0;
    background: var(--slate-900);
    position: relative;
}

.methodology-grid {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .methodology-grid {
        flex-direction: row;
    }
}

.methodology-content {
    flex: 1;
}

.methodology-content h2 {
    font-size: clamp(2.5rem, 8vw, 7rem);
    color: var(--white);
    margin-bottom: 4rem;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-step {
    padding: 2.5rem;
    border-radius: 3rem;
    transition: all 0.7s;
    cursor: pointer;
    border-left: 8px solid transparent;
    display: flex;
    gap: 2rem;
    align-items: center;
    opacity: 0.3;
}

.method-step:hover {
    opacity: 1;
    transform: translateX(0.5rem);
}

.method-step.active {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--indigo-500);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateX(1.5rem);
    opacity: 1;
}

.step-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-800);
    color: var(--slate-500);
    transition: all 0.7s;
    flex-shrink: 0;
}

.step-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.method-step.active .step-icon {
    background: var(--indigo-600);
    color: var(--white);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
    transform: rotate(6deg);
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.step-content p {
    font-size: 1.125rem;
    color: var(--slate-400);
    font-weight: 200;
    letter-spacing: -0.02em;
    line-height: 1.6;
}

.methodology-visual {
    flex: 1;
    width: 100%;
    aspect-ratio: 1;
    background: var(--slate-950);
    border-radius: 5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.visual-bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23fff' fill-opacity='0.03' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
}

.visual-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(99, 102, 241, 0.05), transparent);
}

.visual-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fade-in 0.8s ease-out;
}

.deconstruct-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.grid-cell {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.grid-cell:nth-child(1) {
    animation-delay: 0ms;
}

.grid-cell:nth-child(2) {
    animation-delay: 60ms;
}

.grid-cell:nth-child(3) {
    animation-delay: 120ms;
}

.grid-cell:nth-child(4) {
    animation-delay: 180ms;
}

.grid-cell:nth-child(5) {
    animation-delay: 240ms;
}

.grid-cell:nth-child(6) {
    animation-delay: 300ms;
}

.grid-cell:nth-child(7) {
    animation-delay: 360ms;
}

.grid-cell:nth-child(8) {
    animation-delay: 420ms;
}

.grid-cell:nth-child(9) {
    animation-delay: 480ms;
}

.grid-cell:nth-child(10) {
    animation-delay: 540ms;
}

.grid-cell:nth-child(11) {
    animation-delay: 600ms;
}

.grid-cell:nth-child(12) {
    animation-delay: 660ms;
}

.grid-cell:nth-child(13) {
    animation-delay: 720ms;
}

.grid-cell:nth-child(14) {
    animation-delay: 780ms;
}

.grid-cell:nth-child(15) {
    animation-delay: 840ms;
}

.grid-cell:nth-child(16) {
    animation-delay: 900ms;
}

.grid-cell:nth-child(17) {
    animation-delay: 960ms;
}

.grid-cell:nth-child(18) {
    animation-delay: 1020ms;
}

.grid-cell:nth-child(19) {
    animation-delay: 1080ms;
}

.grid-cell:nth-child(20) {
    animation-delay: 1140ms;
}

.grid-cell:nth-child(21) {
    animation-delay: 1200ms;
}

.grid-cell:nth-child(22) {
    animation-delay: 1260ms;
}

.grid-cell:nth-child(23) {
    animation-delay: 1320ms;
}

.grid-cell:nth-child(24) {
    animation-delay: 1380ms;
}

.grid-cell:nth-child(25) {
    animation-delay: 1440ms;
}

.map-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-visual .line-h,
.map-visual .line-v {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.map-visual .line-h {
    width: 100%;
    height: 1px;
}

.map-visual .line-v {
    height: 100%;
    width: 1px;
}

.map-visual .orbit {
    width: 16rem;
    height: 16rem;
    border: 2px dashed rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: spin-slow 35s linear infinite;
}

.map-visual .dot {
    position: absolute;
    border-radius: 50%;
}

.map-visual .dot-1 {
    top: 50%;
    left: 25%;
    width: 1.25rem;
    height: 1.25rem;
    background: var(--indigo-500);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.8);
}

.map-visual .dot-2 {
    bottom: 25%;
    right: 33%;
    width: 1rem;
    height: 1rem;
    background: var(--amber-500);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.8);
}

.map-visual .dot-3 {
    top: 25%;
    right: 25%;
    width: 1rem;
    height: 1rem;
    background: var(--teal-500);
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.8);
}

.pinpoint-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.pinpoint-icon {
    width: 14rem;
    height: 14rem;
    background: var(--indigo-600);
    border-radius: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px -15px rgba(99, 102, 241, 0.6);
    transition: transform 0.7s;
}

.methodology-visual:hover .pinpoint-icon {
    transform: scale(1.1);
}

.pinpoint-icon svg {
    width: 5rem;
    height: 5rem;
    color: var(--white);
}

.pinpoint-text {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-style: italic;
    text-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.pinpoint-bar {
    height: 0.5rem;
    width: 16rem;
    background: var(--slate-800);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.pinpoint-bar div {
    height: 100%;
    background: linear-gradient(to right, var(--indigo-500), var(--teal-400));
    border-radius: 9999px;
    animation: loading-bar 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    box-shadow: 0 0 15px var(--indigo-500);
}

/* === Services Section === */
.services {
    padding: 12rem 0;
    background: var(--slate-950);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.service-group {
    background: var(--slate-900);
    border-radius: 5rem;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1024px) {
    .service-group {
        padding: 6rem;
    }
}

.service-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 40rem;
    height: 40rem;
    border-radius: 50%;
    filter: blur(120px);
    transition: background 1s;
}

.service-group.indigo .service-glow {
    background: rgba(99, 102, 241, 0.05);
}

.service-group.teal .service-glow {
    background: rgba(20, 184, 166, 0.05);
}

.service-group:hover .service-glow {
    background: rgba(99, 102, 241, 0.1);
}

.service-header {
    position: relative;
    z-index: 10;
    margin-bottom: 4rem;
}

.service-subtitle {
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    margin-bottom: 1rem;
    display: block;
}

.service-group.indigo .service-subtitle {
    color: var(--indigo-400);
}

.service-group.teal .service-subtitle {
    color: var(--teal-400);
}

.service-header h3 {
    font-size: 2.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.05em;
    line-height: 1;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    background: rgba(2, 6, 23, 0.8);
    padding: 2.5rem;
    border-radius: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 2.5rem;
    transition: transform 0.7s;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(30px);
}

.service-item:hover {
    transform: translateX(1.5rem);
}

.service-icon {
    width: 5rem;
    height: 5rem;
    background: var(--slate-900);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.service-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.service-group.indigo .service-icon svg {
    color: var(--indigo-400);
}

.service-group.teal .service-icon svg {
    color: var(--teal-400);
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-item h4 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.service-item p {
    font-size: 1.125rem;
    color: var(--slate-500);
    font-weight: 200;
    font-style: italic;
    letter-spacing: -0.02em;
}

/* === Time Wealth Section === */
.time-wealth {
    padding: 12rem 0;
    background: var(--slate-950);
    position: relative;
    overflow: hidden;
}

.tw-card {
    background: linear-gradient(to bottom right, var(--indigo-700), var(--indigo-900), var(--slate-950));
    border-radius: 5rem;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 60px 120px -20px rgba(99, 102, 241, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 1024px) {
    .tw-card {
        padding: 8rem;
    }
}

.tw-bg-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 4rem;
    opacity: 0.1;
    pointer-events: none;
    transition: transform 2s;
}

.tw-bg-icon svg {
    width: 500px;
    height: 500px;
    color: var(--white);
}

.tw-card:hover .tw-bg-icon {
    transform: rotate(12deg);
}

.tw-content {
    max-width: 56rem;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.tw-content h2 {
    font-size: clamp(3rem, 10vw, 9.5rem);
    color: var(--white);
    line-height: 0.75;
    letter-spacing: -0.05em;
}

.tw-accent {
    color: #fcd34d;
    filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.5));
}

.tw-content>p {
    font-size: 1.5rem;
    color: rgba(199, 210, 254, 1);
    font-weight: 200;
    line-height: 1.6;
    letter-spacing: -0.02em;
    max-width: 48rem;
}

@media (min-width: 1024px) {
    .tw-content>p {
        font-size: 2rem;
    }
}

.tw-stats {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding-top: 2.5rem;
}

@media (min-width: 640px) {
    .tw-stats {
        flex-direction: row;
    }
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.05em;
    text-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: rgba(255, 255, 255, 0.4);
}

.tw-content .btn-white {
    margin-top: 3rem;
}

.tw-content .btn-white svg {
    width: 2rem;
    height: 2rem;
    fill: var(--indigo-950);
    animation: pulse 2s ease-in-out infinite;
}

/* === Footer === */
.footer {
    background: var(--slate-950);
    padding: 12rem 0 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--indigo-500), transparent);
    opacity: 0.3;
    box-shadow: 0 0 15px var(--indigo-500);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6rem;
    margin-bottom: 8rem;
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 5fr 7fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-brand .logo-text {
    font-size: 1.75rem;
}

.footer-quote {
    color: var(--slate-500);
    font-size: 1.25rem;
    font-weight: 200;
    line-height: 1.6;
    font-style: italic;
    max-width: 28rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 4rem;
    height: 4rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    transition: all 0.3s;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(30px);
}

.social-link svg {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s;
}

.social-link:hover {
    background: var(--indigo-600);
    color: var(--white);
}

.social-link:hover svg {
    transform: rotate(12deg);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 640px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-col h4 {
    color: var(--white);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    font-size: 0.7rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.col-line {
    width: 1.5rem;
    height: 1px;
}

.col-line.indigo {
    background: var(--indigo-500);
}

.col-line.teal {
    background: var(--teal-500);
}

.col-line.amber {
    background: var(--amber-500);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-col a {
    color: var(--slate-500);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col>p {
    color: var(--slate-500);
    font-weight: 200;
    letter-spacing: -0.02em;
    line-height: 1.6;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--emerald-400);
    font-weight: 900;
    letter-spacing: 0.4em;
    font-size: 0.625rem;
    text-transform: uppercase;
    background: transparent;
    margin-top: 2rem;
}

.btn-whatsapp svg {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s;
}

.btn-whatsapp:hover svg:first-child {
    transform: scale(1.1);
}

.btn-whatsapp:hover svg:last-child {
    transform: translateX(0.5rem);
}

.footer-bottom {
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.copyright {
    color: var(--slate-700);
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.8em;
}

.footer-legal {
    display: flex;
    gap: 3rem;
}

.footer-legal a {
    color: var(--slate-600);
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--white);
}

/* === Floating CTA === */
.floating-cta {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    z-index: 100;
}

.whatsapp-float {
    padding: 1.5rem;
    background: var(--emerald-500);
    color: var(--white);
    border-radius: 2rem;
    box-shadow: 0 25px 60px -10px rgba(16, 185, 129, 0.5);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
    background: var(--emerald-400);
    transform: scale(1.1);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float svg {
    width: 2rem;
    height: 2rem;
    transition: transform 0.3s;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.whatsapp-float:hover svg {
    transform: rotate(12deg);
}

.whatsapp-float span {
    max-width: 0;
    overflow: hidden;
    transition: all 0.7s;
    white-space: nowrap;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-family: monospace;
}

.whatsapp-float:hover span {
    max-width: 200px;
}