/* Daleely get-app — static download landing */
:root {
    --brand: #1568e0;
    --brand-deep: #0b3d8c;
    --brand-soft: #e8f1ff;
    --ink: #0c1222;
    --muted: #5b6b86;
    --surface: #f4f7fc;
    --white: #ffffff;
    --amber: #e8a317;
    --radius: 1.25rem;
    --font: "Somar", "Cairo", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
}

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

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

.skip {
    position: absolute;
    inset-inline-start: -999px;
    top: 0;
}
.skip:focus {
    inset-inline-start: 1rem;
    z-index: 100;
    background: var(--white);
    padding: 0.5rem 1rem;
}

/* —— Hero —— */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(80% 60% at 15% 10%, rgba(84, 166, 255, 0.35), transparent 55%),
        radial-gradient(70% 50% at 90% 20%, rgba(232, 163, 23, 0.18), transparent 50%),
        linear-gradient(160deg, #071428 0%, var(--brand-deep) 48%, #0a2a66 100%);
}

.hero__grid {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(70% 60% at 50% 30%, #000 20%, transparent 75%);
}

.hero__orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(72px);
    pointer-events: none;
}
.hero__orb--1 {
    width: 280px;
    height: 280px;
    background: rgba(59, 130, 246, 0.45);
    top: -40px;
    inset-inline-end: 8%;
    animation: drift 14s ease-in-out infinite;
}
.hero__orb--2 {
    width: 220px;
    height: 220px;
    background: rgba(232, 163, 23, 0.28);
    bottom: 12%;
    inset-inline-start: 6%;
    animation: drift 18s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes drift {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-18px) scale(1.06);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__orb {
        animation: none;
    }
}

.topbar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.brand img {
    width: 40px;
    height: 40px;
}

.lang-toggle {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(10px);
}
.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.16);
}

.hero__content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.hero__title {
    margin: 0;
    font-size: clamp(2.4rem, 6vw, 4.1rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    max-width: 14ch;
}

.hero__title span {
    color: #9ec5ff;
}

.hero__lead {
    margin: 1.25rem 0 0;
    max-width: 36rem;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.82);
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 999px;
    padding: 0.95rem 1.5rem;
    font-weight: 800;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn--primary {
    background: var(--amber);
    color: #1a1200;
    box-shadow: 0 12px 32px -12px rgba(232, 163, 23, 0.7);
}
.btn--primary:hover {
    background: #f0b12a;
}
.btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.28);
}
.btn--ghost.is-disabled,
.btn.is-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

.ios-note {
    margin-top: 0.85rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

/* —— Why —— */
.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4.5rem 1.5rem;
}

.section h2 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section > p {
    margin: 0.75rem 0 0;
    color: var(--muted);
    max-width: 36rem;
}

.features {
    display: grid;
    gap: 1.25rem;
    margin-top: 2.25rem;
    grid-template-columns: 1fr;
}
@media (min-width: 720px) {
    .features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature {
    padding: 0.25rem 0;
}
.feature h3 {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
    font-weight: 800;
}
.feature p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}
.feature__mark {
    width: 2.5rem;
    height: 0.28rem;
    border-radius: 999px;
    background: var(--brand);
    margin-bottom: 1rem;
}
.feature:nth-child(2) .feature__mark {
    background: #0ea5e9;
}
.feature:nth-child(3) .feature__mark {
    background: var(--amber);
}

/* —— Final CTA band —— */
.band {
    background: linear-gradient(135deg, var(--brand-deep), var(--brand));
    color: var(--white);
    padding: 3.5rem 1.5rem;
    text-align: center;
}
.band h2 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
}
.band p {
    margin: 0.75rem auto 0;
    max-width: 28rem;
    color: rgba(255, 255, 255, 0.8);
}
.band .cta-row {
    justify-content: center;
}

.footer {
    padding: 2rem 1.5rem 2.5rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
}
.footer a {
    color: var(--brand);
    font-weight: 700;
}

[hidden] {
    display: none !important;
}
