/* ─── One-Click Mirror — Premium Landing Page ─── */

:root {
    --bg: #0a0a0c;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.18);
    --text: #ffffff;
    --text-muted: #8e8e93;
    --text-dim: #636366;
    --gold: #d4af37;
    --gold-light: rgba(212, 175, 55, 0.15);
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ─── Ambient Background ─── */

.ambient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(100, 60, 180, 0.3), transparent 70%);
    top: -150px;
    right: -100px;
    animation: float-orb 20s ease-in-out infinite alternate;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(40, 80, 160, 0.25), transparent 70%);
    bottom: -100px;
    left: -80px;
    animation: float-orb 25s ease-in-out infinite alternate-reverse;
}

@keyframes float-orb {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(30px, -20px) scale(1.1); }
    100% { transform: translate(-20px, 15px) scale(0.95); }
}

/* ─── Header ─── */

header {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    padding: 32px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 22px;
    background: linear-gradient(135deg, var(--gold), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-left: 24px;
    transition: color 0.2s ease;
}

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

/* ─── Hero ─── */

.hero {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    padding: 60px 24px 40px;
}

.badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    border: 1px solid var(--gold-light);
    background: rgba(212, 175, 55, 0.06);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 28px;
}

h1 {
    font-size: clamp(36px, 7vw, 52px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 20%, #a1a1a6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.made-by {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 14px;
}

.store-strip {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* ─── CTA Buttons ─── */

.cta-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
    transform: translateY(-1px);
}

.cta-btn.primary {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 24px rgba(255, 255, 255, 0.1);
}

.cta-btn.primary:hover {
    box-shadow: 0 6px 32px rgba(255, 255, 255, 0.15);
}

.cta-btn.secondary {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

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

/* ─── Features ─── */

.features {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    max-width: 760px;
    width: 100%;
    padding: 40px 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
    backdrop-filter: blur(16px);
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 14px;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ─── Support Section ─── */

.support-section {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    margin: 40px 24px;
    backdrop-filter: blur(20px);
}

.support-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.support-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 18px;
}

label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-dim);
    margin-bottom: 6px;
}

input, textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease;
    outline: none;
}

input:focus, textarea:focus {
    border-color: rgba(255, 255, 255, 0.25);
}

input::placeholder, textarea::placeholder {
    color: var(--text-dim);
}

textarea {
    resize: vertical;
    min-height: 90px;
}

button[type="submit"] {
    width: 100%;
    padding: 13px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

button[type="submit"]:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--border-hover);
}

button[type="submit"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-success {
    text-align: center;
    color: #34c759;
    font-size: 14px;
    font-weight: 600;
    padding: 16px;
    background: rgba(52, 199, 89, 0.06);
    border: 1px solid rgba(52, 199, 89, 0.15);
    border-radius: 10px;
    margin-top: 12px;
}

/* ─── Footer ─── */

footer {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 48px 24px 32px;
    text-align: center;
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
}

.footer-links {
    margin-top: 8px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-links .sep {
    margin: 0 8px;
    color: var(--text-dim);
}

.disclaimer {
    margin-top: 16px;
    font-size: 11px;
    color: var(--text-dim);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.7;
}

/* ─── Legal Pages ─── */

.legal-container {
    position: relative;
    z-index: 1;
    max-width: 650px;
    width: 100%;
    padding: 40px 24px 80px;
    line-height: 1.7;
}

.legal-container h1 {
    font-size: clamp(28px, 5vw, 36px);
    background: none;
    -webkit-text-fill-color: var(--text);
    margin-bottom: 6px;
}

.legal-date {
    color: var(--text-dim);
    font-size: 13px;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
    letter-spacing: -0.2px;
}

.legal-container p,
.legal-container li {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 12px;
}

.legal-container ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.legal-container li {
    margin-bottom: 8px;
}

.legal-container strong {
    color: var(--text);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-top: 40px;
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color 0.2s, color 0.2s;
}

.back-link:hover {
    border-color: var(--border-hover);
    color: var(--text);
}

/* ─── Responsive ─── */

@media (max-width: 600px) {
    header { padding: 20px 16px; }
    .hero { padding: 40px 16px 24px; }
    .features { padding: 20px 16px; gap: 12px; }
    .support-section { margin: 24px 16px; padding: 24px 20px; }
    .cta-group { flex-direction: column; align-items: center; }
    .cta-btn { width: 100%; max-width: 280px; justify-content: center; }
    nav a { margin-left: 16px; font-size: 13px; }
}
