/* ============================================
   TELEGOTCHI — Design System & Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --bg: #0D0D1A;
  --surface: #1A1A2E;
  --border: #333333;
  --text: #E8E8E8;
  --text-muted: #888888;
  --accent: #9B7FD4;
  --accent-dim: #7B61FF;
  --green: #39FF14;
  --white: #FFFFFF;
  --font-heading: 'JetBrains Mono', monospace;
  --font-body: 'JetBrains Mono', monospace;
  --font-mono: 'JetBrains Mono', monospace;
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 150ms ease;
}

a:hover {
  color: var(--accent-dim);
}

img {
  max-width: 100%;
  display: block;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: 0.2em;
}

h2 {
  font-size: clamp(24px, 4vw, 48px);
  letter-spacing: 0.15em;
}

h3 {
  font-size: clamp(18px, 2.5vw, 28px);
  letter-spacing: 0.12em;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.body-copy {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.8;
  max-width: 65ch;
}

.mono {
  font-family: var(--font-mono);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.container--narrow {
  max-width: 65ch;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 120px 0;
}

.section--surface {
  background: var(--surface);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  transition: border-color 150ms ease;
  border-bottom: 0.5px solid transparent;
}

.nav--scrolled {
  border-bottom-color: var(--border);
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
  text-decoration: none;
}

.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
  transition: color 150ms ease;
}

.nav__links a:hover {
  color: var(--accent);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px 0;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 0;
  border-top: 0.5px solid var(--text);
  transition: transform 150ms ease, opacity 150ms ease;
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.nav__mobile.active {
  display: flex;
}

.nav__mobile a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
}

.nav__mobile-close {
  position: absolute;
  top: 20px;
  right: 32px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 24px;
  cursor: pointer;
}

/* --- Hero (Homepage) --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero__wordmark {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}

.hero__tagline {
  font-family: var(--font-body);
  font-weight: 200;
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero__pitch {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  max-width: 50ch;
  margin-bottom: 40px;
}

.hero__ctas {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hero__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__device-img {
  width: 100%;
  max-width: 1440px;
  height: auto;
  transform: scale(1.05);
  transition: transform 300ms ease;
}
.hero__device-img:hover {
  transform: scale(1.08);
}
.hero__image-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3 / 4;
  background: var(--surface);
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: center;
  padding: 24px;
  transform: scale(1.05);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
  border: 0.5px solid var(--accent);
}

.btn--primary:hover {
  background: transparent;
  color: var(--accent);
  border: 0.5px solid var(--accent);
}

.btn--ghost {
  background: transparent;
  border: 0.5px solid var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.text-link {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  transition: color 150ms ease;
}

.text-link:hover {
  color: var(--accent-dim);
}

/* --- Three Statements --- */
.statements {
  border-top: 0.5px solid var(--border);
}

.statement {
  padding: 80px 0;
  border-bottom: 0.5px solid var(--border);
}

.statement__text {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
}

/* --- Feature Grid --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid var(--border);
  border-left: 0.5px solid var(--border);
}

.feature-cell {
  padding: 40px 32px;
  border-right: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.feature-cell__label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.feature-cell__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

/* --- Manifesto Pull --- */
.manifesto-pull {
  background: var(--surface);
  border-left: 2px solid var(--accent);
  padding: 80px 64px;
}

.manifesto-pull__label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.manifesto-pull__quote {
  font-family: var(--font-body);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--white);
  line-height: 1.5;
  max-width: 50ch;
  margin-bottom: 32px;
}

.manifesto-pull__link {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--accent);
}

/* --- Footer --- */
.footer {
  border-top: 0.5px solid var(--border);
  padding: 80px 0 40px;
}

.footer__top {
  margin-bottom: 64px;
}

.footer__wordmark {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 8px;
}

.footer__tagline {
  font-family: var(--font-body);
  font-weight: 200;
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 150ms ease;
}

.footer__col a:hover {
  color: var(--text);
}

.footer__bottom {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 12px;
  color: #444444;
  border-top: 0.5px solid var(--border);
  padding-top: 32px;
}

/* --- Page Header --- */
.page-header {
  padding-top: 140px;
  padding-bottom: 80px;
}

.page-header__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 16px;
}

.page-header__subtitle {
  font-family: var(--font-body);
  font-weight: 200;
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
}

.page-header__subtitle--muted {
  color: var(--text-muted);
}

/* --- Device Image Placeholder --- */
.device-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--surface);
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: center;
  padding: 24px;
  margin-bottom: 16px;
}

.device-caption {
  font-family: var(--font-body);
  font-weight: 200;
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

/* --- Specs Table --- */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 0.5px solid var(--border);
}

.specs-table td {
  padding: 16px 0;
  vertical-align: top;
}

.specs-table td:first-child {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  padding-right: 40px;
  width: 180px;
}

.specs-table td:last-child {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--text);
}

/* --- Feature Sections (Product page) --- */
.feature-section {
  padding: 100px 0;
  border-bottom: 0.5px solid var(--border);
}

.feature-section__label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.feature-section__heading {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--white);
  line-height: 1.4;
  max-width: 50ch;
  margin-bottom: 32px;
}

.feature-section__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.8;
  max-width: 65ch;
  color: var(--text);
}

.feature-section__body p {
  margin-bottom: 24px;
}

.feature-section__body p:last-child {
  margin-bottom: 0;
}

/* --- Mesh Layers --- */
.mesh-layers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 0.5px solid var(--border);
}

.mesh-layer {
  padding: 40px 32px;
  border-right: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  border-top: 0.5px solid var(--border);
}

.mesh-layer__level {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.mesh-layer__name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 8px;
}

.mesh-layer__range {
  font-family: var(--font-mono);
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 16px;
}

.mesh-layer__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

/* --- Complete Feature List --- */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--border);
  border-left: 0.5px solid var(--border);
}

.feature-list__col {
  padding: 32px;
  border-right: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.feature-list__col-title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.feature-list__col ul {
  list-style: none;
}

.feature-list__col li {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  line-height: 1.5;
}

.feature-list__col li::before {
  content: "\2014\00a0";
  color: var(--text-muted);
}

/* --- Pricing --- */
.pricing-card {
  border: 0.5px solid var(--border);
  padding: 40px;
  margin-bottom: 16px;
}

.pricing-card__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
}

.pricing-card__price {
  font-family: var(--font-mono);
  font-size: 24px;
  color: var(--white);
}

.pricing-card__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pricing-card__desc p {
  margin-bottom: 4px;
}

.pricing-note {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  max-width: 50ch;
  margin: 40px auto 0;
  line-height: 1.6;
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.two-col--bordered .two-col__left {
  border-left: 2px solid #2a5a2a;
  padding-left: 32px;
}

.two-col--bordered .two-col__right {
  border-left: 2px solid var(--accent);
  padding-left: 32px;
}

/* --- Pipeline Table (Privacy page) --- */
.pipeline-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
}

.pipeline-table th {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-align: left;
  padding: 16px 16px;
  border-bottom: 0.5px solid var(--border);
}

.pipeline-table td {
  padding: 16px;
  vertical-align: top;
  border-bottom: 0.5px solid var(--border);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--text);
}

.pipeline-table td:first-child {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  width: 180px;
}

.pipeline-table td:last-child {
  font-family: var(--font-mono);
  font-size: 13px;
}

.pipeline-table tr.local td:last-child {
  color: #5a9a5a;
}

.pipeline-table tr.cloud td:last-child {
  color: var(--accent);
}

/* --- Pull Quote --- */
.pull-quote {
  padding: 80px 0;
  text-align: center;
}

.pull-quote__text {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  line-height: 1.5;
  max-width: 50ch;
  margin: 0 auto;
}

/* --- Dark Box --- */
.dark-box {
  background: var(--surface);
  padding: 80px 64px;
  border-top: 0.5px solid var(--accent);
}

.dark-box--left-accent {
  border-top: none;
  border-left: 2px solid var(--accent);
}

.dark-box__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.7;
  text-align: center;
  max-width: 55ch;
  margin: 0 auto 32px;
}

.dark-box__cta {
  text-align: center;
}

/* --- Scenario Cards --- */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 0.5px solid var(--border);
  border-top: 0.5px solid var(--border);
}

.scenario-card {
  padding: 40px 32px;
  border-right: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.scenario-card__title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 16px;
}

.scenario-card__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

/* --- Deployment Table --- */
.deploy-table {
  width: 100%;
  border-collapse: collapse;
}

.deploy-table tr {
  border-bottom: 0.5px solid var(--border);
}

.deploy-table td {
  padding: 16px 0;
  vertical-align: top;
}

.deploy-table td:first-child {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  width: 160px;
}

.deploy-table td:nth-child(2) {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text);
  width: 140px;
}

.deploy-table td:last-child {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--text);
}

/* --- Three Benefits (Parents page) --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 0.5px solid var(--border);
  border-top: 0.5px solid var(--border);
}

.benefit {
  padding: 40px 32px;
  border-right: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.benefit__title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 16px;
}

.benefit__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

/* --- What They Get / Don't Get --- */
.get-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.get-col__title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.get-col__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
}

.get-col__body p {
  margin-bottom: 16px;
}

/* --- Waitlist --- */
.waitlist {
  padding: 80px 0;
  text-align: center;
}

.waitlist__title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.waitlist__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 32px;
}

.waitlist__form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}

.waitlist__input {
  flex: 1;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--text);
  background: var(--surface);
  border: 0.5px solid var(--border);
  padding: 12px 16px;
  outline: none;
  transition: border-color 150ms ease;
}

.waitlist__input::placeholder {
  color: var(--text-muted);
}

.waitlist__input:focus {
  border-color: var(--accent);
}

/* --- FAQ --- */
.faq {
  border-top: 0.5px solid var(--border);
}

.faq__item {
  border-bottom: 0.5px solid var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq__question::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 150ms ease;
}

.faq__item.active .faq__question::after {
  content: "\2013";
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 300ms ease;
}

.faq__item.active .faq__answer {
  max-height: 200px;
  padding-bottom: 24px;
}

.faq__answer p {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 65ch;
}

/* --- Manifesto page --- */
.manifesto-section {
  padding: 60px 0;
  border-bottom: 0.5px solid var(--accent);
}

.manifesto-section:last-of-type {
  border-bottom: none;
}

.manifesto__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.8;
  max-width: 65ch;
  margin: 0 auto;
}

.manifesto__body p {
  margin-bottom: 24px;
}

.manifesto__body p:last-child {
  margin-bottom: 0;
}

/* --- Snowden Quote --- */
.snowden-box {
  background: var(--surface);
  border-left: 2px solid var(--accent);
  padding: 64px;
  margin: 60px 0;
}

.snowden-box__quote {
  font-family: var(--font-body);
  font-weight: 200;
  font-style: italic;
  font-size: 20px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 55ch;
}

.snowden-box__attribution {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.snowden-box__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  max-width: 55ch;
}

/* --- Privacy columns --- */
.privacy-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.privacy-col__label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.privacy-col__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

.privacy-col__body p {
  margin-bottom: 16px;
}

.privacy-col__body p:last-child {
  margin-bottom: 0;
}

/* --- Closing statement --- */
.closing-statement {
  text-align: center;
  padding: 80px 32px;
}

.closing-statement__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.7;
  max-width: 50ch;
  margin: 0 auto;
}

/* --- Mesh Map Visual --- */
.mesh-map {
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.mesh-map svg {
  max-width: 800px;
  width: 100%;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  transform: translateY(0);
  transition: transform 300ms ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-banner__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.cookie-banner__text p {
  margin-bottom: 2px;
}

.cookie-banner__btn {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text);
  background: none;
  border: 0.5px solid var(--border);
  padding: 10px 24px;
  cursor: pointer;
  white-space: nowrap;
  margin-left: 32px;
  transition: border-color 150ms ease;
}

.cookie-banner__btn:hover {
  border-color: var(--text);
}

/* --- Network Effect Pull Quote --- */
.network-pull {
  padding: 80px 0;
  text-align: center;
}

.network-pull__text {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.5;
  color: var(--white);
  max-width: 50ch;
  margin: 0 auto;
}

/* --- Family CTA --- */
.family-cta {
  text-align: center;
  padding: 80px 0;
  border-top: 0.5px solid var(--border);
}

.family-cta__title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 16px;
}

.family-cta__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 32px;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Hero staggered load --- */
.hero-stagger {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 600ms ease forwards;
}

.hero-stagger:nth-child(1) { animation-delay: 0ms; }
.hero-stagger:nth-child(2) { animation-delay: 40ms; }
.hero-stagger:nth-child(3) { animation-delay: 80ms; }
.hero-stagger:nth-child(4) { animation-delay: 120ms; }
.hero-stagger:nth-child(5) { animation-delay: 160ms; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- PTT Pulse --- */
.ptt-ring {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0;
  animation: pttPulse 3s ease-in-out infinite;
}

@keyframes pttPulse {
  0% { transform: scale(0.8); opacity: 0; }
  50% { opacity: 0.3; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* --- 404 --- */
.four-oh-four {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}

.four-oh-four__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 24px;
}

.four-oh-four__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* --- Local/Cloud split (Privacy page) --- */
.split-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.split-col {
  padding: 40px 32px;
}

.split-col--local {
  border-left: 2px solid #2a5a2a;
}

.split-col--cloud {
  border-left: 2px solid var(--accent);
}

.split-col__title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.split-col__list {
  list-style: none;
}

.split-col__list li {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--text);
  padding: 6px 0;
  line-height: 1.5;
}

.split-col__list li::before {
  content: "\2014\00a0";
  color: var(--text-muted);
}

.split-col__note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  margin-top: 24px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__image {
    order: -1;
  }

  .hero__image-placeholder {
    transform: none;
    max-width: 100%;
    aspect-ratio: 4 / 3;
  }

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

  .two-col,
  .privacy-columns,
  .get-columns,
  .split-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

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

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

  .manifesto-pull {
    padding: 48px 32px;
  }

  .dark-box {
    padding: 48px 32px;
  }

  .snowden-box {
    padding: 32px;
  }

  .container {
    padding: 0 20px;
  }

  .container--narrow {
    padding: 0 20px;
  }

  .section {
    padding: 80px 0;
  }

  .waitlist__form {
    flex-direction: column;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cookie-banner__btn {
    margin-left: 0;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .specs-table td:first-child {
    display: block;
    padding-right: 0;
    padding-bottom: 4px;
    width: auto;
  }

  .specs-table td:last-child {
    display: block;
    padding-bottom: 16px;
  }

  .specs-table tr {
    display: block;
    padding: 12px 0;
  }

  .deploy-table td:first-child,
  .deploy-table td:nth-child(2) {
    display: block;
    width: auto;
  }

  .deploy-table tr {
    display: block;
    padding: 16px 0;
  }

  .two-col--bordered .two-col__right {
    border-left: 2px solid var(--accent);
  }

  .two-col--bordered .two-col__left {
    border-left: 2px solid #2a5a2a;
  }
}

@media (max-width: 480px) {
  .footer__columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__wordmark {
    font-size: 36px;
    letter-spacing: 0.15em;
  }

  .statement__text {
    font-size: 28px;
  }
}
