:root {
  --teal: #1494b8;
  --teal-deep: #0b6f8c;
  --teal-ink: #0a3d4d;
  --lime: #8ed14a;
  --mint: #5ee0c0;
  --lock: #3ec4e8;
  --paper: whitesmoke;
  --card: #fff;
  --line: rgba(10, 61, 77, 0.12);
  --muted: #3d6a78;
  --shadow: 0 24px 60px rgba(10, 111, 140, 0.18);
  --radius: 28px;
  --max: 1080px;
  --sans: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--teal-ink);
  background: whitesmoke;
  min-height: 100vh;
  line-height: 1.55;
}

a {
  color: var(--teal-deep);
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.site-header,
.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.2rem;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(10, 61, 77, 0.2);
}

nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--teal-ink);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
}

nav a:hover,
nav a[aria-current="page"] {
  background: #fff;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0 28px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.lede {
  font-size: 1.2rem;
  color: var(--teal-ink);
  max-width: 34rem;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  border: 0;
}

.btn-primary {
  background: var(--teal-ink);
  color: #fff;
}

.btn-ghost {
  background: #fff;
  color: var(--teal-ink);
  border: 1px solid var(--line);
}

.icon-stage {
  justify-self: center;
  width: min(360px, 100%);
  aspect-ratio: 1;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #14a0c4, #8ed14a);
}

.icon-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 8px 0 40px;
}

.grid article h2,
.legal h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.grid p,
.legal p,
.legal li {
  margin: 0;
  color: var(--muted);
}

.legal {
  margin: 24px auto 56px;
  max-width: 760px;
}

.legal header {
  margin-bottom: 24px;
}

.legal h1 {
  margin: 0 0 8px;
  letter-spacing: -0.04em;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.legal h2 {
  margin-top: 28px;
}

.legal p,
.legal ul {
  margin: 0 0 14px;
}

.meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 8px 0 36px;
  color: var(--teal-ink);
  font-size: 0.92rem;
}

.site-footer a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
  margin-left: 12px;
}

.note {
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 840px) {
  .hero,
  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 24px;
  }

  .icon-stage {
    order: -1;
    width: min(240px, 70%);
  }
}
