:root {
  --navy: #111c38;
  --blue: #235bff;
  --ice: #eaf1ff;
  --green: #22c55e;
  --text: #1b2440;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff, var(--ice));
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  max-width: 1160px;
  margin: 0 auto;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 1.25rem;
  font-weight: 950;
}

nav {
  display: flex;
  gap: 24px;
  font-weight: 800;
}

.hero,
.talent,
.delivery,
.roles,
footer {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 22px;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.overline {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3.3rem, 7vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

p,
li {
  line-height: 1.75;
  color: #526079;
}

.intro {
  max-width: 720px;
  font-size: 1.15rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.hero-stats span,
.profile-card,
.cards article,
.delivery-list div {
  border-radius: 28px;
  background: white;
  box-shadow: 0 24px 70px rgba(35, 91, 255, 0.1);
}

.hero-stats span {
  padding: 18px;
  color: #526079;
}

.hero-stats b {
  display: block;
  color: var(--navy);
  font-size: 2rem;
}

.profile-card {
  padding: 34px;
  border: 1px solid rgba(35, 91, 255, 0.12);
}

.avatar {
  width: 92px;
  height: 92px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  background: var(--navy);
  color: white;
  font-size: 2rem;
  font-weight: 950;
}

button {
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  padding: 14px 20px;
  font-weight: 900;
  cursor: pointer;
}

.section-title {
  max-width: 780px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.cards article,
.delivery-list div {
  padding: 28px;
}

.delivery {
  background: var(--navy);
  color: white;
  max-width: none;
  padding-left: max(22px, calc((100vw - 1160px) / 2));
  padding-right: max(22px, calc((100vw - 1160px) / 2));
}

.delivery p {
  color: rgba(255, 255, 255, 0.72);
}

.delivery-list {
  display: grid;
  gap: 18px;
}

.delivery-list div {
  background: rgba(255, 255, 255, 0.08);
}

.delivery-list span {
  color: var(--green);
  font-weight: 950;
}

.roles ul {
  columns: 2;
  padding-left: 22px;
  font-size: 1.1rem;
}

footer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
}

footer a {
  color: var(--blue);
  font-weight: 900;
}

form {
  display: grid;
  gap: 14px;
}

input,
textarea {
  border: 1px solid rgba(27, 36, 64, 0.14);
  border-radius: 18px;
  padding: 16px;
  font: inherit;
}

textarea {
  min-height: 130px;
}

.status {
  min-height: 24px;
}

@media (max-width: 850px) {
  .topbar,
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .cards,
  footer {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .roles ul {
    columns: 1;
  }
}
