:root {
  --ink: #13161C;
  --gold: #E0A526;
  --gold-deep: #BE851A;
  --gold-soft: #F1C552;
  --blue: #2C72D6;
  --paper: #FFFFFF;
  --mist: #F6F7F9;
  --line: #E2E6EC;
  --gray: #5C6573;
  --gray-deep: #3C4452;
  --shell: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Barlow', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Archivo', sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }

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

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

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 28px;
}

.kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1;
  padding: 15px 28px;
  border-radius: 9px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.btn svg { width: 18px; height: 18px; }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

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

.btn-light {
  background: var(--paper);
  color: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand img {
  width: 69px;
  height: 69px;
  border-radius: 12px;
}

.brand .name {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 16.5px;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand .name span {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--gold-deep);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-weight: 600;
  font-size: 16px;
  color: var(--gray);
  padding: 6px 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover { color: var(--ink); }

.nav-links a:hover::after,
.nav-links a:focus-visible::after { transform: scaleX(1); }

.nav-links a.active { color: var(--ink); }

.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 4px; padding: 11px 22px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.mobile-menu a {
  display: block;
  padding: 16px 28px;
  font-weight: 600;
  font-size: 17px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu a.active { color: var(--blue); }

body.menu-open .mobile-menu { display: block; }

body.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-full {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 540px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 600px at 78% 28%, rgba(44, 114, 214, 0.22), transparent 60%), linear-gradient(150deg, #1B2029 0%, #0A0B0D 100%);
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 11, 0.82) 0%, rgba(8, 9, 11, 0.5) 55%, rgba(8, 9, 11, 0.2) 100%);
}

.hero-full-inner {
  position: relative;
  padding-block: 116px;
}

.hero-full-inner h1 {
  font-weight: 800;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 20px 0 0;
  max-width: 760px;
}

.hero-full-inner .accent { color: var(--gold); }

.hero-full-inner p {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin: 22px 0 34px;
}

.kicker.light { color: var(--gold-soft); }

.connect { padding-block: 88px; }

.connect-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.tile {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.tile:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(19, 22, 28, 0.07);
}

.tile-ico {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.tile-ico svg { width: 26px; height: 26px; }

.tile-text { display: flex; flex-direction: column; gap: 4px; flex: 1 1 auto; min-width: 0; }

.tile-text strong { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 19px; color: var(--ink); }

.tile-text span { color: var(--gray); font-size: 15.5px; }

.tile-arrow { width: 22px; height: 22px; color: var(--gold-deep); flex: none; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step { border-top: 3px solid var(--gold); padding-top: 24px; }

.step-n {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--gold-deep);
  line-height: 1;
}

.step h3 { font-weight: 700; font-size: 21px; margin: 14px 0 10px; }

.step p { color: var(--gray); font-size: 16.5px; line-height: 1.6; }

.ig-section { padding-block: 88px; }

.ig-carousel {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.ig-viewport {
  overflow: hidden;
  border-radius: 14px;
  height: 480px;
  transition: height 0.4s ease;
  box-shadow: 0 1px 2px rgba(19, 22, 28, 0.06), 0 10px 30px rgba(19, 22, 28, 0.08);
}

.ig-track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.ig-slide { flex: 0 0 100%; min-width: 0; position: relative; }

.ig-fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px;
  text-align: center;
  background: var(--mist);
  border-radius: 14px;
}

.ig-slide.show-fallback .ig-fallback { display: flex; }

.ig-slide.show-fallback .ig-frame { visibility: hidden; }

.ig-fallback .ig-glyph { width: 40px; height: 40px; color: var(--gray); }

.ig-fallback p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
}

.ig-frame {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
  background: #fff;
}

.ig-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.ig-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--line);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ig-dot:hover { background: var(--gray); }

.ig-dot.active { background: var(--gold); transform: scale(1.3); }

.section { padding: 88px 0; }

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

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

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2 {
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 40px);
  margin: 14px 0 0;
}

.section-head p { color: var(--gray); margin-top: 16px; font-size: 18px; }

.offer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.offer-item .ico {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(44, 114, 214, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}

.offer-item .ico svg { width: 28px; height: 28px; }

.offer-item h3 {
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 10px;
}

.offer-item p { color: var(--gray); font-size: 16.5px; }

.cta-band {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.cta-band .glow {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -140px;
  top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 165, 38, 0.16), transparent 70%);
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 64px;
}

.cta-inner h2 {
  color: var(--paper);
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 36px);
  max-width: 560px;
}

.page-head { padding-block: 72px 8px; }

.page-head h1 {
  font-weight: 800;
  font-size: clamp(36px, 5vw, 54px);
  margin: 16px 0 0;
}

.page-head p { color: var(--gray); font-size: 19px; margin-top: 18px; max-width: 560px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: start;
  padding-block: 64px 0;
}

.about-grid h2 { font-size: clamp(26px, 3vw, 33px); font-weight: 800; }

.page-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 92px 28px 108px;
}

.page-body h1 {
  font-weight: 800;
  font-size: clamp(36px, 5vw, 52px);
  margin: 0;
}

.page-lead {
  color: var(--gray);
  font-size: clamp(19px, 1.8vw, 22px);
  line-height: 1.55;
  margin-top: 22px;
  max-width: 600px;
}

.page-prose {
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.page-prose h2 {
  font-weight: 800;
  font-size: clamp(26px, 3vw, 32px);
  margin: 0 0 20px;
}

.page-prose p {
  color: var(--gray-deep);
  font-size: 18px;
  line-height: 1.75;
  margin-top: 20px;
}

.page-prose p:first-of-type { margin-top: 0; }

.crew {
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.crew .kicker { display: block; margin-bottom: 26px; }

.crew-member {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 34px;
  align-items: start;
}

.crew-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(150deg, #1A1E27, #0B0D12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.38);
  border-top: 3px solid var(--gold);
}

.crew-photo svg { width: 58px; height: 58px; }

.crew-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }

.crew-info h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 27px;
  margin: 0;
}

.crew-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 7px 0 18px;
}

.crew-info p:not(.crew-role) {
  color: var(--gray-deep);
  font-size: 17px;
  line-height: 1.7;
}

.crew-info p:not(.crew-role) + p { margin-top: 14px; }

@media (max-width: 680px) {
  .crew-member { grid-template-columns: 1fr; gap: 24px; }
  .crew-photo { max-width: 220px; aspect-ratio: 1 / 1; }
}

.prose p { color: var(--gray-deep); font-size: 18px; margin-top: 20px; }

.about-media {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

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

.learn-item {
  padding: 32px 28px 32px 0;
  border-top: 2px solid var(--ink);
}

.learn-item .n {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--gold-deep);
}

.learn-item h3 { font-weight: 700; font-size: 20px; margin: 12px 0 8px; }

.learn-item p { color: var(--gray); font-size: 16px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  padding-block: 56px 0;
  align-items: start;
}

.field { margin-bottom: 20px; }

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

.field input, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  background: var(--paper);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(44, 114, 214, 0.12);
}

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

.field.error input, .field.error textarea { border-color: #C0392B; }

.field .msg { color: #C0392B; font-size: 13.5px; margin-top: 6px; display: none; }

.field.error .msg { display: block; }

.form-note { font-size: 14px; color: var(--gray); margin-top: 6px; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(44, 114, 214, 0.07);
  border: 1px solid rgba(44, 114, 214, 0.25);
  color: var(--ink);
  padding: 18px 20px;
  border-radius: 10px;
  font-weight: 600;
}

.form-success svg { width: 22px; height: 22px; color: var(--blue); flex: none; }

.contact-aside h3 { font-weight: 700; font-size: 16px; margin-bottom: 18px; }

.contact-methods { display: flex; flex-direction: column; gap: 14px; }

.page-body .contact-methods { margin-top: 44px; max-width: 480px; }

.method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.method:hover { border-color: var(--gold); transform: translateY(-1px); }

.method .ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex: none;
}

.method .ico svg { width: 20px; height: 20px; }

.method .label { display: block; margin-bottom: 3px; font-size: 13px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; }

.method > span:last-child { display: flex; flex-direction: column; min-width: 0; flex: 1 1 auto; }

.method .value { font-weight: 600; font-size: 16.5px; word-break: break-word; }

.site-footer { background: #0A0B0D; color: rgba(255, 255, 255, 0.6); }

.footer-top {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
  padding: 56px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand { display: flex; gap: 14px; align-items: center; }

.footer-brand img { width: 52px; height: 52px; border-radius: 10px; }

.footer-brand .name {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--paper);
  text-transform: uppercase;
}

.footer-cols { display: flex; gap: 64px; }

.footer-cols .col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 14px;
}

.footer-cols .col a { display: block; color: rgba(255, 255, 255, 0.7); margin-bottom: 10px; font-size: 15.5px; transition: color 0.15s ease; }

.footer-cols .col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 10px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: border-color 0.15s ease;
}

.footer-social a:hover { border-color: var(--gold); }

.footer-social svg { width: 19px; height: 19px; }

@media (max-width: 920px) {
  .connect-tiles { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .hero-full { min-height: 0; }
  .hero-full-inner { padding-block: 88px; }
  .connect, .ig-section { padding-block: 64px; }
  .cta-inner { flex-direction: column; align-items: flex-start; text-align: left; padding-block: 48px; }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-top { flex-direction: column; }
  .footer-cols { gap: 48px; flex-wrap: wrap; }
}
