* {
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --pink: #9E004C;
  --red: #CC352E;
  --border: #e8e8e8;
  --gradient: linear-gradient(90deg, #9E004C 0%, #CC352E 100%);
}
@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: block;
}
html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--black);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  width: min(100% - 72px, 1180px);
  margin: 0 auto;
  padding: 35px 0 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.logo > span {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -1.1px;
}

.logo > span span {
  color: var(--pink);
}

.logo small {
  margin-top: 2px;
  font-size: 7px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.05px;
}

.register-btn {
  margin-top: 0;
  min-width: 95px;
  height: 24px;
  padding: 0 10px;
  border: 1px solid var(--pink);
  border-radius: 4px;
  color: var(--black);
  font-size: 7px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.register-btn:hover {
  color: #fff;
  background: var(--pink);
}

main {
  flex: 1;
}

.hero {
  text-align: center;
  padding: 43px 20px 0;
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--pink);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
}
.hero .eyebrow span{
  color: #000000;
}
.hero h1 {
  max-width: 1040px;
  margin: 0 auto;
  font-size: 48px;
  line-height: 55px;
  font-weight: 600;
  letter-spacing: -1.7px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-copy {
  margin: 25px auto 0;
  max-width: 1030px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}

.stats {
  width: min(100% - 40px, 650px);
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 30px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat strong {
  font-size: 48px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -1px;
}

.stat span {
  margin-top: 7px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}

.industries-section {
  width: min(100% - 40px, 1060px);
  margin: 70px auto 125px;
}

.section-label {
  margin: 0 0 25px;
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
}

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

.industry-card {
  min-height: 296px;
  padding: 25px 30px;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.11);
}

.icon-wrap {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.icon-wrap svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--pink);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-card h2 {
  margin: 0 0 16px 0;
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;

}

.industry-card > p {
  margin: 0 0 25px;
  max-width: 275px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.card-bottom {
  margin-top: auto;
  padding-top: 13px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.card-bottom strong {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
}

.card-bottom a {
  min-height: 34px;
  padding: 12px 12px 12px 20px;
  border: 1px solid rgba(158, 0, 76, 0.18);
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  transition: all 0.2s ease;
}

.card-bottom a span {
  font-size: 18px;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}



.site-footer {
  min-height: 48px;
  border-top: 1px solid #e7e7e7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  background: #fff;
}

.site-footer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  text-align: center;
}

.site-footer span {
  margin: 0 2px;
}

.site-footer em {
  color: var(--pink);
  font-style: normal;
}

/* Large desktop */
@media (min-width: 1200px) {
  .site-header {
    width: 1180px;
  }

  .industry-grid {
    gap: 20px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .site-header {
    width: min(100% - 40px, 900px);
  }

  .hero {
    padding-top: 38px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 47px;
  }

  .hero-copy {
    font-size: 17px;
    line-height: 25px;
  }

  .eyebrow,
  .section-label {
    font-size: 16px;
  }

  .stats {
    margin-top: 34px;
  }

  .stat strong {
    font-size: 40px;
  }

  .stat span {
    font-size: 14px;
  }

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

  .industry-card {
    min-height: 280px;
  }

  .industry-card h2 {
    font-size: 21px;
    line-height: 26px;
  }

  .industry-card > p,
  .card-bottom strong,
  .card-bottom a {
    font-size: 14px;
  }

  .site-footer p {
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 32px);
    padding-top: 14px;
  }

  .logo > span {
    font-size: 22px;
  }

  .register-btn {
    min-width: 110px;
    height: 30px;
    font-size: 8px;
  }

  .hero {
    padding: 20px 16px 0;
  }

  .eyebrow {
    margin-bottom: 9px;
    font-size: 15px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.8px;
  }

  .hero-copy {
    margin-top: 16px;
    font-size: 14px;
    line-height: 21px;
  }

  .desktop-break {
    display: none;
  }

  .stats {
    width: calc(100% - 32px);
    margin-top: 32px;
    gap: 10px;
  }

  .stat strong {
    font-size: 34px;
  }

  .stat span {
    margin-top: 5px;
    font-size: 10px;
  }

  .industries-section {
    width: calc(100% - 32px);
    margin-top: 28px;
    margin-bottom: 38px;
  }

  .section-label {
    margin-bottom: 13px;
    font-size: 12px;
    line-height: 18px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .industry-card {
    min-height: 0;
    padding: 18px 18px 15px;
    border-radius: 10px;
  }

  .icon-wrap {
    margin-bottom: 6px;
  }

  .industry-card h2 {
    margin: 0 0 10px 0;
    font-size: 20px;
    line-height: 25px;
  }

  .card-break {
    display: none;
  }

  .industry-card > p {
    max-width: none;
    margin-top: 7px;
    font-size: 13px;
    line-height: 19px;
    margin: 0 0 15px 0;
  }

  .card-bottom {
    padding-top: 18px;
    gap: 9px;
  }

  .card-bottom strong,
  .card-bottom a {
    font-size: 13px;
  }

  .card-bottom a {
    min-height: 32px;
    padding: 5px 10px;
  }

  .site-footer {
    min-height: 55px;
  }

  .site-footer p {
    font-size: 12px;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 27px;
    line-height: 34px;
  }

  .stats {
    gap: 4px;
  }

  .stat strong {
    font-size: 30px;
  }

  .stat span {
    font-size: 9px;
  }

  .site-footer p {
    font-size: 9px;
  }
}
