/* ═══════════════════════════════════════════════════════
   Exoda Engraving Landing Page – Styles
   Dark + Gold luxury theme, Inter font
   ═══════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
    /* Primary – Dark luxury */
    --bg-dark: #0a0a0f;
    --bg-section: #0e0e14;
    --bg-card: #14141c;
    --bg-card-hover: #1a1a25;

    /* Accent gold */
    --accent: #c9a84c;
    --accent-light: #e4c76a;
    --accent-dark: #a58636;
    --accent-glow: rgba(201, 168, 76, 0.15);
    --accent-glow-strong: rgba(201, 168, 76, 0.3);

    /* Text */
    --text-primary: #f0ece4;
    --text-secondary: rgba(240, 236, 228, 0.65);
    --text-muted: rgba(240, 236, 228, 0.4);

    /* Borders */
    --border: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(201, 168, 76, 0.25);

    /* Gradients */
    --gradient-hero: linear-gradient(155deg, #0f0c1a 0%, #1a1428 40%, #0d0a14 100%);
    --gradient-accent: linear-gradient(135deg, #c9a84c 0%, #e4c76a 50%, #c9a84c 100%);
    --gradient-card: linear-gradient(145deg, rgba(201, 168, 76, 0.03) 0%, rgba(201, 168, 76, 0.01) 100%);
    --gradient-download: linear-gradient(135deg, #1a1428 0%, #251e38 50%, #1a1428 100%);

    /* Shadows */
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, .3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, .4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, .5);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, .6);
    --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.15);

    /* Spacing */
    --section-py: 100px;
    --container-max: 1200px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;

    /* Transitions */
    --transition: 0.35s cubic-bezier(.4, 0, .2, 1);
}

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background: var(--bg-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Section Helpers ── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 100px;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn .material-icons-outlined {
    font-size: 20px;
}

.btn--accent {
    background: var(--gradient-accent);
    color: #0a0a0f;
    box-shadow: var(--shadow-gold);
}

.btn--accent:hover {
    box-shadow: 0 6px 40px rgba(201, 168, 76, 0.35);
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn--ghost {
    background: transparent;
    color: var(--accent-light);
    border: 1.5px solid var(--border-accent);
}

.btn--ghost:hover {
    background: var(--accent-glow);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 8px 20px;
    font-size: .875rem;
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
}

/* ══════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, .92);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.navbar__logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-gold);
}

.navbar__brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: var(--transition);
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar__links a {
    font-size: .95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.navbar__links a:not(.btn):hover {
    color: var(--accent-light);
}

.navbar__links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.navbar__links a:not(.btn):hover::after {
    width: 100%;
}

/* Hamburger */
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero {
    background: var(--gradient-hero);
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 24px;
    letter-spacing: .03em;
}

.hero__title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero__title--accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__title--or {
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 520px;
}

.hero__subtitle--stock {
    margin-top: -20px;
    font-size: clamp(.9rem, 1.8vw, 1rem);
    color: var(--text-secondary);
}

.hero__stock-badge {
    display: inline-block;
    margin-left: 6px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--accent-light);
}

.hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero__glass-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.hero__wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ── Phone Frame ── */
.phone-frame {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1a1a28, #0d0d14);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, .06), var(--shadow-gold);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #060608;
    border-radius: 14px;
    z-index: 10;
}

.phone-frame__screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: #111;
}

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

.phone-frame--small {
    width: 220px;
    height: 455px;
    border-radius: 32px;
    padding: 10px;
}

.phone-frame--small::before {
    top: 14px;
    width: 80px;
    height: 22px;
    border-radius: 12px;
}

.phone-frame--small .phone-frame__screen {
    border-radius: 24px;
}

/* ══════════════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════════════ */
.features {
    padding: var(--section-py) 0;
    background: var(--bg-dark);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(201, 168, 76, 0.06);
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: inline-block;
}

.feature-card__title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feature-card__desc {
    font-size: .925rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════
   SHOWCASE
   ══════════════════════════════════════════════════════ */
.showcase {
    padding: var(--section-py) 0;
    background: var(--bg-section);
}

/* ── Why Engrave Section ── */
.why-engrave {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
}

.why-engrave__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: border-color .2s, transform .2s;
}

.why-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.why-card__icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.why-card p {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .why-engrave__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .why-engrave__grid {
        grid-template-columns: 1fr;
    }
}

/* ── End Why Engrave ── */

.showcase__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.showcase__text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.showcase__desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.showcase__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.showcase__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .95rem;
    color: var(--text-secondary);
}

.showcase__list .material-icons-outlined {
    font-size: 22px;
    color: var(--accent);
}

.showcase__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--shadow-gold);
    border: 1px solid var(--border-accent);
}

.showcase__image img {
    width: 100%;
    display: block;
}

/* ══════════════════════════════════════════════════════
   LIFESTYLE PAIR
   ══════════════════════════════════════════════════════ */
.lifestyle-pair {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.lifestyle-pair__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lifestyle-pair__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

.lifestyle-pair__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(7, 7, 26, 0.65) 0%,
            rgba(7, 7, 26, 0.40) 55%,
            rgba(7, 7, 26, 0.05) 100%);
}

.lifestyle-pair__content {
    position: relative;
    z-index: 1;
    max-width: 520px;
    padding: 80px 0;
}

.lifestyle-pair__eyebrow {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.lifestyle-pair__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.lifestyle-pair__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 420px;
}

@media (max-width: 768px) {
    .lifestyle-pair {
        min-height: 420px;
    }

    .lifestyle-pair__overlay {
        background: linear-gradient(to bottom,
                rgba(7, 7, 26, 0.35) 0%,
                rgba(7, 7, 26, 0.65) 60%,
                rgba(7, 7, 26, 0.80) 100%);
    }

    .lifestyle-pair__content {
        max-width: 100%;
        text-align: center;
        padding: 60px 0 48px;
    }

    .lifestyle-pair__text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ══════════════════════════════════════════════════════
   SCREENSHOTS
   ══════════════════════════════════════════════════════ */
.screenshots {
    padding: var(--section-py) 0;
    background: var(--bg-dark);
}

.screenshots__carousel {
    position: relative;
    overflow: hidden;
}

.screenshots__track {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    transition: var(--transition);
}

.screenshot-item {
    text-align: center;
    flex-shrink: 0;
}

.screenshot-item__label {
    margin-top: 16px;
    font-weight: 600;
    font-size: .9rem;
    color: var(--text-secondary);
}

.screenshots__controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.screenshots__arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .1);
    background: var(--bg-card);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-secondary);
}

.screenshots__arrow:hover {
    background: var(--accent);
    color: #0a0a0f;
    border-color: var(--accent);
    box-shadow: var(--shadow-gold);
}

/* ══════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════ */
.how-it-works {
    padding: var(--section-py) 0;
    background: var(--bg-section);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    text-align: center;
    flex: 1;
    max-width: 260px;
    padding: 0 20px;
    position: relative;
}

.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: #0a0a0f;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 16px;
    box-shadow: var(--shadow-gold);
}

.step__icon {
    margin-bottom: 12px;
}

.step__icon .material-icons-outlined {
    font-size: 36px;
    color: var(--accent);
}

.step__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step__desc {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step__connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--border-accent), transparent);
    margin-top: 72px;
    flex-shrink: 0;
    align-self: flex-start;
}

/* ══════════════════════════════════════════════════════
   DOWNLOAD CTA
   ══════════════════════════════════════════════════════ */
.download {
    padding: var(--section-py) 0;
    background: var(--gradient-download);
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
}

.download__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.download__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.download__subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 560px;
}

.download__badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.store-badge {
    transition: var(--transition);
    display: inline-block;
}

.store-badge:hover {
    transform: translateY(-3px);
    filter: brightness(1.15);
}

.store-badge__svg {
    height: 52px;
    width: auto;
}

.download__image img {
    width: 180px;
    height: 180px;
    border-radius: 36px;
    box-shadow: var(--shadow-xl), var(--shadow-gold);
    border: 1px solid var(--border-accent);
}

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.footer {
    background: #060608;
    color: var(--text-muted);
    padding: 64px 0 0;
    border-top: 1px solid var(--border);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer__logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.footer__brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer__tagline {
    font-size: .925rem;
    margin-bottom: 8px;
}

.footer__version {
    font-size: .8rem;
    color: var(--text-muted);
}

.footer__heading {
    font-size: .95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer__nav ul li,
.footer__legal ul li,
.footer__contact ul li {
    margin-bottom: 10px;
}

.footer__nav a,
.footer__legal a,
.footer__contact a {
    font-size: .9rem;
    transition: var(--transition);
}

.footer__nav a:hover,
.footer__legal a:hover,
.footer__contact a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer__bottom {
    border-top: 1px solid var(--border);
    margin-top: 48px;
    padding: 24px 0;
    text-align: center;
    font-size: .85rem;
}

/* ══════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════════════════ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(.4, 0, .2, 1), transform 0.7s cubic-bezier(.4, 0, .2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger feature cards */
.features__grid .animate-on-scroll:nth-child(2) {
    transition-delay: .06s;
}

.features__grid .animate-on-scroll:nth-child(3) {
    transition-delay: .12s;
}

.features__grid .animate-on-scroll:nth-child(4) {
    transition-delay: .18s;
}

.features__grid .animate-on-scroll:nth-child(5) {
    transition-delay: .24s;
}

.features__grid .animate-on-scroll:nth-child(6) {
    transition-delay: .30s;
}

.features__grid .animate-on-scroll:nth-child(7) {
    transition-delay: .36s;
}

.features__grid .animate-on-scroll:nth-child(8) {
    transition-delay: .42s;
}

.features__grid .animate-on-scroll:nth-child(9) {
    transition-delay: .48s;
}

/* ══════════════════════════════════════════════════════
   FLOATING PARTICLES (added via JS)
   ══════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════
   HERO STORE BADGES – 3D Premium Look
   ══════════════════════════════════════════════════════ */
.hero__store-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-store-badge {
    position: relative;
    display: inline-flex;
    min-width: 220px;
    padding: 18px 32px;
    border-radius: 18px;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    perspective: 800px;
    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1), box-shadow 0.4s cubic-bezier(.4, 0, .2, 1);

    /* 3D depth */
    background: linear-gradient(145deg, #1c1c2a, #111118);
    border: 1.5px solid rgba(201, 168, 76, 0.25);
    box-shadow:
        0 6px 24px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 30px rgba(201, 168, 76, 0.08);
}

.hero-store-badge:hover {
    transform: translateY(-6px) rotateX(4deg) rotateY(-2deg) scale(1.04);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 60px rgba(201, 168, 76, 0.2),
        0 0 120px rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.5);
}

.hero-store-badge:active {
    transform: translateY(-2px) scale(0.97);
}

/* Shine sweep effect */
.hero-store-badge__shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(105deg,
            transparent 30%,
            rgba(255, 255, 255, 0.08) 45%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.08) 55%,
            transparent 70%);
    transition: left 0.7s ease;
    pointer-events: none;
}

.hero-store-badge:hover .hero-store-badge__shine {
    left: 150%;
}

.hero-store-badge__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.hero-store-badge__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.hero-store-badge__icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-store-badge--apple .hero-store-badge__icon {
    color: #f0ece4;
}

.hero-store-badge--google .hero-store-badge__icon {
    color: #f0ece4;
}

.hero-store-badge__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.hero-store-badge__label {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

.hero-store-badge__store {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Wobble animation on click */
@keyframes badgeWobble {
    0% {
        transform: translateY(-2px) rotate(0deg);
    }

    15% {
        transform: translateY(-2px) rotate(-6deg) scale(1.05);
    }

    30% {
        transform: translateY(-2px) rotate(5deg) scale(0.97);
    }

    45% {
        transform: translateY(-2px) rotate(-4deg) scale(1.03);
    }

    60% {
        transform: translateY(-2px) rotate(3deg) scale(0.99);
    }

    75% {
        transform: translateY(-2px) rotate(-1deg) scale(1.01);
    }

    100% {
        transform: translateY(-2px) rotate(0deg) scale(1);
    }
}

.hero-store-badge.wobble {
    animation: badgeWobble 0.6s ease-in-out;
}

/* Firework particle */
.firework-particle {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: fireworkBurst 0.9s cubic-bezier(.15, .85, .35, 1) forwards;
}

@keyframes fireworkBurst {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    60% {
        opacity: 0.9;
    }

    100% {
        opacity: 0;
        transform: translate(var(--fx), var(--fy)) scale(0);
    }
}

/* Firework trail spark */
.firework-spark {
    position: fixed;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    animation: sparkFade 0.5s ease-out forwards;
}

@keyframes sparkFade {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.2);
    }
}

/* Ring burst */
.firework-ring {
    position: fixed;
    border: 2px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    animation: ringExpand 0.7s cubic-bezier(.2, .8, .3, 1) forwards;
}

@keyframes ringExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 0.7;
        transform: translate(-50%, -50%);
    }

    100% {
        width: 160px;
        height: 160px;
        opacity: 0;
        transform: translate(-50%, -50%);
    }
}

/* Mobile adjustments for store badges */
@media (max-width: 768px) {
    .hero__store-badges {
        justify-content: center;
    }

    .hero-store-badge {
        min-width: 190px;
        padding: 14px 24px;
    }

    .hero-store-badge__icon {
        width: 32px;
        height: 32px;
    }

    .hero-store-badge__store {
        font-size: 1.15rem;
    }
}

/* ══════════════════════════════════════════════════════
   FLOATING PARTICLES (original)
   ══════════════════════════════════════════════════════ */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }

    15% {
        opacity: 0.6;
    }

    85% {
        opacity: 0.4;
    }

    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1);
    }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1024px) {
    :root {
        --section-py: 80px;
    }

    .hero__inner {
        gap: 40px;
    }

    .showcase__inner {
        gap: 40px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .steps {
        flex-wrap: wrap;
        gap: 32px;
    }

    .step__connector {
        display: none;
    }
}

/* ── Mobile Large ── */
@media (max-width: 768px) {
    :root {
        --section-py: 64px;
    }

    .navbar__toggle {
        display: flex;
    }

    .navbar__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 24px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        border-left: 1px solid var(--border);
    }

    .navbar__links.active {
        right: 0;
    }

    .navbar__links a {
        color: var(--text-primary) !important;
    }

    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero__badge {
        order: 1;
        margin-bottom: 16px;
    }

    .hero__store-badges {
        order: 2;
        width: 100%;
        margin-top: 0;
        margin-bottom: 24px;
        justify-content: center;
    }

    .hero__title {
        order: 3;
    }

    .hero__subtitle {
        order: 4;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__cta {
        order: 5;
        justify-content: center;
    }

    .hero__visual {
        order: 6;
        margin-top: 16px;
    }

    .phone-frame {
        width: 220px;
        height: 455px;
        border-radius: 32px;
        padding: 10px;
    }

    .phone-frame::before {
        top: 14px;
        width: 80px;
        height: 22px;
        border-radius: 12px;
    }

    .phone-frame__screen {
        border-radius: 24px;
    }

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

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

    .showcase__text .section-title {
        text-align: center;
    }

    .showcase__text {
        text-align: center;
    }

    .showcase__list {
        align-items: center;
    }

    .screenshots__track {
        gap: 24px;
    }

    .phone-frame--small {
        width: 180px;
        height: 370px;
    }

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

    .download__badges {
        justify-content: center;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

/* ── Mobile Small ── */
@media (max-width: 480px) {
    .hero__title {
        font-size: 1.85rem;
    }

    .hero__subtitle {
        font-size: .95rem;
    }

    .hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn--lg {
        padding: 12px 24px;
        justify-content: center;
    }

    .features__grid {
        gap: 16px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .download__badges {
        flex-direction: column;
        align-items: center;
    }

    .screenshots__track {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
}

/* ══════════════════════════════════════════════════════
   LEGAL PAGES (datenschutz, impressum)
   ══════════════════════════════════════════════════════ */
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--bg-dark);
}

.legal-page h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.legal-page h2 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.legal-page h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.legal-page p,
.legal-page ul,
.legal-page li {
    font-size: .95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-page ul {
    padding-left: 24px;
    list-style: disc;
}

.legal-page a {
    color: var(--accent);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--accent-light);
}

/* Navbar on legal pages */
.navbar--solid {
    background: rgba(10, 10, 15, .95) !important;
    box-shadow: 0 1px 0 var(--border) !important;
}