@charset "UTF-8";

:root {
    --bg: #032923;
    --header: #041923;
    --surface: rgba(19, 60, 54, .82);
    --surface-strong: #123d37;
    --input: #092534;
    --line: rgba(181, 160, 105, .22);
    --line-green: rgba(93, 164, 141, .2);
    --gold: #c7a65e;
    --gold-light: #dfc59a;
    --mint: #9de5c8;
    --text: #eef8f3;
    --muted: #8aa69e;
    --danger: #d76767;
    --success: #52c893;
    --shadow: 0 22px 60px rgba(0, 13, 16, .28);
    --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background-color: var(--bg);
    background-image:
        linear-gradient(rgba(68, 143, 118, .075) 1px, transparent 1px),
        linear-gradient(90deg, rgba(68, 143, 118, .075) 1px, transparent 1px),
        radial-gradient(circle at 50% 0%, rgba(24, 105, 85, .23), transparent 42%);
    background-size: 160px 160px, 160px 160px, auto;
    font-family: Inter, Arial, Helvetica, sans-serif;
    line-height: 1.5;
    transition: opacity .2s ease;
}
body.is-leaving { opacity: .45; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.site-header {
    height: 62px;
    background: rgba(3, 22, 31, .97);
    border-bottom: 1px solid rgba(91, 142, 128, .08);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(12px);
}
.header-inner {
    width: min(100% - 44px, 1840px);
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 34px; height: 34px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font: 700 17px/1.1 Georgia, serif; letter-spacing: .02em; color: #c8eee0; }
.brand-copy small { margin-top: 4px; font-size: 7px; letter-spacing: .22em; color: #9d8958; font-weight: 800; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.panel-link {
    display: flex; align-items: center; gap: 6px; padding: 6px 10px; border: 1px solid rgba(199, 166, 94, .42);
    border-radius: 7px; text-decoration: none; color: #d4dcd9; font-size: 11px;
}
.panel-link svg { width: 13px; height: 13px; color: var(--gold); }
.language-switch { display: flex; padding: 2px; background: #071a2b; border-radius: 8px; }
.language-switch a { min-width: 31px; padding: 4px 8px; border-radius: 7px; text-align: center; text-decoration: none; font-size: 11px; font-weight: 800; color: #7e8b9d; }
.language-switch a.active { color: #e8fff5; background: #0a574d; box-shadow: 0 0 20px rgba(46, 181, 145, .18); }

.page-shell { min-height: calc(100vh - 122px); }
.hero-section { padding: 14px 20px 92px; text-align: center; }
.language-badge {
    display: inline-block; margin-top: 0; padding: 4px 22px; border: 1px solid rgba(199, 166, 94, .35);
    border-radius: 999px; color: var(--gold-light); font-size: 9px; letter-spacing: .12em; font-weight: 800;
    background: rgba(5, 34, 35, .55);
}
.hero-section h1 {
    margin: 18px 0 25px; font: 800 clamp(37px, 4vw, 61px)/1 Georgia, 'Times New Roman', serif;
    letter-spacing: .01em; color: #e8f5ef; text-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.quote-card {
    width: min(100%, 540px); min-height: 196px; margin: auto; padding: 25px 28px;
    border: 1px solid rgba(113, 166, 148, .28); border-radius: 18px;
    background: linear-gradient(145deg, rgba(36, 79, 71, .78), rgba(17, 55, 50, .74));
    box-shadow: inset 0 -5px 0 rgba(91, 134, 120, .11), var(--shadow); position: relative;
}
.quote-card::before, .quote-card::after { content: ''; position: absolute; width: 20px; height: 20px; border-color: rgba(199,166,94,.35); }
.quote-card::before { left: 12px; top: 12px; border-left: 1px solid; border-top: 1px solid; }
.quote-card::after { right: 12px; bottom: 12px; border-right: 1px solid; border-bottom: 1px solid; }
.ornament { color: rgba(199,166,94,.55); font-size: 10px; letter-spacing: .18em; }
.ornament.small { margin-top: 17px; }
.quote-label { margin: 17px 0 14px; color: #c5a660; font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.quote-card blockquote { margin: 0; font: italic 700 15px/1.5 Georgia, serif; color: #d8eee6; }
.quote-card cite { display: block; margin-top: 13px; color: #c7a65e; font-size: 10px; font-style: normal; font-weight: 700; }

.categories-section { width: min(100% - 40px, 976px); margin: 0 auto; padding-bottom: 70px; }
.section-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding-bottom: 16px; border-bottom: 1px solid rgba(69, 131, 113, .12); }
.section-heading-row h2 { margin: 0; color: #78e0bc; font: 700 20px/1.2 Georgia, serif; }
.section-heading-row p { margin: 4px 0 0; color: #9c8654; font-size: 10px; }
.category-search { width: 260px; height: 30px; display: flex; align-items: center; gap: 8px; padding: 0 12px; background: #071f31; border: 1px solid rgba(0,0,0,.6); border-radius: 9px; }
.category-search svg { width: 15px; color: #6f8190; }
.category-search input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: #dce9e5; font-size: 10px; }
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 25px; }
.category-card {
    min-height: 116px; display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto 1fr; gap: 12px;
    padding: 17px; border: 1px solid rgba(91, 154, 135, .23); border-radius: 13px;
    background: rgba(25, 65, 59, .76); text-decoration: none; box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: transform .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.category-card:hover, .category-card:focus-visible { transform: translateY(-3px); border-color: rgba(199, 166, 94, .65); background: rgba(31, 76, 67, .9); box-shadow: 0 18px 38px rgba(0,0,0,.18); outline: 0; }
.category-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; background: rgba(3, 35, 35, .75); color: var(--gold); }
.category-icon svg { width: 18px; height: 18px; }
.icon-spark, .icon-coins, .icon-scales { color: #ffd000; }
.icon-pin { color: #00a7ef; }
.icon-users { color: #8788ff; }
.icon-briefcase { color: #00e182; }
.category-card strong { grid-column: 1 / -1; align-self: end; font: 700 13px/1.45 Georgia, serif; color: #eef4f1; }
.category-arrow { grid-column: 2; grid-row: 1; opacity: 0; transform: translateX(-5px); color: var(--gold); transition: .2s ease; }
.category-arrow svg { width: 18px; }
.category-card:hover .category-arrow { opacity: 1; transform: none; }
.no-results { text-align: center; color: var(--muted); padding: 40px; }

.form-page { width: min(100% - 32px, 540px); margin: 0 auto; padding: 0 0 54px; }
.question-form-card { padding: 25px 26px; background: rgba(24, 68, 61, .9); border: 1px solid rgba(94, 151, 134, .25); border-radius: 18px; box-shadow: var(--shadow); }
.form-card-heading { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 15px; border-bottom: 1px solid rgba(0,0,0,.18); }
.back-link { color: #c5a660; text-decoration: none; font-size: 11px; }
.form-card-heading h1 { margin: 9px 0 1px; font: 700 24px Georgia, serif; color: #91e2c5; }
.form-card-heading p { margin: 0; color: #829a91; font-size: 10px; }
.form-category-icon { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid rgba(199,166,94,.38); border-radius: 10px; color: var(--gold); background: #082d2d; }
.form-category-icon svg { width: 19px; }
.warning-box { display: flex; align-items: flex-start; gap: 12px; margin: 19px 0; padding: 13px; border: 1px solid rgba(196,141,25,.56); border-radius: 10px; background: rgba(82, 59, 9, .38); color: #f1d57d; }
.warning-box svg { flex: 0 0 18px; width: 18px; margin-top: 1px; }
.warning-box p { margin: 0; font-size: 10px; line-height: 1.45; }
.field-block { margin-top: 16px; }
.field-label, .field > span, .field legend { display: block; margin-bottom: 6px; color: #c2a566; font-size: 10px; font-weight: 700; }
.field b { color: #ee7468; }
.field small, .field legend small { color: #758d85; font-size: 8px; font-weight: 500; }
.selected-category { min-height: 32px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 7px 12px; border: 1px solid rgba(0,0,0,.55); border-radius: 9px; background: var(--input); font-size: 10px; }
.selected-category a { color: #c9ad69; text-transform: uppercase; font-size: 8px; }
.anonymous-switch { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin: 16px 0; padding: 12px; border: 1px solid rgba(0,0,0,.3); border-radius: 11px; background: rgba(6,39,49,.55); cursor: pointer; }
.anonymous-switch strong { display: block; color: #d7e6e0; font-size: 11px; }
.anonymous-switch small { display: block; margin-top: 3px; color: #667f78; font-size: 8px; }
.anonymous-switch input { position: absolute; opacity: 0; pointer-events: none; }
.toggle { width: 35px; height: 20px; flex: 0 0 auto; border-radius: 99px; background: #667e81; position: relative; transition: .2s ease; }
.toggle::after { content: ''; position: absolute; width: 16px; height: 16px; left: 2px; top: 2px; border-radius: 50%; background: #c5d3d1; transition: .2s ease; }
.anonymous-switch input:checked + .toggle { background: #1b8a72; }
.anonymous-switch input:checked + .toggle::after { transform: translateX(15px); }
.anonymous-switch.disabled { opacity: .8; cursor: not-allowed; }
.form-grid { display: grid; gap: 12px; }
.two-columns { grid-template-columns: 1fr 1fr; }
.field { min-width: 0; margin: 0 0 13px; }
.field input, .field textarea { width: 100%; color: #e3efeb; background: var(--input); border: 1px solid rgba(0,0,0,.55); border-radius: 9px; outline: 0; transition: border-color .2s, box-shadow .2s; }
.field input { height: 34px; padding: 0 11px; }
.field textarea { min-height: 108px; padding: 12px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: rgba(199,166,94,.75); box-shadow: 0 0 0 3px rgba(199,166,94,.08); }
.input-with-icon { display: flex; position: relative; }
.input-with-icon svg { position: absolute; z-index: 1; left: 11px; top: 9px; width: 15px; height: 15px; color: #536d72; }
.input-with-icon input { padding-left: 34px; }
.segmented-field { border: 0; padding: 0; }
.segmented { display: grid; grid-template-columns: 1fr 1fr; height: 34px; padding: 2px; background: var(--input); border: 1px solid rgba(0,0,0,.55); border-radius: 9px; }
.segmented input { position: absolute; opacity: 0; }
.segmented span { display: grid; height: 28px; place-items: center; border-radius: 7px; color: #a9b7b7; font-size: 10px; cursor: pointer; }
.segmented input:checked + span { color: #072b27; background: var(--gold-light); font-weight: 800; }
.is-disabled { opacity: .45; }
.meeting-box { margin: 2px 0 14px; padding: 13px; border: 1px solid rgba(199,166,94,.45); border-radius: 10px; }
.meeting-box > strong { display: block; margin-bottom: 10px; color: #c9a75c; font-size: 10px; }
.meeting-option { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; padding: 10px 12px; border: 1px solid rgba(74, 99, 104, .6); border-radius: 8px; background: var(--input); cursor: pointer; }
.meeting-option > svg { width: 18px; color: var(--gold); }
.meeting-option span b { display: block; font-size: 10px; }
.meeting-option span small { color: #c6a866; font-size: 8px; }
.meeting-option em { padding: 4px 7px; border: 1px solid rgba(199,166,94,.3); border-radius: 5px; color: #c6aa6c; font-size: 7px; font-style: normal; font-weight: 800; }
.meeting-option input { position: absolute; opacity: 0; }
.question-field { position: relative; }
.counter { display: block; margin-top: 5px; text-align: right; color: #798e83 !important; }
.consent-field { display: flex; gap: 9px; align-items: flex-start; margin: 4px 0 0; color: #b7cac3; font-size: 9px; }
.consent-field input { margin: 2px 0 0; accent-color: var(--gold); }
.privacy-note { margin: 11px 0 0; color: #738b83; font-size: 8px; }
.form-actions { display: grid; grid-template-columns: 1fr 1.55fr; gap: 12px; margin-top: 18px; }
.button { min-height: 38px; display: grid; place-items: center; border: 0; border-radius: 9px; text-decoration: none; font-size: 10px; font-weight: 800; }
.button.secondary { color: #dce7e4; background: #092735; border: 1px solid rgba(0,0,0,.35); }
.button.primary { color: #183831; background: var(--gold-light); }
.button:disabled { opacity: .55; cursor: wait; }
.form-status { margin-top: 14px; padding: 11px 13px; border-radius: 9px; font-size: 10px; }
.form-status.success { color: #c8ffe7; background: rgba(31, 125, 91, .35); border: 1px solid rgba(82,200,147,.45); }
.form-status.error { color: #ffd3cf; background: rgba(137, 41, 41, .3); border: 1px solid rgba(215,103,103,.45); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { min-height: 62px; background: rgba(2, 24, 28, .74); border-top: 1px solid rgba(86, 133, 119, .08); }
.footer-inner { width: min(100% - 40px, 976px); min-height: 62px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: rgba(172,146,85,.62); font-size: 9px; }
.footer-inner p { margin: 0; }
.footer-inner small { display: block; margin-top: 3px; font: italic 7px Georgia, serif; }
.footer-inner a { display: flex; align-items: center; gap: 5px; color: rgba(172,146,85,.68); text-decoration: none; }
.footer-inner svg { width: 12px; }

@media (max-width: 850px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-section { padding-bottom: 60px; }
}
@media (max-width: 620px) {
    body { background-size: 80px 80px, 80px 80px, auto; }
    .header-inner { width: min(100% - 22px, 100%); }
    .brand-copy small { display: none; }
    .panel-link span { display: none; }
    .panel-link { padding: 7px; }
    .hero-section { padding: 18px 14px 52px; }
    .hero-section h1 { font-size: clamp(33px, 12vw, 48px); margin-top: 24px; }
    .quote-card { min-height: 180px; padding: 23px 20px; }
    .categories-section { width: min(100% - 24px, 100%); }
    .section-heading-row { align-items: stretch; flex-direction: column; gap: 15px; }
    .category-search { width: 100%; }
    .categories-grid { grid-template-columns: 1fr; }
    .category-card { min-height: 98px; }
    .form-page { width: min(100% - 18px, 540px); }
    .question-form-card { padding: 19px 15px; border-radius: 14px; }
    .two-columns { grid-template-columns: 1fr; gap: 0; }
    .form-actions { grid-template-columns: 1fr; }
    .footer-inner { width: min(100% - 24px, 100%); align-items: flex-start; flex-direction: column; padding: 18px 0; }
}
