@font-face {
    font-family: "DG Agnadeen";
    src: url("../fonts/DGAgnadeen-Light.ttf") format("truetype");
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "DG Agnadeen";
    src: url("../fonts/DGAgnadeen-Regular.ttf") format("truetype");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "DG Agnadeen";
    src: url("../fonts/DGAgnadeen-Bold.ttf") format("truetype");
    font-weight: 700;
    font-display: swap;
}

:root {
    --navy: #2d2f6d;
    --navy-dark: #1e2050;
    --teal: #43a8a7;
    --teal-bright: #00ae9f;
    --purple: #a17eb9;
    --ink: #22243f;
    --muted: #737790;
    --white: #fff;
    --paper: #f8f8fb;
    --line: rgba(45, 47, 109, .12);
    --gradient: linear-gradient(125deg, var(--teal-bright), var(--teal) 42%, var(--purple));
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "DG Agnadeen", Tahoma, sans-serif;
}

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

.launch-page {
    display: grid;
    grid-template-columns: minmax(420px, 47%) 1fr;
    min-height: 100vh;
    overflow: hidden;
}

.launch-page__visual {
    position: relative;
    min-height: 100vh;
    background-image: url("../images/alsaad-background.png");
    background-position: center;
    background-size: cover;
}

.launch-page__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 32, 80, .08), rgba(30, 32, 80, .72));
}

.launch-page__visual::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 100%;
    background: var(--gradient);
}

.visual-shade {
    position: absolute;
    top: 8%;
    left: 10%;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255,255,255,.26);
    border-radius: 50%;
}

.visual-shade::before,
.visual-shade::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
}

.visual-shade::before { inset: 22px; }
.visual-shade::after { inset: 48px; background: rgba(255,255,255,.08); }

.visual-caption {
    position: absolute;
    z-index: 1;
    right: 56px;
    bottom: 54px;
    left: 56px;
    color: var(--white);
}

.visual-caption span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,.72);
    font-size: 15px;
}

.visual-caption strong {
    display: block;
    max-width: 480px;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.35;
}

.launch-page__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding: 54px clamp(40px, 7vw, 110px) 36px;
    background:
        radial-gradient(circle at 85% 10%, rgba(0,174,159,.11), transparent 27%),
        radial-gradient(circle at 12% 86%, rgba(161,126,185,.12), transparent 28%),
        var(--paper);
}

.launch-page__content::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 210px;
    height: 210px;
    border: 50px solid rgba(67,168,167,.05);
    border-radius: 50%;
}

.brand-mark {
    position: relative;
    z-index: 1;
    width: 180px;
    margin-bottom: 36px;
}

.brand-mark img { display: block; width: 100%; height: auto; }

.launch-copy { position: relative; z-index: 1; max-width: 650px; }

.launch-copy__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--teal-bright);
    font-size: 15px;
    font-weight: 700;
}

.launch-copy__eyebrow i {
    width: 24px;
    height: 2px;
    background: var(--gradient);
}

.launch-copy h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.18;
    font-weight: 700;
}

.launch-copy h1 span {
    color: transparent;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

.launch-copy > p {
    max-width: 590px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.9;
}

.status-card {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    width: fit-content;
    margin-top: 30px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 14px 40px rgba(45,47,109,.08);
    backdrop-filter: blur(12px);
}

.status-card__icon {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    width: 46px;
    height: 46px;
    padding: 13px;
    border-radius: 13px;
    background: var(--gradient);
}

.status-card__icon span {
    width: 4px;
    border-radius: 3px;
    background: #fff;
    animation: building 1.4s ease-in-out infinite alternate;
}
.status-card__icon span:nth-child(1) { height: 10px; }
.status-card__icon span:nth-child(2) { height: 20px; animation-delay: .2s; }
.status-card__icon span:nth-child(3) { height: 15px; animation-delay: .4s; }

.status-card strong { display: block; color: var(--navy); font-size: 18px; }
.status-card p { margin: 2px 0 0; color: var(--muted); font-size: 13px; }

.contact-block {
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.contact-block > span { display: block; margin-bottom: 9px; color: var(--muted); font-size: 13px; }

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 11px 18px;
    color: #fff;
    border-radius: 14px;
    background: #25d366;
    box-shadow: 0 12px 28px rgba(37,211,102,.22);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.whatsapp-button:hover {
    color: #fff;
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(37,211,102,.3);
}

.whatsapp-button svg { width: 24px; height: 24px; fill: currentColor; }
.whatsapp-button span { font-size: 15px; font-weight: 700; }
.whatsapp-button b { padding-right: 12px; border-right: 1px solid rgba(255,255,255,.35); font-size: 14px; }

footer {
    position: absolute;
    z-index: 1;
    right: clamp(40px, 7vw, 110px);
    bottom: 28px;
    left: clamp(40px, 7vw, 110px);
    display: flex;
    justify-content: space-between;
    padding-top: 18px;
    color: #999caf;
    border-top: 1px solid var(--line);
    font-size: 12px;
}

@keyframes building {
    from { transform: scaleY(.72); opacity: .72; }
    to { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 900px) {
    .launch-page { grid-template-columns: 1fr; }
    .launch-page__visual { min-height: 38vh; order: 2; }
    .launch-page__visual::after { top: 0; right: 0; width: 100%; height: 6px; }
    .visual-caption { right: 28px; bottom: 28px; left: 28px; }
    .visual-shade { display: none; }
    .launch-page__content { min-height: 62vh; padding: 40px 28px 96px; }
    .brand-mark { width: 130px; margin-bottom: 26px; }
    .launch-copy h1 { font-size: clamp(38px, 11vw, 58px); }
    .launch-copy > p { font-size: 16px; }
    footer { right: 28px; bottom: 24px; left: 28px; }
}

@media (max-width: 520px) {
    .launch-page__content { padding-right: 20px; padding-left: 20px; }
    .status-card { width: 100%; }
    .whatsapp-button { width: 100%; justify-content: center; }
    footer { right: 20px; left: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
}
