:root {
  --bg: #020c18;
  --bg-deep: #000814;
  --panel: rgba(8, 25, 43, 0.88);
  --panel-strong: rgba(11, 33, 55, 0.96);
  --line: rgba(120, 205, 224, 0.25);
  --line-strong: rgba(116, 235, 232, 0.52);
  --text: #f6fbff;
  --muted: #a9bbcf;
  --soft: #d3e3f2;
  --teal: #5cf0e7;
  --teal-2: #27bcc6;
  --blue: #55a9ff;
  --green: #35d583;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 78% 15%, rgba(65, 231, 226, 0.24), transparent 18rem),
    radial-gradient(circle at 32% 54%, rgba(33, 117, 184, 0.2), transparent 24rem),
    linear-gradient(180deg, var(--bg-deep), var(--bg) 48%, #031325);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(78, 232, 231, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 232, 231, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 86%);
}

body::after {
  position: fixed;
  top: 124px;
  right: -170px;
  z-index: -1;
  width: min(58vw, 620px);
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 28%, rgba(116, 255, 242, 0.92), rgba(34, 185, 199, 0.72) 28%, rgba(8, 56, 87, 0.22) 58%, transparent 70%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 40%);
  box-shadow: inset 22px -34px 70px rgba(0, 8, 20, 0.72);
  opacity: 0.88;
}

a {
  color: inherit;
}

svg {
  display: block;
  flex: 0 0 auto;
  width: 1.1em;
  height: 1.1em;
  fill: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  min-height: 96px;
  margin: 0 auto;
  padding: 0 38px;
  background: linear-gradient(180deg, rgba(2, 12, 24, 0.92), rgba(2, 12, 24, 0.62));
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand img,
.mini-brand img,
.site-footer img,
.policy-card img {
  filter: drop-shadow(0 0 18px rgba(92, 240, 231, 0.28));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 52px);
  color: var(--soft);
}

.site-nav a {
  color: inherit;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease, text-shadow 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--teal);
  text-shadow: 0 0 18px rgba(92, 240, 231, 0.38);
}

main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 38px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(520px, 1fr);
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
  min-height: calc(100vh - 96px);
  padding: 76px 0 84px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy::after {
  position: absolute;
  right: 12%;
  bottom: -90px;
  z-index: -1;
  width: 340px;
  height: 92px;
  content: "";
  border: 1px solid rgba(92, 240, 231, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 70px rgba(39, 188, 198, 0.24),
    inset 0 0 22px rgba(92, 240, 231, 0.08);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  padding: 9px 17px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 750;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(12, 93, 112, 0.24);
  box-shadow: inset 0 0 18px rgba(92, 240, 231, 0.08);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(48px, 6.1vw, 76px);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 span,
.privacy-band h2 span {
  display: inline-block;
  color: var(--teal);
  text-shadow: 0 0 28px rgba(92, 240, 231, 0.28);
}

.lede {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 72px;
  padding: 0 30px;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #00121a;
  background: linear-gradient(135deg, #84fff1, #35d8d4);
  border-color: rgba(132, 255, 241, 0.78);
  box-shadow: 0 16px 32px rgba(53, 216, 212, 0.26);
}

.button.secondary {
  background: rgba(8, 25, 43, 0.65);
  box-shadow: inset 0 0 24px rgba(120, 205, 224, 0.08), 0 16px 30px rgba(0, 0, 0, 0.22);
}

.button.secondary:hover {
  border-color: var(--line-strong);
}

.trust-list,
.privacy-points,
.policy-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  list-style: none;
}

.trust-list li,
.policy-card li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.trust-list span,
.policy-card span {
  width: 14px;
  height: 14px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal) 28%, transparent 34%);
  box-shadow: 0 0 12px rgba(92, 240, 231, 0.34);
}

.product-frame {
  position: relative;
}

.product-frame::before {
  position: absolute;
  inset: -42px 22% auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(92, 240, 231, 0.5), transparent);
  box-shadow: 0 0 46px rgba(92, 240, 231, 0.5);
}

.product-shell {
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
  min-height: 668px;
  overflow: hidden;
  background: rgba(3, 15, 29, 0.88);
  border: 1px solid rgba(136, 204, 224, 0.42);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px 16px;
  background: linear-gradient(180deg, rgba(6, 29, 50, 0.88), rgba(4, 18, 34, 0.92));
  border-right: 1px solid rgba(120, 205, 224, 0.16);
}

.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px 8px;
  font-size: 16px;
  font-weight: 800;
}

.product-sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 9px;
  color: #91a9bd;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  border-radius: 6px;
}

.product-sidebar a svg {
  color: #86c7d8;
}

.product-sidebar a.active {
  color: var(--teal);
  background: rgba(58, 151, 203, 0.16);
}

.product-sidebar a span {
  margin-left: auto;
  color: #8da5b9;
  font-size: 12px;
}

.storage-card {
  position: relative;
  margin-top: auto;
  padding: 16px 14px;
  color: var(--muted);
  border: 1px solid rgba(120, 205, 224, 0.18);
  border-radius: var(--radius);
  background: rgba(15, 48, 73, 0.54);
}

.storage-card strong,
.storage-card b {
  display: block;
  color: var(--text);
  font-size: 13px;
}

.storage-card span {
  position: absolute;
  top: 18px;
  right: 14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(53, 213, 131, 0.64);
}

.storage-card p {
  margin: 8px 0 10px;
  font-size: 12px;
}

.product-main {
  padding: 24px 18px 22px;
}

.toolbar {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 12px;
  margin-bottom: 28px;
}

.search-box,
.toolbar button,
.view-tools button {
  border: 1px solid rgba(120, 205, 224, 0.13);
  border-radius: 6px;
  background: rgba(29, 50, 75, 0.76);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 42px;
  padding: 0 14px;
  color: #aebed0;
  font-size: 12px;
}

.search-box svg,
.toolbar button svg {
  color: #8bb1c5;
}

kbd {
  margin-left: auto;
  color: #d9e7f3;
  font: inherit;
  font-size: 11px;
}

.toolbar button,
.view-tools button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  color: #b5cada;
  cursor: default;
}

.list-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.list-head h2 {
  margin-bottom: 6px;
  font-size: 22px;
  letter-spacing: 0;
}

.list-head p {
  color: var(--muted);
  font-size: 13px;
}

.view-tools {
  display: flex;
  gap: 8px;
}

.view-tools button {
  width: 38px;
  color: var(--blue);
}

.view-tools button:first-child {
  width: auto;
  padding: 0 13px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
}

.archive-item {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 92px;
  gap: 16px;
  align-items: center;
  min-height: 128px;
  padding: 18px;
  margin-bottom: 14px;
  border: 1px solid rgba(120, 205, 224, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(28, 63, 91, 0.76), rgba(8, 29, 49, 0.74));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: white;
  font-size: 30px;
  font-weight: 900;
  border-radius: 7px;
}

.site-mark.openai {
  background: #1fbf9b;
}

.site-mark.mozilla {
  color: #fff;
  font-family: Georgia, serif;
  background: #050505;
}

.site-mark.github {
  background: #f8fbff;
  color: #0d1723;
}

.archive-item h3 {
  margin: 0 0 5px;
  font-size: 17px;
}

.archive-item a {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: #7deaf1;
  font-size: 12px;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.archive-item p {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 8px;
}

.archive-item p span {
  padding: 4px 8px;
  color: #bdd3e4;
  font-size: 10px;
  font-weight: 750;
  border-radius: 999px;
  background: rgba(127, 178, 207, 0.15);
}

.archive-item small {
  color: #9cb3c7;
  font-size: 12px;
}

.page-thumb {
  position: relative;
  min-height: 92px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: #e9edf4;
}

.page-thumb::before {
  position: absolute;
  inset: 0 0 auto;
  height: 12px;
  content: "";
  background: rgba(2, 11, 20, 0.86);
}

.page-thumb span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 12px;
  color: #0d1522;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.12;
}

.openai-thumb {
  background: linear-gradient(160deg, #fff, #dfe7ef);
}

.mozilla-thumb {
  background: linear-gradient(135deg, #2d1376, #c02de1 52%, #f77764);
}

.mozilla-thumb span,
.github-thumb span {
  color: #fff;
}

.github-thumb {
  background: linear-gradient(135deg, #0b1220, #18263c);
}

.all-pages {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0 4px;
  color: #b6cad7;
  font-size: 13px;
  text-decoration: none;
}

.section {
  padding: 42px 0 54px;
  text-align: center;
}

.section-kicker {
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section h2,
.privacy-band h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.3vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-lede {
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
  text-align: left;
}

.feature-grid article {
  min-height: 318px;
  padding: 26px 24px 22px;
  border: 1px solid rgba(136, 204, 224, 0.35);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(19, 55, 78, 0.76), rgba(6, 25, 45, 0.82)),
    rgba(6, 25, 45, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 22px 52px rgba(0, 0, 0, 0.18);
}

.feature-icon {
  display: grid;
  width: 84px;
  height: 84px;
  margin-bottom: 32px;
  place-items: center;
  color: var(--teal);
  font-size: 39px;
  border: 1px solid rgba(92, 240, 231, 0.36);
  border-radius: var(--radius);
  background: rgba(47, 177, 191, 0.13);
  box-shadow: inset 0 0 22px rgba(92, 240, 231, 0.08);
}

.feature-grid h3 {
  margin-bottom: 14px;
  font-size: 21px;
  letter-spacing: 0;
}

.feature-grid p,
.privacy-band p,
.policy p,
.policy-card p {
  color: var(--muted);
  line-height: 1.62;
}

.feature-grid article::after {
  display: block;
  width: 42px;
  height: 4px;
  margin-top: 24px;
  content: "";
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 14px rgba(92, 240, 231, 0.5);
}

.privacy-band {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
  margin: 0 4px 70px;
  padding: clamp(34px, 5vw, 62px);
  overflow: hidden;
  border: 1px solid rgba(136, 204, 224, 0.35);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 15% 54%, rgba(52, 222, 215, 0.24), transparent 24rem),
    linear-gradient(135deg, rgba(10, 54, 78, 0.82), rgba(6, 24, 43, 0.9));
  box-shadow: var(--shadow);
}

.shield-visual {
  display: grid;
  min-height: 300px;
  place-items: center;
  background-image:
    linear-gradient(rgba(92, 240, 231, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 240, 231, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.shield-visual::after {
  width: min(100%, 310px);
  height: 86px;
  content: "";
  border: 1px solid rgba(92, 240, 231, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(92, 240, 231, 0.22), inset 0 0 32px rgba(92, 240, 231, 0.08);
  transform: translateY(-18px);
}

.shield {
  position: relative;
  display: grid;
  width: min(58vw, 240px);
  aspect-ratio: 0.82;
  place-items: center;
  color: #041b22;
  clip-path: polygon(50% 0, 94% 16%, 86% 76%, 50% 100%, 14% 76%, 6% 16%);
  background: linear-gradient(150deg, #7ffff2, #16a9ae 54%, #075569);
  box-shadow: inset 18px -22px 38px rgba(0, 26, 40, 0.36);
}

.shield::before {
  position: absolute;
  inset: 16px;
  content: "";
  clip-path: inherit;
  border: 2px solid rgba(255, 255, 255, 0.34);
}

.shield svg {
  position: relative;
  z-index: 1;
  width: 45%;
  height: 45%;
  color: #07303b;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.privacy-band h2 {
  max-width: 620px;
}

.privacy-band p {
  max-width: 650px;
  font-size: 19px;
}

.privacy-points {
  gap: 34px;
  margin-top: 34px;
}

.privacy-points li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #b9cad9;
  font-size: 14px;
}

.privacy-points svg {
  color: var(--teal);
  font-size: 22px;
}

.site-footer {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 36px 38px 42px;
  color: #91a6ba;
  text-align: center;
}

.site-footer::before {
  position: absolute;
  inset: 0 0 auto;
  height: 34px;
  content: "";
  background:
    radial-gradient(80% 70px at 50% 0, rgba(63, 128, 194, 0.38), transparent 72%),
    linear-gradient(90deg, transparent, rgba(77, 148, 213, 0.4), transparent);
  opacity: 0.86;
}

.site-footer img {
  margin-bottom: 12px;
}

.site-footer p {
  margin: 0;
}

.policy-page main {
  padding-bottom: 58px;
}

.policy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(34px, 6vw, 76px);
  align-items: end;
  padding: 84px 0 58px;
}

.policy-hero h1 {
  max-width: 780px;
}

.effective-date {
  color: var(--teal);
  font-weight: 750;
}

.policy-card {
  padding: 28px;
  border: 1px solid rgba(136, 204, 224, 0.35);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 12%, rgba(92, 240, 231, 0.16), transparent 12rem),
    linear-gradient(180deg, rgba(16, 52, 76, 0.88), rgba(6, 24, 43, 0.9));
  box-shadow: var(--shadow);
}

.policy-card img {
  margin-bottom: 22px;
}

.policy-card h2 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.12;
}

.policy-card ul {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.policy-index,
.policy {
  border: 1px solid rgba(136, 204, 224, 0.32);
  border-radius: var(--radius);
  background: rgba(7, 24, 42, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.policy-index {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 8px;
  padding: 20px;
}

.policy-index strong {
  margin-bottom: 8px;
  color: var(--text);
}

.policy-index a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  border-radius: 6px;
}

.policy-index a:hover {
  color: var(--teal);
  background: rgba(92, 240, 231, 0.08);
}

.policy {
  padding: clamp(28px, 4vw, 48px);
}

.policy section {
  padding: 0 0 34px;
  margin: 0 0 34px;
  border-bottom: 1px solid rgba(136, 204, 224, 0.18);
  scroll-margin-top: 130px;
}

.policy section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.policy h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 32px);
}

.policy p {
  margin-bottom: 0;
  font-size: 17px;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 44px;
  }

  .product-frame {
    max-width: 760px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

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

@media (max-width: 760px) {
  body::after {
    top: 140px;
    right: -230px;
    width: 520px;
  }

  .site-header {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    min-height: 0;
    padding: 22px 20px;
  }

  .site-nav {
    width: 100%;
    gap: 0;
    justify-content: space-between;
    font-size: 14px;
  }

  main {
    padding: 0 20px;
  }

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

  h1 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .actions {
    gap: 12px;
  }

  .button {
    width: 100%;
    min-height: 60px;
  }

  .trust-list {
    gap: 16px;
  }

  .product-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .product-sidebar {
    display: none;
  }

  .product-main {
    padding: 16px;
  }

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

  .toolbar button {
    display: none;
  }

  .list-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .archive-item {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .site-mark {
    width: 48px;
    height: 48px;
    font-size: 25px;
  }

  .page-thumb {
    display: none;
  }

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

  .feature-grid article {
    min-height: 0;
  }

  .privacy-band {
    padding: 28px 20px;
    margin-bottom: 46px;
  }

  .shield-visual {
    min-height: 220px;
  }

  .privacy-points {
    gap: 16px;
  }

  .policy-hero {
    padding: 44px 0 36px;
  }

  .policy-card {
    padding: 22px;
  }

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

  .policy-index {
    position: static;
  }

  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 460px) {
  .brand {
    font-size: 21px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 18px;
  }

  .eyebrow {
    font-size: 13px;
  }

  .archive-item {
    padding: 14px;
  }

  .view-tools {
    flex-wrap: wrap;
  }
}
