:root {
  color-scheme: light;
  --bg: #f7f8f6;
  --paper: #ffffff;
  --ink: #111614;
  --muted: #59635e;
  --line: rgba(20, 32, 27, 0.14);
  --teal: #0f6c62;
  --teal-dark: #0a443f;
  --shadow: 0 18px 50px rgba(14, 22, 18, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

main {
  min-height: 100vh;
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  grid-template-rows: auto 1fr;
  isolation: isolate;
}

.heroMedia {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(248, 249, 246, 0.96) 0%, rgba(248, 249, 246, 0.74) 37%, rgba(248, 249, 246, 0.1) 68%),
    linear-gradient(180deg, rgba(248, 249, 246, 0.04) 0%, rgba(248, 249, 246, 0.02) 70%, var(--bg) 100%),
    url('/workspace-hero.png') right center / cover no-repeat;
}

.nav {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark,
.nav nav,
.footer a {
  display: inline-flex;
  align-items: center;
}

.wordmark {
  gap: 10px;
  font-size: 15px;
  font-weight: 680;
}

.mark {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.76);
  color: var(--teal-dark);
}

.nav nav {
  gap: 26px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 26px rgba(18, 27, 22, 0.08);
}

.nav nav a {
  font-size: 13px;
  font-weight: 620;
  color: rgba(17, 22, 20, 0.72);
}

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

.heroContent {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 0 136px;
}

.heroContent h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(54px, 9vw, 124px);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.heroContent p {
  max-width: 540px;
  margin: 26px 0 0;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.45;
  color: var(--muted);
  font-weight: 520;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 720;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button svg,
.rowArrow,
.rowIcon svg,
.quietBand svg,
.footer svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(17, 22, 20, 0.2);
}

.secondary {
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(17, 22, 20, 0.18);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.spaces {
  position: relative;
  width: min(1180px, calc(100% - 44px));
  margin: -78px auto 0;
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 42px;
  align-items: start;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.sectionIntro h2 {
  margin: 0;
  max-width: 440px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.sectionIntro p {
  max-width: 390px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.linkList {
  display: grid;
  gap: 10px;
}

.linkRow {
  min-height: 92px;
  display: grid;
  grid-template-columns: 46px 1fr 24px;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.linkRow:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 108, 98, 0.32);
  box-shadow: 0 14px 28px rgba(14, 22, 18, 0.08);
}

.rowIcon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--teal-dark);
  background: rgba(15, 108, 98, 0.1);
}

.rowCopy {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.rowCopy strong {
  font-size: 17px;
  letter-spacing: 0;
}

.rowCopy span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.rowArrow {
  color: rgba(17, 22, 20, 0.54);
}

.quietBand {
  width: min(1180px, calc(100% - 44px));
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 76px;
}

.quietBand div {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.quietBand svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.quietBand h2 {
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

.quietBand p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.footer {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  min-height: 86px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.footer span {
  font-weight: 680;
  color: var(--ink);
}

.footer a {
  gap: 8px;
}

@media (max-width: 780px) {
  .hero {
    min-height: 760px;
  }

  .heroMedia {
    background:
      linear-gradient(180deg, rgba(248, 249, 246, 0.98) 0%, rgba(248, 249, 246, 0.78) 42%, rgba(248, 249, 246, 0.22) 82%, var(--bg) 100%),
      url('/workspace-hero.png') center bottom / cover no-repeat;
  }

  .nav {
    height: auto;
    padding: 18px 0;
    align-items: flex-start;
  }

  .nav nav {
    display: none;
  }

  .heroContent {
    padding: 42px 0 142px;
    justify-content: flex-start;
  }

  .heroContent h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.4vw, 44px);
    line-height: 0.96;
    overflow-wrap: anywhere;
  }

  .spaces {
    grid-template-columns: 1fr;
    margin-top: -92px;
    width: calc(100% - 28px);
    max-width: 1180px;
    padding: 22px;
    gap: 26px;
  }

  .sectionIntro h2 {
    font-size: clamp(24px, 7vw, 30px);
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .linkRow {
    grid-template-columns: 42px 1fr;
    min-height: 96px;
  }

  .rowArrow {
    display: none;
  }

  .quietBand {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .footer {
    min-height: 110px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .linkRow {
    transition: none;
  }
}
