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

:root {
    --amber: #f5b54a;
    --amber-deep: #d98c29;
    --amber-dim: rgba(245, 181, 74, 0.20);
    --amber-glow: rgba(245, 181, 74, 0.45);
    --glass: rgba(255, 255, 255, 0.055);
    --glass-hover: rgba(255, 255, 255, 0.09);
    --border: rgba(255, 255, 255, 0.12);
    --border-amber: rgba(245, 181, 74, 0.38);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.58);
    --dim: rgba(255, 255, 255, 0.30);
    --r: 16px;
    --max: 1100px;
}

html {
    scroll-behavior: smooth;
    background: #0a0a0c; /* fallback behind gradient div */
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: transparent;
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Fixed gradient — replaces background-attachment:fixed which iOS Safari ignores */
.bg-gradient {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 50% at 80% 0%, rgba(245, 181, 74, 0.10), transparent 60%),
        linear-gradient(158deg,
            #131b2e 0%,
            #1b1407 42%,
            #120d06 70%,
            #0a0a0c 100%
        );
}

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

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

/* ── Floating ticket stubs ────────────────────────────────── */
.bg-tickets {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.stub {
    position: absolute;
    border-radius: 6px;
    background: rgba(245, 181, 74, 0.055);
    border: 1px solid rgba(245, 181, 74, 0.05);
    animation: stubDrift linear infinite;
    user-select: none;
}

/* notch detail on each stub */
.stub::before, .stub::after {
    content: '';
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #0d0a06;
    top: 50%;
    transform: translateY(-50%);
}
.stub::before { left: -5px; }
.stub::after  { right: -5px; }

.s1 { width: 120px; height: 64px; top:  8%; left:  6%; animation-duration: 34s; animation-delay:    0s; transform: rotate(-12deg); }
.s2 { width:  80px; height: 44px; top: 22%; right: 9%; animation-duration: 28s; animation-delay:  -10s; transform: rotate(10deg); }
.s3 { width: 100px; height: 54px; top: 52%; left:  4%; animation-duration: 38s; animation-delay:  -18s; transform: rotate(8deg); }
.s4 { width: 140px; height: 74px; top: 64%; right: 6%; animation-duration: 30s; animation-delay:   -5s; transform: rotate(-9deg); }
.s5 { width:  70px; height: 40px; top: 84%; left: 16%; animation-duration: 26s; animation-delay:  -14s; transform: rotate(14deg); }
.s6 { width:  96px; height: 52px; top: 38%; left: 82%; animation-duration: 36s; animation-delay:   -7s; transform: rotate(-6deg); }

@keyframes stubDrift {
    0%   { transform: translateY(  0px) rotate(-8deg); opacity: 0.5; }
    50%  { transform: translateY(-22px) rotate( 4deg); opacity: 0.85; }
    100% { transform: translateY(  0px) rotate(-8deg); opacity: 0.5; }
}

/* ── Header ──────────────────────────────────────────────── */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(12, 12, 16, 0.62);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    border-bottom: 1px solid var(--border);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 0 16px var(--amber-dim);
}

.nav-cta {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 999px;
    background: var(--amber);
    color: #1a1206;
    letter-spacing: -0.01em;
    transition: opacity 0.2s, transform 0.18s;
}

.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    padding: 96px 0 84px;
    position: relative;
    z-index: 1;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    background: var(--amber-dim);
    border: 1px solid var(--border-amber);
    padding: 6px 14px 6px 10px;
    border-radius: 999px;
    margin-bottom: 26px;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--amber);
    animation: dotPulse 2.4s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1;   transform: scale(1);   }
    50%       { opacity: 0.4; transform: scale(0.65); }
}

.hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.07;
    margin-bottom: 22px;
}

.accent { color: var(--amber); }

.subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: 44px;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: var(--amber);
    color: #1a1206;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 999px;
    letter-spacing: -0.01em;
    transition: transform 0.18s, box-shadow 0.18s;
    box-shadow: 0 0 40px var(--amber-dim), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 70px var(--amber-glow), 0 8px 28px rgba(0, 0, 0, 0.35);
}

.btn-icon {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    margin-top: -2px;
}

.hero-stat strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 2px;
}

.hero-stat {
    font-size: 0.85rem;
    color: var(--muted);
}

/* ── Phone Mockup ─────────────────────────────────────────── */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at 50% 60%, rgba(245, 181, 74, 0.16), transparent 68%);
    pointer-events: none;
}

.phone {
    position: relative;
    z-index: 1;
    border-radius: 46px;
    background: #060606;
    border: 2px solid rgba(255, 255, 255, 0.16);
    padding: 11px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 40px 100px rgba(0, 0, 0, 0.65),
        0 0 80px rgba(245, 181, 74, 0.10);
    overflow: hidden;
}

.phone img {
    width: 100%;
    border-radius: 36px;
    display: block;
}

.hero-visual .phone { width: 248px; }

/* ── Divider ─────────────────────────────────────────────── */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
    position: relative;
    z-index: 1;
    margin: 0 28px;
}

/* ── Section Common ───────────────────────────────────────── */
.section-label {
    display: block;
    text-align: center;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-align: center;
    font-size: clamp(1.65rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.14;
    margin-bottom: 14px;
}

.section-intro {
    text-align: center;
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto 56px;
    font-size: 1rem;
    line-height: 1.72;
}

/* ── Features ─────────────────────────────────────────────── */
.features {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 30px 26px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(245, 181, 74, 0.08), transparent 65%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.feature-card:hover {
    border-color: var(--border-amber);
    background: var(--glass-hover);
    transform: translateY(-4px);
}

.feature-card:hover::after { opacity: 1; }

.feature-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 181, 74, 0.10);
    border: 1px solid rgba(245, 181, 74, 0.20);
    border-radius: 12px;
    color: var(--amber);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ── Screenshots ──────────────────────────────────────────── */
.screenshots {
    padding: 80px 0 100px;
    position: relative;
    z-index: 1;
}

.phone-gallery {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 32px;
    flex-wrap: wrap;
}

.phone-gallery .phone {
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
    cursor: default;
}

.phone-gallery .phone:nth-child(1) {
    width: 210px;
    transform: rotate(-4deg) translateY(20px);
}

.phone-gallery .phone:nth-child(2) {
    width: 230px;
    transform: rotate(0deg) translateY(0px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.07),
        0 60px 120px rgba(0, 0, 0, 0.7),
        0 0 100px rgba(245, 181, 74, 0.18);
}

.phone-gallery .phone:nth-child(3) {
    width: 210px;
    transform: rotate(4deg) translateY(20px);
}

.phone-gallery .phone:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.03) !important;
    z-index: 2;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 60px 120px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(245, 181, 74, 0.22) !important;
}

/* ── Privacy ──────────────────────────────────────────────── */
.privacy {
    padding: 80px 0 100px;
    position: relative;
    z-index: 1;
}

.privacy-panel {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 60px 44px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.privacy-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 36px;
    max-width: 720px;
    margin: 0 auto;
}

.privacy-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.privacy-check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(245, 181, 74, 0.12);
    border: 1px solid var(--border-amber);
    color: var(--amber);
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 2px;
}

.privacy-point strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 3px;
}

.privacy-point p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── Extras ───────────────────────────────────────────────── */
.extras {
    padding: 80px 0 100px;
    position: relative;
    z-index: 1;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.extra-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px 26px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.extra-card:hover {
    border-color: var(--border-amber);
    background: var(--glass-hover);
    transform: translateY(-4px);
}

.extra-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    color: var(--amber);
}

.extra-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--r);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: border-color 0.25s, background 0.25s;
    overflow: hidden;
}

.faq-item[open] {
    border-color: var(--border-amber);
    background: var(--glass-hover);
}

.faq-question {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 26px;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    user-select: none;
    transition: color 0.2s;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question:hover { color: var(--amber); }

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    color: var(--amber);
    font-size: 0.55rem;
    transition: border-color 0.25s, transform 0.25s;
}

.faq-icon::after {
    content: '▼';
    display: block;
    transition: transform 0.25s;
}

.faq-item[open] .faq-icon { border-color: var(--border-amber); }
.faq-item[open] .faq-icon::after { transform: rotate(180deg); }

.faq-answer {
    padding: 0 26px 22px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.72;
    border-top: 1px solid var(--border);
    padding-top: 18px;
}

.faq-answer strong { color: var(--text); font-weight: 600; }

/* ── Contact ──────────────────────────────────────────────── */
.contact {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.contact-form {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--muted);
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.form-input::placeholder { color: var(--dim); }

.form-input:focus {
    border-color: var(--border-amber);
    background: var(--glass-hover);
    box-shadow: 0 0 0 3px rgba(245, 181, 74, 0.12);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-submit {
    align-self: flex-start;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    margin-top: 4px;
}

/* ── Download ─────────────────────────────────────────────── */
.download {
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.icon-ring-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.icon-ring {
    width: 112px;
    height: 112px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: ringGlow 3.2s ease-in-out infinite;
}

.icon-ring img {
    width: 100%;
    height: 100%;
    border-radius: 26px;
    display: block;
}

.icon-ring::before {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 38px;
    border: 1px solid rgba(245, 181, 74, 0.22);
    animation: ringExpand 3.2s ease-in-out infinite;
}

@keyframes ringGlow {
    0%, 100% { box-shadow: 0 0 40px var(--amber-dim), 0 0 80px rgba(245, 181, 74, 0.1); }
    50%       { box-shadow: 0 0 80px var(--amber-glow), 0 0 140px rgba(245, 181, 74, 0.2); }
}

@keyframes ringExpand {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50%       { opacity: 0.08; transform: scale(1.16); }
}

.download .section-title { margin-bottom: 14px; }

.download p {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 38px;
}

.badge-wrap {
    display: inline-block;
    transition: opacity 0.2s, transform 0.2s;
}

.badge-wrap:hover { opacity: 0.82; transform: translateY(-2px); }

.badge-wrap img {
    height: 58px;
    filter: invert(1);
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
    padding: 36px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

footer p { color: var(--dim); font-size: 0.85rem; }

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

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

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

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

/* ── Nav links ────────────────────────────────────────────── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.2s;
}

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

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .extras-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-visual .phone { width: 200px; }
    .phone-glow { display: none; }

    .nav-link { display: none; }
    .nav-links .nav-cta { display: inline-block; }

    .privacy-points { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .hero { padding: 68px 0 56px; }

    .features, .privacy, .extras, .download, .screenshots, .faq, .contact {
        padding: 60px 0;
    }

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

    .privacy-panel { padding: 36px 22px; }

    .phone-gallery { gap: 16px; }
    .phone-gallery .phone { width: 160px !important; }
    .phone-gallery .phone:nth-child(1) { transform: rotate(-2deg) translateY(14px); }
    .phone-gallery .phone:nth-child(3) { transform: rotate(2deg) translateY(14px); }
}
