:root {
  --bg-top: #245f32;
  --bg-mid: #132d1a;
  --bg-bottom: #070d08;
  --card: rgba(255, 255, 255, 0.12);
  --card-border: rgba(255, 255, 255, 0.18);
  --text: #f7f7ff;
  --muted: #d4d4ef;
  --accent: #ffcc33;
  --accent-strong: #ffd700;
  --accent-soft: #f3df9b;
  --accent-2: #5ce1e6;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  --max-width: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(86, 176, 92, 0.20) 0, transparent 18%),
    radial-gradient(circle at 20% 20%, rgba(36, 115, 56, 0.18) 0, transparent 15%),
    radial-gradient(circle at top, var(--bg-top) 0%, var(--bg-mid) 58%, var(--bg-bottom) 100%);
  background-attachment: fixed;
}

a {
  color: var(--accent-2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.container {
  width: min(var(--max-width), calc(100% - 24px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(7, 13, 8, 0.38);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  min-width: 0;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-weight: bold;
  color: #1c1638;
  background: linear-gradient(135deg, var(--accent), #ff9a3d);
  box-shadow: 0 10px 24px rgba(255, 168, 61, 0.28);
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.9rem;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a,
.footer-nav a {
  color: var(--text);
  font-size: 0.95rem;
  opacity: 0.4;
}

.main-nav a:hover,
.footer-nav a:hover {
  color: var(--text);
  font-size: 0.95rem;
  opacity: 0.9;
}



.header-cta {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
}

.hero-section {
  padding: 34px 0 24px;
}

.hero-grid,
.support-grid,
.grid {
  display: grid;
  gap: 18px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: stretch;
}

.hero-panel.card,
.hero-copy.card
{
  border: none;
  box-shadow: none;
}

.grid-1 {
  grid-template-columns: 1fr;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  /*background: var(--card);*/
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 24px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  min-width: 0;
}

.text-card p + p,
.support-copy p + p {
  margin-top: 1rem;
}

.eyebrow {
  margin: 0 0 10px;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  font-family: "Times New Roman", Times, serif;
  font-weight: normal;
  background: linear-gradient(to right, #cfa63a, #ffd700, #f3df9b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1 {
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  line-height: 1.1;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.55rem);
}

p,
li,
label {
  color: var(--muted);
  line-height: 1.6;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

.lead {
  font-size: 1.08rem;
  max-width: 62ch;
}

.hero-actions,
.support-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.logo-panel {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-bottom: 20px;
}

.logo-placeholder {
  width: min(100%, 240px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 28px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: bold;
}

.logo-note {
  margin: 0;
  font-size: 0.92rem;
}

.section {
  padding: 22px 0;
}

.section-head {
  max-width: 860px;
  margin-bottom: 18px;
}

.meta {
  margin: 0 0 8px;
  font-size: 0.92rem;
  color: var(--accent-soft);
}

.contact-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.check-list {
  margin: 14px 0 0;
  padding-left: 18px;
}

.check-list li::marker {
  color: var(--accent);
}

input,
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(247, 247, 255, 0.70);
}

.button,
button {
  border: none;
  border-radius: 999px;
  color: #1c1638;
  font-weight: bold;
  padding: 14px 22px;
  cursor: pointer;
  display: inline-block;
  transition: transform .15s ease, box-shadow .15s ease;
}

.button:hover,
button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(90deg, var(--accent), #ff9a3d);
  box-shadow: 0 10px 24px rgba(255, 168, 61, 0.28);
}

.button-secondary {
  background: linear-gradient(90deg, var(--accent-2), #95f0ff);
  box-shadow: 0 10px 24px rgba(92, 225, 230, 0.25);
}

.support-section {
  padding: 26px 0 22px;
}

.support-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.site-footer {
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(7, 13, 8, 0.30);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 900px) {
  .hero-grid,
  .support-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    order: -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100%, calc(100% - 16px));
  }

  .card {
    border-radius: 22px;
    padding: 18px;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    align-items: center;
    gap: 12px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-text strong {
    font-size: 0.95rem;
    line-height: 1.2;
  }

  .brand-text span {
    font-size: 0.82rem;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    display: flex;
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 4px 0 0;
  }

  .main-nav a {
    width: 100%;
    text-align: center;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
  }

  .hero-actions .button,
  .support-actions .button,
  .contact-form .button {
    width: 100%;
    text-align: center;
  }

  .hero-pills {
    gap: 8px;
  }

  .pill {
    font-size: 0.9rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(1.75rem, 9vw, 2.4rem);
  }

  h2 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .logo-placeholder {
    width: min(100%, 180px);
  }
}


.paired-sections {
  align-items: start;
}

.section-card {
  min-width: 0;
}

.section-card .section-head {
  margin-bottom: 14px;
}

.person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.apic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: solid 1px #fff;
}

.ainfo strong {
  display: block;
  font-size: 1rem;
}

.ainfo p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  opacity: .8;
}

#cookie-banner {
position: fixed;
bottom: 20px;
left: 20px;
right: 20px;
max-width: 520px;
margin: auto;
background: rgba(19, 45, 26, 0.95);
border: 1px solid rgba(255,255,255,.15);
border-radius: 18px;
padding: 16px 18px;
box-shadow: 0 10px 30px rgba(0,0,0,.35);
z-index: 9999;
}

#cookie-banner p {
margin: 0 0 12px;
font-size: 0.92rem;
}

#cookie-banner a {
color: #ffd700;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: bold;
}


#cookie-banner {
display: none;
}
