:root {
  --bg: #f3f5f9;
  --bg-soft: #ffffff;
  --card: #ffffff;
  --text: #101b32;
  --muted: #4f5d79;
  --line: #e4e9f2;
  --brand: #ff8a34;
  --brand-strong: #ff6a00;
  --max-width: 1120px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, 820px);
  margin-inline: auto;
}

.center {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #e9edf6;
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #f06a2f;
}

.nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-left: auto;
  margin-right: 0.6rem;
}

.nav a {
  color: #33415c;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a.active {
  color: #0e1d38;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-left: 0.4rem;
}

.lang-btn {
  background: transparent;
  color: var(--muted);
  border: 0;
  padding: 0.35rem 0.65rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
}

.lang-btn.active {
  background: rgba(126, 169, 255, 0.2);
  color: #fff;
}

.hero {
  padding: 6.4rem 0 4rem;
}

.hero-surface {
  background: radial-gradient(circle at 70% 20%, #293f72 0%, #141f3f 45%, #121a34 100%);
  position: relative;
  overflow: hidden;
}

.hero-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.3;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.hero-copy p,
.hero-copy .meta-row {
  color: #f4f7ff;
}

.hero-copy .lead {
  color: #d3dcf0;
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.core-icon {
  position: absolute;
  top: 45%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: linear-gradient(145deg, #ff8d3b, #ff6a00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 20px 60px rgba(255, 120, 33, 0.4);
}

.float-card {
  position: absolute;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(19, 29, 58, 0.82);
  color: #fff;
  padding: 0.65rem 0.85rem;
  display: grid;
  line-height: 1.2;
  gap: 0.2rem;
  box-shadow: 0 10px 30px rgba(6, 10, 22, 0.35);
}

.float-card span {
  color: #b7c4e2;
  font-size: 0.76rem;
}

.fc-1 { top: 2%; right: 2%; }
.fc-2 { top: 23%; right: 16%; background: linear-gradient(145deg, #ff8d3b, #ff6a00); }
.fc-3 { top: 40%; left: 9%; }
.fc-4 { top: 48%; right: 5%; }
.fc-5 { bottom: 16%; left: 4%; }
.fc-6 { bottom: 7%; right: 0; background: linear-gradient(145deg, #3ecd9d, #1cbb8b); }

.page-hero {
  padding: 6rem 0 2.2rem;
}

.hero-inner {
  max-width: 840px;
}

.pill-row,
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.34rem 0.8rem;
  color: #dbe7ff;
  font-size: 0.86rem;
  background: rgba(126, 169, 255, 0.12);
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin: 1.2rem 0 0.8rem;
  letter-spacing: -0.015em;
}

.accent {
  color: #ff9d62;
}

.nowrap {
  white-space: nowrap;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  margin-bottom: 0.6rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.lead {
  font-size: clamp(1.02rem, 2.4vw, 1.22rem);
  max-width: 760px;
}

.sub {
  max-width: 740px;
}

.cta-row {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.meta-row {
  margin-top: 1.1rem;
  color: #a8bddf;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn-sm {
  padding: 0.48rem 0.75rem;
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(145deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #09142b;
}

.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: #60759f;
  color: #f4f7ff;
  background: rgba(78, 100, 140, 0.34);
}

.btn-outline:hover {
  border-color: #6b8fd8;
  background: rgba(107, 143, 216, 0.15);
}

.section {
  padding: 4.4rem 0;
}

.section-soft {
  background: #ffffff;
  border-top: 1px solid #edf1f7;
  border-bottom: 1px solid #edf1f7;
}

.independence-band {
  background: linear-gradient(120deg, #2f66db, #2b56cf);
  text-align: center;
}

.independence-band h2,
.independence-band p {
  color: #fff;
}

.section-light {
  background: #f2f4f8;
}

.section-kicker {
  margin-bottom: 0.55rem;
  color: #c67843;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

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

.cards-3 {
  margin-top: 1.3rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
  margin-top: 1.3rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.card,
.panel {
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 14px;
  padding: 1.1rem 1rem 1rem;
  box-shadow: 0 10px 30px rgba(16, 26, 49, 0.06);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff3e9;
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

li + li {
  margin-top: 0.42rem;
}

blockquote {
  margin: 1rem 0 0;
  padding: 0.7rem 0.9rem;
  border-left: 3px solid var(--brand);
  color: #1f2f4f;
  background: #eef4ff;
  border-radius: 8px;
}

.panel p {
  color: #273a5f;
}

.section-cta {
  background: linear-gradient(145deg, rgba(255, 123, 37, 0.9), rgba(241, 102, 23, 0.95));
}

.section-cta h2,
.section-cta p {
  color: #fff;
}

.site-footer {
  border-top: 1px solid rgba(126, 169, 255, 0.18);
  padding: 1.2rem 0 1.8rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: #7283a4;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: #5f749b;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form {
  display: grid;
  gap: 0.7rem;
}

.form label {
  color: var(--text);
  font-weight: 600;
  font-size: 0.93rem;
}

.form input,
.form textarea {
  margin-top: 0.35rem;
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(17, 30, 56, 0.85);
  color: var(--text);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.form-note {
  margin-top: 0.35rem;
  color: #5d6f93;
  font-size: 0.88rem;
}

.legal h2 {
  margin-top: 1.5rem;
}

.legal ul {
  margin: 0.4rem 0 1rem;
}

.active-btn {
  background: linear-gradient(145deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #09142b !important;
}

.team-section h2 {
  margin-bottom: 1.2rem;
}

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

.member-card {
  border: 1px solid #e4e9f2;
  background: #ffffff;
  border-radius: 14px;
  padding: 1.3rem;
}

.member-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}

.member-initial {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, #ff9a58, #f06b4d);
}

.member-role {
  margin: 0;
  color: #f27f3d;
  font-weight: 600;
}

@media (max-width: 980px) {
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .hero-visual {
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    min-height: auto;
    padding: 0.7rem 0;
    flex-wrap: wrap;
    row-gap: 0.6rem;
  }

  .nav {
    width: 100%;
    order: 3;
    margin: 0;
    gap: 0.65rem;
    flex-wrap: wrap;
  }

  .nav a {
    font-size: 0.84rem;
    padding: 0.35rem 0.45rem;
    border-radius: 8px;
    background: rgba(126, 169, 255, 0.08);
  }

  .lang-switch {
    margin-left: auto;
  }

  .two-col,
  .cards-4,
  .cards-3 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 5.2rem;
  }

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

  .footer-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }
}
