:root {
    --deep-teal: #355258;
    --copper: #b06639;
    --golden: #c0893f;
    --olive: #757445;
    --cream: #dbc5a4;
    --terracotta: #b15a38;
    --ink: #1f1a17;
    --ink-soft: rgba(31, 26, 23, 0.72);
    --card: rgba(255, 250, 244, 0.09);
    --card-strong: rgba(255, 250, 244, 0.14);
    --border: rgba(219, 197, 164, 0.22);
    --shadow: 0 24px 70px rgba(18, 16, 14, 0.35);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Poppins", sans-serif;
    color: #fffaf4;
    background: radial-gradient(circle at top left, rgba(192, 137, 63, 0.22), transparent 32%), radial-gradient(circle at 85% 18%, rgba(53, 82, 88, 0.38), transparent 24%), radial-gradient(circle at bottom center, rgb(9 36 8 / 30%), transparent 28%), linear-gradient(160deg, #122f64 0%, #8b614f 45%, #6e2900 100%);
}


body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

body::before {
    top: -4rem;
    right: -4rem;
    background: linear-gradient(135deg, var(--golden), transparent 65%);
}

body::after {
    left: -6rem;
    bottom: -5rem;
    background: linear-gradient(135deg, var(--deep-teal), transparent 70%);
}

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

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

.page-shell {
    position: relative;
    z-index: 1;
    height: 100vh;
    height: 100svh;
    display: grid;
    place-items: center;
    padding: 1rem;
    overflow: hidden;
}

.hero-card {
    width: min(100%, 30rem);
    max-height: 100%;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: 2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
        rgba(23, 18, 16, 0.56);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    scrollbar-width: none; /* Hide scrollbar for cleaner look if it slightly overflows */
}

.hero-card::-webkit-scrollbar {
    display: none;
}

.brand-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
}

.brand-mark {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--cream);
}

.brand-kicker,
.eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.72rem;
    color: rgba(219, 197, 164, 0.8);
}

.logo-frame {
    width: min(40vw, 10rem);
    aspect-ratio: 1 / 1;
    margin: 1rem auto;
    padding: 0.75rem;
    border-radius: 1.75rem;
    background: linear-gradient(145deg, rgba(219, 197, 164, 0.16), rgba(176, 102, 57, 0.08));
    border: 1px solid rgba(219, 197, 164, 0.26);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.logo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 1.1rem;
    background: rgba(255, 250, 244, 0.95);
}

.hero-copy {
    text-align: center;
}

.hero-copy h1 {
    margin: 0.55rem 0 0.8rem;
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    line-height: 0.98;
    font-weight: 800;
    text-wrap: balance;
}

.subtitle {
    margin: 0 auto;
    max-width: 22rem;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
    color: rgba(255, 250, 244, 0.8);
}

.channel-list {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.channel-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.8rem;
    min-height: 4.8rem;
    padding: 0.8rem 1rem;
    border-radius: 1.45rem;
    background: linear-gradient(135deg, rgba(255, 250, 244, 0.08), rgba(255, 250, 244, 0.04));
    border: 1px solid rgba(255, 250, 244, 0.11);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.channel-card:hover,
.channel-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 250, 244, 0.24);
    background: linear-gradient(135deg, rgba(255, 250, 244, 0.14), rgba(255, 250, 244, 0.07));
}

.channel-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: grid;
    place-items: center;
    border-radius: 1.15rem;
    flex-shrink: 0;
}

.channel-icon svg {
    width: 1.55rem;
    height: 1.55rem;
    fill: currentColor;
}

.channel-arrow svg {
    width: 1.55rem;
    height: 1.55rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.whatsapp .channel-icon {
    color: #eaffee;
    background: linear-gradient(135deg, #4b8b50, #757445);
}

.instagram .channel-icon {
    color: #fff0f8;
    background: linear-gradient(135deg, #b15a38, #b06639);
}

.facebook .channel-icon {
    color: #eef7ff;
    background: linear-gradient(135deg, #355258, #4d6670);
}

.channel-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.channel-text strong {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.channel-text span {
    font-size: 0.98rem;
    font-weight: 300;
    color: rgba(255, 250, 244, 0.74);
    overflow-wrap: anywhere;
}

.channel-arrow {
    color: rgba(255, 250, 244, 0.62);
}

.signature-note {
    margin-top: 1.6rem;
    padding: 1.15rem 1.1rem;
    border-radius: 1.35rem;
    border: 1px dashed rgba(219, 197, 164, 0.24);
    background: rgba(53, 82, 88, 0.12);
    text-align: center;
}

.signature-note p {
    margin: 0;
    line-height: 1.4;
    color: rgba(255, 250, 244, 0.76);
    font-size: 0.85rem;
    font-weight: 300;
}

/* Height-based adjustments for short screens */
@media (max-height: 750px) {
    .logo-frame {
        width: 8rem;
        margin: 0.75rem auto;
    }
    .hero-copy h1 {
        font-size: 1.8rem;
        margin: 0.4rem 0 0.5rem;
    }
    .subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    .channel-list {
        gap: 0.5rem;
        margin-top: 1rem;
    }
    .channel-card {
        min-height: 4rem;
        padding: 0.6rem 0.8rem;
    }
    .channel-icon {
        width: 2.8rem;
        height: 2.8rem;
    }
    .signature-note {
        margin-top: 1rem;
        padding: 0.8rem;
    }
}

@media (max-height: 600px) {
    .logo-frame {
        display: none;
    }
    .hero-card {
        padding: 0.8rem;
    }
    .brand-mark {
        font-size: 1.5rem;
    }
    .hero-copy h1 {
        font-size: 1.5rem;
    }
    .signature-note {
        display: none;
    }
}

@media (max-width: 420px) {
    .page-shell {
        padding: 0.9rem;
    }

    .hero-card {
        border-radius: 1.6rem;
        padding: 1rem;
    }

    .channel-card {
        padding: 0.95rem;
    }

    .channel-text strong {
        font-size: 0.92rem;
    }

    .channel-text span {
        font-size: 0.9rem;
    }
}

@media (min-width: 900px) {
    .hero-card {
        width: min(100%, 34rem);
        padding: 1.6rem;
    }
}
