:root {
  --bg: #f6f8f5;
  --panel: #ffffff;
  --ink: #17211f;
  --muted: #64716d;
  --line: #dde5df;
  --primary: #176b5b;
  --primary-dark: #0f4f43;
  --soft: #e7f3ed;
  --warning: #d98c24;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 2;
}

.nav-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(155deg, var(--primary), var(--primary-dark));
  position: relative;
  flex: 0 0 auto;
}

.mark::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  left: 8px;
  top: 8px;
  border: 3px solid #fff;
  border-radius: 50%;
  border-right-color: rgba(255,255,255,.45);
}

.mark::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 5px;
  right: 8px;
  bottom: 8px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}

.links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 650;
}

.hero {
  padding: 86px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

h1 {
  margin: 12px 0 18px;
  max-width: 680px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: .96;
  letter-spacing: 0;
}

.lead {
  margin: 0;
  max-width: 610px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--primary);
  font-weight: 800;
}

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

.phone {
  max-width: 330px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 38px;
  background: #17211f;
  box-shadow: 0 26px 70px rgba(20, 38, 32, .22);
}

.screen {
  min-height: 610px;
  border-radius: 28px;
  background: #f5f7f4;
  padding: 24px 18px;
}

.status {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 30px;
}

.app-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  margin-top: 12px;
}

.app-title {
  margin: 0 0 4px;
  font-size: 23px;
}

.small {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.pill {
  display: inline-flex;
  background: var(--soft);
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
}

.ring {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: conic-gradient(var(--primary) 0 72%, #dce5df 72% 100%);
  display: grid;
  place-items: center;
  margin: 20px auto;
}

.ring > div {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
}

.section {
  padding: 52px 0;
}

.section h2 {
  margin: 0 0 14px;
  font-size: 34px;
}

.section-intro {
  margin: 0 0 24px;
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card p,
.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.6;
}

.notice {
  background: #fff8ec;
  border: 1px solid #f0d6ad;
  color: #714d18;
  border-radius: 12px;
  padding: 18px;
  line-height: 1.55;
}

.legal {
  max-width: 820px;
  padding: 56px 0 72px;
}

.legal h1 {
  font-size: clamp(36px, 6vw, 56px);
  margin-bottom: 10px;
}

.legal h2 {
  margin-top: 34px;
  font-size: 24px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

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

  .hero {
    padding-top: 48px;
  }

  .links {
    gap: 12px;
    font-size: 13px;
  }
}
