:root {
  --navy: #061b4d;
  --navy-2: #0b3b9e;
  --blue: #0b49d6;
  --gold: #b36b00;
  --gold-2: #f0b643;
  --ink: #14213f;
  --muted: #5d6b87;
  --line: #dce4f0;
  --surface: #ffffff;
  --surface-2: #f5f8fd;
  --soft-gold: rgba(240, 182, 67, 0.15);
  --soft-blue: rgba(11, 73, 214, 0.1);
  --shadow: 0 30px 90px rgba(6, 27, 77, 0.12);
  --radius: 32px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 4%, rgba(240, 182, 67, .14), transparent 26rem),
    radial-gradient(circle at 86% 12%, rgba(11, 73, 214, .11), transparent 32rem),
    linear-gradient(180deg, #fff 0%, #f7f9fe 45%, #fff 100%);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 44px, 1180px); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; top: 12px; background: var(--navy); color: #fff; padding: 10px 14px; border-radius: 10px; z-index: 100; }
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220,228,240,.74);
}
.header-inner { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-horizontal { display: inline-flex; align-items: center; min-width: 0; line-height: 0; }
.brand-logo-full { width: 216px; height: auto; max-height: 64px; object-fit: contain; background: transparent; filter: drop-shadow(0 10px 16px rgba(6,27,77,.10)); }
.brand-mark { width: 54px; height: 54px; object-fit: contain; background: transparent; filter: drop-shadow(0 10px 16px rgba(6,27,77,.12)); }
.brand-word { font-family: Georgia, "Times New Roman", serif; color: var(--navy); font-size: 35px; font-weight: 800; letter-spacing: -.05em; line-height: 1; white-space: nowrap; }
.tm { font-size: .36em; vertical-align: super; margin-left: 2px; letter-spacing: 0; }
.nav-links { display: flex; align-items: center; gap: 24px; color: #2d3a57; font-size: 14px; font-weight: 800; }
.nav-links a { position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--blue)); transition: width .2s ease; }
.nav-links a:hover::after { width: 100%; }
.lang-switcher { display: inline-flex; align-items: center; gap: 4px; padding: 5px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.72); box-shadow: 0 10px 32px rgba(6,27,77,.05); }
.lang-switcher button { border: 0; border-radius: 13px; background: transparent; color: #1d2a47; padding: 10px 13px; font-size: 12px; font-weight: 900; cursor: pointer; }
.lang-switcher button.active { background: var(--navy-2); color: #fff; box-shadow: 0 10px 24px rgba(11,59,158,.26); }

.hero { padding: 76px 0 24px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 1000; margin-bottom: 18px; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); border-radius: 999px; }
h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(48px, 6vw, 84px); line-height: .96; letter-spacing: -.055em; color: var(--navy); margin: 0 0 24px; }
h1 em { color: var(--gold); font-style: italic; display: block; }
.hero-copy { font-size: 20px; line-height: 1.7; color: #35425f; max-width: 670px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 999px; padding: 14px 21px; font-weight: 1000; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn::after { content: "→"; font-weight: 1000; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--navy-2), #072876); box-shadow: 0 18px 42px rgba(11,59,158,.26); }
.btn-primary:hover { box-shadow: 0 22px 54px rgba(11,59,158,.32); }
.btn-ghost { color: var(--navy); background: rgba(255,255,255,.78); border: 1px solid var(--line); box-shadow: 0 16px 42px rgba(6,27,77,.06); }
.trust-line { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-line span { display: inline-flex; align-items: center; background: rgba(255,255,255,.88); border: 1px solid var(--line); border-radius: 999px; padding: 9px 12px; color: #30405e; font-size: 13px; font-weight: 900; }
.trust-line span::before { content: "✓"; color: var(--gold); margin-right: 7px; }

.hero-visual { position: relative; min-height: 540px; display: flex; align-items: center; justify-content: center; }
.community-card { position: relative; width: min(100%, 520px); height: 520px; border-radius: 48px; overflow: hidden; border: 1px solid rgba(220,228,240,.9); background:
  linear-gradient(145deg, rgba(255,255,255,.82), rgba(234,243,255,.9)),
  radial-gradient(circle at 70% 22%, rgba(240,182,67,.2), transparent 16rem);
  box-shadow: var(--shadow);
}
.community-card::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(circle at 72% 22%, rgba(255,255,255,.95), transparent 13rem),
  repeating-radial-gradient(circle at 58% 36%, rgba(11,73,214,.17) 0 1px, transparent 1px 70px);
}
.community-card::after { content: ""; position: absolute; inset: auto -20% -34% -20%; height: 56%; border-radius: 50% 50% 0 0; background: linear-gradient(135deg, rgba(6,27,77,.96), rgba(11,73,214,.88)); }
.visual-orbit { position: absolute; border: 1px solid rgba(11,73,214,.15); border-radius: 50%; transform: rotate(-16deg); }
.orbit-one { width: 460px; height: 220px; left: 28px; top: 96px; }
.orbit-two { width: 340px; height: 170px; right: 28px; top: 148px; border-color: rgba(179,107,0,.18); }
.floating-mark { position: absolute; width: 318px; left: 50%; top: 43%; transform: translate(-50%, -50%); background: transparent; filter: drop-shadow(0 24px 34px rgba(6,27,77,.24)); }
.mini-stat { position: absolute; background: rgba(255,255,255,.9); backdrop-filter: blur(10px); border: 1px solid rgba(220,228,240,.9); border-radius: 22px; padding: 16px 18px; box-shadow: 0 18px 40px rgba(6,27,77,.12); display: grid; gap: 2px; }
.mini-stat strong { color: var(--navy); font-size: 22px; }
.mini-stat span { color: var(--muted); font-size: 13px; font-weight: 800; }
.top-stat { top: 34px; left: 34px; }
.bottom-stat { right: 34px; bottom: 34px; z-index: 1; background: rgba(6,27,77,.46); border-color: rgba(255,255,255,.22); }
.bottom-stat strong { font-size: 38px; color: #fff; }
.bottom-stat span { color: #dce8ff; }

.notice { display: flex; gap: 16px; align-items: flex-start; background: rgba(255,255,255,.86); border: 1px solid rgba(179,107,0,.24); box-shadow: 0 18px 50px rgba(6,27,77,.06); border-radius: 24px; padding: 20px 22px; }
.notice-icon { flex: 0 0 34px; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--soft-gold); color: var(--gold); font-weight: 1000; }
.notice strong { color: var(--navy); display: block; margin-bottom: 6px; }
.notice p { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 0; }

.profiles-section, .register-section, .trust-section { padding: 72px 0; }
.center { text-align: center; }
.section-heading h2, .trust-section > h2 { font-family: Georgia, "Times New Roman", serif; color: var(--navy); font-size: clamp(34px, 4vw, 52px); line-height: 1.02; letter-spacing: -.035em; margin-bottom: 10px; }
.section-heading p { color: var(--muted); font-size: 18px; margin-bottom: 0; }
.profile-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.profile-card { background: rgba(255,255,255,.84); border: 1px solid var(--line); border-radius: 26px; padding: 28px; box-shadow: 0 18px 45px rgba(6,27,77,.06); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; cursor: pointer; min-height: 292px; display: flex; flex-direction: column; outline: none; }
.profile-card:focus-visible, .profile-card:hover, .profile-card.selected { transform: translateY(-4px); border-color: rgba(11,73,214,.38); box-shadow: 0 22px 60px rgba(6,27,77,.12); }
.profile-card.founder.selected, .profile-card.founder:hover, .profile-card.founder:focus-visible { border-color: rgba(179,107,0,.42); }
.profile-icon { width: 70px; height: 70px; border-radius: 22px; background: linear-gradient(135deg,#fff,#eef5ff); display: grid; place-items: center; font-size: 30px; margin-bottom: 20px; box-shadow: inset 0 0 0 1px var(--line); }
.profile-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: 25px; color: var(--navy); margin-bottom: 10px; }
.profile-card.founder h3 { color: var(--gold); }
.profile-card p { color: var(--muted); line-height: 1.68; margin-bottom: 22px; }
.card-action { margin-top: auto; align-self: flex-start; border: 0; border-radius: 999px; background: var(--navy-2); color: #fff; padding: 12px 17px; font-weight: 1000; cursor: pointer; }
.founder .card-action { background: linear-gradient(135deg, var(--gold), var(--gold-2)); }

.register-panel { display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px; background: rgba(255,255,255,.9); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; }
.register-intro { border-radius: 24px; background: linear-gradient(160deg, rgba(6,27,77,.98), rgba(11,47,125,.94)); color: #fff; padding: 34px; position: relative; overflow: hidden; }
.register-intro::after { content: ""; position: absolute; right: -90px; bottom: -90px; width: 260px; height: 260px; border-radius: 50%; background: rgba(240,182,67,.14); }
.register-intro h2 { font-family: Georgia, "Times New Roman", serif; font-size: 42px; line-height: 1.02; letter-spacing: -.035em; margin-bottom: 16px; }
.register-intro p { color: #dce8ff; line-height: 1.7; }
.benefits { position: relative; list-style: none; padding: 0; margin: 34px 0 0; display: grid; gap: 16px; }
.benefits li { display: flex; gap: 12px; align-items: center; font-weight: 900; color: #fff; }
.benefits li span:first-child { width: 38px; height: 38px; display: grid; place-items: center; background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.18); border-radius: 14px; }
.interest-form { display: grid; gap: 20px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.role-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 18px; padding: 6px; }
.role-tab { display: flex; align-items: center; justify-content: center; gap: 7px; border-radius: 13px; padding: 12px 8px; color: #32415f; font-weight: 1000; cursor: pointer; }
.role-tab input { position: absolute; opacity: 0; }
.role-tab.active { background: #fff; color: var(--navy); box-shadow: 0 10px 24px rgba(6,27,77,.08); }
.form-grid { display: grid; gap: 16px; }
.form-grid.two { grid-template-columns: repeat(2, 1fr); }
label { display: grid; gap: 8px; }
label span:first-child, .role-section h3 { font-size: 13px; color: #243154; font-weight: 1000; }
.role-section h3 { font-family: Georgia, "Times New Roman", serif; font-size: 22px; color: var(--navy); margin: 8px 0 0; }
input, select, textarea { width: 100%; border: 1px solid #d5ddea; border-radius: 14px; background: #fff; color: var(--ink); padding: 13px 14px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
textarea { resize: vertical; min-height: 96px; }
input:focus, select:focus, textarea:focus { border-color: rgba(11,73,214,.56); box-shadow: 0 0 0 4px rgba(11,73,214,.10); }
.hidden { display: none !important; }
.checkbox-line { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: flex-start; color: #465573; font-size: 14px; line-height: 1.55; }
.checkbox-line input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--navy-2); }
.checkbox-line a { color: var(--blue); font-weight: 1000; text-decoration: underline; text-underline-offset: 3px; }
.legal-confirm { background: rgba(179,107,0,.08); border: 1px solid rgba(179,107,0,.2); padding: 12px; border-radius: 16px; }
.turnstile-wrap { min-height: 66px; }
.form-actions { display: flex; align-items: center; gap: 14px; justify-content: space-between; flex-wrap: wrap; }
.form-status { margin: 0; color: var(--muted); font-weight: 900; }
.form-status.success { color: #0d7a45; }
.form-status.error { color: #b42318; }
.submit-btn { min-width: 220px; }
button:disabled { opacity: .68; cursor: wait; }

.trust-section { padding-top: 22px; }
.trust-section > h2 { text-align: center; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 26px; }
.trust-grid article { background: rgba(255,255,255,.88); border: 1px solid var(--line); border-radius: 22px; padding: 22px; }
.trust-grid span { font-size: 28px; }
.trust-grid h3 { color: var(--navy); font-size: 16px; margin: 14px 0 6px; }
.trust-grid p { color: var(--muted); line-height: 1.55; font-size: 14px; margin: 0; }

.site-footer { background: linear-gradient(135deg,#051333,#082a6d); color: #fff; margin-top: 40px; padding: 52px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.05fr .55fr 1.4fr; gap: 52px; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; line-height: 0; }
.footer-brand img { width: 54px; height: 54px; object-fit: contain; background: transparent; }
.footer-logo-full { width: 190px !important; height: auto !important; max-height: 60px; object-fit: contain; background: transparent; }
.footer-brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 28px; }
.site-footer p, .site-footer a { color: #cbd9f2; font-size: 14px; line-height: 1.7; }
.site-footer a { display: block; margin: 8px 0; }
.site-footer h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .13em; color: #fff; }
.legal-small { max-width: 680px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; border-top: 1px solid rgba(255,255,255,.14); margin-top: 34px; padding-top: 20px; color: #aebfe2; font-size: 13px; }
.admin-link { color: #cbd9f2; opacity: .8; }

.legal-page { padding: 72px 0; min-height: 72vh; }
.legal-card, .admin-card { background: rgba(255,255,255,.9); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 42px; }
.legal-card h1, .admin-card h1 { font-family: Georgia, "Times New Roman", serif; color: var(--navy); font-size: clamp(40px, 5vw, 60px); line-height: .98; letter-spacing: -.05em; margin-bottom: 10px; }
.updated { color: var(--gold); font-weight: 900; }
.legal-intro { font-size: 18px; color: #35425f; line-height: 1.75; }
.legal-card h2 { color: var(--navy); margin-top: 30px; font-size: 24px; }
.legal-card p { color: #43516d; line-height: 1.75; }
.admin-page { padding: 72px 0; min-height: 70vh; }
.admin-form { display: grid; gap: 18px; max-width: 600px; margin-top: 24px; }
.admin-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.admin-card p { color: #43516d; line-height: 1.75; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .header-inner { height: 78px; }
  .brand-logo-full { width: 188px; max-height: 58px; }
  .brand-mark { width: 48px; height: 48px; }
  .brand-word { font-size: 30px; }
  .hero-grid, .register-panel, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .hero-visual { min-height: 430px; }
  .community-card { height: 430px; }
  .profile-cards, .trust-grid { grid-template-columns: 1fr 1fr; }
  .form-grid.two { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand-logo-full { width: 150px; max-height: 50px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-word { font-size: 25px; }
  .lang-switcher button { padding: 8px 9px; }
  .hero { padding-top: 34px; }
  .hero-grid { gap: 22px; }
  h1 { font-size: 45px; }
  .hero-copy { font-size: 17px; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .hero-visual { min-height: 330px; }
  .community-card { height: 330px; border-radius: 30px; }
  .floating-mark { width: 220px; }
  .floating-logo-full { width: min(300px, 82%); }
  .mini-stat { display: none; }
  .notice { border-radius: 18px; }
  .profile-cards, .trust-grid { grid-template-columns: 1fr; }
  .register-panel { padding: 16px; border-radius: 22px; }
  .register-intro { padding: 24px; }
  .register-intro h2 { font-size: 34px; }
  .role-tabs { grid-template-columns: 1fr; }
  .form-actions { display: grid; }
  .submit-btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .legal-card, .admin-card { padding: 24px; }
}

.floating-logo-full { position:absolute; width:min(430px,78%); height:auto; left:50%; top:51%; transform:translate(-50%,-50%); filter:drop-shadow(0 28px 32px rgba(6,27,77,.18)); z-index:1; object-fit:contain; background:transparent; }


/* Final logo-complete overrides */
.community-card::before,
.community-card::after { z-index: 0; }
.visual-orbit { z-index: 1; }
.floating-logo-full {
  position: absolute;
  width: min(430px, 78%);
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 28px 32px rgba(6,27,77,.18));
  z-index: 2;
  object-fit: contain;
  background: transparent;
}
.mini-stat { z-index: 3; }
@media (max-width: 640px) {
  .floating-logo-full { width: min(288px, 82%); top: 50%; }
}
@media (max-width: 420px) {
  .brand-logo-full { width: 132px; max-height: 46px; }
  .lang-switcher button { padding: 7px 7px; }
}

/* Clean hero/logo final fix — keeps full logo visible and removes confusing visual background */
.community-card {
  background: linear-gradient(160deg, #ffffff 0%, #f7faff 58%, #fff9ee 100%) !important;
}
.community-card::before {
  background:
    radial-gradient(circle at 62% 26%, rgba(255,255,255,.96), transparent 14rem),
    repeating-radial-gradient(circle at 58% 36%, rgba(11,73,214,.08) 0 1px, transparent 1px 82px) !important;
  opacity: .55 !important;
}
.community-card::after {
  height: 39% !important;
  inset: auto -18% -22% -18% !important;
  background: linear-gradient(135deg, rgba(6,27,77,.96), rgba(11,73,214,.84)) !important;
}
.visual-orbit { opacity: .38 !important; }
.floating-logo-full {
  width: min(330px, 62%) !important;
  max-height: 255px !important;
  left: 50% !important;
  top: 45% !important;
  transform: translate(-50%, -50%) !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  filter: drop-shadow(0 20px 28px rgba(6,27,77,.16)) !important;
  z-index: 2 !important;
}
.bottom-stat {
  right: 30px !important;
  bottom: 30px !important;
  max-width: 210px !important;
}
.bottom-stat strong { font-size: 34px !important; }
.bottom-stat span { font-size: 13px !important; line-height: 1.25 !important; }
.top-stat { top: 30px !important; left: 30px !important; }
@media (max-width: 980px) {
  .floating-logo-full { width: min(290px, 64%) !important; max-height: 225px !important; top: 44% !important; }
}
@media (max-width: 640px) {
  .floating-logo-full { width: min(220px, 62%) !important; max-height: 170px !important; top: 43% !important; }
  .community-card::after { height: 36% !important; }
}

/* Final direct-upload fix: cleaner hero, no cropped logo, no confusing background */
.hero { overflow: visible !important; }
.hero-visual { min-height: 480px !important; }
.community-card {
  width: min(100%, 500px) !important;
  height: 455px !important;
  overflow: hidden !important;
  background: linear-gradient(160deg, #ffffff 0%, #f8fbff 64%, #fff8eb 100%) !important;
}
.community-card::before {
  background: radial-gradient(circle at 60% 30%, rgba(255,255,255,.96), transparent 15rem),
              repeating-radial-gradient(circle at 56% 40%, rgba(11,73,214,.06) 0 1px, transparent 1px 88px) !important;
  opacity: .48 !important;
}
.community-card::after {
  height: 26% !important;
  inset: auto -12% -18% -12% !important;
  background: linear-gradient(135deg, rgba(6,27,77,.96), rgba(11,73,214,.84)) !important;
}
.hero-logo-horizontal,
.floating-logo-full.hero-logo-horizontal {
  width: min(360px, 74%) !important;
  max-width: 360px !important;
  max-height: 96px !important;
  left: 50% !important;
  top: 48% !important;
  transform: translate(-50%, -50%) !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  filter: drop-shadow(0 18px 24px rgba(6,27,77,.16)) !important;
  z-index: 2 !important;
}
.top-stat { top: 28px !important; left: 28px !important; }
.bottom-stat {
  right: 28px !important;
  bottom: 24px !important;
  max-width: 210px !important;
  z-index: 3 !important;
}
.bottom-stat span { text-transform: none !important; }
.footer-logo-full { filter: drop-shadow(0 10px 18px rgba(0,0,0,.18)); }
@media (max-width: 980px) {
  .hero-visual { min-height: 420px !important; }
  .community-card { height: 410px !important; }
  .hero-logo-horizontal,
  .floating-logo-full.hero-logo-horizontal { width: min(320px, 74%) !important; max-height: 86px !important; }
}
@media (max-width: 640px) {
  .hero-visual { min-height: 330px !important; }
  .community-card { height: 320px !important; border-radius: 34px !important; }
  .hero-logo-horizontal,
  .floating-logo-full.hero-logo-horizontal { width: min(250px, 72%) !important; max-height: 70px !important; top: 46% !important; }
  .top-stat { top: 18px !important; left: 18px !important; padding: 12px 14px !important; }
  .bottom-stat { right: 18px !important; bottom: 18px !important; padding: 12px 14px !important; }
  .bottom-stat strong { font-size: 28px !important; }
  .bottom-stat span { font-size: 12px !important; }
}

/* 10/10 final footer + hero logo verification fix */
.hero-logo-complete,
.floating-logo-full.hero-logo-complete {
  width: min(335px, 62%) !important;
  max-width: 335px !important;
  max-height: 260px !important;
  left: 50% !important;
  top: 44% !important;
  transform: translate(-50%, -50%) !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: transparent !important;
  filter: drop-shadow(0 22px 28px rgba(6,27,77,.18)) !important;
  z-index: 2 !important;
}

.hero-logo-horizontal { display: none !important; }

.community-card {
  background: linear-gradient(160deg, #ffffff 0%, #f8fbff 66%, #fff8eb 100%) !important;
}
.community-card::before {
  opacity: .36 !important;
}
.community-card::after {
  height: 22% !important;
  inset: auto -10% -15% -10% !important;
}
.bottom-stat {
  z-index: 4 !important;
  backdrop-filter: blur(18px) !important;
}

.site-footer {
  background:
    radial-gradient(circle at 15% 10%, rgba(240,182,67,.16), transparent 24rem),
    linear-gradient(135deg,#04102d 0%, #061b4d 55%, #082a6d 100%) !important;
}
.footer-brand-lockup {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 16px !important;
  line-height: 1 !important;
  max-width: 100% !important;
}
.footer-mark {
  width: 52px !important;
  height: 52px !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
  background: transparent !important;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.28)) !important;
}
.footer-wordmark {
  font-family: Georgia, "Times New Roman", serif !important;
  font-weight: 800 !important;
  font-size: 34px !important;
  letter-spacing: -.055em !important;
  color: #ffffff !important;
  text-shadow: 0 2px 14px rgba(0,0,0,.25) !important;
  white-space: nowrap !important;
}
.footer-wordmark .tm {
  color: #f0b643 !important;
  font-size: .36em !important;
  vertical-align: super !important;
  margin-left: 3px !important;
}
.footer-logo-full { display: none !important; }

@media (max-width: 980px) {
  .hero-logo-complete,
  .floating-logo-full.hero-logo-complete {
    width: min(300px, 64%) !important;
    max-height: 235px !important;
    top: 43% !important;
  }
}
@media (max-width: 640px) {
  .hero-logo-complete,
  .floating-logo-full.hero-logo-complete {
    width: min(228px, 62%) !important;
    max-height: 178px !important;
    top: 42% !important;
  }
  .footer-wordmark { font-size: 30px !important; }
  .footer-mark { width: 46px !important; height: 46px !important; }
}


/* Unified footer fix — footer-unified-20260610-v3
   Keeps the exact same footer on homepage, privacy, terms and admin pages.
   Prevents the logo/text from being hidden or cut on laptop and mobile screens. */
html, body { min-height: 100%; }
body { min-height: 100dvh; display: flex; flex-direction: column; }
main { flex: 1 0 auto; }
.site-footer {
  flex-shrink: 0;
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(240,182,67,.14), transparent 22rem),
    linear-gradient(135deg,#04102d 0%, #061b4d 55%, #082a6d 100%) !important;
  color: #fff;
  margin-top: 56px !important;
  padding: 44px 0 24px !important;
}
.site-footer .container {
  width: min(1180px, calc(100% - 48px)) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.footer-grid,
.footer-grid-unified {
  display: grid !important;
  grid-template-columns: minmax(250px, 1fr) minmax(150px, .55fr) minmax(360px, 1.35fr) !important;
  gap: clamp(28px, 4vw, 56px) !important;
  align-items: start !important;
}
.footer-grid > *, .footer-grid-unified > * { min-width: 0 !important; }
.footer-about p { max-width: 360px !important; }
.footer-brand-lockup {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 16px !important;
  line-height: 1 !important;
  max-width: 100% !important;
  white-space: nowrap !important;
}
.footer-mark {
  display: block !important;
  width: 46px !important;
  height: 46px !important;
  object-fit: contain !important;
  flex: 0 0 46px !important;
  background: transparent !important;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.28)) !important;
}
.footer-wordmark {
  display: inline-block !important;
  max-width: calc(100vw - 120px) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-weight: 800 !important;
  font-size: clamp(30px, 3vw, 38px) !important;
  letter-spacing: -.055em !important;
  color: #ffffff !important;
  text-shadow: 0 2px 14px rgba(0,0,0,.25) !important;
  white-space: nowrap !important;
  overflow: visible !important;
}
.footer-wordmark .tm {
  color: #f0b643 !important;
  font-size: .34em !important;
  vertical-align: super !important;
  margin-left: 3px !important;
}
.footer-logo-full { display: none !important; }
.footer-nav a, .site-footer a { color: #d8e4f8 !important; text-decoration: none; }
.footer-nav a:hover, .site-footer a:hover { color: #ffffff !important; }
.site-footer p, .site-footer a { font-size: 14px !important; line-height: 1.75 !important; }
.site-footer h3 {
  font-size: 14px !important;
  line-height: 1.25 !important;
  text-transform: uppercase !important;
  letter-spacing: .14em !important;
  color: #fff !important;
  margin: 4px 0 14px !important;
}
.footer-notice .legal-small { max-width: 620px !important; color: #f2f6ff !important; }
.footer-bottom {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 16px !important;
  border-top: 1px solid rgba(255,255,255,.15) !important;
  margin-top: 32px !important;
  padding-top: 18px !important;
  color: #b9c9e8 !important;
  font-size: 13px !important;
}
.footer-bottom .admin-link { margin: 0 !important; flex: 0 0 auto !important; }
@media (max-width: 900px) {
  .site-footer { padding: 38px 0 24px !important; }
  .footer-grid,
  .footer-grid-unified { grid-template-columns: 1fr !important; gap: 26px !important; }
  .footer-notice .legal-small { max-width: 100% !important; }
}
@media (max-width: 560px) {
  .site-footer .container { width: min(100% - 32px, 1180px) !important; }
  .footer-brand-lockup { gap: 10px !important; }
  .footer-mark { width: 40px !important; height: 40px !important; flex-basis: 40px !important; }
  .footer-wordmark { font-size: 29px !important; max-width: calc(100vw - 92px) !important; }
  .footer-bottom { flex-direction: column !important; align-items: flex-start !important; }
}

/* Footer final precision fix — footer-no-cut-20260610-v4
   The footer brand is text-based so it stays sharp, visible on navy, and never gets cropped.
   The footer now stacks earlier on narrower/zoomed laptop screens. */
.site-footer {
  overflow-x: clip !important;
  overflow-y: visible !important;
  padding: 48px 0 26px !important;
}
.site-footer .container {
  width: min(1180px, calc(100% - 56px)) !important;
}
.footer-grid,
.footer-grid-unified {
  grid-template-columns: minmax(285px, .95fr) minmax(150px, .55fr) minmax(420px, 1.5fr) !important;
  gap: clamp(28px, 4vw, 64px) !important;
}
.footer-about,
.footer-nav,
.footer-notice { overflow: visible !important; }
.footer-brand-lockup {
  width: fit-content !important;
  max-width: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 11px !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
  overflow: visible !important;
}
.footer-mark {
  width: 42px !important;
  height: 42px !important;
  flex: 0 0 42px !important;
}
.footer-wordmark {
  font-size: clamp(26px, 2.25vw, 32px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.045em !important;
  max-width: none !important;
  min-width: 0 !important;
  overflow: visible !important;
  white-space: nowrap !important;
}
.footer-wordmark .tm { font-size: .34em !important; margin-left: 3px !important; }
.footer-about p {
  max-width: 390px !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}
.footer-bottom {
  width: min(1180px, calc(100% - 56px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media (max-width: 1240px) {
  .footer-grid,
  .footer-grid-unified {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .footer-about p { max-width: 560px !important; }
  .footer-notice .legal-small { max-width: 780px !important; }
}
@media (max-width: 560px) {
  .site-footer .container,
  .footer-bottom { width: min(100% - 32px, 1180px) !important; }
  .footer-brand-lockup { gap: 9px !important; }
  .footer-mark { width: 36px !important; height: 36px !important; flex-basis: 36px !important; }
  .footer-wordmark { font-size: 26px !important; letter-spacing: -.04em !important; }
  .footer-about p { max-width: 100% !important; }
}


/* Footer compact no-crop fix — footer-compact-20260610-v5
   Small, safe brand lockup. Prevents the footer logo/wordmark and tagline from being cropped at browser zoom, laptop widths and mobile. */
.site-footer {
  overflow-x: hidden !important;
  overflow-y: visible !important;
  padding: 46px 0 28px !important;
}
.site-footer .container {
  width: min(1180px, calc(100% - 64px)) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.footer-grid,
.footer-grid-unified {
  display: grid !important;
  grid-template-columns: minmax(220px, .75fr) minmax(130px, .42fr) minmax(320px, 1.35fr) !important;
  gap: clamp(24px, 4vw, 58px) !important;
  align-items: start !important;
}
.footer-grid > *,
.footer-grid-unified > *,
.footer-about,
.footer-nav,
.footer-notice {
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: visible !important;
}
.footer-brand,
.footer-brand-lockup {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: auto !important;
  max-width: 240px !important;
  min-width: 0 !important;
  margin-bottom: 14px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  overflow: visible !important;
  flex-wrap: nowrap !important;
}
.footer-mark {
  display: block !important;
  width: 31px !important;
  height: 31px !important;
  flex: 0 0 31px !important;
  object-fit: contain !important;
}
.footer-wordmark {
  display: inline-block !important;
  color: #ffffff !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-weight: 800 !important;
  font-size: 24px !important;
  line-height: 1 !important;
  letter-spacing: -.035em !important;
  max-width: 176px !important;
  min-width: 0 !important;
  white-space: nowrap !important;
  overflow: visible !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.22) !important;
}
.footer-wordmark .tm {
  color: #f0b643 !important;
  font-size: .32em !important;
  vertical-align: super !important;
  margin-left: 2px !important;
  position: relative !important;
  top: -.08em !important;
}
.footer-about p {
  max-width: 315px !important;
  width: 100% !important;
  white-space: normal !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
}
.footer-notice .legal-small {
  max-width: 620px !important;
  white-space: normal !important;
  overflow-wrap: break-word !important;
}
.footer-bottom {
  width: min(1180px, calc(100% - 64px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media (max-width: 1180px) {
  .footer-grid,
  .footer-grid-unified {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }
  .footer-about p,
  .footer-notice .legal-small {
    max-width: 760px !important;
  }
}
@media (max-width: 560px) {
  .site-footer { padding: 36px 0 24px !important; }
  .site-footer .container,
  .footer-bottom { width: min(100% - 32px, 1180px) !important; }
  .footer-brand,
  .footer-brand-lockup { max-width: calc(100vw - 32px) !important; gap: 7px !important; }
  .footer-mark { width: 28px !important; height: 28px !important; flex-basis: 28px !important; }
  .footer-wordmark { font-size: 22px !important; max-width: calc(100vw - 74px) !important; }
  .footer-bottom { flex-direction: column !important; align-items: flex-start !important; }
}

/* Mobile footer final polish — mobile-footer-final-20260610-v6
   Keeps the footer visible, compact and consistent on mobile, and removes the white gap below the footer. */
html {
  background: #061b4d !important;
  min-height: 100% !important;
}
body {
  background: #061b4d !important;
  min-height: 100dvh !important;
  display: flex !important;
  flex-direction: column !important;
}
.site-header,
main {
  background:
    radial-gradient(circle at 14% 4%, rgba(240, 182, 67, .14), transparent 26rem),
    radial-gradient(circle at 86% 12%, rgba(11, 73, 214, .11), transparent 32rem),
    linear-gradient(180deg, #fff 0%, #f7f9fe 45%, #fff 100%) !important;
}
.site-header { background: rgba(255,255,255,.86) !important; }
main { flex: 1 0 auto !important; }
.site-footer {
  flex-shrink: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: max(28px, env(safe-area-inset-bottom)) !important;
  background: linear-gradient(135deg,#051333 0%, #061f55 55%, #082a6d 100%) !important;
  border-bottom: 0 !important;
}
.footer-brand-lockup,
.footer-brand {
  max-width: 100% !important;
  overflow: visible !important;
}
.footer-wordmark {
  max-width: none !important;
  overflow: visible !important;
}
.footer-about p {
  max-width: 520px !important;
}
.footer-bottom .admin-link { display: none !important; }
@media (max-width: 560px) {
  .site-footer { padding: 34px 0 max(34px, env(safe-area-inset-bottom)) !important; }
  .footer-grid,
  .footer-grid-unified { gap: 30px !important; }
  .footer-brand-lockup,
  .footer-brand { gap: 8px !important; }
  .footer-mark { width: 30px !important; height: 30px !important; flex-basis: 30px !important; }
  .footer-wordmark { font-size: 24px !important; letter-spacing: -.035em !important; }
  .footer-about p { max-width: 100% !important; font-size: 15px !important; }
  .footer-bottom { gap: 0 !important; padding-bottom: 0 !important; }
}
