:root {
  color-scheme: light;
  --bg: #f7f8fb;
  --panel: #ffffff;
  --ink: #10131a;
  --muted: #5e6678;
  --line: #dce1ea;
  --brand: #4c83ff;
  --brand-dark: #2457d6;
  --accent: #1d9a8a;
  --shadow: 0 18px 60px rgba(28, 37, 66, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(220, 225, 234, 0.8);
  background: rgba(247, 248, 251, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
}

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

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(76, 131, 255, 0.28);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(76, 131, 255, 0.24);
}

.button.secondary {
  background: white;
  color: var(--brand-dark);
  box-shadow: none;
}

.button:hover { text-decoration: none; }

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: 54px;
  min-height: calc(100vh - 72px);
  padding: 56px 0 72px;
}

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

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

h1 {
  max-width: 780px;
  font-size: clamp(44px, 7vw, 86px);
}

h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: 21px; }

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
}

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

.hero-visual { display: grid; gap: 18px; }

.phone {
  border: 1px solid rgba(16, 19, 26, 0.1);
  border-radius: 38px;
  background: #10131a;
  padding: 14px;
  box-shadow: var(--shadow);
}

.phone-screen {
  min-height: 580px;
  overflow: hidden;
  border-radius: 28px;
  background: white;
}

.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.app-top img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.app-pill {
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: #c8cfdd;
}

.feed-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(140deg, #4c83ff, #1d9a8a);
}

.feed-line {
  height: 10px;
  margin-top: 9px;
  border-radius: 999px;
  background: #dce1ea;
}

.feed-line.short { width: 62%; }
.feed-line.medium { width: 82%; }

.image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 12px;
}

.image-strip span {
  aspect-ratio: 1.25;
  border-radius: 8px;
  background: linear-gradient(140deg, #e8f3ff, #eef2ff 48%, #d8f7ef);
}

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

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

.tile {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 8px 28px rgba(28, 37, 66, 0.06);
}

.tile p { color: var(--muted); }

.page {
  max-width: 860px;
  padding: 56px 0 88px;
}

.page h1 { font-size: clamp(38px, 5vw, 64px); }
.page h2 { margin-top: 42px; font-size: 28px; }
.page h3 { margin-top: 26px; }
.page p, .page li { color: #343b4b; }

.notice {
  padding: 18px 20px;
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  background: white;
  color: #343b4b;
}

.legal-list { padding-left: 22px; }

.footer {
  border-top: 1px solid var(--line);
  background: white;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 840px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

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

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .phone-screen { min-height: 470px; }
  .grid { grid-template-columns: 1fr; }
}
