﻿html
{
  width: 100%;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

*
{
  box-sizing: border-box;
}

:root
{
  --navy: #0b1d37;
  --green: #41996f;
  --border: #d9dde3;
}

@font-face
{
  font-family: 'Inter';
  src: url('/fonts/inter/inter-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face
{
  font-family: 'Inter';
  src: url('/fonts/inter/inter-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

p
{
  line-height: 1.8;
}

h1, h2, h3, h4
{
  line-height: 1.25;
}

body
{
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;

  font-family: 'inter', sans-serif;
  font-size: clamp(8px, 5vw, 16px);
  font-weight: normal;

  color: rgb(34,34,34);
  background: rgb(255,255,255);
}

.bgimg
{
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
}

img
{
  max-width: 100%;
  height: auto;
  border: 0;
  margin: 0;
  padding: 0;
}

a.link
{
  text-decoration: none;
}

.link
{
  cursor: pointer;
  text-decoration: underline;
}

h1
{
  font-family: 'Inter', sans-serif;
  font-size: clamp(26px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -1px;
}

h2
{
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1px;
}

h3
{
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1px;
}

h4
{
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  line-height: 1.2;
}

h5
{
  font-family: 'Inter', sans-serif;
  font-size: clamp(10px, 2vw, 14px);
  font-weight: 400;
  line-height: 1.2;
}

.header-logo
{
  width: 280px;
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-target
{
  margin-top: 18px;
  max-width: 620px;
  line-height: 1.7;
  font-size: 15px;
  font-weight: 500;
}

.why-icon
{
  width: 48px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.roles-icon
{
  width: 58px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.footer-logo
{
  width: 72px;
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.page-wrapper
{
  max-width: 1680px;
  margin: 0 auto;
  background: #fff;
}

.accent
{
  color: var(--green);
}

.line
{
  width: 48px;
  height: 3px;
  background: var(--green);
  margin: 28px 0;
}

.section
{
  padding: 70px 7%;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 90px;
}

.btn-dark
{
  background: var(--navy);
  color: white;
  padding: 14px 28px;
  border-radius: 3px;
  border: none;
}

.hero-laptop-wrap
{
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero-screen
{
  width: 100%;
  max-width: 820px;
  height: auto;
  margin-top: 0px;
}

.role-card
{
  border-right: 1px solid var(--border);
  min-height: 230px;
  padding: 0 28px;
}

.role-card:last-child
{
  border-right: none;
}

.icon-green
{
  color: var(--green);
  font-size: 42px;
  margin-bottom: 20px;
}

input, textarea
{
  border: 1px solid #cfd6e2 !important;
}

textarea
{
  min-height: 140px;
  resize: vertical;
  overflow-y: hidden;
  transition: height 0.08s ease;
}

.honeypot
{
  position: absolute;
  left: -9999px;
}
