:root {
  --ink: #0a1d22;
  --muted: #5e6f73;
  --paper: #f6f4ee;
  --card: #ffffff;
  --green: #006a5b;
  --green-dark: #004d43;
  --mint: #d8f2e9;
  --gold: #e9b949;
  --line: rgba(10, 29, 34, .12);
  --shadow: 0 28px 70px rgba(11, 42, 43, .15);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 18%, rgba(216, 242, 233, .8), transparent 29rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 18px;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .025em;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #62e4b9;
  box-shadow: 0 0 0 5px rgba(98, 228, 185, .12);
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; }

.brand-mark,
.mini-logo {
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 12px 12px 12px 3px;
  font-weight: 900;
  letter-spacing: -.08em;
}

.brand-mark { width: 43px; height: 43px; font-size: 18px; }
.brand > span:last-child { display: flex; align-items: baseline; gap: 6px; }
.brand strong { font-size: 18px; letter-spacing: -.03em; }
.brand small { color: var(--green); font-weight: 800; font-size: 10px; letter-spacing: .18em; }
.independent-chip { margin-right: auto; padding: 6px 9px; border: 1px solid rgba(0,106,91,.2); border-radius: 999px; color: var(--green-dark); background: var(--mint); font-size: 10px; font-weight: 800; white-space: nowrap; }

.site-header nav { display: flex; align-items: center; gap: 30px; color: #354b4f; font-size: 13px; font-weight: 650; }
.site-header nav a:hover,
.site-header nav a.active { color: var(--green); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--green); box-shadow: 0 14px 28px rgba(0, 106, 91, .22); }
.button-primary:hover { background: var(--green-dark); box-shadow: 0 18px 34px rgba(0, 106, 91, .28); }
.button-small { min-height: 40px; padding: 0 17px; border-radius: 9px; font-size: 12px; }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.46); }

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 655px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 60px;
  padding: 48px 0 78px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); }

h1 {
  max-width: 650px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6.25vw, 88px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.065em;
}

h1 em { color: var(--green); font-weight: 500; }

.hero-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 32px; }
.text-link { color: var(--green-dark); font-size: 13px; font-weight: 800; }
.text-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.trust-row { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; color: #52666a; font-size: 11px; font-weight: 650; }
.trust-row b { color: var(--green); margin-right: 5px; }

.hero-visual { min-height: 520px; position: relative; display: grid; place-items: center; }
.hero-visual::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(145deg, #cdeade, #f3ebcf);
  filter: drop-shadow(0 30px 70px rgba(0, 77, 67, .12));
}

.orbit { position: absolute; border: 1px solid rgba(0, 106, 91, .18); border-radius: 50%; }
.orbit-one { width: 495px; height: 495px; }
.orbit-two { width: 550px; height: 550px; border-style: dashed; opacity: .6; }

.phone {
  position: relative;
  z-index: 2;
  width: 270px;
  min-height: 486px;
  padding: 15px;
  overflow: hidden;
  border: 7px solid #102a2d;
  border-radius: 39px;
  background: #f8faf7;
  box-shadow: var(--shadow);
  transform: rotate(2.5deg);
}

.phone-top { display: flex; justify-content: center; height: 21px; }
.phone-top span { width: 65px; height: 16px; border-radius: 0 0 12px 12px; background: #102a2d; margin-top: -15px; }
.app-head { display: flex; align-items: center; gap: 9px; padding: 10px 3px 15px; }
.mini-logo { width: 34px; height: 34px; border-radius: 9px 9px 9px 3px; font-size: 13px; }
.app-head div { display: flex; flex-direction: column; line-height: 1.1; }
.app-head b { font-size: 12px; }
.app-head small { color: var(--muted); font-size: 8px; margin-top: 3px; }
.online-dot { width: 8px; height: 8px; border-radius: 50%; margin-left: auto; background: #54d8a8; box-shadow: 0 0 0 4px rgba(84,216,168,.14); }

.phone-hero {
  min-height: 153px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 19px;
  border-radius: 19px;
  color: #fff;
  background: linear-gradient(145deg, #063d38, #00846f);
}
.phone-hero small { color: #a7e9d3; font-size: 7px; font-weight: 800; letter-spacing: .13em; }
.phone-hero strong { font-family: Georgia, serif; font-size: 25px; font-weight: 500; margin-top: 8px; }
.phone-hero span { color: rgba(255,255,255,.72); font-size: 9px; margin-top: 4px; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 10px; }
.stat-grid div { display: flex; flex-direction: column; padding: 13px; border: 1px solid rgba(10,29,34,.08); border-radius: 13px; background: #fff; }
.stat-grid small { color: var(--muted); font-size: 7px; }
.stat-grid b { font-size: 11px; margin-top: 4px; }
.phone-download { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; padding: 14px 15px; border-radius: 12px; color: #fff; background: var(--green); font-size: 10px; font-weight: 800; }
.phone-download span { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,.18); }
.phone-note { margin: 12px 5px 0; color: #708084; font-size: 7px; line-height: 1.5; text-align: center; }

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 152px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 40px rgba(8, 53, 52, .14);
  backdrop-filter: blur(12px);
}
.floating-card > span { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 9px; color: var(--green); background: var(--mint); font-weight: 900; }
.floating-card div { display: flex; flex-direction: column; }
.floating-card b { font-size: 10px; }
.floating-card small { color: var(--muted); font-size: 8px; margin-top: 3px; }
.card-secure { left: 3%; top: 17%; }
.card-speed { right: -2%; bottom: 20%; }

.proof-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 42px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-strip > div { display: flex; align-items: center; gap: 13px; min-height: 45px; padding: 0 20px; border-right: 1px solid var(--line); }
.proof-strip > div:first-child { padding-left: 0; }
.proof-strip > div:last-child { border-right: 0; }
.proof-strip strong { color: var(--gold); font-family: Georgia, serif; font-size: 23px; font-style: italic; }
.proof-strip span { display: flex; flex-direction: column; }
.proof-strip b { font-size: 11px; }
.proof-strip small { color: var(--muted); font-size: 9px; margin-top: 4px; }

.preview-footer { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 0 0 34px; display: flex; justify-content: space-between; color: #758386; font-size: 10px; }

@media (max-width: 920px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 65px; gap: 35px; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-lead { max-width: 650px; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-strip > div:nth-child(2) { border-right: 0; }
  .proof-strip > div { padding: 14px; }
  .proof-strip > div:first-child { padding-left: 14px; }
}

/* Full public site */

body.nav-open { overflow: hidden; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.menu-toggle,
.mobile-nav-backdrop { display: none; }

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading { margin-bottom: 40px; }
.section-heading.narrow { max-width: 710px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading .eyebrow { margin-bottom: 17px; }
.section-heading h2,
.safety-panel h2,
.next-step-card h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -.05em;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.split-heading > div { max-width: 650px; }
.split-heading > p { max-width: 430px; margin-bottom: 3px; }

.release-overview {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 80px;
}

.release-card {
  padding: 32px;
  border: 1px solid rgba(0, 106, 91, .15);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 24px 70px rgba(11, 42, 43, .1);
}

.release-card.pending-release { border-style: dashed; }
.release-brand { display: flex; align-items: center; gap: 14px; }
.release-brand .brand-mark { flex: 0 0 auto; width: 50px; height: 50px; }
.release-brand div { display: flex; flex-direction: column; gap: 5px; }
.release-brand small { color: var(--green); font-size: 8px; font-weight: 850; letter-spacing: .16em; }
.release-brand b { font-size: 16px; }
.release-card dl { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.release-card dl div { padding: 18px 0; }
.release-card dt,
.download-specs dt { color: var(--muted); font-size: 9px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.release-card dd,
.download-specs dd { margin: 7px 0 0; font-size: 13px; font-weight: 750; }
.release-card .button { width: 100%; }

.status-pill,
.admin-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.status-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status-pill.verified,
.status-pill.published { color: #087a5d; background: #dff5eb; }
.status-pill.pending,
.status-pill.draft { color: #8d6b12; background: #fbf0cc; }
.status-pill.revoked { color: #9a3c3c; background: #f8dddd; }
.status-pill.archived { color: #5d6b6e; background: #edf0ef; }
.button-muted { color: #526568; border-color: var(--line); background: #e9ebe7; box-shadow: none; }

.steps-section { border-top: 1px solid var(--line); }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-grid article { position: relative; min-height: 300px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: 21px; background: rgba(255,255,255,.58); }
.step-grid article > span { position: absolute; right: 22px; top: 18px; color: rgba(0, 77, 67, .09); font-family: Georgia, serif; font-size: 58px; font-style: italic; }
.step-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; color: var(--green); background: var(--mint); font-size: 19px; font-weight: 850; }
.step-grid h3 { max-width: 220px; margin: 54px 0 12px; font-family: Georgia, serif; font-size: 25px; font-weight: 500; letter-spacing: -.03em; }
.step-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.section-action { display: flex; justify-content: center; margin-top: 35px; }

.safety-split { display: grid; grid-template-columns: 1fr 1fr; padding: 0; overflow: hidden; border-radius: 28px; background: var(--ink); box-shadow: var(--shadow); }
.safety-panel { min-height: 530px; padding: 65px; }
.dark-panel { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; color: #fff; background: radial-gradient(circle at 20% 10%, rgba(59, 181, 151, .28), transparent 20rem), var(--ink); }
.eyebrow-light { color: #70d9ba; }
.dark-panel h2 { max-width: 480px; }
.dark-panel p { max-width: 500px; margin: 24px 0 30px; color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.75; }
.button-light { color: var(--ink); background: #fff; }
.checklist-panel { display: flex; align-items: center; background: #f0eee6; }
.check-list { width: 100%; margin: 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.check-list li:last-child { border-bottom: 0; }
.check-list > li > span { display: grid; place-items: center; flex: 0 0 42px; width: 42px; height: 42px; border-radius: 50%; color: var(--green); background: rgba(0,106,91,.09); font-family: Georgia, serif; font-size: 13px; font-style: italic; font-weight: 750; }
.check-list li div { display: flex; flex-direction: column; gap: 6px; }
.check-list li b { font-family: Georgia, serif; font-size: 20px; font-weight: 500; }
.check-list li small { color: var(--muted); font-size: 11px; }

.brand-banner { position: relative; padding: 80px 0 0; }
.brand-banner img { display: block; width: 100%; height: auto; border-radius: 26px; box-shadow: 0 25px 70px rgba(10,29,34,.18); }
.banner-status { position: absolute; left: 24px; bottom: 44px; padding: 10px 14px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; color: #fff; background: rgba(10,29,34,.88); box-shadow: 0 8px 24px rgba(10,29,34,.2); font-size: 12px; font-weight: 850; }
.brand-banner figcaption { margin-top: 13px; color: #526568; font-size: 12px; text-align: right; }
.brand-banner figcaption strong { color: var(--green-dark); }

.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.guide-card { position: relative; min-height: 355px; padding: 30px; border: 1px solid var(--line); border-radius: 21px; background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.guide-card:hover { transform: translateY(-5px); box-shadow: 0 20px 55px rgba(10,29,34,.1); }
.guide-number { position: absolute; right: 24px; top: 18px; color: rgba(0,77,67,.08); font-family: Georgia, serif; font-size: 52px; font-style: italic; }
.guide-label { display: inline-flex; padding: 7px 9px; border-radius: 999px; color: var(--green); background: var(--mint); font-size: 8px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.guide-card h2,
.guide-card h3 { max-width: 300px; margin: 55px 0 14px; font-family: Georgia, serif; font-size: 26px; font-weight: 500; line-height: 1.15; letter-spacing: -.035em; }
.guide-card h2 a:hover,
.guide-card h3 a:hover { color: var(--green); }
.guide-card p { color: var(--muted); font-size: 13px; line-height: 1.7; }
.card-link { position: absolute; bottom: 28px; color: var(--green); font-size: 11px; font-weight: 850; }
.card-link span { display: inline-block; margin-left: 7px; transition: transform .2s ease; }
.card-link:hover span { transform: translateX(4px); }
.guide-meta { display: flex; gap: 12px; color: #7d898b; font-size: 9px; }

.faq-preview { max-width: 920px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 4px; cursor: pointer; list-style: none; font-family: Georgia, serif; font-size: 19px; font-weight: 500; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; place-items: center; flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%; color: var(--green); background: var(--mint); font-family: system-ui, sans-serif; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details > div { max-width: 760px; padding: 0 45px 22px 4px; }
.faq-list details p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.independent-note { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 90px; padding: 28px 34px; border: 1px solid rgba(0,106,91,.16); border-radius: 18px; background: var(--mint); }
.independent-note > div { display: flex; align-items: center; gap: 17px; }
.note-mark { display: grid; place-items: center; flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%; color: #fff; background: var(--green); font-family: Georgia, serif; font-style: italic; }
.independent-note b { font-size: 12px; }
.independent-note p { max-width: 710px; margin: 5px 0 0; color: #47615f; font-size: 11px; line-height: 1.6; }
.independent-note > a { white-space: nowrap; color: var(--green); font-size: 11px; font-weight: 850; }

.responsible-bar { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 20px max(30px, calc((100% - 1180px)/2)); color: #fff; background: var(--green); }
.responsible-bar > div { display: flex; align-items: center; gap: 15px; }
.age-chip { display: grid; place-items: center; flex: 0 0 42px; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-weight: 900; }
.responsible-bar p { margin: 0; color: rgba(255,255,255,.8); font-size: 11px; line-height: 1.5; }
.responsible-bar p strong { color: #fff; }
.responsible-bar > a { white-space: nowrap; font-size: 11px; font-weight: 850; }

.site-footer { padding: 70px max(30px, calc((100% - 1180px)/2)) 24px; color: #e8efed; background: var(--ink); }
.footer-main { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 65px; padding-bottom: 62px; }
.brand-footer { color: #fff; }
.brand-footer small { color: #72dbbc; }
.footer-about p { max-width: 360px; margin: 20px 0 0; color: #8fa4a4; font-size: 12px; line-height: 1.75; }
.footer-main > div:not(.footer-about) { display: flex; flex-direction: column; gap: 13px; }
.footer-main h2 { margin: 6px 0 9px; color: #fff; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.footer-main > div > a { color: #99aaaa; font-size: 11px; }
.footer-main > div > a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #718685; font-size: 9px; line-height: 1.5; }
.footer-bottom span:nth-child(2) { max-width: 600px; text-align: center; }
.footer-bottom a:hover { color: #fff; }

/* Inner pages */

.breadcrumbs {
  width: min(1180px, calc(100% - 40px));
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #526568;
  font-size: 12px;
}
.breadcrumbs a:hover { color: var(--green); }
.breadcrumbs span[aria-current] { color: #405659; }

.page-hero {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 80px;
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { max-width: 900px; font-size: clamp(48px, 6.3vw, 82px); }
.page-hero p { max-width: 750px; margin: 28px auto 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.compact-hero { padding-bottom: 42px; }
.review-line { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 24px; color: #526568; font-size: 12px; }
.review-line a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }

.article-layout { width: min(980px, calc(100% - 40px)); margin: 0 auto 100px; display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 80px; align-items: start; }
.article-aside { position: sticky; top: 25px; display: flex; flex-direction: column; gap: 12px; padding-top: 12px; }
.aside-label { margin-bottom: 5px; color: #526568; font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.article-aside > a { padding-bottom: 12px; border-bottom: 1px solid var(--line); color: #526568; font-size: 11px; font-weight: 700; }
.article-aside > a:hover { color: var(--green); }
.aside-warning { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; padding: 16px; border-radius: 12px; color: #6f5716; background: #faefcc; }
.aside-warning b { font-size: 10px; }
.aside-warning span { font-size: 9px; line-height: 1.5; }

.prose { color: #344a4e; font-size: 16px; line-height: 1.85; }
.prose h2 { margin: 55px 0 18px; color: var(--ink); font-family: Georgia, serif; font-size: 35px; font-weight: 500; letter-spacing: -.035em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 38px; color: var(--ink); font-family: Georgia, serif; font-size: 24px; font-weight: 500; }
.prose p { margin: 0 0 22px; }
.prose ul,
.prose ol { margin: 0 0 26px; padding-left: 22px; }
.prose li { margin: 10px 0; padding-left: 5px; }
.prose strong { color: var(--ink); }
.prose blockquote { margin: 35px 0; padding: 25px 28px; border-left: 3px solid var(--gold); border-radius: 0 14px 14px 0; color: var(--ink); background: #f0ecd9; font-family: Georgia, serif; font-size: 20px; line-height: 1.55; }
.prose a { color: var(--green); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.next-step-card { display: flex; align-items: center; justify-content: space-between; gap: 50px; margin-bottom: 100px; padding: 54px; border-radius: 24px; color: #fff; background: var(--ink); }
.next-step-card .eyebrow { color: #6bd5b6; margin-bottom: 13px; }
.next-step-card h2 { max-width: 700px; font-size: clamp(31px, 3.6vw, 48px); }

/* Download */

.download-layout { display: grid; grid-template-columns: 1.3fr .7fr; gap: 25px; padding-top: 30px; }
.download-card { padding: 36px; border: 1px solid rgba(0,106,91,.16); border-radius: 25px; background: #fff; box-shadow: 0 25px 65px rgba(10,29,34,.1); }
.download-card-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.download-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0 35px; margin: 0; }
.download-specs > div { padding: 20px 0; border-bottom: 1px solid var(--line); }
.download-specs .full { grid-column: 1 / -1; }
.download-specs dd a { color: var(--green); }
.download-specs code,
.responsive-table code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; font-weight: 650; }
.break-code { word-break: break-all; }
.verification-note { margin: 24px 0; padding: 18px; border-radius: 13px; background: var(--mint); }
.verification-note b { font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.verification-note p { margin: 7px 0 0; color: #42605b; font-size: 11px; line-height: 1.65; }
.button-wide { width: 100%; }
.download-footnote { margin: 14px 10px 0; color: #526568; font-size: 11px; line-height: 1.6; text-align: center; }
.empty-release { padding: 55px 25px; text-align: center; }
.empty-release > span { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 20px; border-radius: 18px; color: var(--green); background: var(--mint); font-size: 22px; }
.empty-release h2 { margin: 0; font-family: Georgia, serif; font-size: 27px; font-weight: 500; }
.empty-release p { max-width: 530px; margin: 14px auto 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.download-aside { display: flex; flex-direction: column; gap: 13px; }
.info-card { display: flex; gap: 15px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.65); }
.info-icon { display: grid; place-items: center; flex: 0 0 34px; width: 34px; height: 34px; border-radius: 11px; color: var(--green); background: var(--mint); font-family: Georgia, serif; font-style: italic; }
.info-card h2 { margin: 1px 0 5px; font-size: 12px; }
.info-card p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.6; }
.callout { padding: 19px; border-radius: 15px; }
.callout b { font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.callout p { margin: 7px 0 0; font-size: 10px; line-height: 1.65; }
.warning-callout { color: #755c19; background: #faefcc; }
.release-notes-section { padding-top: 25px; }
.card-prose { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }

.table-card { padding-top: 30px; }
.responsive-table { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.responsive-table table { width: 100%; border-collapse: collapse; min-width: 760px; }
.responsive-table th { padding: 16px 18px; color: #526568; background: #f1f2ee; font-size: 10px; letter-spacing: .1em; text-align: left; text-transform: uppercase; }
.responsive-table td { padding: 18px; border-top: 1px solid var(--line); color: #405457; font-size: 11px; }
.responsive-table td:first-child { display: flex; flex-direction: column; gap: 4px; }
.responsive-table td small { color: #526568; font-size: 10px; }
.simple-empty { padding: 80px 20px; }

/* FAQ / blog / contact */

.faq-page-layout { display: grid; grid-template-columns: minmax(0, 1fr) 285px; gap: 70px; align-items: start; padding-top: 30px; }
.faq-list-large summary { padding: 26px 4px; font-size: 20px; }
.faq-aside { position: sticky; top: 25px; padding: 28px; border-radius: 20px; color: #fff; background: var(--ink); }
.faq-aside .brand-mark { width: 43px; height: 43px; color: var(--ink); background: var(--gold); }
.faq-aside h2 { margin: 30px 0 12px; font-family: Georgia, serif; font-size: 27px; font-weight: 500; }
.faq-aside p { margin: 0 0 23px; color: rgba(255,255,255,.65); font-size: 11px; line-height: 1.7; }
.faq-aside .button { width: 100%; color: var(--ink); background: #fff; }
.guide-grid-page { padding-top: 35px; padding-bottom: 120px; }
.blog-post .page-hero { padding-bottom: 65px; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; padding-top: 35px; align-items: start; }
.contact-copy { padding-top: 25px; }
.contact-kicker { color: var(--green); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-copy h2 { margin: 15px 0 32px; font-size: 45px; }
.compact-list li { padding: 17px 0; }
.compact-list > li > span { width: 34px; height: 34px; flex-basis: 34px; font-family: system-ui, sans-serif; font-style: normal; }
.contact-copy .warning-callout { margin-top: 28px; }
.contact-form { padding: 36px; border: 1px solid var(--line); border-radius: 23px; background: #fff; box-shadow: 0 24px 65px rgba(10,29,34,.09); }
.contact-form label { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.contact-form label > span { color: #405457; font-size: 10px; font-weight: 800; }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; padding: 14px 15px; border: 1px solid #d9ddda; border-radius: 10px; outline: 0; color: var(--ink); background: #fdfdfb; font: inherit; font-size: 13px; }
.contact-form textarea { resize: vertical; line-height: 1.6; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,106,91,.1); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .button { width: 100%; }
.form-note { margin: 13px 0 0; color: #526568; font-size: 11px; text-align: center; }
.form-note a { color: var(--green); text-decoration: underline; }
.honeypot { position: absolute; left: -10000px; }
.form-alert { margin-bottom: 20px; padding: 15px; border-radius: 11px; font-size: 11px; line-height: 1.6; }
.form-alert strong { display: block; margin-bottom: 3px; }
.form-alert ul { margin: 5px 0 0; padding-left: 18px; }
.success-alert { color: #076047; background: #dff5eb; }
.error-alert { color: #8c3636; background: #f8dddd; }

.not-found { width: min(650px, calc(100% - 40px)); min-height: 65vh; margin: 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.not-found > span { color: var(--gold); font-family: Georgia, serif; font-size: 90px; font-style: italic; }
.not-found h1 { margin-top: 5px; font-size: 48px; }
.not-found p { color: var(--muted); }
.not-found > div { display: flex; gap: 12px; margin-top: 20px; }

@media (max-width: 1000px) {
  .independent-chip { display: none; }
  .release-overview { gap: 45px; }
  .safety-panel { padding: 45px; }
  .footer-main { gap: 35px; }
  .download-layout { grid-template-columns: 1fr; }
  .download-aside { display: grid; grid-template-columns: repeat(3, 1fr); }
  .download-aside .callout { grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  .menu-toggle { display: flex; width: 42px; height: 42px; margin-left: auto; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.5); }
  .menu-toggle span { width: 17px; height: 2px; background: var(--ink); transition: transform .2s ease; }
  .site-header nav { position: fixed; z-index: 90; top: 0; right: 0; width: min(340px, 85vw); height: 100vh; padding: 95px 30px 30px; overflow-y: auto; display: flex; flex-direction: column; align-items: stretch; gap: 0; background: #fff; box-shadow: -20px 0 60px rgba(10,29,34,.16); transform: translateX(110%); transition: transform .25s ease; }
  .site-header nav a { padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
  body.nav-open .site-header nav { transform: translateX(0); }
  body.nav-open .menu-toggle { position: fixed; z-index: 100; right: 20px; top: 55px; }
  body.nav-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  body.nav-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-nav-backdrop { position: fixed; z-index: 80; inset: 0; background: rgba(10,29,34,.48); }
  body.nav-open .mobile-nav-backdrop { display: block; }
  .header-cta { display: none; }
  .split-heading { align-items: flex-start; flex-direction: column; gap: 5px; }
  .release-overview { grid-template-columns: 1fr; }
  .step-grid,
  .guide-grid { grid-template-columns: 1fr 1fr; }
  .step-grid article:last-child,
  .guide-grid article:last-child { grid-column: 1 / -1; }
  .safety-split { grid-template-columns: 1fr; }
  .safety-panel { min-height: auto; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .article-layout { gap: 45px; }
  .faq-page-layout { grid-template-columns: 1fr; gap: 45px; }
  .faq-aside { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 640px) {
  .section { width: min(100% - 28px, 1180px); padding: 65px 0; }
  .section-heading h2,
  .safety-panel h2 { font-size: 39px; }
  .proof-strip { margin-bottom: 0; }
  .release-card { padding: 24px; }
  .step-grid,
  .guide-grid { grid-template-columns: 1fr; }
  .step-grid article:last-child,
  .guide-grid article:last-child { grid-column: auto; }
  .guide-card { min-height: 320px; }
  .safety-panel { padding: 36px 25px; }
  .brand-banner { padding-top: 55px; }
  .brand-banner img { border-radius: 15px; }
  .banner-status { left: 12px; right: 12px; bottom: 50px; text-align: center; font-size: 10px; }
  .independent-note { align-items: flex-start; flex-direction: column; margin-bottom: 65px; padding: 24px; }
  .responsible-bar { align-items: flex-start; flex-direction: column; padding: 22px 20px; }
  .site-footer { padding: 55px 20px 22px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom span:nth-child(2) { text-align: left; }
  .breadcrumbs { width: min(100% - 28px, 1180px); overflow: hidden; white-space: nowrap; }
  .page-hero { width: min(100% - 28px, 920px); padding: 75px 0 55px; }
  .page-hero h1 { font-size: 46px; }
  .page-hero p { font-size: 15px; }
  .article-layout { width: min(100% - 28px, 980px); grid-template-columns: 1fr; margin-bottom: 65px; }
  .article-aside { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .article-aside .aside-label,
  .article-aside .aside-warning { grid-column: 1 / -1; }
  .article-aside > a { padding: 10px; border: 1px solid var(--line); border-radius: 8px; }
  .prose { font-size: 15px; }
  .next-step-card { align-items: flex-start; flex-direction: column; margin-bottom: 65px; padding: 32px 24px; }
  .next-step-card .button { width: 100%; }
  .download-card { padding: 24px; }
  .download-card-head { align-items: flex-start; flex-direction: column; }
  .download-specs { grid-template-columns: 1fr; }
  .download-specs .full { grid-column: auto; }
  .download-aside { grid-template-columns: 1fr; }
  .download-aside .callout { grid-column: auto; }
  .faq-list summary { font-size: 17px; }
  .contact-form { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .not-found > div { width: 100%; flex-direction: column; }
}

@media (max-width: 560px) {
  .site-header { width: min(100% - 28px, 1180px); min-height: 72px; }
  .site-header .button { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { width: min(100% - 28px, 1180px); padding-top: 48px; }
  h1 { font-size: clamp(46px, 14.5vw, 64px); }
  .hero-lead { font-size: 15px; line-height: 1.7; }
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-row { justify-content: center; gap: 9px 14px; }
  .hero-visual { min-height: 500px; transform: scale(.9); margin: -18px -28px; }
  .hero-visual::before { width: 350px; height: 350px; }
  .orbit-one { width: 400px; height: 400px; }
  .orbit-two { display: none; }
  .card-secure { left: 0; }
  .card-speed { right: 0; }
  .proof-strip { width: min(100% - 28px, 1180px); grid-template-columns: 1fr; }
  .proof-strip > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip > div:last-child { border-bottom: 0; }
  .preview-footer { width: min(100% - 28px, 1180px); flex-direction: column; gap: 8px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
