*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#151c29;
  --bg-card:#1e2738;
  --bg-card-hover:#252f42;
  --text:#e1e7ef;
  --text-muted:#94a3b8;
  --blue:#3c83f6;
  --orange:#f96b06;
  --yellow:#fbbf24;
  --green:#22c55e;
  --max-w:1120px;
  --border:rgba(255,255,255,.06);
  --border-hover:rgba(255,255,255,.12);
}
html{scroll-behavior:smooth}
body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
:focus-visible{
  outline:2px solid var(--blue);
  outline-offset:2px;
  border-radius:2px;
}
.nav-toggle:focus-visible{border-radius:.375rem}

/* Nav */
.nav{
  position:sticky;top:0;z-index:10;
  background:rgba(21,28,41,.85);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  max-width:var(--max-w);margin:0 auto;
  padding:0 1.5rem;height:64px;
  display:flex;align-items:center;justify-content:space-between;
}
.logo{display:flex;align-items:center;gap:.625rem}
.logo svg{width:32px;height:32px}
.logo span{font-size:1.25rem;font-weight:700;letter-spacing:-.02em}
.nav-links{display:flex;gap:2rem;align-items:center}
.nav-links a{color:var(--text-muted);font-size:.875rem;font-weight:500;transition:color .15s}
.nav-links a:hover{color:var(--text)}
.nav-links .nav-pill{
  color:var(--blue);
  background:rgba(60,131,246,.1);
  border:1px solid rgba(60,131,246,.2);
  padding:.25rem .75rem;border-radius:999px;
  font-size:.8125rem;
}
.nav-links .nav-pill:hover{
  background:rgba(60,131,246,.18);
  color:var(--text);
}
.nav-toggle{
  display:none;
  background:none;border:none;color:var(--text);
  cursor:pointer;padding:.25rem;
  width:32px;height:32px;
  align-items:center;justify-content:center;
}
.nav-toggle svg{width:24px;height:24px}

/* Hero */
.hero{
  text-align:center;
  padding:7rem 1.5rem 4rem;
  max-width:800px;margin:0 auto;
}
.hero-badge{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.375rem 1rem;border-radius:999px;
  background:rgba(60,131,246,.1);
  border:1px solid rgba(60,131,246,.2);
  color:var(--blue);font-size:.8125rem;font-weight:500;
  margin-bottom:2rem;
}
.hero h1{
  font-size:clamp(2.25rem,5vw,3.5rem);
  font-weight:800;line-height:1.1;
  letter-spacing:-.03em;
  margin-bottom:1.75rem;
}
.hero-rotate{display:grid}
.hero-line{
  grid-area:1/1;
  opacity:0;
  animation-duration:18s;
  animation-timing-function:ease-in-out;
  animation-iteration-count:infinite;
}
.hero-line:nth-child(1){animation-name:hero-r1}
.hero-line:nth-child(2){animation-name:hero-r2}
.hero-line:nth-child(3){animation-name:hero-r3}
@keyframes hero-r1{
  0%,29%{opacity:1}
  33%,96%{opacity:0}
  100%{opacity:1}
}
@keyframes hero-r2{
  0%,29%{opacity:0}
  33%,62%{opacity:1}
  66%,100%{opacity:0}
}
@keyframes hero-r3{
  0%,62%{opacity:0}
  66%,96%{opacity:1}
  100%{opacity:0}
}
.hero h1 .gradient{
  background:linear-gradient(135deg,var(--blue),var(--orange));
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.hero p{
  font-size:1.125rem;color:var(--text-muted);
  max-width:600px;margin:0 auto 2.5rem;
  line-height:1.7;
}
.hero-checks{
  display:flex;flex-wrap:wrap;justify-content:center;gap:1.5rem;
  color:var(--text-muted);font-size:.875rem;
}
.hero-checks span{display:flex;align-items:center;gap:.375rem}
.check-icon{color:var(--green);width:18px;height:18px}

/* Sample cards */
.sample{
  max-width:var(--max-w);margin:0 auto;
  padding:2rem 1.5rem 1.5rem;
  display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;
}
.sample-card{
  background:var(--bg-card);border-radius:.75rem;
  padding:1.25rem 1.5rem;
  border:1px solid var(--border);
}
.sample-card .label{
  display:flex;justify-content:space-between;align-items:center;
  font-size:.8125rem;color:var(--text-muted);margin-bottom:.375rem;
}
.sample-card .value{font-size:1.375rem;font-weight:700}
.sample-card .detail{font-size:.75rem;color:var(--text-muted);margin-top:.25rem}
.status-ok{color:var(--green)}
.status-warn{color:var(--orange)}
.bar{height:4px;border-radius:2px;background:rgba(255,255,255,.08);margin-top:.625rem;overflow:hidden}
.bar-fill{height:100%;border-radius:2px}
.bar-spf{width:80%;background:linear-gradient(90deg,var(--blue),var(--orange))}
.bar-dkim{width:100%;background:var(--green)}
.bar-dmarc{width:60%;background:var(--orange)}

/* Trust badges */
.trust-badges{
  max-width:var(--max-w);margin:0 auto;
  padding:.75rem 1.5rem 5rem;
  display:flex;flex-wrap:wrap;justify-content:center;gap:1.5rem 2rem;
  font-size:.8125rem;color:var(--text-muted);
}
.trust-badges span{
  display:flex;align-items:center;gap:.5rem;
  padding:.25rem .75rem;
  border-radius:.375rem;
  background:rgba(255,255,255,.03);
  border:1px solid var(--border);
}
.trust-badges svg{opacity:.6;flex-shrink:0}

/* Features */
.features{
  background:linear-gradient(180deg,rgba(30,39,56,.4) 0%,var(--bg) 100%);
  border-top:1px solid rgba(255,255,255,.04);
  padding:6rem 1.5rem;
}
.features-inner{max-width:var(--max-w);margin:0 auto}
.section-head{text-align:center;margin-bottom:4rem}
.section-head h2{
  font-size:clamp(1.75rem,3.5vw,2.5rem);
  font-weight:800;letter-spacing:-.02em;margin-bottom:.75rem;
}
.section-head h2 .accent{color:var(--blue)}
.section-head p{color:var(--text-muted);font-size:1.0625rem;max-width:560px;margin:0 auto;line-height:1.7}
.features-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;
}
.feature{
  background:var(--bg-card);border-radius:.75rem;
  padding:2rem;
  border:1px solid var(--border);
  transition:border-color .25s,box-shadow .25s;
}
.feature:hover{
  border-color:var(--border-hover);
  box-shadow:0 0 0 1px rgba(60,131,246,.08),0 8px 24px rgba(0,0,0,.2);
}
.feature-icon{
  width:40px;height:40px;border-radius:.5rem;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.25rem;
}
.feature-icon svg{width:20px;height:20px}
.fi-blue{background:rgba(60,131,246,.12);color:var(--blue)}
.fi-green{background:rgba(34,197,94,.12);color:var(--green)}
.fi-orange{background:rgba(249,107,6,.12);color:var(--orange)}
.fi-yellow{background:rgba(251,191,36,.12);color:var(--yellow)}
.feature h3{font-size:1rem;font-weight:600;margin-bottom:.5rem}
.feature p{font-size:.875rem;color:var(--text-muted);line-height:1.6}
.feature p a,.why-item p a{
  color:var(--blue);text-decoration:underline;
  text-underline-offset:2px;
}
.feature p a:hover,.why-item p a:hover{color:#5a9bf7}

/* Not features */
.not-features{
  padding:6rem 1.5rem;
  border-top:1px solid rgba(255,255,255,.04);
}
.not-features-inner{max-width:var(--max-w);margin:0 auto}
.not-features-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;
}
.not-feature{
  padding:2rem;
  border-radius:.75rem;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg,rgba(255,255,255,.02) 0%,transparent 100%);
}
.not-feature-icon{
  width:36px;height:36px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.05);
  color:var(--text-muted);
  margin-bottom:1.25rem;
}
.not-feature-icon svg{width:18px;height:18px}
.not-feature h3{
  font-size:1rem;font-weight:600;margin-bottom:.75rem;
}
.not-feature p{
  font-size:.875rem;color:var(--text-muted);line-height:1.7;
  margin-bottom:.75rem;
}
.not-feature p:last-child{margin-bottom:0}

/* Why */
.why{
  padding:6rem 1.5rem;
  max-width:var(--max-w);margin:0 auto;
}
.why-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start;
}
.why h2{
  font-size:clamp(1.75rem,3.5vw,2.25rem);
  font-weight:800;letter-spacing:-.02em;margin-bottom:2.5rem;
}
.why-item{display:flex;align-items:flex-start;gap:.875rem;margin-bottom:2rem}
.why-item:last-child{margin-bottom:0}
.why-check{
  flex-shrink:0;width:24px;height:24px;border-radius:50%;
  background:rgba(34,197,94,.12);color:var(--green);
  display:flex;align-items:center;justify-content:center;
  margin-top:.125rem;
}
.why-check svg{width:14px;height:14px}
.why-item h3{font-size:.9375rem;font-weight:600;margin-bottom:.25rem}
.why-item p{font-size:.875rem;color:var(--text-muted);line-height:1.6}
.why-visual{
  display:flex;align-items:center;justify-content:center;
  padding-top:3rem;
}
.why-visual svg{width:200px;height:200px;opacity:.6}

/* Security page */
.security-hero{padding-bottom:3rem}
.security-hero p{margin-bottom:0}

.security-section{
  max-width:var(--max-w);margin:0 auto;
  padding:0 1.5rem 4rem;
}
.security-inner{max-width:800px;margin:0 auto}

.security-block{
  margin-bottom:3.5rem;
}
.security-block:last-child{margin-bottom:0}

.security-block-header{
  display:flex;align-items:center;gap:1rem;
  margin-bottom:1.5rem;
  padding-bottom:1rem;
  border-bottom:1px solid var(--border);
}
.security-block-icon{
  width:40px;height:40px;border-radius:.5rem;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.security-block-icon svg{width:20px;height:20px}
.security-block-header h2{
  font-size:1.375rem;font-weight:700;letter-spacing:-.01em;
}

.security-block-body p{
  font-size:.9375rem;color:var(--text-muted);line-height:1.7;
  margin-bottom:1.25rem;
}
.security-block-body p:last-child{margin-bottom:0}
.security-block-body a{
  color:var(--blue);text-decoration:underline;
  text-underline-offset:2px;
}
.security-block-body a:hover{color:#5a9bf7}
.security-block-body ul{
  list-style:none;padding:0;margin:0 0 1.5rem;
}
.security-block-body li{
  font-size:.9375rem;color:var(--text-muted);line-height:1.7;
  padding:.25rem 0 .25rem 1.5rem;
  position:relative;
}
.security-block-body li::before{
  content:"";position:absolute;left:0;top:.75rem;
  width:6px;height:6px;border-radius:50%;
  background:var(--blue);opacity:.5;
}

.security-callout{
  display:flex;gap:1rem;align-items:flex-start;
  padding:1.25rem 1.5rem;
  border-radius:.75rem;
  background:rgba(34,197,94,.06);
  border:1px solid rgba(34,197,94,.15);
  margin:1.5rem 0;
}
.security-callout svg{flex-shrink:0;color:var(--green);margin-top:.125rem}
.security-callout strong{color:var(--text);display:block;margin-bottom:.25rem;font-size:.9375rem}
.security-callout div{font-size:.875rem;color:var(--text-muted);line-height:1.6}

.security-detail-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;
  margin-bottom:1.25rem;
}
.security-detail-grid:last-child{margin-bottom:0}
.security-detail-grid.three-col{grid-template-columns:repeat(3,1fr)}
.security-detail{
  padding:1.25rem 1.5rem;
  border-radius:.625rem;
  background:var(--bg-card);
  border:1px solid var(--border);
}
.security-detail h3{font-size:.875rem;font-weight:600;margin-bottom:.5rem}
.security-detail p{font-size:.8125rem;color:var(--text-muted);line-height:1.6;margin-bottom:0}

/* Pricing page */
.pricing-hero{padding-bottom:2rem}
.pricing-hero p{margin-bottom:2rem}

.billing-toggle{
  display:inline-flex;
  background:var(--bg-card);
  border-radius:.5rem;
  border:1px solid var(--border);
  padding:4px;
}
.toggle-btn{
  background:none;border:none;color:var(--text-muted);
  font-size:.875rem;font-weight:500;
  padding:.5rem 1.25rem;border-radius:.375rem;
  cursor:pointer;transition:all .15s;
  font-family:inherit;
}
.toggle-btn.active{
  background:var(--blue);color:#fff;
}
.save-tag{
  font-size:.6875rem;font-weight:600;
  color:var(--green);
}
.toggle-btn.active .save-tag{color:rgba(255,255,255,.8)}
.roadmap-tag{
  font-size:.625rem;font-weight:600;
  color:var(--text);margin-left:.35em;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.15);
  border-radius:999px;padding:.1em .55em;
  white-space:nowrap;
}

.pricing-grid{
  max-width:var(--max-w);margin:0 auto;
  padding:2rem 1.5rem 3rem;
  display:grid;grid-template-columns:repeat(4,1fr);gap:0 1rem;
}
.plan-card{
  background:var(--bg-card);border-radius:.75rem;
  border:1px solid var(--border);
  padding:1.75rem 1.5rem;
  display:grid;grid-row:span 4;grid-template-rows:subgrid;
  position:relative;
  margin-bottom:1rem;
}
.plan-card.featured{
  border-color:var(--blue);
  box-shadow:0 0 0 1px var(--blue),0 8px 32px rgba(60,131,246,.15);
}
.plan-badge{
  position:absolute;top:-.625rem;left:50%;transform:translateX(-50%);
  background:var(--blue);color:#fff;
  font-size:.6875rem;font-weight:600;
  padding:.25rem .75rem;border-radius:999px;
  white-space:nowrap;
}
.plan-header{margin-bottom:1.25rem}
.plan-header h2{font-size:1.125rem;font-weight:700;margin-bottom:.25rem}
.plan-desc{font-size:.8125rem;color:var(--text-muted)}

.plan-price{margin-bottom:.75rem}
.price{font-size:2rem;font-weight:800;letter-spacing:-.03em}
.price-period{font-size:.75rem;color:var(--text-muted)}

.plan-volume{
  font-size:.75rem;color:var(--text-muted);
  padding:.5rem .75rem;border-radius:.375rem;
  background:rgba(255,255,255,.03);
  border:1px solid var(--border);
  margin-bottom:1.25rem;
  text-align:center;
}

.plan-features{
  list-style:none;padding:0;margin:0;
  flex:1;
}
.plan-features li{
  font-size:.8125rem;color:var(--text-muted);
  padding:.375rem 0 .375rem 1.25rem;
  position:relative;line-height:1.5;
}
.plan-features li.included::before{
  content:"";position:absolute;left:0;top:.625rem;
  width:5px;height:5px;border-radius:50%;
  background:var(--green);
}

/* Compare table */
.pricing-table-section{
  max-width:var(--max-w);margin:0 auto;
  padding:0 1.5rem 5rem;
}
.pricing-table-section h2{
  font-size:1.5rem;font-weight:800;letter-spacing:-.02em;
  margin-bottom:2rem;text-align:center;
}
.table-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch}
.compare-table{
  width:100%;border-collapse:collapse;
  font-size:.8125rem;
}
.compare-table th{
  text-align:center;font-weight:600;
  padding:.75rem 1rem;
  border-bottom:2px solid var(--border);
  color:var(--text);
}
.compare-table th:first-child{text-align:left}
.compare-table td{
  padding:.625rem 1rem;
  border-bottom:1px solid var(--border);
  text-align:center;
  color:var(--text-muted);
}
.compare-table td:first-child{
  text-align:left;color:var(--text);font-weight:500;
  white-space:nowrap;
}
.compare-table .group-header td{
  font-size:.75rem;font-weight:600;
  text-transform:uppercase;letter-spacing:.05em;
  color:var(--blue);
  padding-top:1.25rem;
  border-bottom:1px solid rgba(60,131,246,.2);
  background:none;
}
.compare-table .featured-col{
  background:rgba(60,131,246,.04);
}
.table-check{color:var(--green)}
.table-no{color:rgba(255,255,255,.15)}

/* Buttons */
.btn{
  display:inline-block;
  padding:.75rem 2rem;border-radius:.5rem;
  font-size:.9375rem;font-weight:600;
  text-align:center;
  transition:all .15s;
  cursor:pointer;border:none;
  font-family:inherit;
}
.btn-primary{
  background:var(--blue);color:#fff;
}
.btn-primary:hover{
  background:#2b6fe6;
  box-shadow:0 4px 16px rgba(60,131,246,.3);
}
.btn-secondary{
  background:transparent;color:var(--blue);
  border:1px solid var(--blue);
}
.btn-secondary:hover{
  background:rgba(60,131,246,.1);
  box-shadow:0 4px 16px rgba(60,131,246,.15);
}

/* Hero CTA */
.hero-cta{
  display:flex;flex-direction:column;align-items:center;gap:.75rem;
  margin-top:2rem;
}
.hero-cta > div{
  display:flex;gap:.75rem;flex-wrap:wrap;justify-content:center;
}
.invite-note{
  font-size:.8125rem;color:var(--text-muted);
}
.invite-note a{
  color:var(--blue);text-decoration:underline;
  text-underline-offset:2px;
}
.invite-note a:hover{color:#5a9bf7}

/* Bottom CTA */
.bottom-cta{
  text-align:center;
  padding:5rem 1.5rem;
  border-top:1px solid rgba(255,255,255,.04);
}
.bottom-cta h2{
  font-size:clamp(1.5rem,3vw,2rem);
  font-weight:800;letter-spacing:-.02em;
  margin-bottom:.75rem;
}
.bottom-cta p{
  color:var(--text-muted);font-size:1rem;
  margin-bottom:1.5rem;
}

/* Legal pages */
.legal-hero{padding-bottom:2rem}
.legal-hero p{margin-bottom:0;font-size:.9375rem}
.legal-hero h1{
  font-size:clamp(2rem,4vw,2.75rem);
}

.legal-section{
  max-width:var(--max-w);margin:0 auto;
  padding:0 1.5rem 4rem;
}
.legal-inner{max-width:720px;margin:0 auto}

.legal-block{margin-bottom:2.5rem}
.legal-block:last-child{margin-bottom:0}
.legal-block h2{
  font-size:1.125rem;font-weight:700;
  margin-bottom:1rem;
  padding-bottom:.75rem;
  border-bottom:1px solid var(--border);
}
.legal-block h3{
  font-size:.9375rem;font-weight:600;
  margin:1.25rem 0 .5rem;
}
.legal-block p{
  font-size:.9375rem;color:var(--text-muted);line-height:1.7;
  margin-bottom:.75rem;
}
.legal-block p:last-child{margin-bottom:0}
.legal-block ul{
  list-style:none;padding:0;margin:0 0 1rem;
}
.legal-block li{
  font-size:.9375rem;color:var(--text-muted);line-height:1.7;
  padding:.25rem 0 .25rem 1.5rem;
  position:relative;
}
.legal-block li::before{
  content:"";position:absolute;left:0;top:.75rem;
  width:6px;height:6px;border-radius:50%;
  background:var(--blue);opacity:.5;
}
.legal-block a{
  color:var(--blue);text-decoration:underline;
  text-underline-offset:2px;
}
.legal-block a:hover{color:#5a9bf7}
.legal-attribution{
  margin-top:3rem;
  padding-top:1.5rem;
  border-top:1px solid var(--border);
}
.legal-attribution p{
  font-size:.75rem;
  color:rgba(148,163,184,.5);
}

/* FAQ */
.faq-section{
  max-width:var(--max-w);margin:0 auto;
  padding:0 1.5rem 5rem;
}
.faq-section h2{
  font-size:1.5rem;font-weight:800;letter-spacing:-.02em;
  margin-bottom:2rem;text-align:center;
}
.faq-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;
  max-width:900px;margin:0 auto;
}
.faq-item{
  padding:1.5rem;
  border-radius:.75rem;
  border:1px solid var(--border);
  background:var(--bg-card);
}
.faq-item h3{
  font-size:.9375rem;font-weight:600;margin-bottom:.5rem;
}
.faq-item p{
  font-size:.8125rem;color:var(--text-muted);line-height:1.7;
  margin:0;
}
.faq-item a{
  color:var(--blue);text-decoration:underline;
  text-underline-offset:2px;
}
.faq-item a:hover{color:#5a9bf7}

/* Footer */
.footer{
  border-top:1px solid var(--border);
  padding:3rem 1.5rem;
  text-align:center;
  color:var(--text-muted);font-size:.8125rem;
}
.footer-inner{max-width:var(--max-w);margin:0 auto}
.footer-links{
  display:flex;flex-wrap:wrap;justify-content:center;gap:1.5rem;
  margin-bottom:1.5rem;
}
.footer-links a{
  color:var(--text-muted);font-size:.8125rem;
  transition:color .15s;
}
.footer-links a:hover{color:var(--text)}
.footer-corporate{color:inherit;text-decoration:none;border-bottom:1px solid var(--border);transition:color .15s,border-color .15s}
.footer-corporate:hover{color:var(--text);border-color:var(--text)}
.footer-attribution{margin-bottom:.75rem}

/* Email marketers landing page */
.hero-badge-orange{
  background:rgba(249,107,6,.1);
  border-color:rgba(249,107,6,.2);
  color:var(--orange);
}
.status-err{color:#ef4444}
.bar-err{width:100%;background:#ef4444}

.explainer{
  max-width:var(--max-w);margin:0 auto;
  padding:5rem 1.5rem;
  border-top:1px solid rgba(255,255,255,.04);
}
.explainer-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:3rem;
  align-items:center;
}
.explainer h2{
  font-size:clamp(1.75rem,3.5vw,2.25rem);
  font-weight:800;letter-spacing:-.02em;margin-bottom:1.5rem;
}
.explainer h2 .accent{color:var(--orange)}
.explainer p{
  font-size:.9375rem;color:var(--text-muted);line-height:1.7;
  margin-bottom:1rem;
}
.explainer p:last-child{margin-bottom:0}
.explainer-visual{
  display:flex;align-items:center;justify-content:center;
}
.explainer-visual svg{width:220px;height:220px;opacity:.6}

.requirements-callout{
  max-width:var(--max-w);margin:0 auto;
  padding:0 1.5rem 5rem;
}
.requirements-callout-inner{
  padding:2rem 2.5rem;
  border-radius:.75rem;
  background:rgba(249,107,6,.06);
  border:1px solid rgba(249,107,6,.15);
}
.requirements-callout-inner h2{
  font-size:1.25rem;font-weight:700;margin-bottom:.75rem;
  color:var(--orange);
}
.requirements-callout-inner p{
  font-size:.9375rem;color:var(--text-muted);line-height:1.7;
  margin-bottom:.75rem;
}
.requirements-callout-inner p:last-child{margin-bottom:0}
.requirements-callout-inner a{
  color:var(--orange);text-decoration:underline;
  text-underline-offset:2px;
}
.requirements-callout-inner a:hover{color:#fb923c}

/* Utilities */
/* Visually hidden (screen-reader only) */
.sr-only{
  position:absolute;width:1px;height:1px;
  padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

/* Skip link */
.skip-link{
  position:absolute;top:-100%;left:1rem;
  z-index:100;
  padding:.5rem 1rem;border-radius:.375rem;
  background:var(--blue);color:#fff;
  font-size:.875rem;font-weight:600;
}
.skip-link:focus{top:1rem}

/* Responsive */
@media(max-width:768px){
  .sample{grid-template-columns:1fr}
  .trust-badges{gap:1rem}
  .features-grid{grid-template-columns:1fr}
  .not-features-grid{grid-template-columns:1fr}
  .why-grid{grid-template-columns:1fr}
  .why-visual{display:none}
  .hero{padding:4rem 1.5rem 3rem}
  .nav-toggle{display:flex}
  .nav-links{
    display:none;
    position:absolute;top:64px;left:0;right:0;
    flex-direction:column;gap:0;
    background:rgba(21,28,41,.97);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border-bottom:1px solid var(--border);
    padding:.5rem 0;
  }
  .nav-links.open{display:flex}
  .nav-links a{padding:.75rem 1.5rem;font-size:1rem}
  .nav-links a:hover{background:rgba(255,255,255,.04)}
  .explainer-grid{grid-template-columns:1fr}
  .explainer-visual{display:none}
  .security-detail-grid{grid-template-columns:1fr}
  .security-detail-grid.three-col{grid-template-columns:1fr}
  .security-callout{flex-direction:column;gap:.75rem}
  .pricing-grid{grid-template-columns:1fr;max-width:400px}
  .plan-card{grid-row:auto;grid-template-rows:none;display:flex;flex-direction:column}
  .compare-table td:first-child{min-width:160px}
  .faq-grid{grid-template-columns:1fr}
}
/* Personal tier note */
.personal-note{
  max-width:var(--max-w);margin:0 auto;
  padding:0 1.5rem 2rem;
  text-align:center;
  font-size:.875rem;color:var(--text-muted);
}
.personal-note a{
  color:var(--blue);text-decoration:underline;
  text-underline-offset:2px;
}
.personal-note a:hover{color:#5a9bf7}

/* Enterprise add-on */
.enterprise-addon{
  max-width:var(--max-w);margin:0 auto;
  padding:0 1.5rem 3rem;
}
.enterprise-addon-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:2rem;
  padding:2rem 2.5rem;
  border-radius:.75rem;
  background:rgba(60,131,246,.06);
  border:1px solid rgba(60,131,246,.15);
}
.enterprise-addon-content h2{
  font-size:1.25rem;font-weight:700;margin-bottom:.25rem;
}
.enterprise-addon-content .addon-price{
  font-size:.875rem;color:var(--blue);font-weight:600;margin-bottom:.75rem;
}
.enterprise-addon-features{
  display:flex;gap:1.5rem;flex-wrap:wrap;
  list-style:none;padding:0;margin:0;
}
.enterprise-addon-features li{
  font-size:.8125rem;color:var(--text-muted);
  display:flex;align-items:center;gap:.375rem;
}
.enterprise-addon-features li::before{
  content:"";display:inline-block;
  width:5px;height:5px;border-radius:50%;
  background:var(--green);
}

@media(max-width:768px){
  .enterprise-addon-inner{flex-direction:column;align-items:flex-start}
}
@media(min-width:769px) and (max-width:1024px){
  .features-grid{grid-template-columns:repeat(2,1fr)}
  .sample{grid-template-columns:repeat(3,1fr)}
  .pricing-grid{grid-template-columns:repeat(2,1fr);max-width:none}
  .enterprise-addon-inner{flex-direction:column;align-items:flex-start}
}
