@import url('https://fonts.googleapis.com/css2?family=Gloock&family=Manrope:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@100;200;300;400;500;600;700;800;900&display=swap');
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
    color: #f5f3ff;
    background-color: #1e1b4b;
    background-image: linear-gradient(160deg, #0f172a 0%, #312e81 42%, #6d28d9 78%, #be185d 100%);
    background-attachment: fixed;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    /* Sticky footer: header/main/footer are direct children of the page body (see
       PageAssembler::assemble() -- header, page content, and footer are concatenated as
       siblings, no wrapper div), so making body a column flex container and letting main
       absorb the remaining space keeps the footer pinned to the bottom of the viewport on
       short pages. header/footer must never shrink below their own content. NOTE: never write
       the literal text "body" wrapped in angle brackets inside this comment --
       PageAssembler::extractBody() does a naive regex scan for that exact substring across the
       whole file, comments included, and would treat it as a real tag boundary. */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
header, footer { flex-shrink: 0; }
main { flex: 1 0 auto; width: 100%; margin-inline: auto; }
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    font-family: 'Rubik';
    font-weight: 400;
    letter-spacing: -0.005em;
    line-height: 1.08;
    text-wrap: balance;
}
p { text-wrap: pretty; }
a { color: #fcc84d; text-decoration: none; text-underline-offset: 0.18em; text-decoration-thickness: 0.08em; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* The surfaces the browser draws. Left alone they ship a system-blue highlight and a light-grey
   scrollbar, which is the one tell that a dark page was assembled rather than designed. */
::selection { background-color: #fbbf24; color: #1e1b4b; }
html { scrollbar-color: #312e81 #0f172a; scrollbar-width: thin; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background-color: #0f172a; }
::-webkit-scrollbar-thumb { background-color: #312e81; border-radius: 999px; border: 3px solid #0f172a; }
::-webkit-scrollbar-thumb:hover { background-color: #6d28d9; }
.btn-primary {
    line-height: 1;
    display: inline-block;
    background-color: #fbbf24;
    color: #1e1b4b;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.18s, background-color 0.18s;
}
.btn-primary:hover { background-color: #f59e0b; color: #1e1b4b; text-decoration: none; transform: translateY(-2px); }
.btn-primary:focus-visible { outline: 3px solid rgba(251, 191, 36, 0.5); outline-offset: 3px; }
.btn-primary:active { background-color: #f59e0b; transform: translateY(0); }
.btn-primary:disabled { background-color: rgba(255, 255, 255, 0.14); color: rgba(245, 243, 255, 0.6); cursor: not-allowed; transform: none; }
.btn-secondary {
    line-height: 1;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 0.8rem 2rem;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.18s, transform 0.18s;
}
.btn-secondary:hover { background-color: rgba(255, 255, 255, 0.2); color: #ffffff; text-decoration: none; transform: translateY(-2px); }
.btn-secondary:focus-visible { outline: 3px solid rgba(255, 255, 255, 0.5); outline-offset: 3px; }
.btn-secondary:active { background-color: rgba(255, 255, 255, 0.26); transform: translateY(0); }
.btn-secondary:disabled { border-color: rgba(255, 255, 255, 0.14); color: rgba(245, 243, 255, 0.45); cursor: not-allowed; transform: none; }

/* Form fields -- pre-styled so a form added later via the editor looks right immediately,
   using the exact class names App\Generator\Tools\FormManager/FormFieldRenderer always emit.
   Styled as a frosted panel to stay legible on the gradient. */
.form { max-width: 460px; }
.form-field { margin-bottom: 1.15rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: #ffffff; margin-bottom: 0.4rem; }
.form-input {
    display: block;
    width: 100%;
    padding: 0.72rem 0.95rem;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    caret-color: #fbbf24;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input::placeholder { color: rgba(245, 243, 255, 0.68); }
.form-input:focus { outline: none; border-color: #fbbf24; box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.25); }
.form-input:disabled { background-color: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.14); color: rgba(245, 243, 255, 0.45); cursor: not-allowed; }
.form-checkbox-group, .form-radio-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-checkbox-option, .form-radio-option { display: flex; align-items: center; gap: 0.55rem; font-size: 0.9375rem; color: #f5f3ff; }
.form-actions { margin-top: 1.4rem; }
.form-submit {
    display: inline-block;
    background-color: #fbbf24;
    color: #1e1b4b;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9375rem;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.18s;
}
.form-submit:hover { background-color: #f59e0b; }
.form-submit:focus-visible { outline: 3px solid rgba(251, 191, 36, 0.5); outline-offset: 3px; }
.form-submit:active { background-color: #d98a06; }
.form-submit:disabled { background-color: rgba(255, 255, 255, 0.14); color: rgba(245, 243, 255, 0.6); cursor: not-allowed; }

.beacon-hub { padding: 2.5rem 1.5rem 3.5rem; }
.beacon-card { max-width: 480px; margin: 0 auto; text-align: center; }
.beacon-avatar {
    width: 116px;
    height: 116px;
    border-radius: 999px;
    margin: 0 auto 1.6rem;
    border: 3px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.45);
}
.beacon-name { font-size: clamp(2.6rem, 9vw, 3.5rem); margin-bottom: 0.55rem; }
.beacon-bio { font-size: 1.125rem; line-height: 1.55; color: rgba(245, 243, 255, 0.86); max-width: 27rem; margin: 0 auto 2.1rem; }
.beacon-links { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2rem; }
.beacon-link {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    text-align: left;
    background-color: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    padding: 0.95rem 1.1rem;
    text-decoration: none;
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: transform 0.16s, background-color 0.16s, border-color 0.16s;
}
.beacon-link:hover { background-color: rgba(15, 23, 42, 0.7); border-color: rgba(251, 191, 36, 0.55); text-decoration: none; transform: translateY(-2px); }
.beacon-link:active { transform: translateY(0); }
.beacon-link:focus-visible { outline: 3px solid rgba(251, 191, 36, 0.55); outline-offset: 3px; }
.beacon-link-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(251, 191, 36, 0.14);
    color: #fcc84d;
}
.beacon-link-body { flex: 1 1 auto; min-width: 0; }
.beacon-link-label { display: block; font-weight: 700; font-size: 1rem; font-family: 'Rubik'; }
.beacon-link-sub { display: block; font-size: 0.875rem; color: rgba(245, 243, 255, 0.72); }
.beacon-link-arrow { flex-shrink: 0; color: rgba(245, 243, 255, 0.62); }
.beacon-social { display: flex; justify-content: center; gap: 0.7rem; }
.beacon-social-link {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.16s, transform 0.16s;
}
.beacon-social-link:hover { background-color: rgba(15, 23, 42, 0.7); border-color: rgba(251, 191, 36, 0.55); text-decoration: none; transform: translateY(-2px); }
.beacon-social-link:active { transform: translateY(0); }
.beacon-social-link:focus-visible { outline: 3px solid rgba(255, 255, 255, 0.5); outline-offset: 2px; }
/* Gentle staggered reveal on load. Template-unique keyframe name (CssScoper copies keyframe
   rules into the site sheet unscoped); fully disabled for reduced-motion visitors, who then
   see every element in its final, visible state. */
@keyframes beacon-rise {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: none; }
}
.beacon-avatar, .beacon-name, .beacon-bio, .beacon-links, .beacon-social {
    animation: beacon-rise 0.6s cubic-bezier(0.16, 0.68, 0.4, 1) both;
}
.beacon-name { animation-delay: 0.06s; font-family: 'Rubik'; }
.beacon-bio { animation-delay: 0.12s; }
.beacon-links { animation-delay: 0.18s; }
.beacon-social { animation-delay: 0.26s; }

.beacon-page { max-width: 620px; margin: 0 auto; padding: 3rem 1.5rem 4rem; }
.beacon-page-title { font-size: clamp(2.2rem, 6vw, 3.1rem); margin-bottom: 1rem; font-family: 'Rubik'; }
.beacon-page-intro { font-size: 1.125rem; line-height: 1.55; color: rgba(245, 243, 255, 0.94); margin-bottom: 2.2rem; }
.beacon-page-text { color: rgba(245, 243, 255, 0.82); margin-bottom: 1.15rem; }
.beacon-page-subhead { font-size: 1.5rem; margin: 2.6rem 0 0.7rem; }
.beacon-page-note {
    background-color: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    padding: 1.5rem 1.6rem;
    margin: 2rem 0;
}
.beacon-page-note-kicker { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fcc84d; margin-bottom: 0.4rem; }
.beacon-page-note-text { color: #ffffff; font-weight: 500; }
.beacon-page-cta { margin-top: 2.25rem; text-align: center; }

.gs-text-tkadwu { font-size: 56px !important; font-weight: 400 !important; font-style: normal !important; text-decoration: none !important; letter-spacing: -0.3px !important; color: #ffffff !important; text-transform: none !important; font-family: 'Rubik' !important; text-align: center !important; }

.gs-text-03x1wz.gs-text-03x1wz.gs-text-03x1wz { font-size: 16px !important; font-weight: 700 !important; font-style: normal !important; text-decoration: none !important; letter-spacing: 0px !important; color: #ffffff !important; text-transform: none !important; font-family: 'Rubik' !important; text-align: left !important; transition: color .15s ease; }
.gs-text-03x1wz.gs-text-03x1wz.gs-text-03x1wz:hover, .gs-text-03x1wz.gs-text-03x1wz.gs-text-03x1wz:focus-visible { --gen-hover: v1; color: #dfdfdf !important; }

.gs-text-4ol9g2 { font-size: 50px !important; font-weight: 400 !important; font-style: normal !important; text-decoration: none !important; letter-spacing: -0.2px !important; color: #ffffff !important; text-transform: none !important; font-family: 'Rubik' !important; text-align: left !important; }

.gs-text-6w5csr { font-size: 24px !important; font-weight: 400 !important; font-style: normal !important; text-decoration: none !important; letter-spacing: -0.1px !important; color: #ffffff !important; text-transform: none !important; font-family: 'Rubik' !important; text-align: left !important; }

@media (prefers-reduced-motion: reduce) {
    .beacon-avatar, .beacon-name, .beacon-bio, .beacon-links, .beacon-social { animation: none; }
}

@media (max-width: 640px) {
    .beacon-hub { padding: 1.75rem 1.15rem 3rem; }
}
.beacon-header { background: transparent; }
.beacon-header-inner {
    max-width: 520px;
    margin: 0 auto;
    padding: 1.4rem 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.beacon-footer { background: transparent; }
.beacon-footer-inner {
    max-width: 520px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 2.25rem;
    text-align: center;
}
.beacon-footer-text { font-size: 0.875rem; color: rgba(245, 243, 255, 0.78); }
.beacon-footer-link { color: #ffffff; text-decoration: none; font-weight: 600; }
.beacon-footer-link:focus-visible { outline: 3px solid rgba(251, 191, 36, 0.55); outline-offset: 3px; border-radius: 4px; }
.beacon-footer-link:hover { color: #fcc84d; text-decoration: none; }