/* ══════════════════════════════════════════════════════
   VALORIN — Ultra-Premium Design System
   ══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ── Tokens ──────────────────────────────────────────── */
:root {
    --gold-50: #fdf8ed;
    --gold-100: #f9edcf;
    --gold-200: #f0d89a;
    --gold-300: #e4c06a;
    --gold-400: #d4a74a;
    --gold-500: #c5a059;
    --gold-600: #a8853c;
    --gold-700: #8a6a2e;
    --gold-800: #6d5224;
    --gold-glow: rgba(212, 167, 74, 0.2);
    --gold-gradient: linear-gradient(135deg, #d4a74a 0%, #a8853c 50%, #8a6a2e 100%);
    --gold-shimmer: linear-gradient(110deg, #8a6a2e 0%, #d4a74a 25%, #f0d89a 50%, #d4a74a 75%, #8a6a2e 100%);

    /* Luminous Palette */
    --light-bg: #fcfaf7;
    --light-surface: #ffffff;
    --light-accent: #f4efea;

    --dark-1000: #0a0a0a;
    --dark-950: #1a1a1a;
    --dark-900: #2a2a2a;

    --white: #ffffff;
    --text-1: #000000;
    --text-2: #333333;
    --text-3: #555555;
    --border: rgba(0, 0, 0, 0.12);

    --container: 1200px;
    --section-py: clamp(100px, 14vh, 180px);

    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-circ: cubic-bezier(0, 0.55, 0.45, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Custom Scrollbar ─────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-1000);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-700);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-500);
}

/* ── Selection ───────────────────────────────────────── */
::selection {
    background: var(--gold-400);
    color: var(--dark-1000);
}

/* ── Reset ───────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--light-bg);
    color: var(--text-1);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: default;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 400;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 56px);
}

/* ── Gold text shimmer ───────────────────────────────── */
.gold-text {
    background: linear-gradient(135deg, #a8853c 0%, #d4a74a 30%, #8a6a2e 70%, #6d5224 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: 100% 50%;
    }

    50% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.gold-text-accent {
    color: var(--gold-700);
    font-weight: 500;
}

/* Small label */
.label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 28px;
}

.label::before {
    content: '';
    width: 48px;
    height: 1px;
    background: var(--gold-gradient);
}

/* ── Grain overlay ───────────────────────────────────── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}


@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ══════════════════════════════════════════════════════
   CUSTOM CURSOR
   ══════════════════════════════════════════════════════ */
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 167, 74, 0.25);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: width 0.4s var(--ease-expo),
        height 0.4s var(--ease-expo),
        border-color 0.3s,
        background 0.3s;
    will-change: transform;
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-600);
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
}

.cursor-ring.hover {
    width: 64px;
    height: 64px;
    border-color: rgba(212, 167, 74, 0.5);
    background: rgba(212, 167, 74, 0.05);
}

/* ══════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
    padding: 32px 0;
    transition: all 0.6s var(--ease-expo);
}

.site-header.scrolled {
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 110px;
    transition: all 0.5s var(--ease-expo);
}

.site-header.scrolled .header-logo img {
    height: 80px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 44px;
}

.nav-links a {
    position: relative;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-2);
    transition: color 0.4s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-gradient);
    transition: width 0.5s var(--ease-expo);
}

.nav-links a:hover {
    color: var(--gold-300);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 28px !important;
    border: 1px solid var(--gold-600) !important;
    color: var(--gold-700) !important;
    transition: all 0.5s var(--ease-expo) !important;
    font-weight: 600 !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold-600) !important;
    color: var(--white) !important;
    box-shadow: 0 5px 15px rgba(168, 133, 60, 0.2) !important;
}

/* Mobile toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    width: 30px;
    z-index: 600;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--text-1);
    transition: all 0.5s var(--ease-expo);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--white);
}

/* Animated gradient mesh */
.hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    will-change: transform;
}

.hero-orb--1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 167, 74, 0.08) 0%, transparent 70%);
    top: 20%;
    left: 30%;
    animation: orbFloat1 14s ease-in-out infinite;
}

.hero-orb--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 133, 60, 0.05) 0%, transparent 70%);
    top: 50%;
    right: 15%;
    animation: orbFloat2 18s ease-in-out infinite;
}

.hero-orb--3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(240, 216, 154, 0.03) 0%, transparent 70%);
    bottom: 10%;
    left: 10%;
    animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(80px, -60px) scale(1.1);
    }

    66% {
        transform: translate(-40px, 40px) scale(0.95);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-60px, 50px) scale(1.05);
    }

    66% {
        transform: translate(50px, -40px) scale(0.9);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(60px, -50px) scale(1.15);
    }
}

/* Subtle grid lines */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
}

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gold-400);
    pointer-events: none;
}

/* Hero Canvas — spectacular animation */
.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 24px;
}

.hero-logo {
    width: clamp(220px, 30vw, 360px);
    margin: 0 auto 56px;
    opacity: 0;
    transform: translateY(50px) scale(0.85);
    filter: blur(15px);
    animation: heroRevealLogo 1.8s var(--ease-expo) 0.6s forwards;
}

/* Glow behind logo */
.hero-logo-wrap {
    position: relative;
    display: inline-block;
}

.hero-logo-glow {
    position: absolute;
    width: 200%;
    height: 200%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(168, 133, 60, 0.2) 0%, rgba(168, 133, 60, 0.05) 30%, transparent 60%);
    filter: blur(80px);
    z-index: -1;
    opacity: 0;
    animation: glowPulse 4s ease-in-out 2s infinite, fadeIn 2s ease 1.5s forwards;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

@keyframes heroRevealLogo {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero h1 {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 300;
    letter-spacing: clamp(8px, 2vw, 24px);
    margin-bottom: 24px;
    overflow: hidden;
    color: var(--text-1);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Subtle lift */
}

.hero h1 .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(110%);
    animation: charUp 1s var(--ease-expo) forwards;
}

@keyframes charUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tagline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    font-weight: 600;
    /* Increased weight */
    letter-spacing: clamp(4px, 1vw, 10px);
    text-transform: uppercase;
    color: var(--gold-700);
    /* Darker gold for better contrast */
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1.2s var(--ease-expo) 1.6s forwards;
}

.hero-line {
    width: 80px;
    /* Wider */
    height: 2px;
    /* Thicker */
    background: var(--gold-gradient);
    margin: 0 auto 40px;
    opacity: 0;
    transform: scaleX(0);
    animation: lineExpand 1s var(--ease-expo) 1.9s forwards;
    box-shadow: 0 2px 10px rgba(138, 106, 46, 0.2);
}

@keyframes lineExpand {
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

.hero-desc {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--text-1);
    max-width: 580px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1.2s var(--ease-expo) 2.1s forwards;
    font-weight: 400;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: heroFadeUp 1s var(--ease-expo) 2.8s forwards;
}

.hero-scroll-text {
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-2);
    /* Darker text */
    font-weight: 600;
}

.hero-scroll-line {
    width: 1.5px;
    /* Slightly thicker */
    height: 64px;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.1);
    /* Visible on light */
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold-400), transparent);
    animation: scrollLine 2.4s var(--ease-circ) infinite;
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }

    100% {
        top: 200%;
    }
}

/* ══════════════════════════════════════════════════════
   MARQUEE (horizontal scrolling text)
   ══════════════════════════════════════════════════════ */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
    background: var(--light-surface);
}

.marquee-track {
    display: inline-flex;
    animation: marqueeScroll 40s linear infinite;
}

.marquee-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-1);
    padding: 0 40px;
    flex-shrink: 0;
}

.marquee-item .dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-500);
    vertical-align: middle;
    margin: 0 40px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ══════════════════════════════════════════════════════
   SECTIONS — COMMON
   ══════════════════════════════════════════════════════ */
.section {
    position: relative;
    padding: var(--section-py) 0;
    overflow: hidden;
}

.section-dark {
    background: var(--light-accent);
}

.section-header {
    margin-bottom: clamp(56px, 8vw, 96px);
}

.section-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: var(--text-2);
    max-width: 560px;
    margin-top: 24px;
    font-weight: 400;
}

/* ── Divider ─────────────────────────────────────────── */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.06), rgba(168, 133, 60, 0.15), rgba(0, 0, 0, 0.06), transparent);
}

/* ── Reveal system ───────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s var(--ease-expo), transform 1s var(--ease-expo);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 {
    transition-delay: 0.1s;
}

.reveal-d2 {
    transition-delay: 0.2s;
}

.reveal-d3 {
    transition-delay: 0.3s;
}

.reveal-d4 {
    transition-delay: 0.4s;
}

.reveal-d5 {
    transition-delay: 0.5s;
}

.reveal-d6 {
    transition-delay: 0.6s;
}

.reveal-d7 {
    transition-delay: 0.7s;
}

/* Reveal from left / right */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 1s var(--ease-expo), transform 1s var(--ease-expo);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 1s var(--ease-expo), transform 1s var(--ease-expo);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale reveal */
.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 1.2s var(--ease-expo), transform 1.2s var(--ease-expo);
}

.reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* ══════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 8vw, 120px);
    align-items: center;
}

.about-text h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    margin-bottom: 32px;
}

.about-text p {
    color: var(--text-2);
    font-size: 1.05rem;
    margin-bottom: 24px;
    font-weight: 300;
}

.about-text p strong {
    color: var(--text-1);
    font-weight: 500;
}

/* Visual: info cards */
.about-visual {
    position: relative;
}

.about-visual-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 167, 74, 0.06), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    animation: floatSlow 10s ease-in-out infinite;
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.about-card {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    transition: all 0.6s var(--ease-expo);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 167, 74, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.6s;
}

.about-card:hover::before {
    opacity: 1;
}

.about-card:hover {
    border-color: rgba(212, 167, 74, 0.15);
    transform: translateY(-4px);
}

.about-card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    background: var(--gold-shimmer);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s ease-in-out infinite;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.about-card p {
    font-size: 0.85rem;
    color: var(--text-2);
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════════════════════
   PROBLEM
   ══════════════════════════════════════════════════════ */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.problem-card {
    background: var(--white);
    padding: clamp(40px, 6vw, 64px) clamp(30px, 4vw, 48px);
    border: 1px solid var(--border);
    transition: all 0.6s var(--ease-expo);
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.problem-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-200);
    box-shadow: 0 20px 60px rgba(212, 167, 74, 0.1);
}

.problem-card:last-child {
    border-right: 1px solid var(--border);
}

/* Animated top border on hover */
.problem-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s var(--ease-expo);
}

.problem-card:hover::after {
    transform: scaleX(1);
}

.problem-card:hover {
    background: rgba(212, 167, 74, 0.02);
}

.problem-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1;
    background: var(--gold-shimmer);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s ease-in-out infinite;
    margin-bottom: 24px;
}

.problem-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--text-2);
    font-weight: 300;
}

/* ══════════════════════════════════════════════════════
   SOLUTION
   ══════════════════════════════════════════════════════ */
.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 8vw, 120px);
    align-items: center;
}

.solution-text h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-bottom: 28px;
}

.solution-text>p {
    color: var(--text-2);
    font-size: 1.05rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.solution-accent {
    margin-top: 48px;
    padding: 36px;
    position: relative;
    background: var(--white);
    border-left: 3px solid #d4a74a;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.03);
}

.solution-accent h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--gold-700);
    margin-bottom: 12px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-accent p {
    color: var(--text-2);
    font-weight: 400;
}

/* Emblem */
.solution-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.solution-emblem-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(280px, 30vw, 420px);
    height: clamp(280px, 30vw, 420px);
}

.solution-emblem {
    width: 60%;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(212, 167, 74, 0.15));
    animation: emblemPulse 6s ease-in-out infinite;
}

.solution-emblem-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212, 167, 74, 0.15);
    border-radius: 50%;
    animation: ringRotate 20s linear infinite;
}

.solution-emblem-ring::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(212, 167, 74, 0.08);
    border-radius: 50%;
    animation: ringRotate 15s linear infinite reverse;
}

.solution-emblem-ring::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-gradient);
    box-shadow: 0 0 15px var(--gold-400);
    transform: translateX(-50%);
}

.solution-visual::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 167, 74, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

@keyframes emblemPulse {

    0%,
    100% {
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 0 20px rgba(212, 167, 74, 0.15));
    }

    50% {
        transform: scale(1.05) translateY(-10px);
        filter: drop-shadow(0 0 35px rgba(212, 167, 74, 0.3));
    }
}

@keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ══════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.service-card {
    position: relative;
    padding: clamp(36px, 4vw, 52px);
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.6s var(--ease-expo);
}

/* Luminous Mouse Light — Controlled by JS */
.service-card::before,
.diff-card::before,
.team-card::before,
.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(400px circle at var(--x, -100%) var(--y, -100%), rgba(212, 167, 74, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 0;
}

.service-card:hover::before,
.diff-card:hover::before,
.team-card:hover::before,
.about-card:hover::before {
    opacity: 1;
}

.service-card * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    border-color: rgba(212, 167, 74, 0.12);
    transform: translateY(-3px);
}

.service-card-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--gold-500);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-2);
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* Statement card */
.service-statement {
    grid-column: 1 / -1;
    text-align: center;
    padding: clamp(44px, 5vw, 72px) 32px;
    background: linear-gradient(135deg, rgba(212, 167, 74, 0.03), rgba(212, 167, 74, 0.01));
    border: 1px solid rgba(212, 167, 74, 0.08);
}

.service-statement p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    color: var(--gold-700);
    text-align: center;
}

/* ══════════════════════════════════════════════════════
   DIFFERENTIATOR
   ══════════════════════════════════════════════════════ */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.diff-card {
    background: var(--white);
    padding: 48px 40px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.6s var(--ease-expo);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
}

.diff-card:hover {
    border-color: var(--gold-300);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 167, 74, 0.08);
}

.diff-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diff-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212, 167, 74, 0.15);
    transform: rotate(45deg);
    transition: all 0.6s var(--ease-expo);
}

.diff-card:hover .diff-icon::before {
    transform: rotate(45deg) scale(1.1);
    border-color: rgba(212, 167, 74, 0.3);
    box-shadow: 0 0 30px rgba(212, 167, 74, 0.08);
}

.diff-icon span {
    font-size: 1.3rem;
    color: var(--gold-400);
}

.diff-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.diff-card p {
    font-size: 0.9rem;
    color: var(--text-2);
    font-weight: 300;
}

/* Quote */
.diff-quote {
    text-align: center;
    margin-top: clamp(56px, 8vw, 96px);
    padding: 0 24px;
    position: relative;
}

.diff-quote-marks {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    line-height: 1;
    color: var(--gold-400);
    opacity: 0.12;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.diff-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 300;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════════
   CLIENTS
   ══════════════════════════════════════════════════════ */
.clients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 8vw, 120px);
    align-items: center;
}

.client-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
    border: 1px solid var(--border);
    margin-bottom: 10px;
    transition: all 0.5s var(--ease-expo);
    position: relative;
    overflow: hidden;
}

.client-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(to right, rgba(212, 167, 74, 0.04), transparent);
    transition: width 0.6s var(--ease-expo);
}

.client-item:hover::before {
    width: 100%;
}

.client-item:hover {
    border-color: rgba(212, 167, 74, 0.15);
    transform: translateX(8px);
}

.client-line {
    width: 28px;
    height: 1px;
    background: var(--gold-gradient);
    flex-shrink: 0;
    transition: width 0.5s var(--ease-expo);
}

.client-item:hover .client-line {
    width: 48px;
}

.client-item span {
    font-size: clamp(1.2rem, 2.2vw, 1.8rem);
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-1);
    transition: all 0.5s var(--ease-expo);
}

.clients-aside h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 24px;
}

.clients-aside p {
    color: var(--text-2);
    font-size: 1.05rem;
    font-weight: 300;
}

/* ══════════════════════════════════════════════════════
   TEAM
   ══════════════════════════════════════════════════════ */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 3vw, 40px);
}

.team-card {
    padding: 48px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.6s var(--ease-expo);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
}

/* Animated gold bar at top */
.team-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s var(--ease-expo);
}

.team-card:hover::after {
    transform: scaleX(1);
}

.team-card:hover {
    border-color: var(--gold-300);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.team-card h3 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 4px;
}

.team-role {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 24px;
    display: block;
}

.team-card>p {
    color: var(--text-2);
    font-size: 0.95rem;
    font-weight: 300;
}

.team-motto {
    text-align: center;
    margin-top: clamp(48px, 6vw, 80px);
}

.team-motto p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    color: var(--gold-300);
}

/* ══════════════════════════════════════════════════════
   VALUE
   ══════════════════════════════════════════════════════ */
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.value-item {
    padding: clamp(32px, 3vw, 48px);
    text-align: center;
    border: 1px solid var(--border);
    border-right: none;
    transition: all 0.6s var(--ease-expo);
}

.value-item:last-child {
    border-right: 1px solid var(--border);
}

.value-item:hover {
    background: rgba(212, 167, 74, 0.02);
}

.value-icon {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--gold-400);
    transition: transform 0.5s var(--ease-expo);
}

.value-item:hover .value-icon {
    transform: scale(1.15);
}

.value-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 0.85rem;
    color: var(--text-2);
    font-weight: 300;
}

/* ══════════════════════════════════════════════════════
   PROMISE
   ══════════════════════════════════════════════════════ */
.promise {
    text-align: center;
}

.promise-inner {
    max-width: 760px;
    margin: 0 auto;
}

.promise-inner h2 {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    margin-bottom: 36px;
}

.promise-inner>p {
    font-size: 1.1rem;
    color: var(--text-2);
    margin-bottom: 20px;
    font-weight: 400;
}

.promise-bold {
    color: var(--text-1) !important;
    font-weight: 500 !important;
}

.promise-pillars {
    display: flex;
    justify-content: center;
    gap: 56px;
    margin-top: 64px;
}

.pillar {
    text-align: center;
}

.pillar-line {
    width: 1px;
    height: 40px;
    background: var(--gold-gradient);
    margin: 0 auto 20px;
}

.pillar h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-300);
    margin-bottom: 6px;
}

.pillar p {
    font-size: 0.75rem;
    color: var(--text-3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════
   CTA
   ══════════════════════════════════════════════════════ */
.cta {
    text-align: center;
    position: relative;
    background: var(--white);
    padding: 120px 0;
}

.cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 167, 74, 0.1), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.cta-inner>p {
    font-size: 1.05rem;
    color: var(--text-2);
    margin-bottom: 48px;
    font-weight: 300;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 24px 64px;
    background: transparent;
    border: 1px solid var(--gold-500);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-700);
    position: relative;
    overflow: hidden;
    transition: all 0.6s var(--ease-expo);
    z-index: 1;
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gold-shimmer);
    background-size: 200% auto;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s;
    animation: shimmer 4s linear infinite;
}

.cta-btn:hover::before {
    opacity: 1;
}

.cta-btn span {
    position: relative;
    z-index: 2;
    transition: color 0.4s;
}

.cta-btn:hover span {
    color: var(--white);
}

.cta-btn .arrow {
    position: relative;
    z-index: 2;
    transition: transform 0.6s var(--ease-expo);
}

.cta-btn:hover .arrow {
    transform: translateX(8px);
}

.cta-btn::after {
    content: '';
    position: absolute;
    inset: 0px;
    background: var(--white);
    z-index: 1;
    transition: background 0.4s, opacity 0.4s;
}

.cta-btn:hover::after {
    opacity: 0;
}

.cta-btn:hover::after {
    background: rgba(14, 14, 22, 0.85);
}

.cta-btn:hover {
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(212, 167, 74, 0.15);
}

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.site-footer {
    padding: 100px 0 60px;
    background: var(--light-accent);
    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 56px;
}

.footer-logo img {
    height: 80px;
    opacity: 0.5;
    transition: opacity 0.4s;
}

.footer-logo:hover img {
    opacity: 0.8;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-3);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--text-3);
}

.footer-nav {
    display: flex;
    gap: 36px;
}

.footer-nav a {
    font-size: 0.78rem;
    color: var(--text-3);
    transition: color 0.4s;
}

.footer-nav a:hover {
    color: var(--gold-400);
}

.section-header .label {
    color: var(--gold-600);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .diff-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .value-grid {
        grid-template-columns: 1fr 1fr;
    }

    .value-item:nth-child(2) {
        border-right: 1px solid var(--border);
    }

    .value-item:nth-child(4) {
        border-right: 1px solid var(--border);
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 16px 0 !important;
    }

    .header-logo img {
        height: 60px !important;
    }

    .site-header.scrolled .header-logo img {
        height: 45px !important;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        z-index: 550;
        background: rgba(0, 0, 0, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        align-items: center;
        justify-content: center;
        gap: 36px;
    }

    .nav-links.open a {
        font-size: 1.4rem;
        letter-spacing: 3px;
        color: var(--text-1);
    }

    .hero-content {
        padding-top: 100px !important;
    }

    .hero-logo {
        width: 180px !important;
        margin-bottom: 32px !important;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 5rem) !important;
        letter-spacing: 10px !important;
    }

    .hero-tagline {
        font-size: 0.75rem !important;
        letter-spacing: 5px !important;
        margin-bottom: 24px !important;
    }

    .hero-desc {
        font-size: 0.9rem !important;
        max-width: 280px !important;
        margin: 0 auto !important;
    }

    .about-grid,
    .solution-grid,
    .clients-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .problem-card {
        border-right: 1px solid var(--border);
        border-bottom: none;
    }

    .problem-card:last-child {
        border-bottom: 1px solid var(--border);
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .value-item {
        border-right: 1px solid var(--border);
    }

    .promise-pillars {
        flex-direction: column;
        gap: 32px;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cursor-ring,
    .cursor-dot {
        display: none !important;
    }
}