:root {
  color-scheme: light;
  --background: #f7f4ed;
  --surface: #fffdf8;
  --surface-muted: #edf6ef;
  --text: #10243f;
  --muted: #5f6c7d;
  --border: #dfe5dc;
  --accent: #26b879;
  --accent-strong: #159461;
  --shadow: 0 18px 60px rgba(16, 36, 63, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(38, 184, 121, 0.12), transparent 34rem),
    var(--background);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.page {
  display: flex;
  min-height: 100vh;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 22px;
  flex-direction: column;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-header {
  padding: 10px 0 34px;
}

.brand {
  color: var(--text);
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
}

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

.nav a,
.text-link {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 650;
  text-decoration-color: rgba(38, 184, 121, 0.5);
  text-underline-offset: 0.24em;
}

.nav a[aria-current="page"],
.nav a:hover,
.text-link:hover {
  color: var(--text);
}

main {
  flex: 1;
}

.hero {
  max-width: 820px;
  padding: 54px 0 38px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 8vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.5vw, 1.35rem);
}

.link-panel {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 16px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: var(--shadow);
}

.button-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  padding: 0 18px;
  text-decoration: none;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 22px;
}

.info-card,
.content-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 22px;
}

.info-card h2 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.info-card p,
.content-card p,
.launch-note {
  color: var(--muted);
}

.launch-note {
  margin: 34px 0 0;
  font-weight: 650;
}

.content-page {
  display: grid;
  padding: 34px 0 52px;
  place-items: start center;
}

.content-card {
  width: min(100%, 760px);
  padding: clamp(26px, 6vw, 48px);
}

.content-card h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
}

.content-card p {
  max-width: 620px;
  font-size: 1.04rem;
}

.content-card a {
  color: var(--accent-strong);
  font-weight: 750;
}

.site-footer {
  padding: 38px 0 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 760px) {
  .page {
    padding: 18px;
  }

  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    padding-bottom: 22px;
  }

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

  .hero {
    padding-top: 28px;
  }

  .link-panel {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .button-link {
    width: 100%;
  }

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