:root {
  --ink: #17211d;
  --muted: #5c6863;
  --line: #dfe5de;
  --paper: #fbfbf7;
  --panel: #ffffff;
  --accent: #32765a;
  --accent-strong: #1f5f48;
  --soft: #eef4ee;
  --shadow: 0 20px 70px rgba(31, 45, 38, 0.12);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 0 36px;
  border-bottom: 1px solid rgba(23, 33, 29, 0.08);
  background: rgba(251, 251, 247, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: 0;
}

.brand small,
.site-footer span:nth-child(2) {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.site-nav a,
.language-switch button {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 650;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.language-switch button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--soft);
}

.language-switch {
  display: flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
}

.language-switch button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
}

.menu-button span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.page-shell {
  outline: none;
}

.section {
  padding: 86px 36px;
}

.section.tight {
  padding-top: 56px;
}

.inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12, 22, 18, 0.84), rgba(12, 22, 18, 0.48), rgba(12, 22, 18, 0.16)),
    url("./assets/bigquery-table.png") center / cover;
  color: #fff;
}

.hero.services {
  background:
    linear-gradient(90deg, rgba(12, 22, 18, 0.84), rgba(12, 22, 18, 0.5), rgba(12, 22, 18, 0.12)),
    url("./assets/make-workflow.png") center / cover;
}

.hero.about {
  background:
    linear-gradient(90deg, rgba(12, 22, 18, 0.84), rgba(12, 22, 18, 0.46), rgba(12, 22, 18, 0.12)),
    url("./assets/appsscript.png") center / cover;
}

.hero.proof {
  background:
    linear-gradient(90deg, rgba(12, 22, 18, 0.84), rgba(12, 22, 18, 0.5), rgba(12, 22, 18, 0.16)),
    url("./assets/stock-update.png") center / cover;
}

.hero.contact {
  background:
    linear-gradient(90deg, rgba(12, 22, 18, 0.86), rgba(12, 22, 18, 0.52), rgba(12, 22, 18, 0.18)),
    url("./assets/sales-report.png") center / cover;
}

.hero-content {
  width: min(760px, 100%);
  padding: 90px 36px;
  margin-left: max(0px, calc((100vw - 1120px) / 2));
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 920px;
}

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

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.14;
}

p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.68;
}

.hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #fff;
  color: var(--ink);
  font-weight: 760;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button.dark {
  background: var(--accent);
  color: #fff;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.intro .label {
  color: var(--accent-strong);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

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

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cell {
  min-height: 240px;
  padding: 30px;
  background: var(--panel);
}

.cell .number,
.cell .kicker {
  display: block;
  margin-bottom: 34px;
  color: var(--accent-strong);
  font-weight: 850;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tags span {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.media-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.proof-list {
  display: grid;
  gap: 42px;
}

.proof-item {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) 1fr;
  gap: 34px;
  align-items: center;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.proof-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.proof-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 720;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  background: var(--panel);
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 142px;
  resize: vertical;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 34px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer a {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    padding: 0 18px;
  }

  .menu-button {
    display: block;
    grid-column: 2;
  }

  .language-switch {
    grid-column: 3;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 18px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .section {
    padding: 60px 20px;
  }

  .hero {
    min-height: calc(92svh - 76px);
  }

  .hero-content {
    padding: 66px 20px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 4.2rem);
  }

  .intro,
  .media-row,
  .proof-item,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .cell {
    min-height: auto;
  }
}
