:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #102033;
  background-color: #f6f9fc;
  --surface: #ffffff;
  --surface-muted: #f6f9fc;
  --border: #d9e4ee;
  --text: #102033;
  --muted: #52606d;
  --accent: #0b7285;
  --accent-dark: #075766;
  --accent-soft: #e8f7f9;
  --blue: #2563eb;
  --blue-soft: #eaf1ff;
  --green: #10a37f;
  --green-soft: #e8f8f3;
  --gold: #d08a1d;
  --gold-soft: #fff5df;
  --rose: #d85b7f;
  --rose-soft: #fff0f5;
  --shadow: 0 22px 70px rgba(16, 32, 51, 0.09);
  --shadow-soft: 0 12px 34px rgba(16, 32, 51, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 4%, rgba(11, 114, 133, 0.14), transparent 26rem),
    radial-gradient(circle at 92% 12%, rgba(37, 99, 235, 0.1), transparent 25rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 249, 252, 1) 38rem),
    var(--surface-muted);
}

body,
input,
button,
textarea,
select {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-main {
  flex: 1;
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 3rem;
}

.section {
  padding: 4rem 0;
}

.section--compact {
  padding: 2.5rem 0;
}

.section-title {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 2.5vw, 3rem);
  letter-spacing: -0.04em;
}

.section-subtitle {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-soft), var(--blue-soft));
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  font-weight: 700;
  cursor: pointer;
}

.button--primary {
  background: linear-gradient(135deg, #008f8a, #10a37f);
  border-color: transparent;
  color: white;
  box-shadow: 0 14px 28px rgba(0, 143, 138, 0.22);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: linear-gradient(135deg, #007871, #0c8f70);
}

.button--ghost {
  background: transparent;
  border-color: rgba(15, 143, 165, 0.18);
  color: var(--text);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(15, 143, 165, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  margin-inline: calc(50% - 50vw);
  background: rgba(248, 251, 255, 0.96);
  border-bottom: 1px solid rgba(217, 228, 238, 0.72);
  backdrop-filter: blur(12px);
}

.site-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.05rem 0;
}

.site-brand,
.brand-link {
  display: flex;
  align-items: center;
}

.site-brand {
  justify-content: flex-start;
}

.brand-link {
  gap: 0.75rem;
  color: var(--text);
}

.brand-mark {
  flex: 0 0 auto;
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: 0.9rem;
  background: rgba(248, 251, 255, 0.96);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  font-size: clamp(1.45rem, 2vw, 1.625rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-name-next {
  color: #0f172a;
}

.brand-name-session {
  color: #008f8a;
}

.brand-tagline {
  margin-top: 0.25rem;
  color: #4b5f7a;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  color: var(--muted);
  font-weight: 600;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text);
  background: rgba(15, 143, 165, 0.08);
}

.nav-link--active {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.site-actions {
  display: flex;
  justify-content: flex-end;
}

.site-notice {
  margin-inline: calc(50% - 50vw);
  border-bottom: 1px solid rgba(217, 228, 238, 0.78);
  background:
    radial-gradient(circle at 16% 0%, rgba(16, 163, 127, 0.14), transparent 18rem),
    linear-gradient(135deg, rgba(232, 248, 243, 0.95), rgba(255, 255, 255, 0.92));
}

.site-notice-inner {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem 1.25rem;
  padding: 0.85rem 0;
  color: var(--text);
}

.site-notice p {
  margin: 0;
}

.site-notice-kicker {
  border-radius: 999px;
  background: white;
  color: #007871;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.42rem 0.72rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-notice-message {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.5;
}

.site-notice a {
  color: #007871;
  font-weight: 800;
  white-space: nowrap;
}

.site-footer {
  margin-top: clamp(3rem, 6vw, 5rem);
  color: var(--muted);
}

.footer-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(10rem, 0.55fr) minmax(14rem, 0.8fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border: 1px solid rgba(217, 228, 238, 0.9);
  border-radius: 1.75rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(11, 114, 133, 0.11), transparent 16rem),
    radial-gradient(circle at 100% 100%, rgba(37, 99, 235, 0.08), transparent 16rem),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.footer-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--blue), var(--green));
}

.footer-brand {
  display: grid;
  gap: 1rem;
  align-content: start;
  max-width: 34rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
  color: var(--text);
}

.footer-logo-icon {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: rgba(248, 251, 255, 0.92);
  overflow: hidden;
}

.footer-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-logo-name {
  display: inline-flex;
  font-size: clamp(1.45rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.footer-logo-name span:first-child {
  color: #0f172a;
}

.footer-logo-name span:last-child {
  color: #008f8a;
}

.footer-logo-tagline {
  margin-top: 0.25rem;
  color: #4b5f7a;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}

.footer-heading {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-copy,
.footer-contact p {
  margin: 0;
  line-height: 1.7;
}

.footer-cta {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #008f8a, #10a37f);
  color: white;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(0, 143, 138, 0.2);
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--muted);
  font-weight: 650;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.6rem;
}

.footer-contact a {
  color: var(--accent-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 900px) {
  .page-main {
    width: min(100%, calc(100% - 2rem));
    padding-top: 1rem;
  }

  .site-notice-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-notice a {
    white-space: normal;
  }
}

@media (max-width: 860px) {
  .site-header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 1rem 0;
  }

  .site-brand {
    justify-content: center;
  }

  .brand-link {
    justify-content: center;
  }

  .brand-text {
    align-items: flex-start;
    text-align: left;
  }

  .site-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .site-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 820px) {
  .footer-panel {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    justify-items: center;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-logo-text {
    align-items: flex-start;
    text-align: left;
  }

  .footer-links,
  .footer-contact {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .site-header-inner {
    width: min(100%, calc(100% - 1.25rem));
    gap: 0.75rem;
  }

  .site-brand,
  .site-actions {
    width: 100%;
    flex: 0 0 auto;
    justify-content: center;
  }

  .site-actions {
    justify-content: center;
  }

  .site-actions .button {
    width: auto;
    padding-inline: 0.95rem;
  }

  .site-nav {
    width: 100%;
  }

  .brand-mark {
    width: 2.75rem;
    height: 2.75rem;
  }

  .brand-name {
    font-size: 1.28rem;
  }

  .brand-tagline {
    max-width: 12rem;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.72rem;
  }

  .footer-panel {
    border-radius: 1.25rem;
    padding: 1.25rem;
  }

  .footer-logo-icon {
    width: 3rem;
    height: 3rem;
  }

  .footer-logo-name {
    font-size: 1.35rem;
  }

  .footer-logo-tagline {
    max-width: 14rem;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.74rem;
  }
}
