:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #627182;
  --line: #dce3ea;
  --surface: #ffffff;
  --soft: #f6f2e7;
  --accent: #f6c445;
  --accent-dark: #6f4c00;
  --green: #1f8a5b;
  --blue: #214f7a;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfcfd;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 6vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #1b1b1b;
  background: var(--accent);
  border: 2px solid #1b1b1b;
  border-radius: 8px;
  box-shadow: 4px 4px 0 #1b1b1b;
  font-size: 14px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.nav a {
  padding: 8px 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  max-width: 1180px;
  min-height: 620px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 96px) clamp(20px, 6vw, 72px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

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

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  color: #191919;
  background: var(--accent);
  border: 2px solid #191919;
  border-radius: 8px;
  box-shadow: 4px 4px 0 #191919;
  font-weight: 900;
  text-decoration: none;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.commerce-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(23, 32, 42, 0.1);
}

.commerce-card::before {
  position: absolute;
  inset: -16px auto auto -16px;
  width: 112px;
  height: 112px;
  background:
    linear-gradient(90deg, rgba(31, 138, 91, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(31, 138, 91, 0.18) 1px, transparent 1px);
  background-size: 16px 16px;
  content: "";
  z-index: -1;
}

.commerce-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.metric-row span {
  color: var(--muted);
}

.metric-row strong {
  min-width: 0;
  text-align: right;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.channel-grid span {
  padding: 11px 12px;
  background: #f7f9fb;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 88px) clamp(20px, 6vw, 72px);
}

.band {
  max-width: none;
  background: var(--soft);
}

.band > * {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.two-column p,
.service-grid p,
.contact-card p {
  color: var(--muted);
  font-size: 17px;
}

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

.service-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid rgba(23, 32, 42, 0.12);
  border-radius: 8px;
}

.profile-panel {
  padding: 8px 0 0;
}

.profile-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-list div {
  padding: 20px;
  background: var(--surface);
}

.profile-list dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.profile-list dd {
  margin: 0;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.65fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.contact-card {
  padding: 24px;
  background: #15202b;
  border-radius: 8px;
  color: #ffffff;
}

.contact-card a {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 22px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-card p {
  margin-bottom: 0;
  color: #d6dee6;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(20px, 6vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

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

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

  .hero,
  .two-column,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .commerce-card,
  .profile-list,
  .contact-card {
    min-width: 0;
  }

  .hero {
    min-height: auto;
  }

  .service-grid,
  .profile-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 36px;
  }

  .lead {
    font-size: 18px;
  }

  .commerce-card,
  .service-grid article,
  .contact-card {
    padding: 20px;
  }

  .metric-row {
    display: block;
  }

  .metric-row strong {
    display: block;
    margin-top: 3px;
    text-align: left;
  }

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