:root {
  --bg-color: #0b1120;
  --surface-color: #1e293b;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --accent-color: #00f0ff;
  --accent-hover: #08c8d4;
  --border-radius: 3px;
  --font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  --spacing-sm: clamp(0.5rem, 1vw, 1rem);
  --spacing-md: clamp(1rem, 2vw, 2rem);
  --spacing-lg: clamp(2rem, 4vw, 4rem);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.5;
  font-stretch: condensed;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: 0.025em;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-color);
}

/* Header Layout */
.site-header {
  background-color: var(--surface-color);
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) var(--spacing-md);
  max-width: 1400px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand svg {
  height: 28px;
  width: auto;
  color: var(--accent-color);
}

.main-nav .nav-list {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  list-style: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.main-nav a {
  padding: 0.5rem 0;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.btn-cta {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 0.5rem 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

.btn-cta:hover {
  background-color: var(--accent-color);
  color: var(--bg-color);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* Footer Layout */
.site-footer {
  background-color: var(--surface-color);
  border-top: 4px solid var(--accent-color);
  padding: var(--spacing-lg) var(--spacing-md);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1400px;
  margin: 0 auto;
}

.footer-col h4 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.brand-name {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.tagline {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-contact address {
  font-style: normal;
}

.footer-contact p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.footer-contact a:hover {
  color: var(--accent-color);
}

.footer-contact .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--accent-color);
}

.legal-links {
  list-style: none;
}

.legal-links li {
  margin-bottom: 0.5rem;
}

.legal-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Responsive Mobile Alignments */
@media (max-width: 860px) {
  .main-nav,
  .btn-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-color);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    padding: var(--spacing-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .main-nav.is-open .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    text-align: left;
  }

  .footer-inner {
    text-align: left;
  }
}
/* footer extras */
.footer__extras {
  margin-top: 16px;
}
.footer__extrasInner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}
.footer-social__icon {
  display: block;
}
.footer__poemWrap {
  max-width: 520px;
}
.footer-poem {
  opacity: 0.9;
  font-size: 0.95em;
  line-height: 1.35;
}
/* --- injected by logo step --- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 28px;
  height: 28px;
  display: inline-block;
  flex: 0 0 auto;
}
.brand-logo * {
  vector-effect: non-scaling-stroke;
}
/* --- /injected by logo step --- */
/* Card Wrapper */
.card-wrapper {
  background: #ffffff;
  max-width: 900px;
  margin: 0 auto;
}

/* Components Flat */
.components-flat {
  box-shadow: none;
  border: 1px solid #e2e8f0;
}

/* Rounded Tiny */
.rounded-tiny {
  border-radius: 12px;
}

/* Bordered Plain */
.bordered-plain {
  border: 1px solid #e2e8f0;
}

/* Border Accent */
.border-accent {
  position: relative;
}

.border-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2c5282, #4299c1, #2c5282);
  border-radius: 12px 12px 0 0;
}

/* Typography */
.card-wrapper h1 {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: #1a2c3e;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  padding-top: 24px;
}

.card-wrapper .last-updated {
  font-size: 0.8rem;
  color: #718096;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.card-wrapper h2 {
  font-size: 1.4rem;
  font-weight: 600;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: #2c5282;
  margin-top: 28px;
  margin-bottom: 14px;
  position: relative;
  padding-left: 0;
}

.card-wrapper h2:first-of-type {
  margin-top: 0;
}

.card-wrapper p {
  font-size: 1rem;
  line-height: 1.6;
  color: #2d3748;
  margin-bottom: 16px;
}

.card-wrapper p:last-child {
  margin-bottom: 0;
}

/* List Styles */
.card-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px 0;
  background: #f7fafc;
  border-radius: 16px;
  padding: 20px 24px;
  border: 1px solid #e2e8f0;
}

.card-wrapper ul li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #2d3748;
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.card-wrapper ul li:last-child {
  margin-bottom: 0;
}

.card-wrapper ul li strong {
  color: #2c5282;
  font-weight: 600;
  min-width: 100px;
}

/* Links */
.card-wrapper a {
  color: #2c5282;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}

.card-wrapper a:hover {
  color: #4299c1;
  border-bottom-color: #4299c1;
}

/* Address / Contact list specific */
.card-wrapper ul li a {
  word-break: break-all;
}

/* Responsive */
@media (max-width: 768px) {
  .card-wrapper {
    padding: 24px 20px;
  }
  
  .card-wrapper h1 {
    font-size: 1.8rem;
    padding-top: 16px;
  }
  
  .card-wrapper h2 {
    font-size: 1.25rem;
    margin-top: 24px;
  }
  
  .card-wrapper p,
  .card-wrapper ul li {
    font-size: 0.9rem;
  }
  
  .card-wrapper ul {
    padding: 16px 20px;
  }
  
  .card-wrapper ul li {
    flex-direction: column;
    gap: 4px;
  }
  
  .card-wrapper ul li strong {
    min-width: auto;
  }
  
  .rounded-tiny {
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .card-wrapper {
    padding: 20px 16px;
  }
  
  .card-wrapper h1 {
    font-size: 1.5rem;
  }
  
  .card-wrapper h2 {
    font-size: 1.15rem;
  }
  
  .border-accent::before {
    height: 3px;
  }
}