:root{
    /* Light (Only) */
    --bg:#f7f6f9;
    --bg-2:#eceaf2;
    --card:#ffffffee;
    --stroke:#e6e2f0;
    --cream:#1f2430;
    --pink:#c2478b;
    --gold:#b7892a;
    --navy:#ffffff;
    --link:#6a2ca8;
    --shadow: 0 10px 30px rgba(14,12,22,.08), inset 0 0 0 1px rgba(0,0,0,.02);
}

html, body {
    background: radial-gradient(1200px 800px at 80% -10%, #ffffff 0%, transparent 60%),
                radial-gradient(900px 600px at -10% 10%, #ffeaf7 0%, transparent 60%),
                linear-gradient(180deg, var(--bg), var(--bg-2));
    min-height: 100%;
    color: var(--cream);
}

.site-header, .site-footer {
    max-width: 680px;
    margin: 0 auto;
    padding: 16px 20px;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: saturate(120%) blur(8px);
    background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,0));
    border-bottom: 1px solid rgba(0,0,0,.04);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: .4px;
}

.logo-pill {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--gold));
    color: #1a1225;
    font-weight: 800;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    box-shadow: 0 6px 14px rgba(194,71,139,.20), inset 0 0 0 1px rgba(255,255,255,.75);
}

.site-title {
    font-family: "Playfair Display", ui-serif, Georgia, serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--cream);
}

/* Hero */
.hero {
    position: relative;
    display: grid;
    place-items: start center;
    padding: 28px 16px 40px;
    min-height: calc(100vh - 120px);
    overflow: hidden; /* prevent mobile horizontal scroll */
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: .35;
    animation: float 14s ease-in-out infinite;
}
.orb-1 {
    width: 320px; height: 320px;
    top: -60px; right: -40px;
    background: radial-gradient(circle at 30% 30%, #ffd6ef, transparent 60%),
                radial-gradient(circle at 70% 70%, #ffefbf, transparent 60%);
}
.orb-2 {
    width: 280px; height: 280px;
    bottom: -60px; left: -40px;
    animation-delay: 4s;
    background: radial-gradient(circle at 60% 40%, #d4ecff, transparent 60%),
                radial-gradient(circle at 40% 70%, #e3d8ff, transparent 60%);
}
@keyframes float {
    0%,100% { transform: translateY(0) translateX(0); }
    50%     { transform: translateY(-10px) translateX(6px); }
}

.card {
    position: relative;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 28px 18px 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.82));
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px) saturate(120%);
}

.avatar {
    display: block;
    width: 134px;
    height: 134px;
    margin: 0 auto 14px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(0,0,0,.10),
                0 0 0 6px rgba(194,71,139,.08),
                0 0 32px rgba(194,71,139,.18);
    object-fit: cover;
    object-position: center;
}

.brand {
    text-align: center;
    font-family: "Playfair Display", ui-serif, Georgia, serif;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: .2px;
    background: linear-gradient(180deg, #1f2430, #6b7280);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tagline {
    text-align: center;
    margin-top: 6px;
    color: #4b5563;
    font-size: 14px;
}

.links {
    display: grid;
    margin-top: 18px;
    gap: 12px;
}

.link-button {
    --btn-bg: rgba(255,255,255,.95);
    --btn-border: rgba(0,0,0,.06);
    display: grid;
    grid-template-columns: 32px 1fr 18px;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-decoration: none;
    color: var(--cream);
    padding: 14px 14px;
    border-radius: 14px;
    background: linear-gradient(180deg, var(--btn-bg), rgba(255,255,255,.88));
    border: 1px solid var(--btn-border);
    box-shadow: 0 6px 16px rgba(0,0,0,.08), inset 0 0 0 1px rgba(255,255,255,.5);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
    position: relative;
    overflow: hidden;
}
.link-button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,.04), rgba(0,0,0,0) 40%);
    transform: translateX(-100%);
    transition: transform .6s ease;
}
.link-button:hover::after,.link-button:focus-visible::after{ transform: translateX(0%); }
.link-button:hover,.link-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0,0,0,.12), inset 0 0 0 1px rgba(255,255,255,.6);
    border-color: rgba(0,0,0,.12);
}

.link-button .icon {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,0));
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.6);
}

.link-button .text {
    font-weight: 600;
    letter-spacing: .2px;
}
.link-button .chev {
    opacity: .6;
    transform: translateX(0);
    transition: transform .2s ease, opacity .2s ease;
}
.link-button:hover .chev { transform: translateX(2px); opacity: 1; }

.link-button.primary {
    border-color: rgba(194,71,139,.35);
    box-shadow: 0 10px 22px rgba(194,71,139,.12), inset 0 0 0 1px rgba(255,255,255,.6);
    background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.9));
}

.link-button.ghost {
    background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.78));
    border-style: dashed;
    border-color: rgba(183,137,42,.45);
}

.site-footer {
    text-align: center;
    color: #6b7280;
}

/* Larger screens enhancements */
@media (min-width: 740px) {
    .brand { font-size: 36px; }
    .tagline { font-size: 15px; }
    .card { padding: 36px 22px 28px; border-radius: 22px; }
    .link-button { padding: 16px; }
}

/* Accessibility focus */
a:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 2px;
}

/* Custom selection & scrollbar */
::selection { background: rgba(194,71,139,.18); color: #111827; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #b084f3, #f39ac7);
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, .8);
}
::-webkit-scrollbar-track { background: rgba(0,0,0,.04); }
.brand-logo {
    display: block;
    margin: 6px auto 0;
    width: 220px;
    max-width: 70%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
}/* Brand glow behind every link-button */
.link-button {
    z-index: 0;
}
.link-button::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    z-index: -1;
    /* Default brand glow colors */
    --glow-1: rgba(194, 71, 139, .28); /* pink */
    --glow-2: rgba(183, 137, 42, .24);  /* gold */
    background:
        radial-gradient(120% 140% at 20% 0%, var(--glow-1), transparent 60%),
        radial-gradient(120% 140% at 80% 100%, var(--glow-2), transparent 60%);
    filter: blur(16px);
    opacity: .45;
    transition: opacity .25s ease, filter .25s ease, transform .25s ease;
}
.link-button:hover::before,
.link-button:focus-visible::before {
    opacity: .7;
    filter: blur(22px);
}

/* Slightly stronger glow on primary to match its prominence */
.link-button.primary::before {
    --glow-1: rgba(194, 71, 139, .38);
    --glow-2: rgba(183, 137, 42, .34);
}
