* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--color-deep: #02010a;
--color-navy: #04052e;
--color-purple: #140152;
--color-royal: #22007c;
--color-electric: #0d00a4;
--color-white: #ffffff;
--color-grey: #a8a8b2;
--transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
font-family: 'Inter', sans-serif;
background: var(--color-deep);
color: var(--color-white);
line-height: 1.6;
overflow-x: hidden;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}

.container-wide {
max-width: 1440px;
margin: 0 auto;
padding: 0 40px;
}

.main-header {
position: fixed;
top: 0;
width: 100%;
background: rgba(2, 1, 10, 0.92);
backdrop-filter: blur(12px);
z-index: 1000;
border-bottom: 1px solid rgba(13, 0, 164, 0.15);
}

.nav-wrapper {
display: flex;
align-items: center;
justify-content: space-between;
padding: 18px 0;
}

.logo-img {
height: 42px;
width: auto;
transition: var(--transition-smooth);
}

.logo-img:hover {
transform: scale(1.05);
filter: brightness(1.2);
}

.nav-menu {
display: flex;
gap: 38px;
align-items: center;
}

.nav-link {
font-family: 'Space Grotesk', sans-serif;
font-size: 15px;
font-weight: 500;
color: var(--color-grey);
text-decoration: none;
transition: var(--transition-smooth);
position: relative;
padding: 8px 0;
background: none;
border: none;
cursor: pointer;
display: flex;
align-items: center;
gap: 4px;
}

.nav-link:hover {
color: var(--color-white);
}

.nav-link.active {
color: var(--color-white);
}

.nav-link.active::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(90deg, var(--color-electric), var(--color-royal));
}

.dropdown {
position: relative;
}

.dropdown-toggle {
font-family: 'Space Grotesk', sans-serif;
font-size: 15px;
}

.dropdown-toggle i {
font-size: 16px;
transition: var(--transition-smooth);
}

.dropdown:hover .dropdown-toggle i {
transform: rotate(180deg);
}

.dropdown-content {
position: absolute;
top: 100%;
left: 0;
background: rgba(4, 5, 46, 0.97);
backdrop-filter: blur(16px);
min-width: 220px;
border-radius: 12px;
padding: 12px 0;
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: var(--transition-smooth);
border: 1px solid rgba(13, 0, 164, 0.2);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
margin-top: 8px;
}

.dropdown:hover .dropdown-content {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.dropdown-content a {
display: block;
padding: 12px 24px;
color: var(--color-grey);
text-decoration: none;
font-size: 14px;
font-weight: 400;
transition: var(--transition-smooth);
}

.dropdown-content a:hover {
background: rgba(13, 0, 164, 0.15);
color: var(--color-white);
padding-left: 28px;
}

.mobile-toggle {
display: none;
flex-direction: column;
gap: 6px;
background: none;
border: none;
cursor: pointer;
padding: 8px;
}

.mobile-toggle span {
width: 28px;
height: 2.5px;
background: var(--color-white);
transition: var(--transition-smooth);
border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -7px);
}

.hero-split {
min-height: 100vh;
display: grid;
grid-template-columns: 1fr 1.2fr;
padding-top: 76px;
position: relative;
}

.hero-visual-side {
position: relative;
overflow: hidden;
}

.hero-bg-img {
width: 100%;
height: 100%;
object-fit: cover;
}

.visual-overlay {
position: absolute;
inset: 0;
background: linear-gradient(90deg, rgba(2, 1, 10, 0.8) 0%, rgba(2, 1, 10, 0.1) 100%);
}

.hero-content-side {
display: flex;
align-items: center;
padding: 5rem 5%;
background: linear-gradient(135deg, rgba(13, 0, 164, 0.05) 0%, rgba(2, 1, 10, 0.95) 100%);
}

.hero-text-wrap {
max-width: 620px;
}

.giant-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 82px;
font-weight: 700;
line-height: 1.05;
margin-bottom: 2rem;
color: #ffffff;
}

.title-block {
display: block;
background: linear-gradient(135deg, #0d00a4 0%, #22007c 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-subtext {
font-size: 19.5px;
color: #a8a8b2;
line-height: 1.7;
margin-bottom: 2.8rem;
}

.hero-cta-group {
display: flex;
gap: 1.1rem;
margin-bottom: 3.5rem;
flex-wrap: wrap;
}

.btn-electric {
font-family: 'Space Grotesk', sans-serif;
font-size: 15.5px;
font-weight: 600;
padding: 15px 36px;
background: linear-gradient(135deg, #0d00a4, #22007c);
color: #ffffff;
border: none;
border-radius: 9px;
text-decoration: none;
transition: all 0.35s ease;
display: inline-block;
box-shadow: 0 4px 20px rgba(13, 0, 164, 0.3);
}

.btn-electric:hover {
transform: translateY(-3px);
box-shadow: 0 8px 28px rgba(13, 0, 164, 0.5);
}

.btn-ghost {
font-family: 'Space Grotesk', sans-serif;
font-size: 15.5px;
font-weight: 600;
padding: 15px 36px;
background: transparent;
color: #a8a8b2;
border: 1.5px solid rgba(168, 168, 178, 0.3);
border-radius: 9px;
text-decoration: none;
transition: all 0.32s ease;
display: inline-block;
}

.btn-ghost:hover {
border-color: #ffffff;
color: #ffffff;
background: rgba(255, 255, 255, 0.05);
}

.quick-stats {
display: flex;
gap: 3rem;
padding-top: 2rem;
border-top: 1px solid rgba(13, 0, 164, 0.2);
}

.stat-mini strong {
display: block;
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 700;
color: #0d00a4;
line-height: 1;
margin-bottom: 0.3rem;
}

.stat-mini span {
font-size: 13px;
color: #a8a8b2;
text-transform: lowercase;
}

.section-title-lg {
font-family: 'Space Grotesk', sans-serif;
font-size: 54px;
font-weight: 700;
margin-bottom: 3.5rem;
line-height: 1.1;
}

.work-display {
padding: 8rem 0;
}

.work-asymmetric {
display: grid;
grid-template-columns: 1.4fr 1fr;
grid-template-rows: auto auto;
gap: 1.8rem;
}

.work-card {
position: relative;
background: rgba(4, 5, 46, 0.4);
border: 1.2px solid rgba(13, 0, 164, 0.2);
border-radius: 18px;
overflow: hidden;
transition: all 0.4s ease;
}

.work-main {
grid-column: 1;
grid-row: 1 / 3;
}

.work-small {
grid-column: 2;
}

.work-card:hover {
border-color: #0d00a4;
transform: translateY(-8px);
box-shadow: 0 16px 48px rgba(13, 0, 164, 0.35);
}

.work-img-wrapper {
position: relative;
overflow: hidden;
aspect-ratio: 16/11;
}

.work-main .work-img-wrapper {
aspect-ratio: 16/20;
}

.work-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.work-card:hover .work-image {
transform: scale(1.08);
}

.work-gradient {
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(2, 1, 10, 0) 50%, rgba(2, 1, 10, 0.8) 100%);
}

.work-info {
padding: 2rem;
}

.work-labels {
display: flex;
gap: 0.7rem;
margin-bottom: 1rem;
}

.label-cat, .label-year {
font-size: 11.5px;
font-weight: 600;
text-transform: lowercase;
padding: 5px 12px;
border-radius: 5px;
}

.label-cat {
background: rgba(13, 0, 164, 0.25);
color: #0d00a4;
}

.label-year {
background: rgba(168, 168, 178, 0.12);
color: #a8a8b2;
}

.work-info h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 23px;
font-weight: 600;
margin-bottom: 0.7rem;
}

.work-info p {
font-size: 15px;
color: #a8a8b2;
line-height: 1.65;
}

.capabilities-dynamic {
padding: 8rem 0;
background: linear-gradient(180deg, rgba(4, 5, 46, 0) 0%, rgba(4, 5, 46, 0.4) 100%);
}

.capability-bento {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-auto-rows: 180px;
gap: 1.5rem;
}

.cap-box {
background: rgba(4, 5, 46, 0.6);
border: 1.2px solid rgba(13, 0, 164, 0.25);
border-radius: 16px;
padding: 2rem;
display: flex;
flex-direction: column;
justify-content: space-between;
transition: all 0.38s ease;
position: relative;
overflow: hidden;
}

.cap-box::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(13, 0, 164, 0.1) 0%, transparent 100%);
opacity: 0;
transition: opacity 0.38s ease;
}

.cap-box:hover::before {
opacity: 1;
}

.cap-wide {
grid-column: span 2;
}

.cap-tall {
grid-row: span 2;
}

.cap-box:hover {
border-color: #0d00a4;
transform: translateY(-5px);
background: rgba(4, 5, 46, 0.8);
}

.cap-icon-wrap {
font-size: 40px;
color: #0d00a4;
margin-bottom: 1.2rem;
}

.cap-content h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 21px;
font-weight: 600;
margin-bottom: 0.6rem;
}

.cap-content p {
font-size: 14.5px;
color: #a8a8b2;
line-height: 1.6;
}

.testimonial-strip {
padding: 8rem 0;
}

.testimonial-carousel {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2.5rem;
}

.testimonial-item {
background: rgba(4, 5, 46, 0.5);
border: 1.2px solid rgba(13, 0, 164, 0.2);
border-radius: 16px;
padding: 2.8rem;
transition: all 0.38s ease;
position: relative;
}

.testimonial-item::before {
content: '"';
position: absolute;
top: 1.5rem;
left: 2rem;
font-size: 80px;
font-family: 'Space Grotesk', sans-serif;
color: rgba(13, 0, 164, 0.15);
line-height: 1;
}

.testimonial-item:hover {
border-color: #0d00a4;
transform: translateY(-6px);
background: rgba(4, 5, 46, 0.7);
}

.testimonial-quote {
font-size: 16.5px;
line-height: 1.7;
color: #a8a8b2;
margin-bottom: 2rem;
font-style: italic;
position: relative;
z-index: 1;
}

.testimonial-auth strong {
display: block;
font-size: 16.5px;
font-weight: 600;
color: #ffffff;
margin-bottom: 0.4rem;
}

.testimonial-auth span {
font-size: 13.5px;
color: #a8a8b2;
}

.process-visual {
padding: 8rem 0;
background: rgba(4, 5, 46, 0.3);
}

.process-header-block {
text-align: center;
max-width: 680px;
margin: 0 auto 5rem;
}

.process-subtitle {
font-size: 18.5px;
color: #a8a8b2;
margin-top: 1rem;
}

.process-timeline {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 2.5rem;
position: relative;
}

.timeline-item {
position: relative;
}

.timeline-number {
font-family: 'Space Grotesk', sans-serif;
font-size: 64px;
font-weight: 700;
color: #0d00a4;
opacity: 0.2;
margin-bottom: 1.2rem;
line-height: 1;
transition: all 0.35s ease;
}

.timeline-item:hover .timeline-number {
opacity: 1;
transform: scale(1.1);
}

.timeline-content h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 20px;
font-weight: 600;
margin-bottom: 0.8rem;
color: #ffffff;
}

.timeline-content p {
font-size: 14px;
color: #a8a8b2;
line-height: 1.65;
}

.tech-showcase {
padding: 6.5rem 0;
}

.tech-grid-flow {
display: flex;
flex-wrap: wrap;
gap: 1.2rem;
justify-content: center;
margin-top: 3rem;
}

.tech-badge {
font-family: 'Space Grotesk', sans-serif;
font-size: 14.5px;
font-weight: 500;
padding: 13px 28px;
background: rgba(4, 5, 46, 0.55);
border: 1.2px solid rgba(13, 0, 164, 0.25);
border-radius: 9px;
color: #a8a8b2;
transition: all 0.32s ease;
}

.tech-badge:hover {
border-color: #0d00a4;
color: #ffffff;
background: rgba(13, 0, 164, 0.15);
transform: translateY(-3px);
}

.motion-principles {
padding: 8rem 0;
background: linear-gradient(180deg, rgba(4, 5, 46, 0.2) 0%, rgba(4, 5, 46, 0.5) 100%);
}

.principles-layout {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.8rem;
}

.principle-card {
background: rgba(4, 5, 46, 0.4);
border: 1.2px solid rgba(13, 0, 164, 0.2);
border-radius: 16px;
padding: 2.5rem;
transition: all 0.38s ease;
}

.principle-highlight {
background: rgba(13, 0, 164, 0.08);
border-color: rgba(13, 0, 164, 0.35);
}

.principle-card:hover {
border-color: #0d00a4;
transform: translateY(-6px);
background: rgba(4, 5, 46, 0.7);
}

.principle-num {
font-family: 'Space Grotesk', sans-serif;
font-size: 18px;
font-weight: 600;
color: #0d00a4;
margin-bottom: 1.2rem;
}

.principle-card h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 22px;
font-weight: 600;
margin-bottom: 0.9rem;
color: #ffffff;
}

.principle-card p {
font-size: 15px;
color: #a8a8b2;
line-height: 1.65;
}

.collab-cta {
padding: 9rem 0;
background: linear-gradient(135deg, rgba(13, 0, 164, 0.15) 0%, rgba(34, 0, 124, 0.1) 100%);
border-top: 1.2px solid rgba(13, 0, 164, 0.25);
border-bottom: 1.2px solid rgba(13, 0, 164, 0.25);
}

.cta-content-box {
text-align: center;
max-width: 720px;
margin: 0 auto;
}

.cta-heading {
font-family: 'Space Grotesk', sans-serif;
font-size: 62px;
font-weight: 700;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, #ffffff, #0d00a4);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.cta-text {
font-size: 19px;
color: #a8a8b2;
margin-bottom: 2.8rem;
line-height: 1.7;
}

.cta-buttons {
display: flex;
gap: 1.2rem;
justify-content: center;
flex-wrap: wrap;
}

.main-footer {
background: linear-gradient(180deg, rgba(4, 5, 46, 0) 0%, rgba(4, 5, 46, 0.6) 100%);
border-top: 1px solid rgba(13, 0, 164, 0.2);
padding: 80px 0 32px;
margin-top: 100px;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 48px;
margin-bottom: 60px;
}

.footer-heading {
font-family: 'Space Grotesk', sans-serif;
font-size: 18px;
font-weight: 600;
margin-bottom: 20px;
color: var(--color-white);
}

.footer-links {
list-style: none;
display: flex;
flex-direction: column;
gap: 12px;
}

.footer-links li {
display: flex;
align-items: center;
gap: 8px;
}

.footer-links a,
.footer-links span {
color: var(--color-grey);
text-decoration: none;
font-size: 14.5px;
transition: var(--transition-smooth);
}

.footer-links a:hover {
color: var(--color-electric);
transform: translateX(4px);
}

.footer-contact i {
font-size: 18px;
color: var(--color-electric);
}

.footer-bottom {
text-align: center;
padding-top: 32px;
border-top: 1px solid rgba(13, 0, 164, 0.15);
}

.footer-bottom p {
color: var(--color-grey);
font-size: 13.5px;
}

.cookie-banner {
position: fixed;
bottom: -200px;
left: 50%;
transform: translateX(-50%);
background: rgba(4, 5, 46, 0.96);
backdrop-filter: blur(20px);
border: 1px solid rgba(13, 0, 164, 0.3);
border-radius: 16px;
padding: 24px 32px;
max-width: 900px;
width: calc(100% - 48px);
box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
transition: bottom 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
z-index: 2000;
}

.cookie-banner.show {
bottom: 32px;
}

.cookie-content {
display: flex;
align-items: center;
justify-content: space-between;
gap: 32px;
}

.cookie-text h4 {
font-family: 'Space Grotesk', sans-serif;
font-size: 17px;
font-weight: 600;
margin-bottom: 6px;
color: var(--color-white);
}

.cookie-text p {
font-size: 13.5px;
color: var(--color-grey);
line-height: 1.5;
}

.cookie-actions {
display: flex;
gap: 12px;
align-items: center;
flex-shrink: 0;
}

.cookie-btn {
padding: 11px 24px;
border-radius: 8px;
font-family: 'Space Grotesk', sans-serif;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: var(--transition-smooth);
border: none;
white-space: nowrap;
}

.cookie-accept {
background: linear-gradient(135deg, var(--color-electric), var(--color-royal));
color: var(--color-white);
}

.cookie-accept:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(13, 0, 164, 0.4);
}

.cookie-decline {
background: transparent;
border: 1px solid rgba(168, 168, 178, 0.3);
color: var(--color-grey);
}

.cookie-decline:hover {
border-color: var(--color-grey);
color: var(--color-white);
}

.cookie-link {
color: var(--color-electric);
text-decoration: none;
font-size: 13px;
font-weight: 500;
transition: var(--transition-smooth);
}

.cookie-link:hover {
color: var(--color-white);
text-decoration: underline;
}

@media (max-width: 1200px) {
.capability-bento {
grid-template-columns: repeat(3, 1fr);
}

.principles-layout {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 968px) {
.container-wide {
padding: 0 24px;
}

.nav-menu {
position: fixed;
top: 76px;
right: -100%;
width: 300px;
height: calc(100vh - 76px);
background: rgba(4, 5, 46, 0.98);
backdrop-filter: blur(16px);
flex-direction: column;
align-items: flex-start;
padding: 32px 24px;
gap: 24px;
transition: right 0.4s ease;
border-left: 1px solid rgba(13, 0, 164, 0.2);
}

.nav-menu.active {
right: 0;
}

.mobile-toggle {
display: flex;
}

.dropdown-content {
position: static;
opacity: 1;
visibility: visible;
transform: none;
background: rgba(13, 0, 164, 0.1);
margin-top: 8px;
display: none;
}

.dropdown:hover .dropdown-content {
display: block;
}

.hero-split {
grid-template-columns: 1fr;
min-height: auto;
}

.hero-visual-side {
height: 40vh;
}

.giant-title {
font-size: 56px;
}

.work-asymmetric {
grid-template-columns: 1fr;
grid-template-rows: auto;
}

.work-main {
grid-column: 1;
grid-row: auto;
}

.work-small {
grid-column: 1;
}

.capability-bento {
grid-template-columns: repeat(2, 1fr);
grid-auto-rows: 160px;
}

.testimonial-carousel {
grid-template-columns: 1fr;
}

.process-timeline {
grid-template-columns: repeat(2, 1fr);
}

.principles-layout {
grid-template-columns: 1fr;
}

.footer-grid {
grid-template-columns: repeat(2, 1fr);
gap: 32px;
}

.cookie-content {
flex-direction: column;
align-items: flex-start;
gap: 20px;
}

.cookie-actions {
width: 100%;
flex-wrap: wrap;
}
}

@media (max-width: 640px) {
.logo-img {
height: 36px;
}

.giant-title {
font-size: 40px;
}

.section-title-lg {
font-size: 38px;
}

.capability-bento {
grid-template-columns: 1fr;
}

.cap-wide, .cap-tall {
grid-column: span 1;
grid-row: span 1;
}

.process-timeline {
grid-template-columns: 1fr;
}

.cta-heading {
font-size: 42px;
}

.footer-grid {
grid-template-columns: 1fr;
gap: 36px;
}

.cookie-btn {
flex: 1;
}

.main-footer {
padding: 60px 0 24px;
}
}

.overview-hero {
padding: 165px 0 85px;
background: linear-gradient(168deg, rgba(13, 0, 164, 0.09), transparent 68%);
}

.hero-year {
display: inline-block;
font-family: 'Space Grotesk', sans-serif;
font-size: 11.8px;
font-weight: 600;
text-transform: lowercase;
padding: 5px 15px;
background: rgba(13, 0, 164, 0.18);
color: #0d00a4;
border-radius: 18px;
margin-bottom: 26px;
letter-spacing: 0.4px;
}

.hero-massive {
font-family: 'Space Grotesk', sans-serif;
font-size: 94px;
font-weight: 700;
line-height: 0.93;
margin-bottom: 34px;
letter-spacing: -1.2px;
}

.hero-intro {
font-size: 20.5px;
color: #a8a8b2;
line-height: 1.68;
max-width: 750px;
}

.studio-numbers {
padding: 95px 0;
}

.numbers-wrap {
display: grid;
grid-template-columns: 1.3fr 1fr 0.9fr 1.1fr;
gap: 22px;
}

.num-item {
background: rgba(4, 5, 46, 0.48);
border: 1px solid rgba(13, 0, 164, 0.23);
border-radius: 15px;
padding: 38px 28px;
transition: all 0.32s ease;
}

.num-big {
background: rgba(13, 0, 164, 0.11);
border-color: rgba(13, 0, 164, 0.38);
padding: 45px 32px;
}

.num-wide {
grid-column: span 1;
}

.num-item:hover {
transform: translateY(-7px) rotate(0.5deg);
border-color: #0d00a4;
}

.num-val {
font-family: 'Space Grotesk', sans-serif;
font-size: 56px;
font-weight: 700;
color: #0d00a4;
line-height: 0.98;
margin-bottom: 11px;
}

.num-desc {
font-size: 14.8px;
color: #a8a8b2;
text-transform: lowercase;
}

.story-section {
padding: 115px 0;
}

.story-layout {
display: grid;
grid-template-columns: 1.15fr 1fr;
gap: 75px;
align-items: center;
}

.story-photo {
width: 100%;
border-radius: 17px;
}

.photo-caption {
margin-top: 16px;
font-size: 13.2px;
color: #a8a8b2;
font-style: italic;
}

.story-heading {
font-family: 'Space Grotesk', sans-serif;
font-size: 46px;
font-weight: 700;
line-height: 1.13;
margin-bottom: 26px;
letter-spacing: -0.5px;
}

.story-text-side p {
font-size: 16.8px;
color: #a8a8b2;
line-height: 1.72;
margin-bottom: 19px;
}

.story-actions {
display: flex;
gap: 13px;
margin-top: 38px;
}

.people-grid {
padding: 105px 0;
background: linear-gradient(175deg, rgba(4, 5, 46, 0.28) 0%, transparent 95%);
}

.people-intro {
margin-bottom: 58px;
}

.people-label {
font-family: 'Space Grotesk', sans-serif;
font-size: 12.5px;
font-weight: 600;
color: #0d00a4;
text-transform: lowercase;
letter-spacing: 0.9px;
margin-bottom: 14px;
}

.people-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 52px;
font-weight: 700;
line-height: 1.12;
}

.people-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 18px;
}

.person-card {
background: rgba(4, 5, 46, 0.42);
border: 1px solid rgba(13, 0, 164, 0.19);
border-radius: 13px;
padding: 33px;
transition: all 0.28s ease;
}

.person-offset {
margin-top: 35px;
}

.person-alt {
background: rgba(13, 0, 164, 0.07);
border-color: rgba(13, 0, 164, 0.32);
margin-top: -20px;
}

.person-card:hover {
transform: translateY(-5px) rotate(-0.3deg);
border-color: #0d00a4;
}

.person-job {
font-size: 11.5px;
font-weight: 600;
color: #0d00a4;
text-transform: lowercase;
margin-bottom: 11px;
}

.person-card h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 21.5px;
font-weight: 600;
margin-bottom: 9px;
}

.person-card p {
font-size: 14.2px;
color: #a8a8b2;
line-height: 1.58;
}

.collab-outro {
padding: 95px 0;
}

.outro-content {
text-align: center;
max-width: 620px;
margin: 0 auto;
}

.outro-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 44px;
font-weight: 700;
margin-bottom: 17px;
}

.outro-content p {
font-size: 17.5px;
color: #a8a8b2;
margin-bottom: 30px;
}

.services-top {
padding: 145px 0 65px;
text-align: center;
}

.services-big-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 70px;
font-weight: 700;
line-height: 1.08;
margin-bottom: 26px;
letter-spacing: -0.8px;
}

.services-explain {
font-size: 18.5px;
color: #a8a8b2;
max-width: 700px;
margin: 0 auto;
line-height: 1.64;
}

.what-we-do {
padding: 95px 0;
}

.services-layout {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 22px;
}

.serv-box {
background: rgba(4, 5, 46, 0.52);
border: 1px solid rgba(13, 0, 164, 0.24);
border-radius: 15px;
padding: 42px;
transition: all 0.33s ease;
position: relative;
}

.serv-large {
grid-column: span 2;
}

.serv-alt {
background: rgba(13, 0, 164, 0.09);
border-color: rgba(13, 0, 164, 0.38);
}

.serv-box:hover {
transform: translateY(-6px) rotate(0.4deg);
border-color: #0d00a4;
}

.serv-tag {
font-family: 'Space Grotesk', sans-serif;
font-size: 13.2px;
font-weight: 700;
color: #0d00a4;
margin-bottom: 18px;
text-transform: lowercase;
}

.serv-box h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 27px;
font-weight: 600;
margin-bottom: 13px;
}

.serv-box p {
font-size: 15.8px;
color: #a8a8b2;
line-height: 1.66;
margin-bottom: 22px;
}

.includes-list {
display: flex;
flex-wrap: wrap;
gap: 9px;
}

.includes-list span {
font-size: 12.8px;
padding: 6px 13px;
background: rgba(13, 0, 164, 0.16);
border-radius: 5px;
color: #a8a8b2;
}

.how-it-works {
padding: 105px 0;
background: rgba(4, 5, 46, 0.28);
}

.works-split {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 68px;
align-items: center;
}

.works-img {
width: 100%;
border-radius: 17px;
}

.works-text h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 42px;
font-weight: 700;
margin-bottom: 24px;
line-height: 1.15;
}

.works-text p {
font-size: 16.5px;
color: #a8a8b2;
line-height: 1.69;
margin-bottom: 17px;
}

.works-text a {
margin-top: 34px;
display: inline-block;
}

.money-talk {
padding: 95px 0;
}

.money-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 52px;
font-weight: 700;
text-align: center;
margin-bottom: 55px;
}

.price-boxes {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 26px;
margin-bottom: 38px;
}

.price-item {
background: rgba(4, 5, 46, 0.48);
border: 1px solid rgba(13, 0, 164, 0.24);
border-radius: 13px;
padding: 36px 30px;
transition: all 0.29s ease;
}

.price-main {
background: rgba(13, 0, 164, 0.11);
border-color: rgba(13, 0, 164, 0.42);
transform: scale(1.02);
}

.price-item:hover {
transform: translateY(-5px) rotate(-0.2deg);
border-color: #0d00a4;
}

.price-cat {
font-size: 12.5px;
font-weight: 600;
color: #0d00a4;
text-transform: lowercase;
margin-bottom: 11px;
}

.price-amt {
font-family: 'Space Grotesk', sans-serif;
font-size: 34px;
font-weight: 700;
margin-bottom: 15px;
}

.price-item p {
font-size: 14.8px;
color: #a8a8b2;
line-height: 1.58;
}

.price-footer {
font-size: 14.5px;
color: #a8a8b2;
text-align: center;
max-width: 720px;
margin: 0 auto;
line-height: 1.62;
}

.ready-block {
padding: 95px 0;
}

.ready-center {
text-align: center;
max-width: 590px;
margin: 0 auto;
}

.ready-center h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 46px;
font-weight: 700;
margin-bottom: 16px;
}

.ready-center p {
font-size: 17.2px;
color: #a8a8b2;
margin-bottom: 31px;
}

.philo-top {
padding: 155px 0 95px;
text-align: center;
}

.philo-main {
font-family: 'Space Grotesk', sans-serif;
font-size: 86px;
font-weight: 700;
line-height: 0.98;
margin-bottom: 31px;
background: linear-gradient(132deg, #ffffff, #0d00a4);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
letter-spacing: -1px;
}

.philo-sub {
font-size: 19.5px;
color: #a8a8b2;
max-width: 820px;
margin: 0 auto;
line-height: 1.71;
}

.thinking-blocks {
padding: 100px 0;
}

.blocks-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 26px;
}

.think-block {
background: rgba(4, 5, 46, 0.38);
border: 1px solid rgba(13, 0, 164, 0.21);
border-radius: 15px;
padding: 41px;
transition: all 0.31s ease;
}

.think-accent {
background: rgba(13, 0, 164, 0.08);
border-color: rgba(13, 0, 164, 0.33);
}

.think-block:hover {
transform: translateY(-6px) rotate(0.3deg);
border-color: #0d00a4;
}

.think-block h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 25px;
font-weight: 600;
margin-bottom: 13px;
}

.think-block p {
font-size: 15.5px;
color: #a8a8b2;
line-height: 1.67;
}

.beliefs-area {
padding: 105px 0;
background: linear-gradient(178deg, transparent 0%, rgba(4, 5, 46, 0.36) 92%);
}

.beliefs-structure {
display: grid;
grid-template-columns: 0.75fr 1.25fr;
gap: 78px;
}

.beliefs-heading {
font-family: 'Space Grotesk', sans-serif;
font-size: 50px;
font-weight: 700;
line-height: 1.09;
position: sticky;
top: 115px;
}

.beliefs-right {
display: flex;
flex-direction: column;
gap: 38px;
}

.belief-item h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 23px;
font-weight: 600;
margin-bottom: 11px;
}

.belief-item p {
font-size: 15.8px;
color: #a8a8b2;
line-height: 1.68;
}

.wrap-up {
padding: 95px 0;
}

.wrap-box {
max-width: 840px;
margin: 0 auto;
background: rgba(4, 5, 46, 0.52);
border: 1px solid rgba(13, 0, 164, 0.28);
border-radius: 17px;
padding: 58px;
}

.wrap-box h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 40px;
font-weight: 700;
margin-bottom: 27px;
}

.wrap-box p {
font-size: 16.8px;
color: #a8a8b2;
line-height: 1.69;
margin-bottom: 19px;
}

.wrap-box a {
margin-top: 24px;
display: inline-block;
}

.prod-intro {
padding: 142px 0 78px;
}

.prod-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 72px;
font-weight: 700;
line-height: 1.04;
margin-bottom: 27px;
letter-spacing: -0.9px;
}

.prod-desc {
font-size: 18.8px;
color: #a8a8b2;
max-width: 790px;
line-height: 1.68;
}

.process-flow {
padding: 85px 0;
}

.flow-steps {
display: flex;
flex-direction: column;
gap: 28px;
}

.step-card {
background: rgba(4, 5, 46, 0.51);
border: 1px solid rgba(13, 0, 164, 0.24);
border-radius: 16px;
padding: 46px;
transition: all 0.27s ease;
}

.step-disco {
border-left: 3.5px solid #0d00a4;
}

.step-concept {
border-left: 3.5px solid #22007c;
}

.step-design {
border-left: 3.5px solid #140152;
}

.step-anim {
border-left: 3.5px solid #0d00a4;
}

.step-final {
border-left: 3.5px solid #22007c;
}

.step-card:hover {
background: rgba(4, 5, 46, 0.68);
border-color: #0d00a4;
transform: translateX(4px);
}

.step-top {
display: flex;
align-items: center;
gap: 22px;
margin-bottom: 22px;
flex-wrap: wrap;
}

.step-name {
font-family: 'Space Grotesk', sans-serif;
font-size: 12.8px;
font-weight: 700;
color: #0d00a4;
text-transform: lowercase;
}

.step-card h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 31px;
font-weight: 600;
flex: 1;
}

.step-time {
font-size: 13.5px;
color: #a8a8b2;
background: rgba(13, 0, 164, 0.14);
padding: 5px 13px;
border-radius: 5px;
}

.step-card > p {
font-size: 15.5px;
color: #a8a8b2;
line-height: 1.68;
margin-bottom: 30px;
}

.step-details {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 38px;
}

.detail-side strong {
font-family: 'Space Grotesk', sans-serif;
font-size: 14.5px;
font-weight: 600;
color: #0d00a4;
display: block;
margin-bottom: 14px;
}

.detail-side p {
font-size: 14.2px;
color: #a8a8b2;
line-height: 1.65;
}

.timeline-view {
padding: 105px 0;
background: rgba(4, 5, 46, 0.32);
}

.timeline-heading {
font-family: 'Space Grotesk', sans-serif;
font-size: 46px;
font-weight: 700;
text-align: center;
margin-bottom: 58px;
}

.timeline-bars {
display: flex;
background: rgba(4, 5, 46, 0.62);
border-radius: 11px;
overflow: hidden;
height: 95px;
margin-bottom: 36px;
}

.time-bar {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 14px;
border-right: 1px solid rgba(13, 0, 164, 0.28);
transition: all 0.26s ease;
}

.time-bar:last-child {
border-right: none;
}

.time-bar:hover {
background: rgba(13, 0, 164, 0.18) !important;
transform: scale(1.02);
}

.bar-label {
font-size: 12.5px;
color: #a8a8b2;
text-transform: lowercase;
margin-bottom: 7px;
}

.bar-week {
font-family: 'Space Grotesk', sans-serif;
font-size: 14.5px;
font-weight: 600;
color: #0d00a4;
}

.timeline-note {
font-size: 14.8px;
color: #a8a8b2;
text-align: center;
max-width: 715px;
margin: 0 auto;
line-height: 1.61;
}

.staying-track {
padding: 85px 0;
}

.track-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 48px;
font-weight: 700;
text-align: center;
margin-bottom: 55px;
}

.track-points {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 26px;
}

.track-item {
background: rgba(4, 5, 46, 0.49);
border: 1px solid rgba(13, 0, 164, 0.23);
border-radius: 13px;
padding: 36px 30px;
text-align: center;
transition: all 0.28s ease;
}

.track-item:hover {
transform: translateY(-6px) rotate(-0.4deg);
border-color: #0d00a4;
}

.track-item .material-symbols-outlined {
font-size: 46px;
color: #0d00a4;
display: block;
margin-bottom: 18px;
}

.track-item h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 21px;
font-weight: 600;
margin-bottom: 11px;
}

.track-item p {
font-size: 14.5px;
color: #a8a8b2;
line-height: 1.59;
}

.careers-top {
padding: 158px 0 98px;
}

.careers-center {
text-align: center;
max-width: 920px;
margin: 0 auto;
}

.careers-tag {
display: inline-block;
font-family: 'Space Grotesk', sans-serif;
font-size: 11.8px;
font-weight: 600;
text-transform: lowercase;
padding: 5px 15px;
background: rgba(13, 0, 164, 0.19);
color: #0d00a4;
border-radius: 17px;
margin-bottom: 27px;
}

.careers-big {
font-family: 'Space Grotesk', sans-serif;
font-size: 82px;
font-weight: 700;
line-height: 0.99;
margin-bottom: 31px;
letter-spacing: -1.1px;
}

.careers-explain {
font-size: 19.5px;
color: #a8a8b2;
line-height: 1.69;
}

.studio-life {
padding: 95px 0;
}

.life-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 50px;
font-weight: 700;
text-align: center;
margin-bottom: 56px;
}

.life-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 22px;
}

.life-box {
background: rgba(4, 5, 46, 0.51);
border: 1px solid rgba(13, 0, 164, 0.24);
border-radius: 13px;
padding: 34px;
transition: all 0.32s ease;
}

.life-highlight {
background: rgba(13, 0, 164, 0.08);
border-color: rgba(13, 0, 164, 0.34);
}

.life-box:hover {
transform: translateY(-6px) rotate(0.5deg);
border-color: #0d00a4;
}

.life-box .material-symbols-outlined {
font-size: 40px;
color: #0d00a4;
display: block;
margin-bottom: 17px;
}

.life-box h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 20px;
font-weight: 600;
margin-bottom: 11px;
}

.life-box p {
font-size: 14.5px;
color: #a8a8b2;
line-height: 1.63;
}

.open-roles {
padding: 105px 0;
background: rgba(4, 5, 46, 0.29);
}

.roles-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 48px;
font-weight: 700;
text-align: center;
margin-bottom: 52px;
}

.roles-list {
display: flex;
flex-direction: column;
gap: 18px;
margin-bottom: 58px;
}

.role-box {
background: rgba(4, 5, 46, 0.58);
border: 1px solid rgba(13, 0, 164, 0.24);
border-radius: 13px;
padding: 34px;
transition: all 0.27s ease;
}

.role-closed {
opacity: 0.48;
}

.role-box:hover:not(.role-closed) {
border-color: #0d00a4;
transform: translateY(-4px) rotate(-0.2deg);
}

.role-top {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 15px;
gap: 18px;
}

.role-box h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 25px;
font-weight: 600;
margin-bottom: 5px;
}

.role-meta {
font-size: 13.5px;
color: #a8a8b2;
}

.role-badge {
font-size: 11.5px;
font-weight: 600;
padding: 5px 13px;
background: rgba(13, 0, 164, 0.19);
color: #0d00a4;
border-radius: 5px;
text-transform: lowercase;
}

.badge-inactive {
background: rgba(168, 168, 178, 0.14);
color: #a8a8b2;
}

.role-about {
font-size: 15.5px;
color: #a8a8b2;
line-height: 1.64;
margin-bottom: 18px;
}

.role-skills {
display: flex;
flex-wrap: wrap;
gap: 9px;
margin-bottom: 22px;
}

.role-skills span {
font-size: 12.5px;
padding: 6px 13px;
background: rgba(13, 0, 164, 0.15);
border-radius: 5px;
color: #a8a8b2;
}

.btn-compact {
padding: 11px 26px;
font-size: 13.5px;
}

.spec-apply {
background: rgba(13, 0, 164, 0.11);
border: 1px solid rgba(13, 0, 164, 0.29);
border-radius: 13px;
padding: 46px;
text-align: center;
}

.spec-apply h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 30px;
font-weight: 600;
margin-bottom: 13px;
}

.spec-apply p {
font-size: 16.5px;
color: #a8a8b2;
margin-bottom: 27px;
}

.looking-for {
padding: 95px 0;
}

.looking-layout {
display: grid;
grid-template-columns: 0.78fr 1.22fr;
gap: 68px;
}

.looking-left h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 46px;
font-weight: 700;
margin-bottom: 17px;
position: sticky;
top: 118px;
}

.looking-left p {
font-size: 16.5px;
color: #a8a8b2;
line-height: 1.68;
}

.looking-right {
display: flex;
flex-direction: column;
gap: 30px;
}

.matter-item h4 {
font-family: 'Space Grotesk', sans-serif;
font-size: 21px;
font-weight: 600;
margin-bottom: 9px;
}

.matter-item p {
font-size: 15.5px;
color: #a8a8b2;
line-height: 1.64;
}

@media (max-width: 1200px) {
.numbers-wrap {
grid-template-columns: repeat(2, 1fr);
}

.services-layout {
grid-template-columns: 1fr;
}

.serv-large {
grid-column: span 1;
}

.price-boxes {
grid-template-columns: 1fr;
}

.price-main {
transform: none;
}

.life-grid {
grid-template-columns: repeat(2, 1fr);
}

.track-points {
grid-template-columns: 1fr;
}
}

@media (max-width: 968px) {
.hero-massive {
font-size: 62px;
}

.story-layout {
grid-template-columns: 1fr;
gap: 48px;
}

.people-cards {
grid-template-columns: repeat(2, 1fr);
}

.person-offset, .person-alt {
margin-top: 0;
}

.services-big-title {
font-size: 50px;
}

.works-split {
grid-template-columns: 1fr;
gap: 48px;
}

.blocks-grid {
grid-template-columns: 1fr;
}

.beliefs-structure {
grid-template-columns: 1fr;
gap: 48px;
}

.beliefs-heading {
position: static;
}

.step-details {
grid-template-columns: 1fr;
gap: 26px;
}

.timeline-bars {
flex-direction: column;
height: auto;
}

.time-bar {
border-right: none;
border-bottom: 1px solid rgba(13, 0, 164, 0.28);
}

.time-bar:last-child {
border-bottom: none;
}

.careers-big {
font-size: 54px;
}

.life-grid {
grid-template-columns: 1fr;
}

.looking-layout {
grid-template-columns: 1fr;
gap: 48px;
}

.looking-left h2 {
position: static;
}
}

@media (max-width: 640px) {
.hero-massive {
font-size: 42px;
}

.numbers-wrap {
grid-template-columns: 1fr;
}

.people-cards {
grid-template-columns: 1fr;
}

.services-big-title {
font-size: 36px;
}

.philo-main {
font-size: 46px;
}

.prod-title {
font-size: 40px;
}

.careers-big {
font-size: 36px;
}
}

.stories-hero {
padding: 140px 0 80px;
background: linear-gradient(180deg, rgba(13, 0, 164, 0.08) 0%, transparent 100%);
}

.stories-intro {
max-width: 780px;
}

.stories-main-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 72px;
font-weight: 700;
margin-bottom: 24px;
line-height: 1;
background: linear-gradient(135deg, #ffffff 0%, #0d00a4 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.stories-lead {
font-size: 20px;
color: var(--color-grey);
line-height: 1.65;
max-width: 640px;
}

.stories-grid-section {
padding: 80px 0 120px;
}

.stories-masonry {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 24px;
grid-auto-flow: dense;
}

.story-card {
background: rgba(4, 5, 46, 0.4);
border: 1px solid rgba(13, 0, 164, 0.2);
border-radius: 16px;
overflow: hidden;
transition: all 0.38s ease;
}

.story-card:hover {
border-color: var(--color-electric);
transform: translateY(-6px);
box-shadow: 0 16px 48px rgba(13, 0, 164, 0.3);
}

.story-large {
grid-column: span 2;
grid-row: span 2;
}

.story-medium {
grid-column: span 1;
grid-row: span 2;
}

.story-wide {
grid-column: span 2;
}

.story-link-wrap {
display: block;
text-decoration: none;
color: inherit;
height: 100%;
}

.story-visual {
position: relative;
overflow: hidden;
aspect-ratio: 16/10;
}

.story-large .story-visual {
aspect-ratio: 16/14;
}

.story-img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.story-card:hover .story-img {
transform: scale(1.06);
}

.story-overlay {
position: absolute;
inset: 0;
background: linear-gradient(180deg, transparent 40%, rgba(2, 1, 10, 0.85) 100%);
}

.story-text {
padding: 28px;
}

.story-card:not(.story-large):not(.story-medium) .story-text {
padding: 24px;
}

.story-meta {
font-size: 12px;
color: var(--color-electric);
text-transform: lowercase;
font-weight: 500;
display: block;
margin-bottom: 12px;
}

.story-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 24px;
font-weight: 600;
margin-bottom: 12px;
line-height: 1.25;
}

.story-large .story-title {
font-size: 32px;
}

.story-excerpt {
font-size: 15px;
color: var(--color-grey);
line-height: 1.6;
}

.stories-cta {
padding: 80px 0;
background: linear-gradient(135deg, rgba(13, 0, 164, 0.1) 0%, rgba(34, 0, 124, 0.05) 100%);
}

.cta-box {
text-align: center;
max-width: 600px;
margin: 0 auto;
padding: 60px 40px;
background: rgba(4, 5, 46, 0.4);
border: 1px solid rgba(13, 0, 164, 0.25);
border-radius: 20px;
}

.cta-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 42px;
font-weight: 700;
margin-bottom: 16px;
}

.cta-desc {
font-size: 17px;
color: var(--color-grey);
margin-bottom: 32px;
}

.stories-placeholder {
min-height: calc(100vh - 200px);
display: flex;
align-items: center;
justify-content: center;
padding: 120px 0;
}

.placeholder-content {
text-align: center;
max-width: 620px;
}

.placeholder-visual {
margin-bottom: 32px;
}

.placeholder-visual .material-symbols-outlined {
font-size: 80px;
color: var(--color-electric);
opacity: 0.6;
}

.placeholder-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 56px;
font-weight: 700;
margin-bottom: 24px;
}

.placeholder-text {
font-size: 19px;
color: var(--color-grey);
line-height: 1.7;
margin-bottom: 40px;
}

.placeholder-cta {
display: flex;
gap: 16px;
justify-content: center;
flex-wrap: wrap;
}

.article-layout {
padding-top: 76px;
}

.article-hero-visual {
width: 100%;
height: 60vh;
min-height: 480px;
overflow: hidden;
position: relative;
}

.article-hero-img {
width: 100%;
height: 100%;
object-fit: cover;
}

.article-container {
max-width: 780px;
margin: 0 auto;
padding: 0 24px;
}

.article-header {
padding: 60px 0 40px;
}

.back-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--color-grey);
text-decoration: none;
font-size: 14px;
transition: color 0.3s ease;
margin-bottom: 32px;
}

.back-link:hover {
color: var(--color-white);
}

.article-meta-row {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 24px;
font-size: 14px;
color: var(--color-grey);
}

.article-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 56px;
font-weight: 700;
line-height: 1.1;
margin-bottom: 20px;
}

.article-intro {
font-size: 20px;
color: var(--color-grey);
line-height: 1.7;
}

.article-content {
padding-bottom: 80px;
}

.article-content p {
font-size: 17px;
line-height: 1.8;
margin-bottom: 24px;
color: rgba(255, 255, 255, 0.9);
}

.article-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 600;
margin: 48px 0 20px;
line-height: 1.3;
}

.article-content h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 24px;
font-weight: 600;
margin: 36px 0 16px;
}

.article-footer {
border-top: 1px solid rgba(13, 0, 164, 0.2);
padding: 40px 0;
}

.article-nav {
display: flex;
justify-content: space-between;
}

.article-next {
text-decoration: none;
color: inherit;
transition: color 0.3s ease;
text-align: right;
}

.article-next:hover {
color: var(--color-electric);
}

.article-next span {
display: block;
font-size: 13px;
color: var(--color-grey);
margin-bottom: 6px;
}

.article-next strong {
font-size: 18px;
font-weight: 600;
}

.article-alt-layout {
padding-top: 76px;
}

.article-container-narrow {
max-width: 720px;
margin: 0 auto;
padding: 0 24px;
}

.article-header-center {
padding: 80px 0 60px;
text-align: center;
}

.article-title-large {
font-family: 'Space Grotesk', sans-serif;
font-size: 64px;
font-weight: 700;
line-height: 1.05;
margin-bottom: 32px;
}

.article-body {
padding-bottom: 80px;
}

.lead-paragraph {
font-size: 21px;
line-height: 1.75;
margin-bottom: 32px;
color: rgba(255, 255, 255, 0.95);
font-weight: 400;
}

.article-body p {
font-size: 17px;
line-height: 1.8;
margin-bottom: 24px;
color: rgba(255, 255, 255, 0.88);
}

.article-body h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
font-weight: 600;
margin: 52px 0 24px;
line-height: 1.2;
}

.article-nav-split {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
border-top: 1px solid rgba(13, 0, 164, 0.2);
padding-top: 40px;
}

.nav-prev, .nav-next {
display: flex;
align-items: center;
gap: 12px;
text-decoration: none;
color: inherit;
padding: 20px;
background: rgba(4, 5, 46, 0.3);
border: 1px solid rgba(13, 0, 164, 0.2);
border-radius: 12px;
transition: all 0.3s ease;
}

.nav-prev:hover, .nav-next:hover {
border-color: var(--color-electric);
background: rgba(4, 5, 46, 0.5);
}

.nav-next {
justify-content: flex-end;
text-align: right;
}

.nav-prev span, .nav-next span {
display: block;
font-size: 12px;
color: var(--color-grey);
margin-bottom: 4px;
}

.nav-prev strong, .nav-next strong {
font-size: 16px;
font-weight: 600;
}

.article-sidebar-layout {
padding-top: 76px;
}

.article-wrapper {
display: grid;
grid-template-columns: 200px 1fr;
gap: 60px;
max-width: 1200px;
margin: 0 auto;
padding: 80px 24px;
}

.article-sidebar {
position: sticky;
top: 120px;
height: fit-content;
}

.back-link-sticky {
display: flex;
align-items: center;
gap: 6px;
color: var(--color-grey);
text-decoration: none;
font-size: 13px;
margin-bottom: 32px;
transition: color 0.3s ease;
}

.back-link-sticky:hover {
color: var(--color-white);
}

.sidebar-meta {
display: flex;
flex-direction: column;
gap: 8px;
margin-bottom: 40px;
font-size: 13px;
color: var(--color-grey);
}

.sidebar-share {
display: flex;
flex-direction: column;
gap: 12px;
}

.share-label {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--color-grey);
}

.share-btn {
background: rgba(13, 0, 164, 0.15);
border: 1px solid rgba(13, 0, 164, 0.3);
color: var(--color-electric);
width: 40px;
height: 40px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
}

.share-btn:hover {
background: rgba(13, 0, 164, 0.25);
border-color: var(--color-electric);
}

.article-main-content {
max-width: 740px;
}

.article-header-side {
margin-bottom: 48px;
}

.article-title-xl {
font-family: 'Space Grotesk', sans-serif;
font-size: 58px;
font-weight: 700;
line-height: 1.1;
margin-bottom: 16px;
}

.article-subtitle {
font-size: 19px;
color: var(--color-grey);
line-height: 1.6;
}

.article-featured-img {
margin: 0 0 48px;
border-radius: 16px;
overflow: hidden;
}

.featured-img {
width: 100%;
height: auto;
display: block;
}

.article-text {
padding-bottom: 60px;
}

.article-text p {
font-size: 17px;
line-height: 1.8;
margin-bottom: 24px;
color: rgba(255, 255, 255, 0.9);
}

.article-text h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 34px;
font-weight: 600;
margin: 48px 0 20px;
}

.article-split-layout {
padding-top: 76px;
}

.article-grid-container {
display: grid;
grid-template-columns: 1fr 280px;
gap: 60px;
max-width: 1280px;
margin: 0 auto;
padding: 60px 24px 100px;
}

.article-content-main {
max-width: 740px;
}

.article-header-minimal {
margin-bottom: 40px;
}

.article-title-compact {
font-family: 'Space Grotesk', sans-serif;
font-size: 52px;
font-weight: 700;
line-height: 1.1;
margin-bottom: 16px;
}

.article-meta-inline {
display: flex;
align-items: center;
gap: 12px;
font-size: 14px;
color: var(--color-grey);
}

.separator {
color: rgba(168, 168, 178, 0.3);
}

.article-prose {
padding-bottom: 60px;
}

.opening-statement {
font-size: 20px;
line-height: 1.75;
margin-bottom: 32px;
color: rgba(255, 255, 255, 0.95);
font-weight: 400;
}

.article-prose p {
font-size: 17px;
line-height: 1.8;
margin-bottom: 24px;
color: rgba(255, 255, 255, 0.88);
}

.article-prose h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 600;
margin: 44px 0 20px;
}

.article-prose h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 24px;
font-weight: 600;
margin: 36px 0 16px;
}

.article-nav-compact {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 40px;
border-top: 1px solid rgba(13, 0, 164, 0.2);
}

.nav-previous, .nav-next-compact {
display: flex;
align-items: center;
gap: 8px;
text-decoration: none;
color: var(--color-grey);
font-size: 14px;
transition: color 0.3s ease;
}

.nav-previous:hover, .nav-next-compact:hover {
color: var(--color-electric);
}

.article-sidebar-right {
position: relative;
}

.sidebar-sticky {
position: sticky;
top: 120px;
}

.sidebar-section {
margin-bottom: 32px;
}

.sidebar-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 16px;
color: var(--color-white);
}

.sidebar-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 10px;
}

.sidebar-list a {
color: var(--color-grey);
text-decoration: none;
font-size: 14px;
transition: color 0.3s ease;
}

.sidebar-list a:hover {
color: var(--color-electric);
}

.article-immersive {
padding-top: 76px;
}

.immersive-header {
position: relative;
height: 70vh;
min-height: 540px;
display: flex;
align-items: flex-end;
overflow: hidden;
}

.header-visual-bg {
position: absolute;
inset: 0;
}

.bg-img {
width: 100%;
height: 100%;
object-fit: cover;
}

.header-gradient {
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(2, 1, 10, 0.3) 0%, rgba(2, 1, 10, 0.95) 100%);
}

.header-content-overlay {
position: relative;
z-index: 2;
width: 100%;
padding-bottom: 60px;
}

.back-link-light {
display: inline-flex;
align-items: center;
gap: 8px;
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
font-size: 14px;
margin-bottom: 32px;
transition: color 0.3s ease;
}

.back-link-light:hover {
color: var(--color-white);
}

.immersive-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 68px;
font-weight: 700;
line-height: 1.05;
margin-bottom: 20px;
max-width: 900px;
}

.immersive-meta {
display: flex;
align-items: center;
gap: 16px;
font-size: 15px;
color: rgba(255, 255, 255, 0.7);
}

.article-container-reading {
max-width: 780px;
margin: 0 auto;
padding: 60px 24px 80px;
}

.reading-content {
padding-bottom: 60px;
}

.article-lead {
font-size: 22px;
line-height: 1.7;
margin-bottom: 36px;
color: rgba(255, 255, 255, 0.95);
font-weight: 400;
}

.reading-content p {
font-size: 17px;
line-height: 1.8;
margin-bottom: 24px;
color: rgba(255, 255, 255, 0.88);
}

.reading-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
font-weight: 600;
margin: 52px 0 24px;
}

.article-footer-reading {
border-top: 1px solid rgba(13, 0, 164, 0.2);
padding-top: 40px;
}

.footer-nav-reading {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
}

.reading-prev {
display: flex;
align-items: center;
gap: 12px;
text-decoration: none;
color: inherit;
transition: color 0.3s ease;
}

.reading-prev:hover {
color: var(--color-electric);
}

.reading-prev .nav-label {
font-size: 12px;
color: var(--color-grey);
display: block;
margin-bottom: 4px;
}

.reading-prev strong {
font-size: 16px;
font-weight: 600;
}

.reading-all {
display: flex;
align-items: center;
gap: 8px;
text-decoration: none;
color: var(--color-grey);
font-size: 14px;
transition: color 0.3s ease;
}

.reading-all:hover {
color: var(--color-electric);
}

.related-cta {
padding: 80px 0;
background: linear-gradient(135deg, rgba(13, 0, 164, 0.08) 0%, rgba(34, 0, 124, 0.04) 100%);
}

.cta-inline {
display: flex;
align-items: center;
justify-content: space-between;
gap: 32px;
max-width: 900px;
margin: 0 auto;
padding: 48px;
background: rgba(4, 5, 46, 0.4);
border: 1px solid rgba(13, 0, 164, 0.25);
border-radius: 16px;
}

.cta-inline h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
font-weight: 600;
margin: 0;
flex: 1;
}

@media (max-width: 968px) {
.stories-main-title {
font-size: 52px;
}

.stories-masonry {
grid-template-columns: 1fr;
}

.story-large, .story-medium, .story-wide {
grid-column: span 1;
grid-row: span 1;
}

.article-hero-visual {
height: 50vh;
min-height: 360px;
}

.article-title {
font-size: 42px;
}

.article-title-large {
font-size: 48px;
}

.article-title-xl {
font-size: 44px;
}

.article-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

.article-sidebar {
position: static;
}

.back-link-sticky {
display: none;
}

.article-grid-container {
grid-template-columns: 1fr;
}

.article-sidebar-right {
display: none;
}

.immersive-title {
font-size: 48px;
}

.article-nav-split {
grid-template-columns: 1fr;
}

.cta-inline {
flex-direction: column;
text-align: center;
}
}

@media (max-width: 640px) {
.stories-main-title {
font-size: 38px;
}

.placeholder-title {
font-size: 38px;
}

.article-title {
font-size: 34px;
}

.article-title-large {
font-size: 36px;
}

.article-title-xl {
font-size: 36px;
}

.article-title-compact {
font-size: 36px;
}

.immersive-title {
font-size: 36px;
}

.cta-box {
padding: 40px 24px;
}

.cta-title {
font-size: 32px;
}

.cta-inline h2 {
font-size: 24px;
}
}

.thanks-wrap {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: linear-gradient(135deg, rgba(13, 0, 164, 0.08) 0%, rgba(2, 1, 10, 1) 100%);
padding: 2rem;
}

.thanks-inner {
text-align: center;
max-width: 580px;
}

.thanks-badge {
display: inline-block;
font-family: 'Space Grotesk', sans-serif;
font-size: 12px;
font-weight: 600;
text-transform: lowercase;
padding: 8px 18px;
background: rgba(13, 0, 164, 0.2);
color: var(--color-electric);
border-radius: 6px;
margin-bottom: 2rem;
}

.thanks-heading {
font-family: 'Space Grotesk', sans-serif;
font-size: 58px;
font-weight: 700;
line-height: 1.1;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, var(--color-white), var(--color-electric));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.thanks-text {
font-size: 18px;
color: var(--color-grey);
line-height: 1.6;
margin-bottom: 3rem;
}

.thanks-btn {
display: inline-block;
font-family: 'Space Grotesk', sans-serif;
font-size: 15px;
font-weight: 600;
padding: 16px 38px;
background: linear-gradient(135deg, var(--color-electric), var(--color-royal));
color: var(--color-white);
border-radius: 9px;
text-decoration: none;
transition: var(--transition-smooth);
box-shadow: 0 4px 20px rgba(13, 0, 164, 0.3);
}

.thanks-btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 28px rgba(13, 0, 164, 0.5);
}

.legal-page {
padding-top: 76px;
min-height: 100vh;
}

.legal-container {
max-width: 860px;
margin: 0 auto;
padding: 5rem 24px 6rem;
}

.legal-header {
text-align: center;
margin-bottom: 4rem;
padding-bottom: 2.5rem;
border-bottom: 1px solid rgba(13, 0, 164, 0.2);
}

.legal-header h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 52px;
font-weight: 700;
margin-bottom: 0.8rem;
background: linear-gradient(135deg, var(--color-white), var(--color-electric));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.legal-updated {
font-size: 14px;
color: var(--color-grey);
}

.legal-content {
display: flex;
flex-direction: column;
gap: 2.8rem;
}

.legal-section h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 26px;
font-weight: 600;
margin-bottom: 1rem;
color: var(--color-white);
}

.legal-section p {
font-size: 16px;
line-height: 1.75;
color: var(--color-grey);
}

.legal-inline-link {
color: var(--color-electric);
text-decoration: none;
transition: var(--transition-smooth);
}

.legal-inline-link:hover {
color: var(--color-white);
text-decoration: underline;
}

.contact-main {
padding-top: 76px;
}

.contact-hero {
padding: 5rem 0 3rem;
background: linear-gradient(135deg, rgba(13, 0, 164, 0.05) 0%, rgba(2, 1, 10, 0.95) 100%);
}

.contact-intro {
max-width: 720px;
}

.contact-intro h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 68px;
font-weight: 700;
line-height: 1.08;
margin-bottom: 1.5rem;
}

.contact-intro p {
font-size: 20px;
color: var(--color-grey);
line-height: 1.6;
}

.contact-body {
padding: 5rem 0 7rem;
}

.contact-split {
display: grid;
grid-template-columns: 1.3fr 1fr;
gap: 5rem;
}

.project-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.form-row-dual {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.2rem;
}

.form-field {
display: flex;
flex-direction: column;
gap: 0.5rem;
}

.form-field label {
font-family: 'Space Grotesk', sans-serif;
font-size: 13px;
font-weight: 500;
color: var(--color-grey);
text-transform: lowercase;
}

.form-field input,
.form-field select,
.form-field textarea {
font-family: 'Inter', sans-serif;
font-size: 15px;
padding: 14px 16px;
background: rgba(4, 5, 46, 0.4);
border: 1px solid rgba(13, 0, 164, 0.25);
border-radius: 8px;
color: var(--color-white);
transition: var(--transition-smooth);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
outline: none;
border-color: var(--color-electric);
background: rgba(4, 5, 46, 0.6);
}

.form-field select {
cursor: pointer;
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23a8a8b2' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 14px center;
padding-right: 40px;
}

.form-field textarea {
resize: vertical;
min-height: 140px;
}

.form-submit-btn {
font-family: 'Space Grotesk', sans-serif;
font-size: 15px;
font-weight: 600;
padding: 16px 38px;
background: linear-gradient(135deg, var(--color-electric), var(--color-royal));
color: var(--color-white);
border: none;
border-radius: 9px;
cursor: pointer;
transition: var(--transition-smooth);
box-shadow: 0 4px 20px rgba(13, 0, 164, 0.3);
margin-top: 0.5rem;
}

.form-submit-btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 28px rgba(13, 0, 164, 0.5);
}

.contact-info-side {
display: flex;
flex-direction: column;
gap: 2.5rem;
}

.info-block h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 22px;
font-weight: 600;
margin-bottom: 1.2rem;
}

.info-block p {
font-size: 15px;
line-height: 1.65;
color: var(--color-grey);
}

.info-items {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.info-item {
display: flex;
gap: 1rem;
align-items: flex-start;
}

.info-item .material-symbols-outlined {
font-size: 24px;
color: var(--color-electric);
flex-shrink: 0;
}

.info-item div {
display: flex;
flex-direction: column;
gap: 0.3rem;
}

.info-item strong {
font-size: 13px;
font-weight: 600;
color: var(--color-white);
text-transform: lowercase;
}

.info-item a,
.info-item span {
font-size: 15px;
color: var(--color-grey);
text-decoration: none;
transition: var(--transition-smooth);
}

.info-item a:hover {
color: var(--color-electric);
}

@media (max-width: 968px) {
.thanks-heading {
font-size: 42px;
}

.legal-header h1 {
font-size: 38px;
}

.contact-intro h1 {
font-size: 48px;
}

.contact-split {
grid-template-columns: 1fr;
gap: 3.5rem;
}

.form-row-dual {
grid-template-columns: 1fr;
}
}

@media (max-width: 640px) {
.thanks-heading {
font-size: 34px;
}

.legal-container {
padding: 4rem 20px 5rem;
}

.legal-header h1 {
font-size: 32px;
}

.contact-intro h1 {
font-size: 36px;
}

.contact-hero {
padding: 3rem 0 2rem;
}
}






.creative-placeholder {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #02010a 0%, #04052e 100%);
}


.animated-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #0d00a4, #22007c);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #22007c, #140152);
    top: 20%;
    right: -5%;
    animation-delay: 3s;
    animation-duration: 30s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #140152, #0d00a4);
    bottom: -5%;
    left: 15%;
    animation-delay: 6s;
    animation-duration: 28s;
}

.shape-4 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #0d00a4, #04052e);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
    animation-duration: 35s;
}

.shape-5 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #22007c, #0d00a4);
    bottom: 10%;
    right: 10%;
    animation-delay: 5s;
    animation-duration: 32s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(40px, 10px) scale(1.05);
    }
}

.placeholder-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px;
}

.content-wrapper {
    text-align: center;
}


.icon-animated {
    width: 120px;
    height: 120px;
    margin: 0 auto 60px;
    position: relative;
    animation: iconPulse 3s infinite ease-in-out;
}

.icon-circle {
    width: 100%;
    height: 100%;
    border: 3px solid #0d00a4;
    border-radius: 50%;
    position: absolute;
    animation: rotate 8s linear infinite;
}

.icon-circle::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid #22007c;
    animation: rotate 6s linear infinite reverse;
}

.icon-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #0d00a4, transparent);
    height: 3px;
    left: 50%;
    top: 50%;
    transform-origin: left center;
}

.line-1 {
    width: 40px;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: lineRotate 4s infinite ease-in-out;
}

.line-2 {
    width: 35px;
    transform: translate(-50%, -50%) rotate(120deg);
    animation: lineRotate 4s infinite ease-in-out 0.5s;
}

.line-3 {
    width: 45px;
    transform: translate(-50%, -50%) rotate(240deg);
    animation: lineRotate 4s infinite ease-in-out 1s;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes lineRotate {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}


.animated-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 92px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.word {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #0d00a4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: wordFloat 3s infinite ease-in-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.word-1 {
    animation-delay: 0.2s;
}

.word-2 {
    animation-delay: 0.4s;
    font-size: 0.6em;
    align-self: center;
    background: linear-gradient(135deg, #a8a8b2 0%, #0d00a4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.word-3 {
    animation-delay: 0.6s;
}

@keyframes wordFloat {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    20% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.subtitle-animated {
    margin-bottom: 50px;
    overflow: hidden;
}

.subtitle-animated .line {
    font-size: 20px;
    color: #a8a8b2;
    line-height: 1.8;
    margin: 0;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 0.8s ease-out forwards;
}

.subtitle-animated .line:nth-child(1) {
    animation-delay: 0.8s;
}

.subtitle-animated .line:nth-child(2) {
    animation-delay: 1s;
}

.subtitle-animated .line:nth-child(3) {
    animation-delay: 1.2s;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.progress-indicator {
    max-width: 400px;
    margin: 0 auto 50px;
    opacity: 0;
    animation: fadeIn 0.6s ease-out 1.5s forwards;
}

.progress-bar {
    height: 4px;
    background: rgba(13, 0, 164, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0d00a4, #22007c, #0d00a4);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: progressFlow 2s ease-in-out infinite;
    width: 65%;
}

@keyframes progressFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.progress-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0d00a4;
    text-transform: lowercase;
    letter-spacing: 1px;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 0.6s ease-out 1.8s forwards;
}

.btn-primary {
    position: relative;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 42px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid #0d00a4;
}

.btn-primary span {
    position: relative;
    z-index: 2;
}

.btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d00a4, #22007c);
    transition: transform 0.4s ease;
}

.btn-primary:hover .btn-bg {
    transform: scale(1.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(13, 0, 164, 0.5);
}

.btn-secondary {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 42px;
    color: #a8a8b2;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid rgba(168, 168, 178, 0.3);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 0, 164, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.btn-secondary span {
    position: relative;
    z-index: 2;
}

.btn-secondary:hover {
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-secondary:hover::before {
    transform: scaleX(1);
}

@media (max-width: 968px) {
    .animated-title {
        font-size: 64px;
        gap: 16px;
    }
    
    .icon-animated {
        width: 100px;
        height: 100px;
        margin-bottom: 40px;
    }
    
    .subtitle-animated .line {
        font-size: 18px;
    }
    
    .shape {
        filter: blur(60px);
    }
}

@media (max-width: 640px) {
    .animated-title {
        font-size: 48px;
        gap: 12px;
    }
    
    .placeholder-container {
        padding: 24px;
    }
    
    .icon-animated {
        width: 80px;
        height: 80px;
        margin-bottom: 30px;
    }
    
    .subtitle-animated .line {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .shape {
        filter: blur(40px);
        opacity: 0.1;
    }
}