:root { --color-background: #0C0C0C; --color-foreground: #E5E5E5; --color-card: #171717; --color-card-foreground: #E5E5E5;
--color-primary: #C5A059; --color-primary-foreground: #000000;
--color-secondary: #262626; --color-secondary-foreground: #FFFFFF;
--color-muted: #1A1A1A;
--color-muted-foreground: #A3A3A3;
--color-accent: #C5A059;
--color-border: rgba(197, 160, 89, 0.15); --color-navy: #0C0C0C;
--color-navy-light: #171717;
--color-corporate-blue: #C5A059;
--color-corporate-blue-dark: #A6823E; --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
--font-heading: 'Space Grotesk', system-ui, sans-serif; --radius: 0.5rem;
--container-width: 1400px;
--header-height: 80px;
} *, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
font-family: var(--font-sans);
background-color: var(--color-background);
color: var(--color-foreground);
line-height: 1.6;
min-height: 100vh;
}
img {
max-width: 100%;
height: auto;
display: block;
}
a {
color: inherit;
text-decoration: none;
transition: color 0.3s ease;
}
button {
font-family: inherit;
cursor: pointer;
border: none;
background: none;
} h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading);
font-weight: 700;
line-height: 1.2;
}
.text-gradient {
background: linear-gradient(to right, var(--color-primary), var(--color-corporate-blue-dark));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
} .section-divider {
position: relative;
width: 100%;
height: 120px;
overflow: hidden;
line-height: 0;
z-index: 5;
pointer-events: none;
color: rgba(229, 229, 229, 1);
}
.section-divider--top {
margin-bottom: -120px;
}
.section-divider--bottom {
margin-top: -120px;
transform: rotate(180deg) translateY(-1px);
}
.section-divider svg {
position: relative;
display: block;
width: calc(100% + 1.3px);
height: 120px;
}
@media (max-width: 768px) {
.section-divider {
height: 60px;
}
.section-divider svg {
height: 60px;
}
.section-divider--top {
margin-bottom: -60px;
}
.section-divider--bottom {
margin-top: -60px;
}
}
@keyframes wave-move {
0% { transform: scaleY(0.8) translateY(20px) translateX(0); }
50% { transform: scaleY(0.8) translateY(15px) translateX(-10px); }
100% { transform: scaleY(0.8) translateY(20px) translateX(0); }
}
.wave-secondary {
animation: wave-move 8s ease-in-out infinite;
}
.divider-fill-bg { fill: var(--color-background); }
.divider-fill-alt { fill: var(--color-secondary); } .section-divider svg {
filter: drop-shadow(0 -5px 10px rgba(0, 0, 0, 0.3));
}
.section-divider--wave-multi {
position: relative;
height: 150px;
} .section-soft-transition {
position: relative;
}
.section-soft-transition::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 150px;
background: linear-gradient(to bottom, rgba(12, 12, 12, 1), transparent);
z-index: 2;
pointer-events: none;
}
.section-soft-transition--alt::before {
background: linear-gradient(to bottom, var(--color-secondary), transparent);
}
.section-gradient {
position: relative;
}
.section-gradient::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 200px;
background: linear-gradient(to bottom, transparent, rgba(12, 12, 12, 0.8), var(--color-background));
pointer-events: none;
z-index: 2;
}
.section-gradient--top::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 200px;
background: linear-gradient(to top, transparent, rgba(12, 12, 12, 0.8), var(--color-background));
pointer-events: none;
z-index: 2;
} .container {
width: 100%;
max-width: var(--container-width);
margin: 0 auto;
padding: 0 1rem;
position: relative;
z-index: 10;
}
@media (min-width: 768px) {
.container {
padding: 0 2rem;
}
}
.about-section {
background: var(--color-background) !important;
padding-top: 8rem; padding-bottom: 12rem;
}
.section {
padding: 8rem 0 12rem;
scroll-margin-top: var(--header-height);
background-color: var(--color-background);
position: relative;
z-index: 1;
}
.section::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.03) 0%, transparent 40%);
z-index: -1;
pointer-events: none;
-webkit-mask-image: linear-gradient(to bottom, transparent, black 150px, black calc(100% - 150px), transparent);
mask-image: linear-gradient(to bottom, transparent, black 150px, black calc(100% - 150px), transparent);
}
.section--alt {
background-color: var(--color-secondary);
}
.section--alt::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle at 20% 100%, rgba(197, 160, 89, 0.03) 0%, transparent 40%);
z-index: -1;
pointer-events: none;
-webkit-mask-image: linear-gradient(to bottom, transparent, black 150px, black calc(100% - 150px), transparent);
mask-image: linear-gradient(to bottom, transparent, black 150px, black calc(100% - 150px), transparent);
} .btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 0.75rem 1.5rem;
font-size: 0.875rem;
font-weight: 500;
border-radius: var(--radius);
transition: all 0.3s ease;
white-space: nowrap;
}
.btn--primary {
background-color: var(--color-primary);
color: var(--color-primary-foreground);
}
.btn--primary:hover {
background-color: var(--color-corporate-blue-dark);
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}
.btn--outline {
background-color: transparent;
border: 1px solid var(--color-border);
color: var(--color-foreground);
}
.btn--outline:hover {
border-color: var(--color-primary);
color: var(--color-primary);
}
.btn--lg {
padding: 1rem 2rem;
font-size: 1rem;
}
.btn--outline.btn--lg {
border-color: rgba(166, 130, 62, 1);
color: rgba(12, 12, 12, 1);
background-color: rgba(255, 255, 255, 0.8);
} .badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
font-size: 0.875rem;
font-weight: 500;
border-radius: 9999px;
background-color: var(--color-secondary);
color: var(--color-primary);
}
.badge--outline {
background-color: transparent;
border: 1px solid var(--color-corporate-blue);
} .card {
background-color: var(--color-card);
border: 1px solid var(--color-border);
border-radius: var(--radius);
overflow: hidden;
transition: all 0.5s ease;
}
.card:hover {
border-color: rgba(197, 160, 89, 0.3);
transform: translateY(-4px);
box-shadow: 0 20px 40px rgba(197, 160, 89, 0.1);
}
.card__content {
padding: 1.5rem;
}
.card__header {
padding: 1.5rem 1.5rem 0;
} .glow {
box-shadow: 0 0 40px rgba(197, 160, 89, 0.1);
}
.glow-sm {
box-shadow: 0 0 20px rgba(197, 160, 89, 0.15);
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
} @keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
@keyframes glow {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
@keyframes slideInRight {
from { opacity: 0; transform: translateX(20px); }
to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
from { opacity: 0; transform: scale(0.95); }
to { opacity: 1; transform: scale(1); }
}
@keyframes typing {
from { width: 0; }
to { width: 100%; }
}
.animate-fade-in { animation: fadeIn 0.5s ease-out forwards; }
.animate-fade-in-up { animation: fadeInUp 0.6s ease-out forwards; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-glow { animation: glow 2s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-scale-in { animation: scaleIn 0.3s ease-out forwards; } .scroll-animate {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-animate.visible {
opacity: 1;
transform: translateY(0);
}
.scroll-animate--left {
transform: translateX(-30px);
}
.scroll-animate--left.visible {
transform: translateX(0);
}
.scroll-animate--right {
transform: translateX(30px);
}
.scroll-animate--right.visible {
transform: translateX(0);
}
.scroll-animate--scale {
transform: scale(0.95);
}
.scroll-animate--scale.visible {
transform: scale(1);
} .delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }