@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800;900&display=swap");

:root {
  color-scheme: light;
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --surface-strong: #eef4f8;
  --ink: #111827;
  --text: #263241;
  --muted: #64748b;
  --faint: #94a3b8;
  --line: #d8e3ec;
  --line-soft: #edf3f7;
  --green: #067a61;
  --green-2: #13a87f;
  --blue: #2563eb;
  --cyan: #0e7490;
  --rose: #c81e3a;
  --amber: #b25a02;
  --violet: #6d5dfc;
  --lime-soft: #e9fbf4;
  --blue-soft: #edf5ff;
  --amber-soft: #fff5e6;
  --rose-soft: #fff1f2;
  --violet-soft: #f5f3ff;
  --shadow: 0 18px 44px rgba(15, 23, 42, 0.09);
  --shadow-soft: 0 8px 22px rgba(15, 23, 42, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(237, 245, 255, 0.94), rgba(233, 251, 244, 0.82) 42%, rgba(245, 243, 255, 0.58) 72%, rgba(255, 245, 230, 0.54)),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 520px, #eef4f8 100%);
  color: var(--text);
  font-family:
    "Plus Jakarta Sans", Aptos, "SF Pro Text", "Segoe UI Variable", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

.site-header,
main,
.site-footer {
  width: min(1140px, calc(100vw - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 10;
  min-height: 64px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 10px;
  border: 1px solid rgba(216, 227, 236, 0.86);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 950;
}

.brand span {
  position: relative;
  isolation: isolate;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.42), transparent 30%),
    linear-gradient(135deg, var(--green) 0%, var(--blue) 54%, var(--violet) 100%);
  color: #fff;
  font-size: 19px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.26);
}

.brand span::after {
  content: "";
  position: absolute;
  inset: 8px 10px auto;
  height: 2px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.36);
}

.brand strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
  line-height: 1;
}

@supports (-webkit-background-clip: text) {
  .brand strong {
    background: linear-gradient(135deg, var(--ink) 8%, #174b74 44%, var(--green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.brand.compact span {
  width: 34px;
  height: 34px;
  font-size: 16px;
}

.brand.compact strong {
  font-size: 17px;
}

.site-header nav,
.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.site-header nav a,
.site-footer nav a,
.header-action,
.primary-button,
.secondary-button,
.plan a,
.text-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 850;
}

.site-header nav a,
.site-footer nav a {
  color: var(--muted);
}

.site-header nav a:hover,
.site-footer nav a:hover {
  color: var(--ink);
  background: var(--surface-soft);
}

.header-action,
.primary-button,
.plan a {
  border: 1px solid rgba(6, 122, 97, 0.14);
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff;
  box-shadow: 0 13px 26px rgba(6, 122, 97, 0.2);
}

.plan.featured a {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 13px 26px rgba(37, 99, 235, 0.18);
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.text-link {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(17, 24, 39, 0.24);
  text-underline-offset: 6px;
}

main {
  padding: 32px 0 64px;
}

#features,
#pricing,
#plans,
#trust,
#portal,
#download,
#faq,
#support {
  scroll-margin-top: 98px;
}

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 54px;
  align-items: center;
  padding: 46px 0 58px;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "";
  width: 108px;
  height: 10px;
  display: block;
  margin-bottom: 18px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--rose), var(--amber));
}

.eyebrow,
.plan span,
.proof-strip span,
.product-visual span,
.portal-preview span,
.checkout-summary span,
.activation-result span,
.download-grid span,
.trust-card span,
.security-strip span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  color: var(--ink);
  font-size: 108px;
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  color: var(--ink);
  font-size: 46px;
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-line {
  max-width: 660px;
  margin-top: 22px;
  color: #40516a;
  font-size: 21px;
  font-weight: 600;
}

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

.product-visual {
  position: relative;
  isolation: isolate;
  justify-self: end;
  width: min(100%, 430px);
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(216, 227, 236, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.82)),
    var(--surface);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
  overflow: hidden;
}

.visual-accent {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(37, 99, 235, 0.16), transparent 38%),
    linear-gradient(42deg, transparent 0 52%, rgba(19, 168, 127, 0.18) 52% 100%);
}

.visual-bar,
.visual-main,
.usage-card,
.visual-grid > div,
.portal-preview > div {
  border: 1px solid rgba(216, 227, 236, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.05);
}

.visual-bar,
.visual-main,
.usage-card > div:first-child,
.portal-preview > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.visual-bar {
  min-height: 54px;
  padding: 12px;
}

.visual-bar strong {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 5px 10px;
  background: var(--lime-soft);
  color: var(--green);
  font-size: 13px;
}

.visual-main {
  min-height: 176px;
  align-items: end;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(237, 245, 255, 0.96), rgba(245, 243, 255, 0.92)),
    var(--surface-soft);
}

.visual-main p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.visual-main strong {
  color: var(--ink);
  font-size: 31px;
  line-height: 1;
}

.route-signal {
  width: 92px;
  height: 92px;
  display: block;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--green), var(--blue)),
    var(--blue);
  position: relative;
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.22);
}

.route-signal::before,
.route-signal::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.route-signal::before {
  top: 24px;
}

.route-signal::after {
  bottom: 24px;
  opacity: 0.68;
}

.usage-card {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.usage-card strong,
.portal-preview strong,
.visual-grid strong {
  color: var(--ink);
}

.meter {
  height: 11px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface-strong);
}

.meter span {
  display: block;
  width: 8%;
  min-width: 22px;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--violet));
}

.usage-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.visual-grid > div {
  display: grid;
  gap: 8px;
  min-height: 92px;
  padding: 14px;
}

.visual-grid > div:first-child {
  background: var(--blue-soft);
}

.visual-grid > div:last-child {
  background: var(--amber-soft);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.proof-strip span {
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  text-align: center;
  box-shadow: inset 0 0 0 1px var(--line-soft);
}

.proof-strip span:nth-child(1) {
  background: var(--lime-soft);
}

.proof-strip span:nth-child(2) {
  background: var(--blue-soft);
}

.proof-strip span:nth-child(3) {
  background: var(--violet-soft);
}

.proof-strip span:nth-child(4) {
  background: var(--amber-soft);
}

.split-section,
.trust-section,
.download-section,
.faq-section,
.plans-section,
.portal-section,
.support-section {
  margin-top: 82px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: 44px;
  align-items: start;
}

.section-copy {
  max-width: 470px;
  margin-top: 16px;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list article {
  min-height: 150px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.feature-list article span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  grid-row: 1 / span 2;
}

.feature-list article:nth-child(1) span {
  background: var(--blue-soft);
}

.feature-list article:nth-child(2) span {
  background: var(--lime-soft);
  color: var(--green);
}

.feature-list article:nth-child(3) span {
  background: var(--rose-soft);
  color: var(--rose);
}

.feature-list article:nth-child(4) span {
  background: var(--amber-soft);
  color: var(--amber);
}

.feature-list article:nth-child(5) span {
  background: var(--violet-soft);
  color: var(--violet);
}

.feature-list article:nth-child(6) span {
  background: var(--surface-strong);
  color: var(--cyan);
}

.feature-list h3 {
  grid-column: 2;
  margin-bottom: 8px;
}

.feature-list p {
  grid-column: 2;
  max-width: 620px;
}

.trust-section {
  display: grid;
  gap: 14px;
}

.trust-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(216, 227, 236, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(237, 245, 255, 0.74)),
    var(--surface);
  box-shadow: var(--shadow);
}

.trust-copy {
  display: grid;
  gap: 12px;
}

.trust-copy p:not(.eyebrow) {
  max-width: 520px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trust-card {
  min-height: 184px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.trust-card:nth-child(1) {
  background: var(--lime-soft);
}

.trust-card:nth-child(2) {
  background: var(--blue-soft);
}

.trust-card:nth-child(3) {
  background: var(--amber-soft);
}

.trust-card:nth-child(4) {
  background: var(--violet-soft);
}

.trust-card h3 {
  font-size: 21px;
}

.security-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.security-strip div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface);
}

.security-strip strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.security-strip div:nth-child(1) {
  border-color: rgba(6, 122, 97, 0.2);
}

.security-strip div:nth-child(2) {
  border-color: rgba(37, 99, 235, 0.2);
}

.security-strip div:nth-child(3) {
  border-color: rgba(200, 30, 58, 0.18);
}

.security-strip div:nth-child(4) {
  border-color: rgba(178, 90, 2, 0.2);
}

.section-head {
  max-width: 720px;
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

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

.plan {
  min-height: 440px;
  display: grid;
  gap: 22px;
  align-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.9)),
    var(--surface);
  box-shadow: var(--shadow);
}

.plan.featured {
  border-color: rgba(37, 99, 235, 0.24);
  background:
    linear-gradient(135deg, rgba(237, 245, 255, 0.92), rgba(245, 243, 255, 0.92)),
    var(--surface);
}

.plan strong {
  display: block;
  margin: 14px 0 10px;
  color: var(--ink);
  font-size: 58px;
  line-height: 1;
}

.plan ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: var(--text);
  list-style: none;
}

.plan li {
  min-height: 28px;
  position: relative;
  padding-left: 22px;
  font-weight: 650;
}

.plan li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.plan.featured li::before {
  background: var(--blue);
}

.plan a {
  width: 100%;
}

.plan-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.download-section {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(233, 251, 244, 0.78), rgba(237, 245, 255, 0.82)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

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

.download-grid a {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.download-grid a:nth-child(1) {
  background: var(--blue-soft);
}

.download-grid a:nth-child(2) {
  background: var(--lime-soft);
}

.download-grid a:nth-child(3) {
  background: var(--violet-soft);
}

.download-grid strong {
  color: var(--ink);
  font-size: 18px;
}

.faq-section {
  display: grid;
  gap: 6px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--green);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  padding: 0 18px 18px;
}

.portal-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: 26px;
  align-items: start;
  border: 1px solid rgba(216, 227, 236, 0.84);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(120deg, rgba(233, 251, 244, 0.64), transparent 42%),
    linear-gradient(300deg, rgba(255, 245, 230, 0.78), transparent 44%),
    rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.portal-copy p:not(.eyebrow) {
  margin-top: 14px;
}

.portal-preview {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.portal-preview > div {
  min-height: 74px;
  border-width: 0 0 1px;
  border-radius: 0;
  padding: 16px 18px;
  box-shadow: none;
}

.portal-preview > div:last-child {
  border-bottom: 0;
}

.portal-preview .portal-head {
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.portal-preview .portal-head span,
.portal-preview .portal-head strong {
  color: #fff;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(245, 243, 255, 0.72), rgba(237, 245, 255, 0.8)),
    var(--surface);
  box-shadow: var(--shadow);
}

.support-section p {
  max-width: 740px;
  margin-top: 10px;
}

.site-footer {
  min-height: 104px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.site-footer nav {
  justify-content: center;
}

.site-footer > a:last-child {
  color: var(--text);
  font-weight: 780;
}

.legal-main {
  max-width: 880px;
}

.page-hero {
  padding: 58px 0 24px;
}

.page-hero h1 {
  font-size: 66px;
}

.page-hero p {
  max-width: 700px;
  margin-top: 16px;
  font-size: 18px;
  font-weight: 600;
}

.legal-panel {
  display: grid;
  gap: 22px;
  margin: 18px 0 64px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.legal-panel section {
  display: grid;
  gap: 8px;
}

.legal-panel h2 {
  font-size: 24px;
}

.checkout-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: start;
}

.checkout-summary {
  display: grid;
  gap: 14px;
}

.checkout-summary div {
  min-height: 76px;
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.checkout-summary div:nth-child(1) {
  background: var(--lime-soft);
}

.checkout-summary div:nth-child(2) {
  background: var(--blue-soft);
}

.checkout-summary div:nth-child(3) {
  background: var(--amber-soft);
}

.checkout-summary strong {
  color: var(--ink);
  font-size: 22px;
}

.activation-result {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(6, 122, 97, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(233, 251, 244, 0.86), rgba(237, 245, 255, 0.74)),
    var(--surface);
}

.activation-result strong {
  color: var(--ink);
  font-size: 22px;
}

.activation-result .primary-button {
  justify-self: start;
  margin-top: 8px;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.copied {
  border-color: rgba(6, 122, 97, 0.34) !important;
  color: var(--green) !important;
}

@media (max-width: 900px) {
  .site-header,
  .site-footer,
  .hero,
  .split-section,
  .trust-shell,
  .plans,
  .download-grid,
  .portal-section,
  .support-section,
  .checkout-panel {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    justify-items: start;
  }

  .site-header {
    position: static;
  }

  .site-header nav,
  .site-footer nav {
    justify-content: start;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    gap: 32px;
    padding-top: 28px;
  }

  .product-visual {
    justify-self: start;
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid,
  .security-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-section {
    align-items: start;
  }
}

@media (max-width: 560px) {
  .site-header,
  main,
  .site-footer {
    width: min(100vw - 22px, 1140px);
  }

  main {
    padding-top: 8px;
  }

  h1 {
    font-size: 66px;
  }

  h2 {
    font-size: 34px;
  }

  .page-hero h1 {
    font-size: 44px;
  }

  .hero-line,
  .page-hero p {
    font-size: 16px;
  }

  .visual-main {
    min-height: 146px;
  }

  .visual-main strong {
    font-size: 24px;
  }

  .route-signal {
    width: 72px;
    height: 72px;
  }

  .proof-strip,
  .trust-grid,
  .security-strip,
  .download-grid,
  .visual-grid {
    grid-template-columns: 1fr;
  }

  .plan {
    min-height: 0;
  }

  .plan strong {
    font-size: 48px;
  }
}
