@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@400;500;600;700&display=swap");

:root {
  --bg: #f4f8f8;
  --surface: #ffffff;
  --surface-soft: #eef5f5;
  --surface-strong: #dff4f5;
  --text: #091319;
  --text-soft: #56636d;
  --line: rgba(9, 19, 25, 0.1);
  --line-strong: rgba(9, 19, 25, 0.18);
  --accent: #16b9c8;
  --accent-strong: #0c8c98;
  --accent-soft: rgba(22, 185, 200, 0.14);
  --dark: #0c151b;
  --dark-soft: #132028;
  --shadow-lg: 0 28px 60px rgba(9, 19, 25, 0.08);
  --shadow-md: 0 18px 40px rgba(9, 19, 25, 0.06);
  --radius-xxl: 32px;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: 1180px;
  --header-height: 58px;
  --header-offset: 10px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  padding-top: calc(var(--header-height) + var(--header-offset) + 0.6rem);
  background:
    radial-gradient(circle at top left, rgba(22, 185, 200, 0.14), transparent 28%),
    linear-gradient(180deg, #f9fcfc 0%, var(--bg) 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

main {
  overflow: clip;
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-top: var(--header-offset);
}

.site-header .container {
  width: min(calc(100% - 2rem), 1320px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-height);
  padding: 0.12rem 0.68rem;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(9, 19, 25, 0.05);
  border-radius: 22px;
  box-shadow: 0 8px 22px rgba(9, 19, 25, 0.04);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  flex-shrink: 0;
}

.brand-mark {
  width: 108px;
  max-width: 100%;
  object-fit: contain;
}

.brand-caption {
  display: none;
}

.brand-name {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-note {
  color: var(--text-soft);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  flex: 1 1 auto;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.52rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.36rem 0.72rem;
  border-radius: 12px;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text);
  background: rgba(9, 19, 25, 0.035);
}

.nav-link.active {
  color: var(--text);
  background: transparent;
  box-shadow: inset 0 -2px 0 var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.lang-tools {
  display: flex;
  align-items: center;
  gap: 0.32rem;
}

.lang-label {
  display: none;
}

.lang-switch {
  display: inline-flex;
  padding: 0.12rem;
  background: rgba(9, 19, 25, 0.035);
  border-radius: 999px;
}

.lang-switch button {
  min-width: 31px;
  padding: 0.24rem 0.42rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.73rem;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.lang-switch button.active {
  background: rgba(9, 19, 25, 0.88);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: rgba(9, 19, 25, 0.035);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--dark);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span + span {
  margin-top: 4px;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  padding: 4.6rem 0 3.5rem;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: -12% auto auto 60%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(22, 185, 200, 0.24), transparent 72%);
  pointer-events: none;
}

.hero-grid,
.content-grid,
.split-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.hero-title,
.page-title {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-title {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.page-title {
  max-width: 12ch;
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
}

.hero-copy,
.page-copy,
.section-copy {
  color: var(--text-soft);
  font-size: 1.05rem;
}

.hero-copy {
  max-width: 58ch;
  margin: 1.25rem 0 0;
}

.page-copy {
  max-width: 62ch;
  margin: 1.2rem 0 0;
}

.contact-hero {
  padding-bottom: 1.25rem;
}

.contact-section {
  padding-top: 1.2rem;
}

.legal-hero {
  padding-bottom: 0.1rem;
}

.legal-section {
  margin-top: -2rem;
  padding-top: 0.15rem;
  position: relative;
  z-index: 1;
}

.join-hero .container {
  display: block;
}

.join-hero-content {
  display: grid;
  max-width: 980px;
  text-align: left;
}

.join-eyebrow {
  justify-self: start;
  margin-bottom: 1rem;
}

.join-page-title {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
}

.join-page-copy {
  max-width: 62ch;
  margin: 1rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 54px;
  padding: 0.95rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.button.is-loading {
  pointer-events: none;
}

.button.is-loading::after {
  content: "";
  display: inline-block;
  width: 0.88rem;
  height: 0.88rem;
  margin-left: 0.62rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
  vertical-align: -0.08em;
  animation: button-spinner 0.7s linear infinite;
}

@keyframes button-spinner {
  to {
    transform: rotate(360deg);
  }
}

.button-primary {
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-strong);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(22, 185, 200, 0.38);
  background: rgba(22, 185, 200, 0.08);
}

.brand-panel,
.surface-card,
.quote-card,
.feature-card,
.member-card,
.project-card,
.contact-card,
.form-card,
.info-card,
.coming-soon,
.value-card,
.timeline-card,
.cta-panel,
.visual-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xxl);
  box-shadow: var(--shadow-lg);
}

.brand-panel {
  padding: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(244, 250, 250, 0.95) 100%);
}

.logo-panel {
  display: grid;
  gap: 1.2rem;
}

.logo-stage {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 2rem;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(22, 185, 200, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfb 100%);
  border: 1px solid rgba(9, 19, 25, 0.06);
}

.logo-stage img {
  width: min(100%, 320px);
  object-fit: contain;
}

.panel-copy {
  margin: 0;
  color: var(--text-soft);
}

.metric-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(9, 19, 25, 0.04);
  border: 1px solid rgba(9, 19, 25, 0.06);
}

.metric-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.metric-card p {
  margin: 0.45rem 0 0;
  font-size: 0.96rem;
  color: var(--text);
}

.section {
  padding: 5.4rem 0;
}

.section-tight {
  padding: 4rem 0;
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(22, 185, 200, 0.18), transparent 26%),
    linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: #fff;
}

.section-dark .section-copy,
.section-dark .card-copy,
.section-dark p,
.section-dark li,
.section-dark .info-copy,
.section-dark .placeholder-copy {
  color: rgba(255, 255, 255, 0.74);
}

.section-dark .feature-card,
.section-dark .quote-card,
.section-dark .cta-panel,
.section-dark .visual-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.section-header {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.section-title {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-copy {
  max-width: 64ch;
  margin: 0;
}

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

.surface-card,
.feature-card,
.cta-panel,
.info-card,
.value-card,
.timeline-card {
  padding: 1.75rem;
}

.surface-card p,
.feature-card p,
.value-card p,
.timeline-card p,
.cta-panel p,
.info-card p {
  margin: 0;
  color: var(--text-soft);
}

.stack {
  display: grid;
  gap: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-grid,
.value-grid,
.team-grid,
.project-grid,
.future-grid {
  display: grid;
  gap: 1.35rem;
}

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

.quote-card {
  padding: 1.6rem;
}

.quote-card blockquote {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.8;
}

.quote-card cite {
  display: block;
  margin-top: 1.2rem;
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.35rem;
  align-items: center;
}

.media-column {
  display: grid;
  gap: 1.35rem;
}

.media-column.compact {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.visual-card {
  position: relative;
  min-height: 220px;
  padding: 1.4rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(9, 19, 25, 0.18)),
    radial-gradient(circle at top right, rgba(22, 185, 200, 0.22), transparent 34%),
    linear-gradient(135deg, #eaf5f6 0%, #dae9ea 100%);
  border: 1px solid rgba(9, 19, 25, 0.08);
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: auto -16% -40% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(22, 185, 200, 0.16);
  filter: blur(18px);
}

.visual-card.large {
  min-height: 320px;
  height: fit-content;
  align-self: center;
}

.visual-card .tag {
  background: rgba(255, 255, 255, 0.78);
}

.placeholder-title {
  margin: 1.1rem 0 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.45rem;
  line-height: 1.15;
}

.placeholder-copy,
.card-copy,
.info-copy {
  margin: 0.65rem 0 0;
  color: var(--text-soft);
}

.cta-panel {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.cta-panel.dark {
  background:
    radial-gradient(circle at top right, rgba(22, 185, 200, 0.16), transparent 32%),
    linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: #fff;
}

.cta-panel.dark p {
  color: rgba(255, 255, 255, 0.74);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.timeline-grid,
.pillars-grid,
.benefits-grid {
  display: grid;
  gap: 1.25rem;
}

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

.timeline-card strong,
.feature-card strong,
.value-card strong,
.info-card strong {
  display: block;
  margin-bottom: 0.65rem;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.05rem;
  line-height: 1.3;
}

.timeline-card strong {
  color: var(--text);
}

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

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

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

.member-card {
  padding: 1.25rem;
}

.portrait-placeholder {
  display: grid;
  place-items: center;
  min-height: 250px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(22, 185, 200, 0.2), transparent 28%),
    linear-gradient(180deg, #eef6f6 0%, #d7e8e9 100%);
  border: 1px solid rgba(9, 19, 25, 0.08);
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-meta {
  padding-top: 1.1rem;
}

.member-name {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.18rem;
}

.member-role {
  display: inline-flex;
  margin-top: 0.65rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 800;
}

.member-copy {
  margin: 0.95rem 0 0;
  color: var(--text-soft);
}

.coming-soon {
  display: grid;
  gap: 1.5rem;
  place-items: center;
  padding: 3rem;
  text-align: center;
}

.orbit-mark {
  position: relative;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(22, 185, 200, 0.35);
  border-radius: 50%;
}

.orbit-mark::before,
.orbit-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.orbit-mark::before {
  inset: 20px;
  border: 1px solid rgba(9, 19, 25, 0.14);
}

.orbit-mark::after {
  width: 18px;
  height: 18px;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  box-shadow: 0 0 0 10px rgba(22, 185, 200, 0.16);
}

.coming-soon h2 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.coming-soon p {
  max-width: 52ch;
  margin: 0;
  color: var(--text-soft);
}

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

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

.project-card {
  overflow: hidden;
}

.project-thumb {
  position: relative;
  min-height: 220px;
  padding: 1.25rem;
  background:
    radial-gradient(circle at top right, rgba(22, 185, 200, 0.2), transparent 30%),
    linear-gradient(135deg, #edf5f6 0%, #d8e7e8 100%);
  border-bottom: 1px solid rgba(9, 19, 25, 0.06);
}

.project-body {
  padding: 1.35rem;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(9, 19, 25, 0.08);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.content-grid {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.join-form-section {
  padding-top: 0.5rem;
}

.join-form-shell {
  position: relative;
  width: min(100%, 860px);
  margin: 0 auto;
}

.join-form-shell::before {
  content: "";
  position: absolute;
  inset: 4% -4% -6%;
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 25%, rgba(22, 185, 200, 0.28), rgba(22, 185, 200, 0.1) 42%, transparent 72%);
  filter: blur(24px);
  z-index: 0;
}

.join-form-card {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem;
  box-shadow:
    0 22px 48px rgba(12, 140, 152, 0.12),
    0 16px 36px rgba(9, 19, 25, 0.06);
}

.join-form-card form {
  gap: 1.1rem;
}

.join-form-card .form-grid {
  grid-template-columns: minmax(0, 1.7fr) minmax(200px, 0.72fr);
}

.join-form-card .button {
  justify-self: center;
  min-width: 230px;
}

.join-form-card .form-note,
.join-form-card .form-status {
  text-align: center;
}

.info-card,
.form-card {
  padding: 1.75rem;
}

.info-list,
.social-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li,
.social-link {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(9, 19, 25, 0.04);
  border: 1px solid rgba(9, 19, 25, 0.06);
}

.info-list strong,
.social-link strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.form-card form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.55rem;
}

.autocomplete-field {
  position: relative;
}

.course-field,
.year-field {
  grid-column: span 1;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.95rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(9, 19, 25, 0.12);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  font-size: 1rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(22, 185, 200, 0.5);
  box-shadow: 0 0 0 4px rgba(22, 185, 200, 0.12);
}

.autocomplete-panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  min-width: 100%;
  z-index: 30;
  display: grid;
  gap: 0.35rem;
  max-height: 340px;
  padding: 0.7rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(9, 19, 25, 0.1);
  border-radius: 18px;
  box-shadow:
    0 22px 45px rgba(9, 19, 25, 0.08),
    0 8px 16px rgba(22, 185, 200, 0.1);
}

.autocomplete-panel[hidden] {
  display: none;
}

.autocomplete-group {
  display: grid;
  gap: 0.35rem;
}

.autocomplete-group + .autocomplete-group {
  padding-top: 0.35rem;
  border-top: 1px solid rgba(9, 19, 25, 0.06);
}

.autocomplete-group-label {
  padding: 0.2rem 0.35rem;
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.autocomplete-option {
  display: grid;
  gap: 0.15rem;
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid transparent;
  border-radius: 14px;
  background: rgba(9, 19, 25, 0.03);
  color: var(--text);
  text-align: left;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.autocomplete-option:hover,
.autocomplete-option:focus-visible,
.autocomplete-option.is-active {
  background: rgba(22, 185, 200, 0.08);
  border-color: rgba(22, 185, 200, 0.22);
  transform: translateY(-1px);
}

.autocomplete-option-title {
  font-weight: 700;
  line-height: 1.35;
}

.autocomplete-option-meta,
.autocomplete-empty {
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.autocomplete-empty {
  padding: 0.8rem 0.9rem;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.form-status {
  min-height: 1.5rem;
  font-weight: 700;
}

.form-status.error {
  color: #b13b3b;
}

.form-status.success {
  color: #0a7f45;
}

.contact-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: start;
  gap: 1.35rem;
}

.contact-form-header {
  margin-bottom: 1.5rem;
}

.contact-sidebar {
  gap: 1rem;
}

.contact-side-card,
.contact-map-card {
  display: grid;
  gap: 1rem;
}

.contact-map-wrap {
  width: min(100%, 980px);
  margin: 1.6rem auto 0;
}

.contact-detail-list {
  display: grid;
  gap: 0.9rem;
}

.contact-detail-item {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(9, 19, 25, 0.04);
  border: 1px solid rgba(9, 19, 25, 0.06);
}

.contact-inline-link {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-inline-link:hover,
.contact-inline-link:focus-visible {
  color: var(--accent);
}

.map-embed {
  position: relative;
  overflow: hidden;
  padding: 0.8rem;
  border-radius: 28px;
  border: 1px solid rgba(9, 19, 25, 0.08);
  background:
    radial-gradient(circle at top left, rgba(22, 185, 200, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(245, 251, 251, 0.98) 0%, rgba(233, 243, 244, 0.92) 100%);
  box-shadow:
    0 24px 56px rgba(9, 19, 25, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.map-floating-label {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 1;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(9, 19, 25, 0.08);
  box-shadow: 0 14px 28px rgba(9, 19, 25, 0.08);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 390px;
  border: 0;
  border-radius: 22px;
}

.contact-map-link {
  width: fit-content;
}

.contact-map-card {
  padding: 1rem;
  background:
    radial-gradient(circle at top right, rgba(22, 185, 200, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(246, 250, 250, 0.96) 100%);
  border-radius: 32px;
  box-shadow: 0 28px 60px rgba(9, 19, 25, 0.08);
}

.contact-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  gap: 1rem;
  align-items: center;
}

.contact-map-info {
  display: grid;
  align-content: center;
  gap: 0.6rem;
  padding: 0.5rem 0.55rem 0.5rem 0.2rem;
}

.contact-map-info .info-copy {
  margin-top: 0;
}

.contact-address-card {
  background: linear-gradient(180deg, rgba(22, 185, 200, 0.08) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-color: rgba(22, 185, 200, 0.14);
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.social-link span:last-child {
  min-width: 0;
}

.social-link .muted {
  display: block;
  overflow-wrap: anywhere;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(22, 185, 200, 0.38);
  background: rgba(22, 185, 200, 0.08);
}

.badge-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(22, 185, 200, 0.12);
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.social-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer {
  padding: 1.6rem 0 2.3rem;
}

.footer-shell {
  display: grid;
  gap: 1rem;
  padding: 1.35rem 1.55rem 1.05rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(22, 185, 200, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(246, 250, 250, 0.94) 100%);
  border: 1px solid rgba(9, 19, 25, 0.07);
  box-shadow:
    0 22px 50px rgba(9, 19, 25, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.footer-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "brand nav social"
    ". legal social";
  gap: 0.8rem 1.6rem;
  align-items: start;
}

.footer-top > .stack {
  grid-area: brand;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  padding-top: 0.1rem;
}

.footer-brand-logo {
  width: clamp(98px, 9vw, 122px);
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-links {
  grid-area: nav;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.15rem;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  align-self: center;
}

.footer-links .footer-link:nth-child(n + 5) {
  flex-basis: auto;
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
  text-align: left;
}

.footer-legal-links {
  grid-area: legal;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 0.8rem;
  margin-top: 0.05rem;
  border-top: 1px solid rgba(9, 19, 25, 0.08);
}

.footer-social {
  grid-area: social;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  justify-content: flex-end;
  align-self: center;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(9, 19, 25, 0.08);
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(22, 185, 200, 0.38);
  background: rgba(22, 185, 200, 0.08);
  box-shadow: 0 12px 24px rgba(9, 19, 25, 0.08);
}

.footer-social-icon {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.footer-link {
  color: rgba(62, 76, 87, 0.96);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-legal-links .footer-link,
.footer-links .footer-link:nth-child(n + 5) {
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(96, 109, 119, 0.96);
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(9, 19, 25, 0.08);
  color: rgba(96, 109, 119, 0.96);
  font-size: 0.83rem;
}

.muted {
  color: var(--text-soft);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

body.ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

body.ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .nav-list {
    gap: 0.3rem;
  }

  .nav-link {
    padding-inline: 0.62rem;
    font-size: 0.84rem;
  }

  .hero-grid,
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-layout {
    grid-template-columns: 1fr;
  }

  .contact-map-wrap {
    margin-top: 1rem;
  }

  .contact-map-info {
    padding: 0.2rem 0.2rem 0.1rem;
  }

  .media-grid,
  .split-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .quote-grid,
  .team-grid,
  .project-grid,
  .timeline-grid,
  .pillars-grid,
  .future-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(9, 19, 25, 0.28);
    backdrop-filter: blur(5px);
    z-index: 900;
  }

  .site-header .container {
    width: min(calc(100% - 1.25rem), 1320px);
  }

  .header-shell {
    gap: 0.55rem;
    padding: 0.14rem 0.56rem;
    border-radius: 18px;
  }

  .brand-mark {
    width: 98px;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + var(--header-offset) + 0.72rem);
    left: 0.7rem;
    right: 0.7rem;
    display: grid;
    gap: 0.8rem;
    padding: 0.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(9, 19, 25, 0.08);
    box-shadow: var(--shadow-lg);
    max-height: calc(100dvh - (var(--header-height) + var(--header-offset) + 1.5rem));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    z-index: 1001;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.24rem;
    width: 100%;
  }

  .nav-link {
    justify-content: flex-start;
    width: 100%;
    min-height: 46px;
    padding: 0.74rem 0.9rem;
    border-radius: 14px;
    font-size: 0.96rem;
  }

  .header-actions {
    margin-left: auto;
    gap: 0.35rem;
  }

  .menu-toggle {
    display: grid;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 52px;
    --header-offset: 8px;
  }

  .container {
    width: min(calc(100% - 1.1rem), var(--container));
  }

  body {
    padding-top: calc(var(--header-height) + var(--header-offset) + 0.45rem);
  }

  .brand-caption,
  .lang-label {
    display: none;
  }

  .brand-mark {
    width: 92px;
  }

  .header-shell {
    gap: 0.45rem;
    padding: 0.14rem 0.42rem;
    border-radius: 16px;
  }

  .lang-switch {
    padding: 0.1rem;
  }

  .lang-switch button {
    min-width: 29px;
    padding: 0.22rem 0.38rem;
    font-size: 0.71rem;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .hero,
  .page-hero {
    padding: 2.8rem 0 2rem;
  }

  .hero::before,
  .page-hero::before {
    inset: -8% auto auto 52%;
    width: 240px;
    height: 240px;
  }

  .eyebrow {
    gap: 0.5rem;
    margin-bottom: 0.95rem;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
  }

  .eyebrow::before {
    width: 28px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .page-title,
  .join-page-title {
    max-width: 100%;
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .legal-hero {
    padding-bottom: 0;
  }

  .legal-section {
    margin-top: -1rem;
    padding-top: 0.1rem;
  }

  .section-title {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .hero-copy,
  .page-copy,
  .join-page-copy,
  .section-copy {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .hero-copy,
  .page-copy,
  .join-page-copy,
  .section-copy,
  .member-copy,
  .info-copy,
  .placeholder-copy {
    line-height: 1.7;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    width: 100%;
  }

  .hero-actions .button,
  .cta-actions .button,
  .join-form-card .button,
  .form-card .button {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .surface-card,
  .feature-card,
  .cta-panel,
  .info-card,
  .value-card,
  .timeline-card,
  .quote-card,
  .form-card,
  .join-form-card,
  .coming-soon,
  .visual-card,
  .member-card,
  .project-card {
    padding: 1.25rem;
    border-radius: 22px;
  }

  .section-header {
    gap: 0.7rem;
    margin-bottom: 1.5rem;
  }

  .join-form-card {
    padding: 1.35rem;
  }

  .join-form-shell::before {
    inset: 6% -2% -5%;
    filter: blur(20px);
  }

  .section {
    padding: 3.35rem 0;
  }

  .quote-grid,
  .team-grid,
  .project-grid,
  .timeline-grid,
  .pillars-grid,
  .future-grid,
  .value-grid,
  .benefits-grid,
  .metric-grid,
  .form-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .join-form-card .form-grid {
    grid-template-columns: 1fr;
  }

  .info-list li,
  .social-link,
  .contact-detail-item {
    padding: 0.95rem 1rem;
    border-radius: 16px;
  }

  .course-field,
  .year-field,
  .field.full {
    grid-column: 1 / -1;
  }

  .quote-card blockquote {
    font-size: 1rem;
    line-height: 1.65;
  }

  .placeholder-title {
    font-size: 1.2rem;
  }

  .visual-card.large {
    min-height: 280px;
  }

  .portrait-placeholder {
    min-height: 210px;
  }

  .logo-stage {
    min-height: 220px;
  }

  .coming-soon {
    padding: 2.2rem 1.4rem;
  }

  .social-link {
    align-items: flex-start;
    gap: 0.85rem;
  }

  .badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .contact-grid {
    gap: 1rem;
  }

  .contact-map-wrap {
    margin-top: 0.8rem;
  }

  .contact-map-card {
    padding: 0.85rem;
    border-radius: 24px;
  }

  .map-embed {
    padding: 0.6rem;
    border-radius: 22px;
  }

  .map-floating-label {
    top: 1rem;
    left: 1rem;
    padding: 0.42rem 0.7rem;
    font-size: 0.7rem;
  }

  .map-embed iframe {
    height: 320px;
    border-radius: 18px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "legal"
      "social";
    gap: 0.85rem;
    align-items: start;
  }

  .footer-top > .stack {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 0.45rem 0.9rem;
  }

  .footer-links .footer-link:nth-child(n + 5) {
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
    flex-basis: auto;
  }

  .footer-legal-links {
    width: 100%;
    justify-content: flex-start;
    padding-top: 0.45rem;
  }

  .footer-social {
    justify-content: flex-start;
  }

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

@media (max-width: 560px) {
  .site-header .container {
    width: min(calc(100% - 0.8rem), 1320px);
  }

  .site-nav {
    left: 0.4rem;
    right: 0.4rem;
    padding: 0.72rem;
    border-radius: 18px;
  }

  .hero,
  .page-hero {
    padding: 2.45rem 0 1.85rem;
  }

  .button {
    min-height: 50px;
    padding: 0.88rem 1.2rem;
  }

  .field label {
    font-size: 0.9rem;
  }

  input,
  select,
  textarea {
    font-size: 16px;
    padding-inline: 0.95rem;
  }

  textarea {
    min-height: 170px;
  }

  .hero-title {
    font-size: clamp(2.35rem, 12vw, 3.15rem);
  }

  .page-title,
  .join-page-title {
    font-size: clamp(1.75rem, 8.5vw, 2.2rem);
  }

  .section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  .project-thumb,
  .visual-card.large,
  .portrait-placeholder {
    min-height: 190px;
  }

  .map-embed iframe {
    height: 280px;
  }

  .footer-shell {
    padding: 1.15rem 1rem 0.95rem;
    border-radius: 22px;
  }

  .footer-link {
    white-space: normal;
  }
}
