:root {
  color-scheme: light;
  --guilda-green-950: #062a25;
  --guilda-green-900: #0b3932;
  --guilda-green-800: #0f3a34;
  --guilda-sage-500: #8fa99a;
  --guilda-sage-200: #dbe4dd;
  --guilda-brass-500: #c9a35a;
  --guilda-brass-600: #b58c38;
  --guilda-graphite-900: #202529;
  --guilda-graphite-700: #3c4347;
  --guilda-paper: #f7f5f1;
  --guilda-paper-strong: #fffdf8;
  --guilda-border: rgba(15, 58, 52, 0.14);
  --shadow-soft: 0 20px 60px rgba(6, 42, 37, 0.12);
  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;
  background: var(--guilda-paper);
  color: var(--guilda-graphite-900);
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--guilda-green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--guilda-sage-500);
  font-size: 0.92rem;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 38px);
  color: var(--guilda-graphite-700);
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--guilda-green-900);
}

.header-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 700;
}

.header-cta,
.primary-action {
  background: var(--guilda-green-900);
  color: var(--guilda-paper-strong);
  box-shadow: 0 12px 28px rgba(6, 42, 37, 0.18);
}

.secondary-action {
  border: 1px solid rgba(15, 58, 52, 0.3);
  color: var(--guilda-green-900);
  background: rgba(255, 253, 248, 0.72);
}

.hero {
  position: relative;
  min-height: clamp(620px, 86vh, 860px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--guilda-border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(247, 245, 241, 0.98) 0%,
      rgba(247, 245, 241, 0.92) 30%,
      rgba(247, 245, 241, 0.42) 58%,
      rgba(247, 245, 241, 0.1) 100%
    ),
    url("/brand/hero/public-workgraph-hero.png") center right / cover no-repeat;
}

.hero-content {
  position: relative;
  width: min(660px, calc(100% - 40px));
  margin-left: clamp(20px, 6vw, 92px);
  padding: 80px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--guilda-brass-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 7.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero h1 span:first-child {
  color: var(--guilda-green-900);
}

.hero h1 span:last-child {
  color: var(--guilda-sage-500);
}

.hero-copy {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--guilda-graphite-700);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: -52px auto 0;
  position: relative;
  z-index: 2;
  background: var(--guilda-border);
  border: 1px solid var(--guilda-border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.trust-strip article,
.product-grid article,
.download-panel,
.docs-panel,
.dashboard-preview {
  background: rgba(255, 253, 248, 0.92);
}

.trust-strip article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px;
}

.trust-strip img,
.product-grid img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

h2,
h3,
p {
  letter-spacing: 0;
}

.trust-strip h2,
.product-grid h3 {
  margin: 0 0 8px;
  color: var(--guilda-green-900);
  font-size: 1rem;
}

.trust-strip p,
.product-grid p,
.section p {
  margin: 0;
  color: var(--guilda-graphite-700);
  line-height: 1.65;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 20px 0;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.section h2 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--guilda-green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
}

.dashboard-preview {
  min-height: 300px;
  border: 1px solid var(--guilda-border);
  border-radius: 10px;
  padding: 32px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.dashboard-preview img {
  width: min(260px, 80%);
  margin-bottom: 18px;
}

.dashboard-preview strong {
  display: block;
  color: var(--guilda-green-900);
  font-size: 1.4rem;
}

.dashboard-preview span {
  display: block;
  margin-top: 8px;
  color: var(--guilda-graphite-700);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.product-grid article {
  min-height: 220px;
  border: 1px solid var(--guilda-border);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(6, 42, 37, 0.06);
}

.download-panel,
.docs-panel {
  border: 1px solid var(--guilda-border);
  border-radius: 10px;
  padding: clamp(28px, 5vw, 54px);
  box-shadow: var(--shadow-soft);
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 32px;
  align-items: center;
}

.download-actions {
  display: grid;
  gap: 14px;
}

.download-actions span {
  color: var(--guilda-graphite-700);
  font-size: 0.95rem;
}

.docs-panel {
  margin-bottom: 84px;
}

.docs-panel .secondary-action {
  margin-top: 22px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 4vw, 72px);
  color: var(--guilda-graphite-700);
  border-top: 1px solid var(--guilda-border);
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.not-found-panel {
  width: min(520px, calc(100% - 40px));
  padding: 44px;
  text-align: center;
  background: var(--guilda-paper-strong);
  border: 1px solid var(--guilda-border);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.not-found-panel img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .hero {
    min-height: 760px;
    align-items: start;
  }

  .hero-bg {
    background:
      linear-gradient(
        180deg,
        rgba(247, 245, 241, 0.98) 0%,
        rgba(247, 245, 241, 0.9) 42%,
        rgba(247, 245, 241, 0.18) 100%
      ),
      url("/brand/hero/public-workgraph-hero.png") center bottom / cover
        no-repeat;
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 80px;
  }

  .trust-strip,
  .section-split,
  .download-panel {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin: 20px 20px 0;
  }

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

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

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: 720px;
  }

  .hero-actions,
  .hero-actions a,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .trust-strip article {
    grid-template-columns: 1fr;
  }

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