/* ═══════════════════════════════════════════════════════════════════════════
   ALARM CRYPTO — Landing Page
   Design System: JetBrains Mono, #111111 bg, #222222 cards, 20px radius
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700;800&display=swap');

/* ─── Reset ─────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* App Design Tokens */
    --bg-base: #111111;
    --bg-elevated: #222222;
    --card-bg: #222222;
    --card-bg-subtle: #1A1A1A;
    --border: #2E2E2E;
    --border-subtle: #262626;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.70);
    --text-tertiary: rgba(255, 255, 255, 0.54);
    --success: #10B981;
    --error: #EF4444;
    --warning: #FBBF24;
    --info: #818CF8;

    /* Crypto Brand Colors */
    --btc: #F7931A;
    --sol: #14F195;
    --doge: #C2A633;
    --eth: #627EEA;
    --bnb: #F0B90B;
    --xrp: #00AAE4;

    /* Font */
    --font-mono: 'JetBrains Mono', monospace;
}

html,
body {
    height: 100%;
    overflow: hidden;
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-mono);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─── Background Glow ──────────────────────────────────────────────────── */
.bg-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.bg-glow-accent {
    position: fixed;
    top: 30%;
    left: 60%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* ─── Page Layout ───────────────────────────────────────────────────────── */
.page {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* ─── Top Bar ──────────────────────────────────────────────────────────── */
.top-bar {
    position: absolute;
    top: 20px;
    right: 28px;
    left: 28px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.top-nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-nav-links a {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color 0.2s;
}

.top-nav-links a:hover {
    color: var(--text-primary);
}

/* ─── Language Switcher ─────────────────────────────────────────────────── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    color: var(--text-secondary);
}

.lang-btn.active {
    color: var(--text-primary);
    background: var(--bg-elevated);
}

.lang-sep {
    font-size: 11px;
    color: var(--border);
    user-select: none;
}

/* ─── Navbar ────────────────────────────────────────────────────────────── */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    position: relative;
    z-index: 30;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.nav-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.nav-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-tertiary);
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* ─── Main Content ──────────────────────────────────────────────────────── */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    padding: 0 24px;
}

/* ─── Floating Cards Container ──────────────────────────────────────────── */
.cards-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

/* ─── Alarm Card (mimics Flutter AlarmCard) ──────────────────────────────── */
.alarm-card {
    position: absolute;
    width: 310px;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.alarm-card:hover {
    transform: scale(1.02);
}

.card-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

/* Crypto Avatar */
.crypto-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
}

.crypto-avatar img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* Card Info */
.card-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.card-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.card-symbol {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
}

.verified-icon {
    font-size: 16px;
    color: #1D9BF0;
    vertical-align: middle;
}

.card-condition {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-condition .dot {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-mono);
}

.card-condition .label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-mono);
}

.trend-icon {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

/* Target Price */
.card-price {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-primary);
    font-family: var(--font-mono);
    letter-spacing: -0.5px;
    white-space: nowrap;
}

/* Price Distance Row */
.card-distance {
    display: flex;
    align-items: center;
    gap: 0;
    font-family: var(--font-mono);
}

.card-distance .now {
    font-size: 11px;
    color: var(--text-tertiary);
}

.card-distance .sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 8px;
    flex-shrink: 0;
}

.card-distance .pct {
    font-size: 11px;
    font-weight: 600;
}

.pct.positive {
    color: var(--success);
}

.pct.negative {
    color: var(--error);
}

.pct.warning {
    color: var(--warning);
}

/* Card Controls (right side) */
.card-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
}

.card-controls .ctrl-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    opacity: 0.7;
}

.card-controls .ctrl-icon .material-symbols-rounded {
    font-size: 20px;
}

/* ─── Card Positions & Float Animations ─────────────────────────────────── */
.alarm-card.card-btc {
    left: 6%;
    top: 14%;
    animation: floatBtc 7s ease-in-out infinite, fadeSlideIn 1s 0.2s forwards;
}

.alarm-card.card-sol {
    right: 10%;
    top: 12%;
    animation: floatSol 8s ease-in-out infinite, fadeSlideIn 1s 0.6s forwards;
}

.alarm-card.card-doge {
    left: 10%;
    bottom: 10%;
    animation: floatDoge 9s ease-in-out infinite, fadeSlideIn 1s 1.0s forwards;
}

.alarm-card.card-eth {
    right: 6%;
    bottom: 18%;
    animation: floatEth 7.5s ease-in-out infinite, fadeSlideIn 1s 1.4s forwards;
}

@keyframes floatBtc {

    0%,
    100% {
        transform: translateY(0) rotate(-12deg);
    }

    50% {
        transform: translateY(-18px) rotate(-8deg);
    }
}

@keyframes floatSol {

    0%,
    100% {
        transform: translateY(0) rotate(10deg);
    }

    50% {
        transform: translateY(16px) rotate(14deg);
    }
}

@keyframes floatDoge {

    0%,
    100% {
        transform: translateY(0) rotate(-4deg);
    }

    50% {
        transform: translateY(-14px) rotate(0deg);
    }
}

@keyframes floatEth {

    0%,
    100% {
        transform: translateY(0) rotate(6deg);
    }

    50% {
        transform: translateY(12px) rotate(10deg);
    }
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.85);
    }

    to {
        opacity: 1;
    }
}

/* ─── Hero Section ──────────────────────────────────────────────────────── */
.hero {
    text-align: center;
    max-width: 800px;
    z-index: 20;
    position: relative;
    animation: heroIn 0.9s 0.3s both;
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: var(--font-mono);
    font-size: clamp(40px, 7vw, 90px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -3px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 16px;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.35));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-tertiary);
    margin: 0 auto 44px;
    letter-spacing: 0.3px;
    line-height: 1.7;
    white-space: nowrap;
}

.hero .subtitle-tagline {
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    margin: 0 auto 44px;
}


/* ─── Store Buttons ─────────────────────────────────────────────────────── */
.store-buttons {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.store-btn:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.store-btn.disabled {
    cursor: default;
    opacity: 0.35;
    filter: grayscale(100%);
    pointer-events: none;
}

.store-btn.disabled:hover {
    transform: none;
    opacity: 0.35;
}

.store-btn img {
    height: auto;
    width: 220px;
    object-fit: contain;
}

/* Coming Soon Wrapper */
.store-btn-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Sealed Button — Ribbon */
.store-btn-sealed {
    overflow: hidden;
}

.seal-ribbon {
    position: absolute;
    top: 14px;
    right: -30px;
    background: var(--text-primary);
    color: var(--bg-base);
    font-family: var(--font-mono);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 40px;
    transform: rotate(25deg);
    transform-origin: center;
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

/* ─── Social Links ─────────────────────────────────────────────────────── */
.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    color: var(--text-tertiary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border);
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
.footer {
    padding: 16px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 20;
    position: relative;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 1px;
    font-family: var(--font-mono);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-secondary);
}

.footer-sep {
    color: var(--text-tertiary);
    opacity: 0.4;
    font-size: 10px;
}

.footer span {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 1.5px;
    font-family: var(--font-mono);
}

/* ─── Beta Modal ───────────────────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px 32px;
    max-width: 400px;
    width: 100%;
    position: relative;
    text-align: center;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.visible .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.modal-close .material-symbols-rounded {
    font-size: 22px;
}

.modal-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon .material-symbols-rounded {
    font-size: 28px;
    color: var(--text-primary);
}

.modal-title {
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.modal-desc {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-tertiary);
    line-height: 1.6;
    margin-bottom: 28px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.form-group label {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

.form-group input {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-primary);
    background: var(--bg-base);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input::placeholder {
    color: var(--text-tertiary);
    opacity: 0.6;
}

.form-group input:focus {
    border-color: var(--text-primary);
}

.modal-submit {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111111;
    background: var(--text-primary);
    border: none;
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    margin-top: 4px;
}

.modal-submit:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.modal-submit:disabled {
    opacity: 0.5;
    cursor: default;
    transform: none;
}

.modal-cta-link {
    display: block;
    text-decoration: none;
    text-align: center;
}

.modal-footer-text {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-tertiary);
    opacity: 0.6;
    margin-top: 16px;
}

.store-hint {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 500;
    color: var(--warning);
    letter-spacing: 0.5px;
    margin-top: 6px;
    text-align: center;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.modal-success {
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    padding: 20px 0;
    line-height: 1.6;
}

/* ─── Hamburger Menu ───────────────────────────────────────────────────── */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    align-items: center;
    justify-content: center;
}

.hamburger:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.hamburger .material-symbols-rounded {
    font-size: 24px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 240px;
    height: 100vh;
    background: var(--bg-elevated);
    border-left: 1px solid var(--border);
    z-index: 200;
    padding: 20px;
    flex-direction: column;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    margin-bottom: 24px;
    transition: color 0.2s;
}

.mobile-menu-close:hover {
    color: var(--text-primary);
}

.mobile-menu-close .material-symbols-rounded {
    font-size: 24px;
}

.mobile-menu a {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    letter-spacing: 1px;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--text-primary);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 199;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.open {
    opacity: 1;
}

.mobile-lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 20px 0 0;
    margin-top: 8px;
}

/* ─── SEO Content (visually hidden) ────────────────────────────────────── */
.seo-content {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ─── Responsive ────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .modal-overlay {
        padding: 16px;
    }

    .modal {
        padding: 32px 24px 24px;
        max-width: 340px;
        border-radius: 16px;
    }

    .modal-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
        border-radius: 14px;
    }

    .modal-icon .material-symbols-rounded {
        font-size: 24px;
    }

    .modal-title {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .modal-desc {
        font-size: 11px;
        line-height: 1.5;
        margin-bottom: 0;
    }

    .top-bar {
        top: 14px;
        right: 16px;
        left: 16px;
        gap: 14px;
    }

    .top-nav-links {
        display: none;
    }

    .top-bar .lang-switcher {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .navbar {
        padding: 16px 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-title {
        font-size: 14px;
        letter-spacing: 3px;
    }

    .nav-logo {
        width: 34px;
        height: 34px;
    }

    .hero {
        max-width: 90vw;
        padding: 0 16px;
    }

    .hero h1 {
        font-size: clamp(32px, 8vw, 54px);
        letter-spacing: -1px;
    }

    .hero-label {
        font-size: 11px;
        letter-spacing: 4px;
        margin-bottom: 12px;
    }

    .hero .subtitle {
        font-size: 14px;
        white-space: normal;
        max-width: 360px;
    }


    .store-btn img {
        width: 170px;
        height: auto;
    }

    .store-buttons {
        gap: 8px;
    }

    .seal-ribbon {
        font-size: 6px;
        padding: 3px 34px;
        top: 10px;
        right: -26px;
    }

    /* Scale all cards uniformly to keep proportions */
    .alarm-card {
        transform-origin: center center;
    }

    .alarm-card.card-btc {
        left: 1%;
        top: 5%;
        transform: scale(0.75) rotate(-12deg);
    }

    .alarm-card.card-sol {
        right: 1%;
        top: 30%;
        transform: scale(0.75) rotate(10deg);
    }

    .alarm-card.card-doge {
        left: 1%;
        bottom: 35%;
        transform: scale(0.7) rotate(-4deg);
    }

    .alarm-card.card-eth {
        right: 1%;
        bottom: 12%;
        transform: scale(0.7) rotate(6deg);
    }

    .card-controls {
        gap: 6px;
        margin-left: 6px;
    }

    .card-controls .ctrl-icon {
        width: 26px;
        height: 26px;
    }

    .card-controls .ctrl-icon .material-symbols-rounded {
        font-size: 16px;
    }

    .footer {
        padding: 12px 20px;
    }

    .footer span {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .footer-links a {
        font-size: 8px;
    }

    .footer-sep {
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(26px, 8vw, 36px);
        letter-spacing: -0.5px;
    }

    .hero .subtitle {
        font-size: 13px;
        max-width: 280px;
    }


    .store-btn img {
        width: 150px;
        height: auto;
    }

    .seal-ribbon {
        font-size: 5px;
        letter-spacing: 1px;
        padding: 2px 28px;
        top: 8px;
        right: -22px;
    }

    /* Hide extra cards on small phones, keep just BTC and DOG */
    .alarm-card.card-doge,
    .alarm-card.card-sol {
        display: none;
    }

    .alarm-card.card-btc {
        left: -2%;
        top: 4%;
        transform: scale(0.65) rotate(-12deg);
    }

    .alarm-card.card-eth {
        right: -2%;
        bottom: 10%;
        transform: scale(0.65) rotate(6deg);
    }
}