:root {
    --bg-dark: #07070b;
    --bg-elevated: #0e0e15;
    --bg-card: rgba(255, 255, 255, 0.035);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.16);
    --text-primary: #f5f5f7;
    --text-secondary: #9a9aac;
    --text-tertiary: #6c6c7e;
    --accent-primary: #8b5cf6;
    --accent-secondary: #3b82f6;
    --accent-gold: #d8b978;
    --accent-glow: rgba(139, 92, 246, 0.5);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-serif: 'Fraunces', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    word-break: keep-all;
    overflow-wrap: break-word;
}

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

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.35);
    border-radius: 10px;
    border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.6);
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 3px;
}

/* Background Glow Effects */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(139, 92, 246, 0.16), transparent 32%),
        radial-gradient(circle at 88% 12%, rgba(59, 130, 246, 0.14), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(216, 185, 120, 0.06), transparent 40%),
        linear-gradient(180deg, #07070b 0%, #0a0a11 100%);
    pointer-events: none;
}

/* Grain texture for a premium, tactile finish */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.035;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Ambient cursor glow (desktop only) */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    margin-left: -250px;
    margin-top: -250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.14), transparent 70%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    will-change: transform;
}

.cursor-glow.active {
    opacity: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.serif-accent {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Eyebrow tag */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.25rem;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 10px var(--accent-gold);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.25rem 0;
    z-index: 100;
    background: rgba(7, 7, 11, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo span {
    color: var(--accent-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.25rem;
    margin-right: auto;
    margin-left: 3rem;
}

.nav-links a {
    position: relative;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--text-primary);
}

.nav-cta {
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.6rem 1.3rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-strong);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    position: relative;
    padding: 0.85rem 1.9rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, background 0.3s ease;
}

.btn span {
    position: relative;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    box-shadow: 0 8px 28px rgba(139, 92, 246, 0.65);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-strong);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-primary);
    font-weight: 600;
}

.btn-link span {
    transition: transform 0.3s ease;
}

.btn-link:hover span {
    transform: translateX(4px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.hero-orb-1 {
    top: -10%;
    right: 0;
    width: 500px;
    height: 500px;
    background: var(--accent-primary);
    opacity: 0.18;
}

.hero-orb-2 {
    bottom: -15%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: var(--accent-secondary);
    opacity: 0.14;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.trust-num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
}

.trust-label {
    font-size: 0.78rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.trust-divider {
    width: 1px;
    height: 28px;
    background: var(--border-subtle);
}

/* Hero Visual — tilted app-icon mockup stack */
.hero-visual {
    position: relative;
    height: 500px;
}

.mock-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.mock-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 148px;
    padding: 1.4rem 1rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mock-card.tilt-card:hover {
    animation-play-state: paused;
}

.mock-card img {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.mock-card span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.mock-card-1 {
    top: 8%;
    left: 18%;
    --r: -8deg;
    transform: rotate(var(--r));
    z-index: 3;
    animation: float 9s infinite ease-in-out;
}

.mock-card-2 {
    top: 32%;
    right: 5%;
    --r: 6deg;
    transform: rotate(var(--r));
    z-index: 2;
    animation: float 11s infinite ease-in-out reverse;
}

.mock-card-3 {
    bottom: 6%;
    left: 30%;
    --r: -3deg;
    transform: rotate(var(--r));
    z-index: 1;
    animation: float 10s infinite ease-in-out;
    animation-delay: 1s;
}

.mock-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(10, 10, 15, 0.85);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 4;
}

.mock-badge svg {
    width: 16px;
    height: 16px;
    color: var(--accent-gold);
}

.mock-badge-1 {
    top: 2%;
    right: 12%;
}

.mock-badge-2 {
    bottom: 14%;
    right: -2%;
}

@keyframes float {
    0% { transform: translateY(0) rotate(var(--r, 0deg)); }
    50% { transform: translateY(-16px) rotate(var(--r, 0deg)); }
    100% { transform: translateY(0) rotate(var(--r, 0deg)); }
}

/* Sections General */
section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .eyebrow {
    display: flex;
    justify-content: center;
}

.section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Why Section — pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--border-subtle);
}

.pillar {
    padding: 3rem 2.5rem;
    border-right: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.3s ease;
}

.pillar:last-child {
    border-right: none;
}

.pillar:hover {
    background: rgba(255, 255, 255, 0.02);
}

.pillar-index {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-tertiary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.1));
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.pillar-icon svg {
    width: 24px;
    height: 24px;
}

.pillar h3 {
    font-size: 1.3rem;
    margin-bottom: 0.85rem;
}

.pillar p {
    color: var(--text-secondary);
    font-size: 0.98rem;
}

/* Apps Section */
.featured-app {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
    background: linear-gradient(160deg, rgba(139, 92, 246, 0.08), rgba(59, 130, 246, 0.04));
    border: 1px solid var(--border-subtle);
    border-radius: 32px;
    padding: 3.5rem;
    margin-bottom: 2.5rem;
    transition: border-color 0.4s ease, transform 0.4s ease;
}

.featured-app:hover {
    border-color: rgba(139, 92, 246, 0.35);
    transform: translateY(-6px);
}

.featured-app-visual {
    display: flex;
    justify-content: center;
}

.featured-phone {
    position: relative;
    width: 220px;
    aspect-ratio: 9 / 18.5;
    border-radius: 36px;
    background: linear-gradient(160deg, #201f2c, #0c0c12);
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 70px -18px rgba(139, 92, 246, 0.45), inset 0 0 0 6px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    overflow: hidden;
}

.featured-phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 8px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
}

.featured-phone img {
    width: 84px;
    height: 84px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.featured-phone-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.app-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent-gold);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    background: rgba(216, 185, 120, 0.1);
    border: 1px solid rgba(216, 185, 120, 0.25);
    margin-bottom: 1.25rem;
}

.featured-app-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.featured-app-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    max-width: 480px;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.app-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 2.25rem;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.app-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
    background: var(--bg-card-hover);
}

.app-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.app-tag-sm {
    margin-bottom: 0;
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
}

.app-icon-img {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.app-icon-letter {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-primary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.app-icon-letter.alt-1 { background: linear-gradient(135deg, #3d2a63, #1a103c); }

.app-icon-frame {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #201f2c, #121218);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.icon-contain-img {
    width: 78%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
}

.app-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.85rem;
}

.app-card p {
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    font-size: 0.98rem;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--text-primary) !important;
    padding-left: 1.25rem;
    border-left: 2px solid var(--accent-gold);
    margin-top: 2rem !important;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-subtle);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.stat-item:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-size: 2.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    text-align: center;
}

.contact-container {
    position: relative;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid var(--border-subtle);
    border-radius: 32px;
    padding: 5.5rem 2rem;
    overflow: hidden;
}

.contact-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 32px;
    padding: 2px;
    background: conic-gradient(from 0deg, var(--accent-primary), var(--accent-secondary), var(--accent-gold), var(--accent-primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
    animation: rotate-border 8s linear infinite;
    pointer-events: none;
}

@keyframes rotate-border {
    to { transform: rotate(360deg); }
}

.contact-container .eyebrow {
    justify-content: center;
}

.contact-container h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-container p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-subtle);
    padding: 4.5rem 0 2.5rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-copyright {
    margin-top: 1.5rem !important;
    font-size: 0.85rem !important;
    color: var(--text-tertiary) !important;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-group h4 {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 0.8rem;
}

.link-group ul a {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.link-group ul a:hover {
    color: var(--text-primary);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.fade-in.visible {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .hero-container, .about-container { grid-template-columns: 1fr; }
    .hero-visual { height: 320px; }
    .mock-card { width: 128px; padding: 1.1rem 0.9rem; }
    .mock-card img { width: 52px; height: 52px; }
    .featured-app { grid-template-columns: 1fr; text-align: center; padding: 2.5rem; }
    .featured-app-content p { margin-left: auto; margin-right: auto; }
    .pillars-grid { grid-template-columns: 1fr; }
    .pillar { border-right: none; }
    .nav-links { margin-left: 2rem; gap: 1.5rem; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(7, 7, 11, 0.97);
        padding: 2rem;
        flex-direction: column;
        align-items: center;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        margin: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title { font-size: 2.6rem; }
    .hero-cta { flex-direction: column; }
    .hero-trust { flex-wrap: wrap; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .footer-container { flex-direction: column; }
    .footer-links { flex-wrap: wrap; gap: 2.5rem; }
    section { padding: 6rem 0; }
    .section-header h2 { font-size: 2.1rem; }
    .contact-container h2 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .mock-card-1 { left: 4%; }
    .mock-card-2 { right: -2%; }
    .mock-card-3 { left: 14%; }
}

/* Legal Pages Specific */
.legal-main {
    padding-top: 10rem;
    padding-bottom: 5rem;
}

.legal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 3rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content p, .legal-content ul {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.legal-content ul {
    padding-left: 1.5rem;
}

.legal-content .last-updated {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
