:root {
  color-scheme: light;
  --ink: #222222;
  --muted: #667085;
  --line: #e7edf0;
  --blue: #65c3d7;
  --blue-dark: #2d95ad;
  --green: #5faf4d;
  --cream: #fffaf6;
  --panel: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(101, 195, 215, 0.24), transparent 32rem),
    radial-gradient(circle at 85% 35%, rgba(95, 175, 77, 0.14), transparent 28rem),
    linear-gradient(180deg, #f7fdff 0%, var(--cream) 100%);
  min-height: 100vh;
}

a {
  color: inherit;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--panel);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(44, 71, 84, 0.12);
}

.brand-mark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 52px;
  align-items: center;
  padding: 64px 0 84px;
}

.hero h1,
.page h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p,
.page p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.phone {
  width: min(360px, 100%);
  margin: 0 auto;
  border-radius: 42px;
  background: #111;
  padding: 14px;
  box-shadow: 0 28px 70px rgba(31, 54, 64, 0.22);
}

.phone-screen {
  min-height: 650px;
  border-radius: 32px;
  background: linear-gradient(180deg, #dff7fd 0%, #fff8f4 100%);
  overflow: hidden;
  padding: 42px 22px 24px;
}

.status {
  height: 22px;
  margin-bottom: 54px;
}

.login-card {
  margin-top: 150px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  padding: 28px 22px;
  box-shadow: 0 18px 42px rgba(44, 71, 84, 0.14);
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 28px;
}

.logo-row img {
  width: 42px;
  height: 42px;
}

.pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.pill,
.field,
.wide {
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.pill.active,
.wide {
  background: var(--blue);
  color: white;
}

.pill:not(.active),
.field {
  border: 1px solid var(--line);
  background: white;
}

.field {
  justify-content: flex-start;
  padding-left: 16px;
  color: #98a2b3;
  font-weight: 600;
  margin-bottom: 14px;
}

.wide {
  margin-top: 18px;
}

.section {
  padding: 70px 0;
  border-top: 1px solid rgba(231, 237, 240, 0.8);
}

.section h2,
.page h2 {
  margin: 0 0 18px;
  font-size: 34px;
  letter-spacing: 0;
}

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

.card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.page {
  padding: 54px 0 84px;
}

.support-panel {
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.support-panel p,
.support-panel li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.support-panel ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal {
  max-width: 900px;
}

.legal .support-panel {
  margin-top: 20px;
}

.legal .support-panel h2 {
  font-size: 26px;
}

.legal a,
.footer a {
  color: var(--blue-dark);
  font-weight: 800;
}

.contact {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact a {
  color: var(--blue-dark);
  font-weight: 800;
}

.footer {
  padding: 34px 0;
  color: var(--muted);
  border-top: 1px solid rgba(231, 237, 240, 0.8);
}

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

  .phone {
    width: min(330px, 100%);
  }

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

@media (max-width: 560px) {
  .shell {
    width: min(100% - 28px, 1080px);
  }

  .nav {
    align-items: flex-start;
    gap: 18px;
  }

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

  .hero h1,
  .page h1 {
    font-size: 44px;
  }

  .hero p,
  .page p {
    font-size: 18px;
  }
}
