:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --ink: #25231f;
  --muted: #69655d;
  --line: #e6e0d7;
  --accent: #2f7d58;
  --accent-dark: #245e44;
  --accent-soft: #e7f3ec;
  --warm: #f6d365;
  --shadow: 0 18px 50px rgba(54, 47, 35, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  overflow-x: clip;
}

body {
  width: 100%;
  overflow-x: clip;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(246, 211, 101, 0.22), transparent 34rem),
    linear-gradient(180deg, #fbfaf7 0%, #f6f2ea 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

a {
  color: inherit;
}

.site-header,
.site-footer,
.section,
.legal-page {
  width: min(1080px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}

.site-logo {
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
}

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

.site-nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent-dark);
}

.hero {
  display: grid;
  min-height: 52svh;
  place-items: center start;
  padding: clamp(72px, 14vw, 150px) 0 clamp(56px, 9vw, 96px);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(3.2rem, 12vw, 7.2rem);
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  font-weight: 700;
}

.section {
  padding: 54px 0;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2,
.contact-box h2 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
}

.app-list {
  display: grid;
  gap: 16px;
}

.app-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 144px;
  padding: clamp(22px, 4vw, 32px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.app-card h3 {
  font-size: 1.35rem;
}

.app-card p {
  max-width: 640px;
  margin: 10px 0 0;
  color: var(--muted);
}

.button,
.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

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

.button:hover {
  background: var(--accent-dark);
}

.status {
  color: var(--accent-dark);
  background: var(--accent-soft);
  border: 1px solid #cde4d5;
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 5vw, 36px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mail-link {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 0 44px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.legal-page {
  padding: clamp(54px, 9vw, 92px) 0;
}

.legal-content {
  max-width: 840px;
}

.legal-content h1 {
  font-size: clamp(2.2rem, 7vw, 4rem);
}

.updated {
  margin: 16px 0 42px;
  color: var(--muted);
}

.legal-content section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  font-size: 1.15rem;
}

.legal-content p {
  margin: 12px 0 0;
  color: var(--muted);
}

.legal-table {
  margin: 40px 0 0;
  border-top: 1px solid var(--line);
}

.legal-table div {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.legal-table dt {
  font-weight: 800;
}

.legal-table dd {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 720px) {
  .site-header,
  .site-footer,
  .section,
  .legal-page {
    width: min(100% - 28px, 1080px);
  }

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

  .hero {
    min-height: 48svh;
  }

  .app-card {
    grid-template-columns: 1fr;
  }

  .button,
  .status {
    width: fit-content;
  }

  .legal-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
