:root {
  color-scheme: dark;
  --bg: #020719;
  --bg-2: #060d27;
  --text: #f7f7ff;
  --muted: #c3c8df;
  --soft: #8e96bd;
  --line: rgba(164, 173, 255, 0.22);
  --line-bright: rgba(155, 143, 255, 0.62);
  --card: rgba(9, 20, 49, 0.76);
  --card-2: rgba(13, 26, 61, 0.92);
  --brand: #7657ff;
  --brand-2: #9c8cff;
  --brand-3: #342d99;
  --shadow: rgba(0, 0, 0, 0.45);
  --max: 1168px;
  font-family: Inter, 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;
  color: var(--text);
  background:
    radial-gradient(circle at 74% 12%, rgba(94, 69, 255, 0.38), transparent 29rem),
    radial-gradient(circle at 30% 6%, rgba(39, 100, 255, 0.12), transparent 25rem),
    linear-gradient(180deg, #020719 0%, #07102a 42%, #020719 100%);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), rgba(0,0,0,.15));
}

body::after {
  background: radial-gradient(circle at 50% 42%, rgba(101, 76, 255, 0.18), transparent 34rem);
}

a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 3px solid rgba(155, 143, 255, 0.9); outline-offset: 4px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -0.045em; }
svg { display: block; width: 1em; height: 1em; fill: currentColor; }
code {
  border: 1px solid rgba(163, 153, 255, 0.26);
  border-radius: 8px;
  background: rgba(117, 87, 255, 0.12);
  color: #ddd7ff;
  padding: 0.08rem 0.32rem;
}

.site-header,
.site-main,
.site-footer,
.policy {
  width: min(var(--max), calc(100% - 88px));
  margin-inline: auto;
}

.site-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(163, 153, 255, 0.11);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 850;
  letter-spacing: -0.06em;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  flex: 0 0 auto;
  border-radius: 50%;
  filter: drop-shadow(0 10px 22px rgba(114, 87, 255, 0.32));
}

.site-nav,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 5.4vw, 64px);
  color: rgba(247, 247, 255, 0.86);
  font-weight: 560;
}

.site-nav a,
.footer-nav a {
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.footer-nav a:hover { color: #fff; transform: translateY(-1px); }

.hero {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(40px, 6vw, 76px);
  padding: 48px 0 28px;
}

.hero-copy { position: relative; z-index: 2; }
.pill,
.eyebrow {
  color: #9fa8ff;
  font-size: 0.82rem;
  font-weight: 780;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pill {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 21px;
  border: 1px solid rgba(149, 132, 255, 0.32);
  border-radius: 999px;
  background: rgba(96, 71, 224, 0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 10px 30px rgba(59, 43, 180, 0.18);
  color: #d8d3ff;
  padding: 8px 15px;
  text-transform: none;
  letter-spacing: 0;
}

.pill span { color: #a794ff; font-size: 1rem; }

.eyebrow {
  margin: 0 0 8px;
}

h1 {
  max-width: 560px;
  margin-bottom: 20px;
  font-size: clamp(3.55rem, 5.6vw, 5.2rem);
  line-height: 1.02;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.15vw, 3.05rem);
  line-height: 1.08;
  text-wrap: balance;
}

h3 {
  margin-bottom: 6px;
  font-size: 1.16rem;
  line-height: 1.16;
}

.lede {
  max-width: 490px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(163, 153, 255, 0.34);
  border-radius: 13px;
  background: rgba(8, 16, 42, 0.62);
  color: #efeefe;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 36px rgba(0,0,0,.18);
  font-weight: 800;
  padding: 0 23px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button svg { width: 1.33rem; height: 1.33rem; }
.button:hover { transform: translateY(-2px); border-color: rgba(190, 181, 255, 0.64); box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 22px 48px rgba(0,0,0,.22); }
.button.primary {
  border-color: rgba(173, 163, 255, 0.42);
  background: linear-gradient(135deg, #846dff 0%, #553df0 50%, #3a2bc2 100%);
  box-shadow: 0 18px 52px rgba(91, 68, 245, 0.35), inset 0 1px 0 rgba(255,255,255,.22);
}
.button.secondary { color: #e7e6f7; }

.hero-visual {
  position: relative;
  min-height: 462px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  position: absolute;
  width: min(520px, 72vw);
  height: 130px;
  right: 0;
  bottom: 16px;
  border-radius: 999px;
  background: rgba(98, 72, 255, 0.55);
  filter: blur(44px);
  content: "";
}

.browser-mockup {
  position: relative;
  width: min(640px, 100%);
  aspect-ratio: 1.34;
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: 18px;
  background: linear-gradient(180deg, #172042, #0b122b);
  box-shadow:
    0 0 0 5px rgba(99, 73, 255, 0.10),
    0 32px 86px rgba(0, 0, 0, 0.48),
    0 20px 70px rgba(94, 69, 255, 0.32);
}

.browser-topbar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(164, 173, 255, 0.17);
  background: rgba(14, 22, 48, 0.96);
}

.traffic { width: 12px; height: 12px; border-radius: 50%; box-shadow: inset 0 -1px 2px rgba(0,0,0,.2); }
.traffic.red { background: #ff5f6e; }
.traffic.yellow { background: #ffc857; }
.traffic.green { background: #70dd7d; }
.browser-arrow { color: rgba(184, 192, 218, 0.28); font-size: 1.3rem; line-height: 1; }
.address {
  flex: 1;
  height: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(170, 179, 225, 0.15);
  border-radius: 7px;
  background: rgba(7, 13, 31, 0.82);
  color: rgba(232, 236, 255, 0.76);
  font-size: 0.73rem;
  padding: 0 11px;
}
.lock { color: rgba(232, 236, 255, 0.42); font-size: 0.68rem; }
.mini-logo {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(166, 154, 255, .24);
  background: rgba(12, 19, 44, 0.95);
  box-shadow: 0 0 0 1px rgba(166, 154, 255, .24), 0 0 16px rgba(118, 87, 255, .28);
}
.kebab { color: rgba(239, 242, 255, .58); font-size: 1.38rem; line-height: 1; }

.browser-body {
  position: absolute;
  inset: 54px 8px 8px;
  overflow: hidden;
  border: 1px solid rgba(12, 18, 42, 0.3);
  border-radius: 10px;
  background: #f3f6ff;
}

.hero-comparison {
  --hero-split: 50%;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}

.hero-comparison:focus-visible {
  outline: 3px solid rgba(165, 151, 255, 0.9);
  outline-offset: 4px;
}

.feed-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 10px;
}
.feed-left { left: 0; background: linear-gradient(180deg, #f9fbff, #edf2ff); z-index: 1; }
.feed-right {
  left: 0;
  z-index: 2;
  clip-path: inset(0 0 0 var(--hero-split));
  background: linear-gradient(180deg, #f9fbff, #edf2ff);
  filter: grayscale(1) saturate(0.55);
}

.hero-photo {
  position: relative;
  height: 134px;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(170deg, #f8fcff 0%, #f8fcff 26%, #f2e9d6 27%, #f2e9d6 32%, #f4d7a9 33%, #f4d7a9 45%, #d2b68e 46%, #2e6a95 55%, #1c4868 70%, #12334f 100%),
    radial-gradient(circle at 20% 16%, #9fd9ff 0%, #9fd9ff 24%, transparent 25%),
    radial-gradient(circle at 88% 72%, rgba(255, 240, 180, 0.58) 0%, rgba(255, 240, 180, 0.58) 22%, transparent 23%),
    linear-gradient(180deg, #90bae1, #1d3f5f);
  border: 1px solid rgba(19, 42, 71, 0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 10px 34px rgba(7, 20, 36, 0.16);
}
.hero-photo::before,
.hero-photo::after {
  position: absolute;
  bottom: 30px;
  content: "";
  width: 250px;
  height: 130px;
  background: linear-gradient(135deg, #fffdfa 0%, #fffdfa 17%, #c9d0d8 18%, #c9d0d8 32%, #30405c 33%, #30405c 100%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.hero-photo::before {
  left: 56px;
  opacity: .94;
}
.hero-photo::after {
  left: -50px;
  bottom: 20px;
  transform: scale(.86);
  opacity: .84;
}
.photo-glow {
  position: absolute;
  inset: auto -16px -24px auto;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.42), transparent 65%);
  transform: translateX(-2px);
  z-index: 0;
}
.photo-kicker {
  position: absolute;
  top: 9px;
  left: 10px;
  z-index: 3;
  color: #0e2c53;
  padding: 5px 9px;
  border: 1px solid rgba(13, 39, 65, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sun {
  position: absolute;
  left: 210px;
  top: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, #fff 18%, #ffe8ab 40%, #ffcf7a 72%, #f2a94f 100%);
  filter: blur(.1px);
  box-shadow: 0 0 18px rgba(255, 209, 122, 0.72);
  z-index: 3;
}
.ridge {
  position: absolute;
  inset-inline: 0;
  bottom: 46px;
  height: 48px;
  background: linear-gradient(180deg, #0f2b49 0%, #0f2b49 28%, #1c4b77 30%, #1c4b77 58%, #224c6e 60%, #224c6e 100%);
  clip-path: polygon(0 88%, 10% 45%, 19% 83%, 30% 29%, 42% 81%, 55% 37%, 66% 79%, 78% 37%, 92% 86%, 100% 52%, 100% 100%, 0 100%);
  z-index: 2;
}
.ridge.two {
  bottom: 35px;
  opacity: .86;
  transform: scaleX(1.08);
  background: linear-gradient(180deg, #133a61 0%, #133a61 28%, #14527f 30%, #14527f 61%, #2f6386 62%, #2f6386 100%);
  z-index: 2;
}
.lake {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 45px;
  background: linear-gradient(180deg, rgba(143, 214, 255, 0.75), rgba(43, 89, 127, 0.88));
  border-top: 1px solid rgba(12, 58, 90, 0.34);
  z-index: 1;
}

.post-row {
  display: grid;
  grid-template-columns: 103px 1fr;
  gap: 12px;
  margin-top: 10px;
  padding: 10px 10px 11px;
  border-radius: 12px;
  border: 1px solid rgba(14, 38, 77, 0.15);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.88), rgba(237, 245, 255, 0.8));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}
.thumb {
  min-height: 80px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
  background-blend-mode: multiply;
}
.thumb.street { background: linear-gradient(135deg, #d9c0a3 0 28%, #5c473a 29% 36%, #d7d1c5 37% 54%, #20283c 55% 100%); }
.thumb.food { background: radial-gradient(circle at 45% 48%, #f7a034 0 13%, #7a331a 14% 20%, transparent 21%), radial-gradient(circle at 62% 42%, #d27b31 0 13%, transparent 14%), radial-gradient(circle at 50% 50%, #58402d 0 36%, #15141a 37% 100%); }
.thumb.concert { background: radial-gradient(circle at 48% 72%, rgba(84, 128, 255, .9), transparent 18%), linear-gradient(160deg, #040714, #091d59 62%, #14112e); }
.post-content {
  position: relative;
  display: grid;
  grid-template-columns: 10px 1fr;
  column-gap: 9px;
  row-gap: 6px;
  align-content: start;
  padding-top: 2px;
}
.avatar {
  width: 22px;
  height: 22px;
  grid-row: 1 / span 3;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff 0%, #fff 28%, #e4e8f0 29%, #e4e8f0 42%, #9ea8c2 43%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7), 0 1px 2px rgba(14, 29, 54, 0.25);
}
.post-kicker {
  grid-column: 2;
  display: inline-flex;
  align-self: center;
  font-size: 0.58rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #66729a;
}
.post-title {
  grid-column: 2;
  display: block;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 720;
  line-height: 1.16;
  color: #1f2f57;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.line {
  grid-column: 2;
  display: block;
  height: 7px;
  border-radius: 999px;
  background: #bdc5d1;
}
.line.short { width: 45%; }
.line.medium { width: 78%; }
.line.tiny { width: 48%; }

.feed-right .post-row {
  background: linear-gradient(165deg, rgba(238, 244, 255, 0.56), rgba(223, 231, 247, 0.6));
  border-color: rgba(12, 34, 72, 0.2);
}

.blur-card {
  width: 92%;
  height: 84px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(35,44,66,.55) 0 42%, rgba(84,92,110,.35) 43% 100%);
  filter: blur(1px) grayscale(1);
  opacity: .48;
}
.blur-card.tall { height: 132px; }
.blur-row { display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: center; margin: 5px 0 10px; opacity: .35; }
.blur-row span { width: 25px; height: 25px; border-radius: 50%; background: #3e4554; }
.blur-row i { height: 36px; border-radius: 6px; background: repeating-linear-gradient(#4b5361 0 7px, transparent 7px 15px); }

.dimmer {
  position: absolute;
  inset: 0 0 0 var(--hero-split);
  z-index: 4;
  background: linear-gradient(90deg, rgba(5, 9, 22, 0.18), rgba(5, 9, 22, 0.48));
  pointer-events: none;
  backdrop-filter: blur(7px) grayscale(1) saturate(.35);
  -webkit-backdrop-filter: blur(7px) grayscale(1) saturate(.35);
}
.wipe-line {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: var(--hero-split);
  width: 2px;
  background: rgba(245, 247, 255, 0.92);
  box-shadow: 0 0 22px rgba(114, 87, 255, 0.72), 0 0 0 1px rgba(108, 85, 255, .28);
}
.wipe-handle {
  position: absolute;
  z-index: 6;
  top: 52%;
  left: var(--hero-split);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(169, 158, 255, 0.8);
  border-radius: 50%;
  background: #101847;
  color: white;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 7px rgba(118, 87, 255, .12), 0 0 30px rgba(118, 87, 255, .55);
}
.wipe-handle svg { width: 31px; height: 31px; }

.features { padding: 18px 0 28px; }
.section-heading {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}
.section-heading h2 { margin-bottom: 0; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 20px;
}

.feature-card {
  position: relative;
  min-height: 203px;
  overflow: hidden;
  border: 1px solid rgba(170, 181, 255, 0.23);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(113, 83, 255, 0.13), transparent 15rem),
    linear-gradient(145deg, rgba(13, 28, 66, 0.84), rgba(6, 15, 38, 0.72));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 16px 38px rgba(0,0,0,.16);
  padding: 22px 24px 20px;
}
.feature-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.07), transparent 35%);
  opacity: .55;
  content: "";
  pointer-events: none;
}
.feature-icon {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(191, 183, 255, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #8d72ff, #4c31c4 58%, #201a61 100%);
  color: #ece9ff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 12px 32px rgba(71, 50, 202, .28);
}
.feature-icon svg { width: 34px; height: 34px; }
.feature-number {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(171, 181, 255, 0.16);
  border-radius: 50%;
  background: rgba(11, 20, 49, 0.72);
  color: #e3e5ff;
  font-size: .92rem;
}
.feature-card h3 {
  position: relative;
  margin-top: 14px;
}
.feature-card p {
  position: relative;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.35;
}

.privacy-band {
  position: relative;
  min-height: 196px;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  border: 1px solid rgba(171, 181, 255, 0.28);
  border-radius: 22px;
  margin: 18px 0 32px;
  padding: 32px 38px 32px 30px;
  background:
    radial-gradient(circle at 17% 50%, rgba(121, 89, 255, 0.32), transparent 15rem),
    linear-gradient(90deg, rgba(10, 19, 50, 0.96) 0 47%, rgba(60, 48, 144, 0.72) 66%, rgba(236, 117, 111, 0.42) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 46px rgba(0,0,0,.20);
}
.privacy-band::before,
.privacy-band::after {
  position: absolute;
  content: "";
  pointer-events: none;
}
.privacy-band::before {
  right: 0;
  bottom: 25px;
  width: 56%;
  height: 120px;
  background:
    linear-gradient(180deg, rgba(255, 212, 176, .24), transparent 40%),
    linear-gradient(140deg, rgba(23, 34, 76, .8), rgba(5, 10, 30, .95));
  clip-path: polygon(0 72%, 8% 52%, 19% 69%, 31% 38%, 43% 62%, 56% 42%, 69% 70%, 80% 47%, 93% 70%, 100% 55%, 100% 100%, 0 100%);
  opacity: .98;
}
.privacy-band::after {
  right: 0;
  bottom: 0;
  width: 58%;
  height: 54px;
  background:
    repeating-linear-gradient(180deg, rgba(174, 154, 255, .18) 0 1px, transparent 1px 10px),
    linear-gradient(180deg, rgba(67, 76, 144, .38), rgba(11, 18, 48, .5));
}
.shield-badge,
.privacy-copy,
.policy-button { position: relative; z-index: 2; }
.shield-badge {
  width: 106px;
  height: 106px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(154, 135, 255, 0.38);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(118, 87, 255, 0.88), rgba(18, 21, 73, 0.78) 67%, rgba(8, 15, 44, 0.72));
  color: #f0edff;
  box-shadow: 0 0 0 1px rgba(255,255,255,.03), 0 20px 45px rgba(69, 47, 199, .28), inset 0 1px 0 rgba(255,255,255,.1);
}
.shield-badge svg { width: 71px; height: 71px; filter: drop-shadow(0 0 14px rgba(166, 154, 255, 0.58)); }
.privacy-copy h2 {
  max-width: 520px;
  margin-bottom: 13px;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
}
.privacy-copy p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: .96rem;
}
.policy-button { min-width: 184px; }

.site-footer {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(163, 153, 255, 0.11);
  color: rgba(247, 247, 255, 0.84);
}
.footer-brand { font-size: 1.38rem; }
.footer-nav { gap: clamp(22px, 5vw, 68px); }

.policy {
  max-width: 1000px;
  padding: 58px 0 80px;
}
.policy-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(171, 181, 255, 0.25);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 25%, rgba(118, 87, 255, 0.35), transparent 22rem),
    linear-gradient(145deg, rgba(13, 28, 66, 0.84), rgba(6, 15, 38, 0.72));
  padding: clamp(32px, 6vw, 58px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 46px rgba(0,0,0,.20);
}
.policy-hero h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(2.6rem, 6vw, 5rem);
}
.updated { margin-bottom: 0; color: var(--soft); }
.policy-stack {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
.policy section {
  border: 1px solid rgba(170, 181, 255, 0.20);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(13, 28, 66, 0.74), rgba(6, 15, 38, 0.62));
  padding: 24px 26px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.policy section h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}
.policy p, .policy li { color: var(--muted); }
.policy section p:last-child { margin-bottom: 0; }
.policy a { color: #dcd6ff; text-underline-offset: .18em; }

@media (max-width: 1060px) {
  .site-header,
  .site-main,
  .site-footer,
  .policy { width: min(var(--max), calc(100% - 48px)); }
  .hero { grid-template-columns: 1fr; padding-top: 38px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 430px; }
  .browser-mockup { width: min(690px, 100%); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .privacy-band { grid-template-columns: 112px 1fr; }
  .policy-button { grid-column: 2; justify-self: start; }
}

@media (max-width: 760px) {
  .site-header,
  .site-main,
  .site-footer,
  .policy { width: min(var(--max), calc(100% - 30px)); }
  .site-header { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  .site-nav { gap: 18px 24px; }
  h1 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .hero { min-height: 0; gap: 30px; padding-top: 30px; }
  .hero-visual { min-height: 320px; }
  .browser-mockup { border-radius: 14px; }
  .browser-topbar { height: 38px; gap: 6px; }
  .browser-arrow, .kebab, .mini-logo { display: none; }
  .browser-body { inset: 46px 6px 6px; }
  .post-row { grid-template-columns: 76px 1fr; }
  .thumb { min-height: 62px; }
  .hero-photo { height: 106px; }
  .feature-grid { grid-template-columns: 1fr; }
  .privacy-band { grid-template-columns: 1fr; padding: 28px 22px; }
  .privacy-band::before, .privacy-band::after { width: 100%; opacity: .35; }
  .shield-badge { width: 92px; height: 92px; }
  .policy-button { grid-column: auto; }
  .site-footer { align-items: flex-start; flex-direction: column; padding: 24px 0; }
  .footer-nav { gap: 18px 24px; }
}

@media (max-width: 460px) {
  .button { width: 100%; }
  .actions { width: 100%; }
  .pill { font-size: .78rem; }
  .feature-card { padding: 20px; }
  .address { font-size: .64rem; }
  .hero-visual { min-height: 270px; }
}
