:root {
  color-scheme: light;
  --bg: #f7fbff;
  --surface: #ffffff;
  --text: #07111f;
  --muted: #526173;
  --line: #dbe7f3;
  --primary: #199ee6;
  --primary-dark: #0c6ca8;
  --green: #32c76d;
  --shadow: 0 24px 80px rgba(16, 52, 84, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-icon {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a,
.site-footer a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

nav a:hover,
.site-footer a:hover {
  color: var(--primary-dark);
}

.hero {
  width: min(1120px, calc(100% - 32px));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 56px;
  padding: 34px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 4.4rem, 4.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.25rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #ffffff;
  background: var(--primary);
}

.button.secondary {
  color: var(--primary-dark);
  background: #e5f4ff;
}

.hero-media {
  position: relative;
  min-height: 660px;
}

.shot {
  position: absolute;
  display: block;
  width: min(330px, 47%);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.shot-main {
  right: 112px;
  top: 0;
  z-index: 2;
}

.shot-side {
  right: 0;
  top: 132px;
  z-index: 1;
}

.features,
.privacy-band,
.document {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.features {
  padding: 72px 0;
}

.section-heading {
  max-width: 680px;
}

h2 {
  margin: 0 0 18px;
  font-size: 2.4rem;
  line-height: 1.08;
}

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

.feature-grid article,
.support-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.feature-grid p,
.privacy-band p,
.document p {
  color: var(--muted);
}

.privacy-band {
  margin-bottom: 72px;
  padding: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  gap: 34px;
  background: #eaf7ff;
  border: 1px solid #cfeafe;
  border-radius: 8px;
}

.privacy-band img {
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.document {
  max-width: 820px;
  min-height: 68vh;
  padding: 72px 0;
}

.document h1 {
  margin-bottom: 24px;
}

.document h2 {
  margin-top: 42px;
  font-size: 1.45rem;
}

.document h3 {
  margin-top: 30px;
}

.document a {
  color: var(--primary-dark);
  font-weight: 800;
}

.support-card {
  margin: 32px 0;
}

.support-card h2 {
  margin-top: 0;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.site-footer span:last-child {
  display: flex;
  gap: 18px;
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-media {
    min-height: 560px;
  }

  .shot-main {
    left: 14%;
    right: auto;
  }

  .shot-side {
    right: 12%;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .privacy-band img {
    max-width: 260px;
  }
}

@media (max-width: 620px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    gap: 16px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-media {
    min-height: 420px;
  }

  .shot {
    width: 58%;
    border-radius: 18px;
  }

  .shot-main {
    left: 0;
  }

  .shot-side {
    right: 0;
    top: 96px;
  }

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

  .privacy-band {
    padding: 24px;
  }
}
