@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700;800&display=swap');

:root {
  --bg: #f4f8fa;
  --bg-accent: #e8f3f9;
  --ink: #0f1f1a;
  --muted: #4b6159;
  --line: #d2e2dc;
  --brand: #0f6b45;
  --brand-2: #1c8fc0;
  --max: 1024px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 82% -15%, rgba(28, 143, 192, 0.12), transparent 60%),
    radial-gradient(720px 300px at -10% 10%, rgba(15, 107, 69, 0.1), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-accent) 100%);
}

a {
  color: inherit;
}

.shell {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  padding: 1rem 0 0.75rem;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

.top-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.95rem;
}

.top-nav a {
  text-decoration: none;
  color: #14382b;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid transparent;
  transition: border-color 140ms ease;
}

.top-nav a:hover {
  border-bottom-color: #5da58a;
}

.hero {
  padding: 3rem 0 1.25rem;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--brand-2);
}

.hero-grid {
  margin-top: 0.85rem;
  display: grid;
  gap: 2.1rem;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  align-items: start;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5.4vw, 3.35rem);
  max-width: 11.5ch;
}

.lead {
  margin-top: 1rem;
  font-size: clamp(1rem, 2.1vw, 1.14rem);
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.65;
}

.logo-wrap {
  justify-self: end;
  width: min(340px, 100%);
}

.logo-image {
  width: 100%;
  height: auto;
  display: block;
}

.asset-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.asset-note code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.85em;
}

.section {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0 3rem;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.15rem);
  margin-top: 0.25rem;
}

.app-title-row {
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.app-inline-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: block;
  box-shadow: 0 8px 14px rgba(20, 54, 40, 0.08);
}

.summary {
  margin-top: 0.95rem;
  color: var(--muted);
  max-width: 70ch;
  font-size: 1rem;
  line-height: 1.72;
}

.feature-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1d4032;
}

.feature-list li::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  flex: 0 0 auto;
}

.media-gallery {
  margin-top: 1.7rem;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
  justify-content: start;
}

.shot {
  margin: 0;
}

.shot img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  border-radius: 18px;
  display: block;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 22px rgba(13, 43, 32, 0.08);
}

.shot figcaption {
  margin-top: 0.48rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0 2.6rem;
  font-size: 0.93rem;
  color: var(--muted);
}

.site-footer p {
  margin: 0.22rem 0;
}

.legal-header {
  padding-bottom: 0;
}

.legal-main {
  border-top: 1px solid var(--line);
  padding: 2rem 0 3.5rem;
  max-width: 760px;
}

.legal-date {
  margin: 0.35rem 0 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-main h1 {
  max-width: none;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.legal-main h2 {
  margin-top: 1.9rem;
  font-size: 1.14rem;
}

.legal-main p,
.legal-main li {
  line-height: 1.7;
  color: #18372c;
}

.legal-main ul {
  margin: 0.45rem 0 0;
  padding-left: 1.2rem;
}

@media (max-width: 860px) {
  .hero {
    padding: 2.2rem 0 1rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .logo-wrap {
    justify-self: start;
    width: min(320px, 86%);
  }

  .media-gallery {
    grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
    gap: 0.9rem;
  }

  .top-nav {
    gap: 0.72rem;
    font-size: 0.9rem;
  }
}
