:root {
  --bg: #cfe2ff;
  --bg-2: #a9cbff;
  --ink: #07111f;
  --muted: #526071;
  --teal: #0aa6ad;
  --teal-dark: #07838c;
  --white: #ffffff;
  --card: rgba(255, 255, 255, 0.88);
  --line: rgba(7, 17, 31, 0.08);
  --shadow: 0 22px 70px rgba(21, 71, 133, 0.18);
  --radius: 34px;
  --letter-tight: -0.02em;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  background:
    linear-gradient(135deg, #e9f3ff 0%, var(--bg) 46%, var(--bg-2) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(125, 174, 244, 0.22);
}

body::before {
  width: 720px;
  height: 720px;
  top: -420px;
  right: 6%;
}

body::after {
  width: 760px;
  height: 760px;
  right: -360px;
  bottom: -320px;
}

a {
  color: inherit;
}

.page {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: center;
  padding: 64px 0 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 850;
  text-decoration: none;
  letter-spacing: var(--letter-tight);
}

.brand__icon {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: block;
}

.brand--privacy {
  margin: 48px 0 28px;
}

h1 {
  margin: 74px 0 36px;
  font-size: clamp(56px, 6vw, 90px);
  line-height: 0.98;
  letter-spacing: var(--letter-tight);
  font-weight: 900;
}

.lead {
  max-width: 560px;
  margin: 0;
  color: rgba(7, 17, 31, 0.86);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.26;
  letter-spacing: var(--letter-tight);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 54px;
}

.status-pill,
.text-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 800;
}

.status-pill {
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, #13bfc3, var(--teal-dark));
  box-shadow: 0 14px 30px rgba(8, 131, 140, 0.22);
}

.text-link {
  padding: 0 4px;
  color: var(--teal-dark);
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.feature-stack {
  position: relative;
  min-height: 640px;
}

.top-pill,
.feature-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 24px;
  border-radius: 999px;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.top-pill {
  top: 0;
  left: 28%;
  padding: 16px 20px;
  color: #fff;
  background: linear-gradient(135deg, #13bfc3, #07838c);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: var(--letter-tight);
}

.top-pill__icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
}

.top-pill__icon img {
  width: 34px;
  height: 34px;
  display: block;
  filter: brightness(0) invert(1);
}

.top-pill strong {
  margin-left: 6px;
  padding: 8px 16px;
  color: var(--teal-dark);
  background: #fff;
  border-radius: 999px;
}

.feature-card {
  min-height: 80px;
  padding: 0 44px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: var(--letter-tight);
}

.feature-card--youtube {
  top: 132px;
  left: 15%;
  width: 78%;
}

.feature-card:nth-of-type(3) {
  top: 248px;
  left: 23%;
  width: 82%;
}

.feature-card--wide {
  top: 364px;
  left: 4%;
  width: 94%;
}

.feature-card:nth-of-type(5) {
  top: 480px;
  left: 20%;
  width: 78%;
}

.feature-card--small {
  top: 596px;
  left: 37%;
  width: 54%;
}

.feature-icon {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  display: block;
  object-fit: contain;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 0 0 56px;
}

.info-grid article,
.privacy-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 60px rgba(21, 71, 133, 0.12);
}

.info-grid article {
  padding: 28px;
}

.info-grid h2,
.privacy-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: var(--letter-tight);
}

.info-grid p,
.privacy-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.page--narrow {
  max-width: 860px;
}

.privacy-card {
  padding: clamp(28px, 5vw, 58px);
}

.privacy-card h1 {
  margin: 0 0 34px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.02;
}

.privacy-card h2 {
  margin-top: 34px;
}

.privacy-card a {
  color: var(--teal-dark);
  font-weight: 750;
}

.eyebrow {
  margin-bottom: 14px !important;
  color: var(--teal-dark) !important;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: var(--letter-tight);
}

.updated {
  margin-top: 42px !important;
  font-size: 15px !important;
}

.back-link {
  margin-top: 42px !important;
}

.back-link a {
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration: none;
}

.back-link a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 42px;
  }

  h1 {
    margin-top: 54px;
  }

  .feature-stack {
    min-height: 560px;
  }

  .feature-card,
  .top-pill {
    position: static;
    width: 100% !important;
    min-height: 78px;
    margin-bottom: 18px;
    font-size: 23px;
  }

  .feature-card--small {
    width: 70% !important;
  }

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

@media (max-width: 620px) {
  .page {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    font-size: 24px;
  }

  .brand__icon {
    width: 48px;
    height: 48px;
  }

  .logo {
    width: 48px;
    height: 48px;
    border-width: 6px;
  }

  h1 {
    font-size: 54px;
  }

  .lead {
    font-size: 27px;
  }

  .feature-card {
    padding: 0 24px;
    gap: 16px;
    font-size: 20px;
  }

  .top-pill {
    padding: 14px 16px;
    font-size: 22px;
  }
}
