/* ==========================================================================
   VerdantGrounds Solutions - Homepage Styles
   Professional business aesthetic: sharp edges, strong hierarchy,
   controlled motion, atmospheric image integration
   ========================================================================== */

:root {
    --vg-bg-primary:   #090c08;
    --vg-bg-secondary: #0e120c;
    --vg-bg-card:      rgba(255, 255, 255, 0.033);
    --vg-text-primary:   #eeeee8;
    --vg-text-secondary: #b8b8ae;
    --vg-text-muted:     #787870;
    --vg-forest: #1a8a1a;
    --vg-ocean:  #1589d6;
    --vg-cyber:  #06ccc5;
    --vg-border:        rgba(255, 255, 255, 0.08);
    --vg-border-hover:  rgba(6, 204, 197, 0.35);
    --vg-radius-sm:  2px;
    --vg-radius-md:  4px;
    --vg-radius-card: 6px;
    --vg-radius-full: 9999px;
    --vg-shadow-card: 0 2px 24px rgba(0,0,0,0.55), 0 1px 0 rgba(255,255,255,0.04) inset;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

body {
    background-color: var(--vg-bg-primary);
    color: var(--vg-text-primary);
    font-family: 'Inter', 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Typography scale
   -------------------------------------------------------------------------- */
.vg-display {
    font-family: 'Space Grotesk', 'Geist', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.vg-label {
    font-family: 'Geist Mono', 'SF Mono', Menlo, monospace;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Gradient / accent
   -------------------------------------------------------------------------- */
.vg-gradient-text {
    background: linear-gradient(120deg, #2fb82f 0%, var(--vg-ocean) 45%, var(--vg-cyber) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* --------------------------------------------------------------------------
   Aurora / animated gradient background (Hero)
   -------------------------------------------------------------------------- */
@keyframes vg-aurora {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.vg-aurora {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 140% 90% at 60% 0%,
        rgba(26,138,26,0.22) 0%,
        rgba(21,137,214,0.14) 38%,
        rgba(6,204,197,0.10) 62%,
        transparent 80%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle animated grid overlay */
.vg-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* --------------------------------------------------------------------------
   Ambient glow orbs
   -------------------------------------------------------------------------- */
.vg-orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.vg-orb--green {
    background: radial-gradient(circle, rgba(26,138,26,0.55) 0%, transparent 70%);
    width: 500px;
    height: 500px;
}

.vg-orb--cyber {
    background: radial-gradient(circle, rgba(6,204,197,0.40) 0%, transparent 70%);
    width: 480px;
    height: 480px;
}

.vg-orb--ocean {
    background: radial-gradient(circle, rgba(21,137,214,0.35) 0%, transparent 70%);
    width: 400px;
    height: 400px;
}

/* --------------------------------------------------------------------------
   Glass cards (sharp business style)
   -------------------------------------------------------------------------- */
.vg-card {
    background: var(--vg-bg-card);
    border: 1px solid var(--vg-border);
    border-radius: var(--vg-radius-card);
    box-shadow: var(--vg-shadow-card);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.vg-card:hover {
    border-color: var(--vg-border-hover);
    box-shadow: 0 0 0 1px rgba(6,204,197,0.1), 0 8px 40px rgba(0,0,0,0.6), 0 0 30px rgba(6,204,197,0.08);
    transform: translateY(-3px);
}

/* legacy alias used in older selectors */
.vg-glass {
    background: var(--vg-bg-card);
    border: 1px solid var(--vg-border);
    border-radius: var(--vg-radius-card);
    box-shadow: var(--vg-shadow-card);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.vg-glass:hover {
    border-color: var(--vg-border-hover);
    box-shadow: 0 0 0 1px rgba(6,204,197,0.1), 0 8px 40px rgba(0,0,0,0.6), 0 0 30px rgba(6,204,197,0.08);
    transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   Buttons: very small radius, sharp professional look
   -------------------------------------------------------------------------- */
.vg-btn-primary {
    background: linear-gradient(135deg, var(--vg-forest) 0%, var(--vg-ocean) 55%, var(--vg-cyber) 100%);
    color: #fff;
    border: none;
    border-radius: var(--vg-radius-md);
    padding: 0.75rem 1.625rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.vg-btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255,255,255,0.10), rgba(255,255,255,0));
    pointer-events: none;
}

.vg-btn-primary:hover {
    filter: brightness(1.12);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(6,204,197,0.35);
}

.vg-btn-primary:focus-visible {
    outline: 2px solid var(--vg-cyber);
    outline-offset: 3px;
}

.vg-btn-secondary {
    background: rgba(255,255,255,0.04);
    color: var(--vg-text-primary);
    border: 1px solid var(--vg-border);
    border-radius: var(--vg-radius-md);
    padding: 0.75rem 1.625rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.vg-btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(6,204,197,0.4);
    transform: translateY(-1px);
}

.vg-btn-secondary:focus-visible {
    outline: 2px solid var(--vg-cyber);
    outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Chip / kicker label
   -------------------------------------------------------------------------- */
.vg-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--vg-cyber);
    background: rgba(6,204,197,0.07);
    border: 1px solid rgba(6,204,197,0.18);
    border-radius: var(--vg-radius-sm);
    padding: 0.28rem 0.75rem;
    font-family: 'Geist Mono', 'SF Mono', Menlo, monospace;
}

.vg-chip::before {
    /* Punkt vor den Eyebrow-Labels bewusst entfernt (auf Wunsch). */
    display: none;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.vg-nav {
    background: rgba(9, 12, 8, 0.82);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    backdrop-filter: blur(16px) saturate(1.4);
    border-bottom: 1px solid var(--vg-border);
}

.vg-nav-link {
    color: var(--vg-text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.18s ease;
    position: relative;
    padding-bottom: 2px;
}

.vg-nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--vg-forest), var(--vg-cyber));
    transition: width 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.vg-nav-link:hover {
    color: var(--vg-text-primary);
}

.vg-nav-link:hover::after {
    width: 100%;
}

.vg-nav-link:focus-visible {
    outline: 2px solid var(--vg-cyber);
    outline-offset: 4px;
    border-radius: 2px;
}

/* Language switch */
.vg-lang-btn {
    color: var(--vg-text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.35rem;
    transition: color 0.18s ease;
    text-decoration: none;
    font-family: 'Geist Mono', monospace;
}

.vg-lang-btn.active { color: var(--vg-cyber); }
.vg-lang-btn:hover  { color: var(--vg-text-primary); }
.vg-lang-btn:focus-visible {
    outline: 2px solid var(--vg-cyber);
    outline-offset: 3px;
    border-radius: 2px;
}

/* --------------------------------------------------------------------------
   Section divider rule
   -------------------------------------------------------------------------- */
.vg-rule {
    border: none;
    border-top: 1px solid var(--vg-border);
    margin: 0;
}

/* --------------------------------------------------------------------------
   Icon container
   -------------------------------------------------------------------------- */
.vg-icon-box {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--vg-radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(6,204,197,0.07);
    border: 1px solid rgba(6,204,197,0.15);
    flex-shrink: 0;
}

/* legacy alias */
.vg-icon-circle {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--vg-radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(6,204,197,0.07);
    border: 1px solid rgba(6,204,197,0.15);
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Hero section specifics
   -------------------------------------------------------------------------- */
.vg-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--vg-border);
    border-radius: var(--vg-radius-sm);
    padding: 0.35rem 0.8rem 0.35rem 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vg-text-secondary);
    font-family: 'Geist Mono', monospace;
    margin-bottom: 1.5rem;
}

.vg-hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--vg-cyber);
    box-shadow: 0 0 8px var(--vg-cyber);
    animation: vg-pulse-dot 2.4s ease-in-out infinite;
}

@keyframes vg-pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--vg-cyber); }
    50%       { opacity: 0.5; box-shadow: 0 0 4px var(--vg-cyber); }
}

/* --------------------------------------------------------------------------
   Hero image: atmospheric bleed, no hard border box
   -------------------------------------------------------------------------- */
.vg-hero-visual {
    position: relative;
}

.vg-hero-visual img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    /* Fade edges so image bleeds into background */
    mask-image: radial-gradient(ellipse 92% 88% at 50% 45%, black 55%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 92% 88% at 50% 45%, black 55%, transparent 100%);
}

/* Float / breathe animation */
@keyframes vg-float {
    0%, 100% { transform: translateY(0px) rotate(-0.3deg); }
    50%       { transform: translateY(-14px) rotate(0.3deg); }
}

.vg-float {
    animation: vg-float 7s ease-in-out infinite;
}

/* Glow halo behind hero image */
.vg-hero-visual::before {
    content: '';
    position: absolute;
    inset: -15%;
    background: radial-gradient(ellipse 80% 70% at 50% 50%,
        rgba(6,204,197,0.18) 0%,
        rgba(26,138,26,0.12) 40%,
        transparent 72%);
    filter: blur(30px);
    pointer-events: none;
    z-index: -1;
}

/* --------------------------------------------------------------------------
   Section visuals: atmospheric, no hard frame
   -------------------------------------------------------------------------- */
.vg-section-visual {
    position: relative;
}

.vg-section-visual img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
    mask-image: radial-gradient(ellipse 95% 90% at 50% 50%, black 45%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 95% 90% at 50% 50%, black 45%, transparent 100%);
}

.vg-section-visual::before {
    content: '';
    position: absolute;
    inset: -12%;
    background: radial-gradient(ellipse 70% 60% at 50% 50%,
        rgba(6,204,197,0.14) 0%,
        rgba(26,138,26,0.09) 45%,
        transparent 72%);
    filter: blur(24px);
    pointer-events: none;
    z-index: -1;
}

/* planting-hands atmospheric band (used as section separator) */
.vg-visual-band {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.vg-visual-band img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 18%,
        black 78%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 18%,
        black 78%,
        transparent 100%
    );
    opacity: 0.55;
}

.vg-visual-band-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        var(--vg-bg-secondary) 0%,
        transparent 30%,
        transparent 70%,
        var(--vg-bg-secondary) 100%
    );
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   Ecosystem nodes visual (solutions section)
   -------------------------------------------------------------------------- */
.vg-eco-visual {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
}

.vg-eco-visual img {
    display: block;
    width: 100%;
    height: auto;
    mask-image: radial-gradient(ellipse 88% 82% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 88% 82% at 50% 50%, black 40%, transparent 100%);
}

.vg-eco-visual::before {
    content: '';
    position: absolute;
    inset: -10%;
    background: radial-gradient(circle, rgba(6,204,197,0.16) 0%, rgba(26,138,26,0.10) 50%, transparent 75%);
    filter: blur(28px);
    pointer-events: none;
    z-index: -1;
}

/* --------------------------------------------------------------------------
   Stat counter items
   -------------------------------------------------------------------------- */
.vg-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', 'Geist', sans-serif;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(120deg, #2fb82f, var(--vg-cyber));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vg-stat-label {
    font-size: 0.8rem;
    color: var(--vg-text-muted);
    letter-spacing: 0.04em;
    margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   Technology section: data-pipeline visual
   -------------------------------------------------------------------------- */
.vg-protocol-nodes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 2rem 0;
    flex-wrap: wrap;
    row-gap: 1rem;
}

.vg-pnode {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.vg-pnode-dot {
    width: 42px;
    height: 42px;
    border-radius: var(--vg-radius-sm);
    background: rgba(6,204,197,0.08);
    border: 1px solid rgba(6,204,197,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vg-pnode-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--vg-cyber);
    box-shadow: 0 0 10px var(--vg-cyber);
}

.vg-pnode-label {
    font-size: 0.65rem;
    font-family: 'Geist Mono', monospace;
    color: var(--vg-text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    max-width: 72px;
}

.vg-pnode-label--hub {
    max-width: none;
    white-space: nowrap;
}

.vg-pnode-connector {
    height: 1px;
    width: 48px;
    background: linear-gradient(90deg, rgba(6,204,197,0.4), rgba(6,204,197,0.15));
    align-self: flex-start;
    margin-top: 21px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Form fields
   -------------------------------------------------------------------------- */
.vg-form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .vg-form-row { grid-template-columns: 1fr 1fr; }
}

.vg-field-label {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.825rem;
    font-weight: 500;
    color: var(--vg-text-secondary);
    margin-bottom: 0.4rem;
}

.vg-required {
    color: var(--vg-cyber);
    font-weight: 700;
    line-height: 1;
}

.vg-input {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--vg-radius-md);
    padding: 0.65rem 0.9rem;
    color: var(--vg-text-primary);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.vg-input::placeholder { color: var(--vg-text-muted); }

.vg-input:focus {
    border-color: rgba(6,204,197,0.5);
    box-shadow: 0 0 0 3px rgba(6,204,197,0.10);
}

.vg-input.vg-input-error {
    border-color: rgba(248,113,113,0.55);
    box-shadow: 0 0 0 3px rgba(248,113,113,0.08);
}

/* Select arrow */
select.vg-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2396968c' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

select.vg-input option {
    background: #141812;
    color: var(--vg-text-primary);
}

.vg-field-error {
    font-size: 0.78rem;
    color: #f87171;
    margin-top: 0.3rem;
    display: none;
}

.vg-field-error.visible { display: block; }

.vg-form-status {
    font-size: 0.875rem;
    min-height: 1.2rem;
    text-align: center;
}

.vg-form-status.success { color: #4ade80; }
.vg-form-status.error   { color: #f87171; }

/* Inline conditional field */
.vg-field-conditional {
    display: none;
    margin-top: 0.75rem;
}

.vg-field-conditional.visible { display: block; }

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */
.vg-faq {
    border-radius: var(--vg-radius-card);
    overflow: hidden;
}

.vg-faq summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.125rem 1.375rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--vg-text-primary);
    transition: color 0.2s ease;
}

.vg-faq summary::-webkit-details-marker { display: none; }
.vg-faq summary:hover { color: var(--vg-cyber); }

.vg-faq-icon {
    flex-shrink: 0;
    width: 1.375rem;
    height: 1.375rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--vg-cyber);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vg-faq[open] .vg-faq-icon { transform: rotate(45deg); }

.vg-faq-body {
    padding: 0 1.375rem 1.125rem;
    color: var(--vg-text-secondary);
    line-height: 1.72;
    font-size: 0.9rem;
}

.vg-faq[open] .vg-faq-body {
    animation: vg-faq-open 0.3s ease;
}

@keyframes vg-faq-open {
    from { opacity: 0; transform: translateY(-5px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   Mobile menu
   -------------------------------------------------------------------------- */
.vg-mobile-menu {
    display: none;
    background: rgba(9,12,8,0.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--vg-border);
}

.vg-mobile-menu.open { display: block; }

/* --------------------------------------------------------------------------
   Scroll-reveal animations
   -------------------------------------------------------------------------- */
@keyframes vg-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes vg-fade-left {
    from { opacity: 0; transform: translateX(-28px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes vg-fade-right {
    from { opacity: 0; transform: translateX(28px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes vg-fade-scale {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
}

.js-anim .vg-animate,
.js-anim .vg-animate-left,
.js-anim .vg-animate-right,
.js-anim .vg-animate-scale { opacity: 0; }

.vg-animate.vg-visible        { animation: vg-fade-up    0.65s cubic-bezier(0.16,1,0.3,1) forwards; }
.vg-animate-left.vg-visible   { animation: vg-fade-left  0.72s cubic-bezier(0.16,1,0.3,1) forwards; }
.vg-animate-right.vg-visible  { animation: vg-fade-right 0.72s cubic-bezier(0.16,1,0.3,1) forwards; }
.vg-animate-scale.vg-visible  { animation: vg-fade-scale 0.7s  cubic-bezier(0.16,1,0.3,1) forwards; }

.vg-delay-1 { animation-delay: 0.07s; }
.vg-delay-2 { animation-delay: 0.14s; }
.vg-delay-3 { animation-delay: 0.21s; }
.vg-delay-4 { animation-delay: 0.28s; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.vg-footer-link {
    color: var(--vg-text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.18s ease;
}

.vg-footer-link:hover { color: var(--vg-cyber); }

/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */
.vg-legal h2 { color: var(--vg-text-primary); }
.vg-legal h3 { color: var(--vg-text-secondary); }

.vg-legal p,
.vg-legal li {
    color: var(--vg-text-secondary);
    line-height: 1.7;
}

.vg-legal a { color: var(--vg-cyber); }
.vg-legal a:hover { text-decoration: underline; }
.vg-legal strong { color: var(--vg-text-primary); }

/* --------------------------------------------------------------------------
   Reduced motion: disable ALL decorative motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .vg-animate,
    .vg-animate-left,
    .vg-animate-right,
    .vg-animate-scale {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .vg-float { animation: none !important; }

    .vg-hero-badge-dot { animation: none !important; }

    html { scroll-behavior: auto !important; }
}

/* --------------------------------------------------------------------------
   Accessibility: focus rings
   -------------------------------------------------------------------------- */
:focus-visible {
    outline: 2px solid var(--vg-cyber);
    outline-offset: 3px;
    border-radius: 2px;
}

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

/* --------------------------------------------------------------------------
   Responsive utilities
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
    .vg-visual-band { height: 200px; }
}
