@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 600;
  src: url("../assets/fonts/unbounded-600-normal-1.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 600;
  src: url("../assets/fonts/unbounded-600-normal-2.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 700;
  src: url("../assets/fonts/unbounded-700-normal-3.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 700;
  src: url("../assets/fonts/unbounded-700-normal-4.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 800;
  src: url("../assets/fonts/unbounded-800-normal-5.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 800;
  src: url("../assets/fonts/unbounded-800-normal-6.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  font-display: swap;
}

:root {
  --ink: #1c1917;
  --muted: #6b6460;
  --teal: #0d9488;
  --teal-deep: #0f766e;
  --teal-light: #ccfbf1;
  --bg: #ffffff;
  --bg-soft: #faf9f7;
  --line: #e7e5e4;
  --card: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Unbounded", var(--font);
  --shadow-sm: 0 1px 3px rgba(28, 25, 23, 0.06);
  --shadow: 0 1px 2px rgba(28, 25, 23, 0.04), 0 14px 34px -18px rgba(28, 25, 23, 0.2);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--teal-deep);
}

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

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

.wrap {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.wrap--narrow {
  max-width: 720px;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 18, 16, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #5eead4;
  text-decoration: none;
  white-space: nowrap;
}

.logo:hover {
  color: #5eead4;
}

.mainnav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.mainnav a {
  color: #e9e7e4;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.mainnav a:hover {
  color: #5eead4;
}

.mainnav__cta {
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff !important;
  font-weight: 700;
}

.mainnav__cta:hover {
  background: var(--teal-deep);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin: 0 -10px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: #e9e7e4;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}

.hero-inner {
  position: relative;
  padding: 72px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  align-items: center;
  gap: 40px;
}

.hero-copy {
  max-width: 480px;
}

.hero-art {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: url(#duotone-teal);
}

.hero-kicker {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.hero-title {
  margin: 0 0 26px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.18s var(--ease, ease), color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--ink);
  color: #fff;
}

.btn--primary:hover {
  background: var(--teal);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn--dark {
  background: var(--ink);
  color: #fff;
}

.btn--dark:hover {
  background: var(--teal);
  color: #fff;
}

.btn--ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: var(--ink);
}

.btn--accent {
  background: var(--teal);
  color: #fff;
}

.btn--accent:hover {
  background: var(--ink);
  color: #fff;
}

/* ---------- section scaffolding ---------- */
.section {
  padding: 96px 0;
}

.section--soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}

.kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.kicker--dark {
  color: var(--teal-light);
}

.section-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.16;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.section-lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}

.section-cta {
  margin-top: 44px;
  text-align: center;
}

/* ---------- pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar {
  padding: 40px 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pillar:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.pillar-icon {
  width: 128px;
  height: 128px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon img {
  width: 100%;
  height: 100%;
  filter: url(#duotone-teal);
}

.pillar-title {
  margin: 0;
  font-size: 21px;
  line-height: 1.32;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---------- steps ---------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  padding: 28px 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.step-num {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: #5eead4;
  font-size: 17px;
  font-weight: 800;
  flex-shrink: 0;
}

.step-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.step-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}

/* ---------- experts ---------- */
.experts {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.experts-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.experts-text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
}

.experts-cta {
  flex-shrink: 0;
}

/* ---------- banner ---------- */
.banner {
  background: var(--teal-deep);
  padding: 64px 0;
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.banner-copy {
  max-width: 640px;
  color: #fff;
}

.banner-title {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.16;
  letter-spacing: -0.01em;
  font-weight: 700;
}

/* ---------- team ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.team-card {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 24px;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.team-photo {
  width: 168px;
  height: 168px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--bg-soft);
}

.team-name {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.team-role {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-deep);
}

.team-bio {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}

.team-social {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.team-social:hover {
  color: var(--teal-deep);
}

/* ---------- form ---------- */
.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
}

.field input[type="text"],
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input[type="text"]:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.14);
}

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

.field--check .check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.field--check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--teal);
}

.field--check a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.smart-captcha {
  margin: 0 0 16px;
}

.form-actions {
  margin-top: 28px;
}

.form-status {
  min-height: 22px;
  margin: 16px 0 0;
  font-size: 14.5px;
  font-weight: 600;
}

.form-status:empty {
  display: none;
}

.form-status.is-ok {
  color: #147a38;
}

.form-status.is-err {
  color: #c02424;
}

/* ---------- footer ---------- */
.site-footer {
  background: #14120f;
  color: #fff;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 0 32px;
}

.footer-brand .logo {
  font-size: 19px;
}

.footer-tag {
  margin: 10px 0 0;
  font-size: 14px;
  color: #a39d97;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 24px;
}

.footer-social a {
  color: #d8d3ce;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.footer-social a:hover {
  color: #5eead4;
}

.footer-bottom {
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
  margin: 0;
  font-size: 13px;
  color: #86807a;
}

/* ---------- legal pages ---------- */
.legal {
  padding: 56px 0 64px;
}

.legal-title {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
}

.legal-back {
  text-align: center;
  margin-bottom: 40px;
}

.legal-doc {
  display: block;
  width: 100%;
  max-width: 720px;
  margin: 0 auto 20px;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .mainnav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 40;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 20px;
    background: rgba(20, 18, 16, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.55);
  }

  .site-header.is-nav-open .mainnav {
    display: flex;
  }

  .mainnav a {
    padding: 14px max(24px, calc((100% - var(--max)) / 2 + 24px));
    font-size: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mainnav__cta {
    margin: 12px max(24px, calc((100% - var(--max)) / 2 + 24px)) 0;
    padding: 12px 18px;
    text-align: center;
    border-top: 0;
  }
}

@media (max-width: 600px) {
  .wrap {
    width: min(100% - 32px, var(--max));
  }

  .header-inner {
    height: 58px;
  }

  .mainnav a {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mainnav__cta {
    margin-left: 16px;
    margin-right: 16px;
  }

  .hero-inner {
    padding: 48px 0 56px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-art {
    order: -1;
    aspect-ratio: 16 / 10;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.25;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .pillars,
  .steps {
    grid-template-columns: 1fr;
  }

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

  .team-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .banner {
    padding: 48px 0;
  }

  .banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .form-card {
    padding: 24px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
