:root {
  --ink: #111327;
  --muted: #666276;
  --line: #e6e0e8;
  --paper: #ded8e1;
  --soft: #f5f3f6;
  --brand: #931fb7;
  --brand-2: #151726;
  --accent: #931fb7;
  --white: #fff;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(17, 19, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Raleway, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #eee9f0;
  backdrop-filter: none;
}

.nav {
  width: min(976px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 126px;
  gap: 24px;
}

.brand {
  display: block;
  width: 96px;
  height: 64px;
  overflow: hidden;
  text-decoration: none;
  color: transparent;
  font-size: 0;
  background: url("https://cdn.durable.co/logos/1bemWr9BPlwUcROyw1cQKqz6Jkz64nx5JgmexTQiwZtTWHveuNnvTbjszMZzvwdx.png") left center / contain no-repeat;
}

.brand-mark {
  display: none;
}

.nav-links {
  position: absolute;
  top: 108px;
  right: max(24px, calc((100vw - 976px) / 2));
  display: none;
  min-width: 300px;
  max-width: min(360px, calc(100vw - 48px));
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: 16px;
}

.nav-links a {
  padding: 11px 12px;
  color: var(--ink);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--brand);
}

.nav-links.open {
  display: flex;
}

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

.nav-actions::before {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 3px;
  color: #fff;
  background: #151515;
  content: "in";
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  order: -1;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
}

.icon-button span,
.icon-button span::before,
.icon-button span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  margin: 0 auto;
}

.icon-button span::before {
  transform: translateY(-6px);
}

.icon-button span::after {
  transform: translateY(4px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  color: var(--white);
  background: var(--brand);
  text-decoration: none;
  font-weight: 700;
}

.button.secondary {
  color: var(--brand);
  background: #fff;
}

.button:hover {
  transform: translateY(-1px);
}

main {
  overflow: hidden;
}

.section {
  padding: 96px 0;
  background: var(--paper);
}

.section.soft {
  background: #fff;
}

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

.hero {
  position: relative;
  padding: 128px 0 118px;
  background:
    linear-gradient(90deg, rgba(246, 246, 250, 0.95), rgba(246, 246, 250, 0.72)),
    url("assets/training-conference.webp") center / cover;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Rubik, Inter, sans-serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 700;
}

h2 {
  font-size: clamp(30px, 3.2vw, 44px);
}

h3 {
  font-size: 23px;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-image,
.feature-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: none;
}

.hero-image img,
.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.card {
  min-height: 100%;
  padding: 26px;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 18px;
}

.card p {
  color: var(--muted);
}

.cta-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 19, 39, 0.9), rgba(147, 31, 183, 0.62)),
    url("assets/cta-background.webp") center / cover;
}

.cta-band .lead {
  color: rgba(255, 255, 255, 0.88);
}

.cta-band .button {
  border-color: var(--white);
  color: var(--brand);
  background: var(--white);
}

.text-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.text-list div {
  padding-left: 18px;
  border-left: 3px solid var(--accent);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.details {
  padding: 28px;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
}

.details p {
  margin: 10px 0;
}

form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

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

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 260px;
  margin-top: 22px;
  border-radius: var(--radius);
  color: var(--brand);
  background: var(--soft);
  border: 0;
  text-align: center;
  padding: 24px;
}

.object-section {
  padding-top: 56px;
}

.embed-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 232px;
  color: #8d8793;
  background: #f8f9fb;
  font-size: 16px;
}

.embed-frame {
  display: block;
  width: 100%;
  min-height: 820px;
  border: 0;
  background: #fff;
}

.site-footer {
  border-top: 0;
  background: var(--paper);
}

.footer-inner {
  width: min(976px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.site-footer .brand {
  width: auto;
  height: auto;
  overflow: visible;
  color: var(--ink);
  background: none;
  font-family: Rubik, Inter, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  text-decoration: none;
}

.cookie {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: min(360px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.cookie[hidden] {
  display: none;
}

.note {
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 920px) {
  .nav-links {
    top: 82px;
    left: 16px;
    right: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav {
    min-height: 92px;
  }

  .nav-actions {
    gap: 16px;
  }

  .nav-actions::before {
    display: none;
  }

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

  h1 {
    max-width: none;
  }

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

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .section,
  .hero {
    padding: 70px 0;
  }

  .hero-image img,
  .feature-image img {
    min-height: 300px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 0;
  }
}
