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

:root {
    --bg:       #090d1a;
    --surface:  #0f1628;
    --card:     #131a2e;
    --card-2:   #161e34;
    --border:   #1e2a4a;
    --dim:      #5a6a8a;
    --text:     #a0b0cc;
    --bright:   #e0e8f4;
    --accent:   #00d4aa;
    --accent-2: #00b894;
    --purple:   #7c5cfc;
    --blue:     #4a8eff;
    --green:    #00d4aa;
    --red:      #f85149;
    --gold:     #f0c040;
    --radius:   16px;
    --mono:     "JetBrains Mono", monospace;
    --sans:     "Inter", -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Nav ──────────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(9, 13, 26, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(30, 42, 74, 0.5);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-family: var(--mono);
    font-weight: 700;
    font-size: 18px;
    color: #DAA520;
    letter-spacing: -0.5px;
}
.logo:hover { text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--dim); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--bright); text-decoration: none; }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-sm { padding: 7px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    box-shadow: 0 4px 24px rgba(0, 212, 170, 0.2);
}
.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 32px rgba(0, 212, 170, 0.35);
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.btn-gold {
    background: #DAA520;
    color: #0d1117;
    border-color: #DAA520;
    font-weight: 600;
}
.btn-gold:hover {
    background: #c4941a;
    border-color: #c4941a;
}

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 160px 32px 100px;
    text-align: center;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(124, 92, 252, 0.12) 0%, rgba(0, 212, 170, 0.06) 40%, transparent 70%);
    pointer-events: none;
}
/* Decorative sphere */
.hero::after {
    content: "";
    position: absolute;
    top: 80px; right: 8%;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(124, 92, 252, 0.15), rgba(0, 212, 170, 0.05) 60%, transparent);
    border: 1px solid rgba(124, 92, 252, 0.1);
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(38px, 6vw, 60px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--bright);
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.accent { color: var(--accent); }

/* Hero screenshot mockup */

/* ── Bot Dashboard Mockup ────────────────────────────────────────── */

/* Scan line effect */

@keyframes scanline {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.g { color: #32945e; }

/* Glow under mockup */

/* Pulse on server dot */

@keyframes pulse-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ── Stats bar ───────────────────────────────────────────────────── */

/* ── Section titles ──────────────────────────────────────────────── */
.section-title {
    text-align: center;
    margin-bottom: 16px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--bright);
    letter-spacing: -0.5px;
}

/* ── Features ────────────────────────────────────────────────────── */
.features {
    padding: 100px 32px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
/* Decorative sphere left */
.features::before {
    content: "";
    position: absolute;
    top: 20%; left: -100px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle at 60% 40%, rgba(74, 142, 255, 0.08), transparent 70%);
    border: 1px solid rgba(74, 142, 255, 0.06);
    pointer-events: none;
}

/* ── Pricing ─────────────────────────────────────────────────────── */
.pricing {
    padding: 100px 32px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.price-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.price-card.featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(0, 212, 170, 0.04), var(--card) 40%);
    box-shadow: 0 0 60px rgba(0, 212, 170, 0.06);
}

.price-tier {
    font-size: 20px;
    font-weight: 600;
    color: var(--bright);
    margin-bottom: 16px;
}

.price-num {
    font-family: var(--mono);
    font-size: 52px;
    font-weight: 700;
    color: var(--bright);
    line-height: 1;
}
.price-cents {
    font-family: var(--mono);
    font-size: 24px;
    font-weight: 600;
    color: var(--dim);
}

/* ── Footer ──────────────────────────────────────────────────────── */
.footer {
    padding: 64px 32px;
    border-top: 1px solid var(--border);
    text-align: center;
    background: linear-gradient(180deg, var(--bg), rgba(15, 22, 40, 1));
}

.footer-logo {
    font-family: var(--mono);
    font-size: 16px;
    color: var(--accent);
    margin-bottom: 16px;
}

/* ── Auth pages (login / register) ───────────────────────────────── */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
    background:
        radial-gradient(ellipse at 50% 20%, rgba(124, 92, 252, 0.08) 0%, transparent 60%),
        var(--bg);
}
.auth-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px 40px;
    width: 100%;
    max-width: 540px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.auth-card h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--bright);
    margin-bottom: 8px;
}
.auth-sub {
    color: var(--dim);
    font-size: 14px;
    margin-bottom: 32px;
}
.auth-form { display: flex; flex-direction: column; gap: 20px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}
.form-group input {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--bright);
    font-size: 14px;
    font-family: var(--sans);
    outline: none;
    transition: border-color 0.2s;
}
.form-group input::placeholder { color: var(--dim); opacity: 0.6; }
.form-group input:focus { border-color: var(--accent); }
.captcha-wrap { align-items: center; }
.auth-msg {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 8px;
}
.msg-error {
    background: rgba(248, 81, 73, 0.1);
    border: 1px solid rgba(248, 81, 73, 0.3);
    color: var(--red);
}
.msg-ok {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    color: var(--accent);
}
.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--dim);
}

/* ── Google OAuth button + divider ──────────────────────────────── */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0;
    color: var(--dim);
    font-size: 13px;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 11px 20px;
    background: #fff;
    color: #1f1f1f;
    border: 1px solid #dadce0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background .15s, box-shadow .15s;
}
.btn-google:hover {
    background: #f8f9fa;
    box-shadow: 0 1px 6px rgba(0,0,0,0.15);
    text-decoration: none;
    color: #1f1f1f;
}

/* ── Dashboard ───────────────────────────────────────────────────── */
.dash-section {
    padding: 100px 32px 60px;
    max-width: 800px;
    margin: 0 auto;
}
.dash-header { margin-bottom: 36px; }
.dash-header h1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--bright);
    margin-bottom: 4px;
}
.dash-sub { color: var(--dim); font-size: 15px; }
.nav-user {
    font-size: 13px;
    color: var(--dim);
    font-family: var(--mono);
}

.dash-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.dash-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
}
.dash-card-label {
    font-size: 12px;
    color: var(--dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.dash-card-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--bright);
    display: flex;
    align-items: center;
    gap: 8px;
}
.status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    display: inline-block;
}
.status-dot.active { background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.status-dot.pending { background: var(--gold); box-shadow: 0 0 8px var(--gold); }

.dash-block {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
}
.dash-block h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--bright);
    margin-bottom: 20px;
}

/* License */
.license-box, .download-box { min-height: 80px; }
.license-locked, .download-locked {
    text-align: center;
    padding: 24px;
    color: var(--dim);
}
.lock-icon { font-size: 32px; margin-bottom: 12px; opacity: 0.5; }
.license-key-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 20px;
}
.license-key-row code {
    font-family: var(--mono);
    font-size: 16px;
    color: var(--accent);
    flex: 1;
    letter-spacing: 1px;
}
.license-hint {
    font-size: 13px;
    color: var(--dim);
    margin-top: 12px;
}

/* Download */
.download-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}
.download-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--bright);
}
.download-meta {
    font-size: 13px;
    color: var(--dim);
    margin-top: 4px;
}
.download-steps {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 24px;
}
.download-steps h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--bright);
    margin-bottom: 12px;
}
.download-steps ol {
    padding-left: 20px;
    font-size: 13px;
    color: var(--text);
}
.download-steps li {
    padding: 4px 0;
    line-height: 1.6;
}
.download-steps code {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--accent);
    background: rgba(0, 212, 170, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Payment table */
.table-wrap { overflow-x: auto; }
.dash-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.dash-table th {
    text-align: left;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border);
}
.dash-table td {
    padding: 12px 16px;
    color: var(--text);
    border-bottom: 1px solid rgba(30, 42, 74, 0.4);
}
.table-empty {
    text-align: center;
    color: var(--dim);
    padding: 24px 16px !important;
}
.pay-status {
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}
.pay-status.confirmed {
    background: rgba(0, 212, 170, 0.12);
    color: var(--accent);
}
.pay-status.pending {
    background: rgba(240, 192, 64, 0.12);
    color: var(--gold);
}
.pay-status.failed {
    background: rgba(248, 81, 73, 0.1);
    color: var(--red);
}

/* ── Admin Panel ─────────────────────────────────────────────────── */
.admin-section {
    /* 94% del viewport: le tabelle admin hanno molte colonne e con un cap
       fisso a 1200px serviva lo scroll orizzontale anche su desktop larghi. */
    max-width: 94%;
    margin: 0 auto;
    padding: 100px 32px 60px;
}
.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.admin-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 16px;
}
.admin-toolbar h2 {
    color: var(--bright);
    font-size: 20px;
    margin: 0;
}
.admin-search {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--bright);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    width: 280px;
    outline: none;
    transition: border-color 0.2s;
}
.admin-search:focus {
    border-color: var(--accent);
}
.admin-search::placeholder {
    color: var(--dim);
}
.admin-tab {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}
.admin-table th {
    white-space: nowrap;
}
.admin-table td code {
    font-family: var(--mono);
    font-size: 12px;
}

/* Nav tabs */
.nav-tab {
    color: var(--dim);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}
.nav-tab:hover {
    color: var(--bright);
    text-decoration: none;
    background: rgba(255,255,255,0.04);
}
.nav-tab.active {
    color: var(--accent);
    background: rgba(0, 212, 170, 0.08);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    width: 100%;
    max-width: 440px;
}
.modal-card h3 {
    color: var(--bright);
    font-size: 18px;
    margin-bottom: 20px;
}
.modal-card .form-group {
    margin-bottom: 14px;
}
.modal-card label {
    display: block;
    font-size: 13px;
    color: var(--dim);
    margin-bottom: 6px;
}
.modal-card input,
.modal-card select {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--bright);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--sans);
    outline: none;
    transition: border-color 0.2s;
}
.modal-card input:focus,
.modal-card select:focus {
    border-color: var(--accent);
}

/* Select element global */
select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235a6a8a' d='M1.4 0L6 4.6 10.6 0 12 1.4l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

/* ── Feature Stats Bar ───────────────────────────────────────────── */

/* ── Feature Icons ──────────────────────────────────────────────── */

/* ── Reviews Slider ─────────────────────────────────────────────── */
.reviews {
    padding: 80px 40px;
    overflow: hidden;
}

@keyframes scroll-reviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Real Results ────────────────────────────────────────────────── */

/* ── Platforms ───────────────────────────────────────────────────── */
.platforms { padding: 80px 40px; }

/* ── Mentioned / As Seen On ──────────────────────────────────────── */

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
    
    
    
    .pricing-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
    .hero { padding: 120px 20px 60px; }
    
    .pricing-grid { grid-template-columns: 1fr; }
    
    
    
    .nav-links a:not(.btn) { display: none; }
    
    
    
    
    .hero h1 { font-size: 32px; }
    
    
    
    
    
    
    
    
    
    
    
    
    .form-row { grid-template-columns: 1fr; }
    .auth-card { padding: 32px 24px; }
    .dash-cards { grid-template-columns: 1fr; }
    .download-row { flex-direction: column; align-items: stretch; }
    .admin-stats { grid-template-columns: repeat(2, 1fr); }
    .admin-toolbar { flex-direction: column; align-items: stretch; }
    .admin-search { width: 100%; }
    .admin-section { padding: 90px 16px 40px; max-width: 100%; }
}

/* Weather rebrand prototype */
:root {
    --bg: #050708;
    --surface: #0b1114;
    --card: #10181b;
    --card-2: #132024;
    --border: #26383b;
    --dim: #819197;
    --text: #bac8cb;
    --bright: #f3fbfb;
    --accent: #5eead4;
    --accent-2: #22c55e;
    --purple: #8fb7ff;
    --blue: #38bdf8;
    --green: #7ddf9b;
    --gold: #f7c65b;
    --radius: 8px;
}
body {
    background:
        linear-gradient(180deg, #050708 0%, #0b1213 46%, #081013 100%);
}
.nav {
    background: rgba(5, 7, 8, 0.78);
    border-bottom-color: rgba(94, 234, 212, 0.14);
}
.btn { border-radius: 8px; }
.btn-accent {
    color: #04100f;
    background: linear-gradient(135deg, #7df9e4, #83f28f);
    box-shadow: 0 12px 36px rgba(94, 234, 212, 0.18);
}
.btn-gold {
    background: rgba(247,198,91,.1);
    color: #ffe3a1;
    border-color: rgba(247,198,91,.42);
}

.hero::before, .hero::after, .features::before { display: none; }

.hero h1 {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: 0;
}

.sun {
    position: absolute;
    top: 46px; left: 9%; width: 72px; height: 72px;
    border-radius: 50%; background: #ffe08a;
    box-shadow: 0 0 80px rgba(255,224,138,.55);
}
.cloud {
    position: absolute; height: 34px; width: 130px; border-radius: 999px;
    background: rgba(220,240,242,.74); filter: blur(.2px);
    animation: cloudDrift 18s linear infinite;
}
.cloud::before, .cloud::after { content: ""; position: absolute; border-radius: 50%; background: inherit; }
.cloud::before { width: 58px; height: 58px; left: 22px; bottom: 10px; }
.cloud::after { width: 72px; height: 72px; right: 18px; bottom: 6px; }

 

 

  .b3 { height: 104px; left: 252px; }

  

 .price-card{ border-radius: 8px; }
@keyframes cloudDrift { 0% { transform: translateX(-20px); } 50% { transform: translateX(42px); } 100% { transform: translateX(-20px); } }
@keyframes rainPulse { 0%, 34%, 100% { opacity: 0; } 48%, 72% { opacity: .85; } }
@keyframes skyCycle { 0%, 25% { filter: brightness(1.18) saturate(1.1); } 48%, 72% { filter: brightness(.72) saturate(.9); } 100% { filter: brightness(1.05); } }
@keyframes waveSlide { 50% { transform: translateX(18px); } }
@keyframes routePulse { 50% { opacity: .55; transform: translateY(-2px); } }
@media (max-width: 900px) {
    
    
    
    
    
    
}
@media (max-width: 640px) {
    
    .sun { width: 48px; height: 48px; }
    .cloud { transform: scale(.75); }
    
    .hero h1 { font-size: 38px; }
}
/* Cinematic Three.js weather hero */

@media (max-width: 900px) {
    
    
    
    
    
    
}
@media (max-width: 640px) {
    
    
    
}
/* Whole-site cinematic weather system */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 18%, rgba(112,255,241,.08), transparent 28%),
        radial-gradient(circle at 82% 42%, rgba(247,198,91,.07), transparent 30%),
        linear-gradient(180deg, #050708 0%, #091112 38%, #061013 72%, #040707 100%);
}
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .36;
    background-image:
        linear-gradient(rgba(126,249,228,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126,249,228,.05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, transparent, #000 12%, #000 86%, transparent);
}
.features, 
.pricing, 
.platforms, 
.reviews{
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding: 112px 32px;
}
.features::after, 
.pricing::after, 
.platforms::after, 
.reviews::after{
    content: "";
    position: absolute;
    left: 32px;
    right: 32px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(126,249,228,.32), rgba(247,198,91,.18), transparent);
}
.section-title {
    text-align: left;
    max-width: 820px;
}
.section-title h2 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1;
    letter-spacing: 0;
    text-wrap: balance;
}

.pricing-grid{
    gap: 1px;
    border: 1px solid rgba(126,249,228,.14);
    background: rgba(126,249,228,.12);
}

.price-card{
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(145deg, rgba(12,25,26,.86), rgba(5,10,10,.76)),
        radial-gradient(circle at 30% 0%, rgba(126,249,228,.08), transparent 42%);
    backdrop-filter: blur(18px);
    box-shadow: none;
}

.price-card:hover{
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 1px rgba(126,249,228,.22), 0 24px 70px rgba(0,0,0,.28);
}

.price-tier{
    color: #f3fbfb;
}

.pricing {
    max-width: 1240px;
}
.pricing-grid[style] {
    grid-template-columns: repeat(4, 1fr) !important;
}
.price-card {
    padding: 34px 28px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}
.price-card .btn {
    margin-top: auto;
}
.price-card.featured {
    background:
        linear-gradient(180deg, rgba(126,249,228,.13), rgba(8,17,18,.78)),
        radial-gradient(circle at 50% 0%, rgba(126,249,228,.18), transparent 56%);
    box-shadow: inset 0 0 0 1px rgba(126,249,228,.32), 0 0 80px rgba(126,249,228,.08);
}

.pin {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid #04100f;
    background: #7df9e4;
    transform: rotate(45deg);
    box-shadow: 0 0 34px rgba(126,249,228,.7);
}

.pin.city { left: 55%; top: 50%; background: #f7c65b; box-shadow: 0 0 34px rgba(247,198,91,.65); }
.pin.coast { right: 22%; bottom: 30%; }

.platforms, 
.reviews{
    padding-top: 112px;
}

.footer {
    position: relative;
    border-top: 1px solid rgba(126,249,228,.18);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(126,249,228,.08), transparent 58%),
        #040707;
}

.footer-logo {
    color: #f3fbfb;
    letter-spacing: 1.6px;
}
@keyframes labPulse {
    0%, 100% { transform: scale(.94); opacity: .35; }
    50% { transform: scale(1.08); opacity: .85; }
}
@media (max-width: 1000px) {
    
    .pricing-grid[style]{
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    
}
@media (max-width: 640px) {
    .features, 
    .pricing, 
    .platforms, 
    .reviews{
        padding: 84px 20px;
    }
    .features::after, 
    .pricing::after, 
    .platforms::after, 
    .reviews::after{
        left: 20px;
        right: 20px;
    }
    
    .pricing-grid[style]{
        grid-template-columns: 1fr !important;
    }
    
    
    
}
/* Real cinematic photo direction */

.footer::after {
    content: "Image attribution: Weather station in the Alps, Steinsplitter, CC BY-SA 4.0, Wikimedia Commons.";
    display: block;
    margin-top: 22px;
    color: rgba(218,238,239,.42);
    font-size: 10px;
    text-align: center;
}
/* MAX cinematic rebuild pass */
.nav {
    mix-blend-mode: normal;
    background: linear-gradient(180deg, rgba(2,5,6,.74), rgba(2,5,6,.22));
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.features, 
.pricing, 
.platforms, 
.reviews{
    display: grid;
    align-content: center;
}
.features .section-title, 
.pricing .section-title, 
.platforms .section-title, 
.reviews .section-title{
    max-width: 980px;
    margin-bottom: 24px;
}
.features .section-title h2, 
.pricing .section-title h2, 
.platforms .section-title h2, 
.reviews .section-title h2{
    max-width: 920px;
    font-size: clamp(44px, 6vw, 92px);
    line-height: .9;
    text-shadow: 0 6px 42px rgba(0,0,0,.5);
}

.pricing-grid{
    width: min(1180px, 100%);
    margin-top: 34px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.08);
    box-shadow: 0 40px 140px rgba(0,0,0,.45);
    backdrop-filter: blur(24px) saturate(1.1);
}

.price-card{
    background:
        linear-gradient(145deg, rgba(3,8,9,.66), rgba(3,8,9,.3)),
        radial-gradient(circle at 24% 0%, rgba(126,249,228,.14), transparent 48%);
    backdrop-filter: blur(26px) saturate(1.15);
}

.price-card{
    min-height: 300px;
}

.price-num {
    font-size: 66px;
}
.price-card {
    min-height: 500px;
}

.footer {
    min-height: 70vh;
    display: grid;
    place-items: center;
    background:
        linear-gradient(180deg, rgba(3,7,8,.36), #030607 72%),
        url("/img/weather/alps-weather-station.webp") center bottom / cover no-repeat;
}
.footer-logo {
    font-size: 28px;
}
@media (max-width: 1000px) {
    
    .features .section-title h2, 
    .pricing .section-title h2, 
    .platforms .section-title h2, 
    .reviews .section-title h2{ font-size: clamp(40px, 10vw, 68px); }
    
}
/* Real terrain provider layer */

/* Guided terrain tour */

@media (max-width: 900px) {
    
}
@media (max-width: 560px) {
    
    
}
/* Terrain visibility fix */

/* Hard terrain-first pass */

/* Debug: reveal Procedural terrain without dark cover */

/* MapLibre terrain replacement */

/* Logartis-style experience intro */

#startQuiet {
    border: 0;
    padding: 2px 0;
    font-size: 13px;
    font-weight: 700;
}
#startQuiet:hover {
    transform: none;
    background: transparent;
    color: #07100f;
    text-decoration: underline;
}

@keyframes experienceUiIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 760px) {
    
    
    
}
/* ── User menu shared across all pages (was in globe-experience.css only) ── */
.user-menu {
  position: relative;
  pointer-events: auto;
  display: inline-flex;
}
.user-menu-trigger {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--bright, #f4f6f8);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 0;
  transition: background .2s, border-color .2s, transform .15s;
}
.user-menu-trigger:hover,
.user-menu-trigger:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.32);
  transform: scale(1.06);
  outline: none;
}
.user-menu-trigger svg { display: block; }
.user-menu-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 170px;
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  display: none;
  z-index: 100;
}
.user-menu-dropdown.is-open { display: block; }
.user-menu-item {
  display: block;
  padding: 10px 16px;
  color: #e6edf3;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.user-menu-item:hover {
  background: rgba(218, 165, 32, 0.14);
  color: #DAA520;
  text-decoration: none;
}
