:root {
  color-scheme: light;
  --ink: #111d24;
  --muted: #5b6b72;
  --soft: #eef4f3;
  --line: #d8e2e3;
  --brand: #126d6c;
  --brand-dark: #0d3d43;
  --accent: #9a6632;
  --navy: #102d35;
  --navy-deep: #081b22;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(17, 29, 36, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f8fbfa;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: rgba(8, 27, 34, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--navy-deep);
  background: #d9f0ea;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, #eef5f3 0%, #f7faf7 54%, #fbfcfb 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  opacity: 0.42;
  background:
    repeating-linear-gradient(90deg, rgba(16, 45, 53, 0.09) 0 1px, transparent 1px 86px),
    repeating-linear-gradient(0deg, rgba(16, 45, 53, 0.06) 0 1px, transparent 1px 86px);
}

.hero::after {
  left: 58%;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.96;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-text,
.lead,
.section-heading p,
.section > p,
.card p,
.privacy-content p,
.contact p {
  color: var(--muted);
}

.hero-text {
  max-width: 680px;
  margin: 26px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(180deg, #177b79, var(--brand-dark));
}

.button.secondary {
  color: var(--brand-dark);
  background: transparent;
}

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

.hero-panel,
.card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  z-index: 1;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.hero-panel::before {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--brand-dark);
  background: #e5f4ef;
  font-size: 0.78rem;
  font-weight: 800;
  content: "Company profile";
  text-transform: uppercase;
}

.hero-panel dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.hero-panel dt {
  color: #66777d;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel dd {
  margin: 4px 0 0;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.section {
  padding: clamp(56px, 8vw, 92px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.lead {
  max-width: 900px;
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(18, 109, 108, 0.08), transparent 44%),
    var(--soft);
}

.split p {
  max-width: 720px;
}

.card {
  padding: 24px;
  box-shadow: 0 16px 36px rgba(17, 29, 36, 0.08);
}

.service-section {
  border-block-start: 1px solid var(--line);
  border-block-end: 0;
  background:
    linear-gradient(90deg, rgba(240, 181, 126, 0.12), transparent 46%),
    #fbfdfc;
}

.service-card {
  display: grid;
  gap: 12px;
}

.service-card a {
  color: var(--brand-dark);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-section {
  background: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-item {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7faf9);
}

.proof-item span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--accent);
  font-weight: 850;
}

.proof-item p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.app-section {
  background:
    linear-gradient(180deg, var(--white), #f5f9f8);
}

.support-section {
  padding-block: clamp(42px, 6vw, 72px);
  background: var(--navy);
}

.support-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.support-card h2 {
  margin-bottom: 12px;
}

.support-card p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.support-card .button {
  min-width: 180px;
  border-color: rgba(255, 255, 255, 0.2);
}

.privacy {
  background: #102f32;
  color: var(--white);
}

.privacy .eyebrow,
.privacy a {
  color: #f0b57e;
}

.privacy .section-heading p,
.privacy-content p {
  color: rgba(255, 255, 255, 0.78);
}

.privacy-content {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.privacy-content p {
  margin: 0;
}

.privacy-content strong {
  color: var(--white);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 24px;
  font-style: normal;
  border-left: 4px solid var(--brand);
}

.contact-card a {
  color: var(--brand-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

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

  .hero::after {
    left: 0;
    top: auto;
    height: 34%;
    clip-path: none;
    opacity: 0.08;
  }

  .hero {
    min-height: auto;
  }

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

  .proof-grid,
  .support-card {
    grid-template-columns: 1fr;
  }

  .support-card .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
