:root {
  color-scheme: light;
  --background: #ffffff;
  --surface: #eaf9f8;
  --accent: #2aa9a4;
  --accent-dark: #1f7f7a;
  --outline: #b9dedb;
  --text: #1b2130;
  --muted: #5c6378;
  --shadow: rgba(15, 23, 42, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(164, 174, 200, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
  margin-left: auto;
  flex: 1 1 auto;
  justify-content: flex-end;
}

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

.nav-links a[aria-current="page"] {
  color: var(--accent);
}

.no-js .nav-links {
  justify-content: flex-end;
}

.install-form-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.install-form-header .install-button {
  white-space: nowrap;
  width: 170px;
  justify-content: center;
}

.install-form-header .install-fields {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: absolute;
  right: 0;
  top: calc(100% + 0.75rem);
  width: min(360px, calc(100vw - 3rem));
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(164, 174, 200, 0.35);
  background: #fff;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
  z-index: 20;
}

.install-form-header input {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--outline);
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  width: 100%;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.install-form-header input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(42, 169, 164, 0.2);
}

.has-js .install-form-header .install-fields {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.has-js .install-form-header.is-open .install-fields {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.has-js .install-form-header.is-open .install-button {
  box-shadow: 0 12px 30px rgba(42, 169, 164, 0.25);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.cta-button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(42, 169, 164, 0.25);
}

.cta-button.primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.cta-button.is-disabled {
  background: #c7e5e2;
  color: #6d7485;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}

.cta-button.outline {
  border: 1px solid var(--outline);
  color: var(--muted);
}

.cta-button.outline:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.cta-button.ghost {
  color: var(--accent);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.6rem;
}

.subdued {
  color: var(--muted);
  font-size: 0.98rem;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.hero {
  padding: 6rem 0 5rem;
  background: linear-gradient(160deg, #effaf9 0%, #ffffff 55%, #eaf9f8 100%);
}

.pricing-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #e3f8f7 0%, #ffffff 45%, #e1f7f4 100%);
}

.pricing-hero::before,
.pricing-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.35;
  filter: blur(0);
  pointer-events: none;
}

.pricing-hero::before {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(42, 169, 164, 0.35), transparent 70%);
  top: -120px;
  right: -80px;
}

.pricing-hero::after {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(114, 225, 215, 0.35), transparent 70%);
  bottom: -120px;
  left: -80px;
}

.pricing-hero .hero-copy {
  max-width: 520px;
}

.hero-sub {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-copy h1 .hero-subline {
  display: block;
  font-size: 0.82em;
  line-height: 1.2;
  margin-top: 0.35rem;
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
}

.hero-copy .lede {
  color: #3f475d;
  font-size: 1.12rem;
  margin-bottom: 1rem;
}

.pricing-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.pricing-badges li {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.pricing-badges .badge-blue {
  background: rgba(42, 169, 164, 0.15);
  color: #1a6f69;
}

.pricing-badges .badge-citrus {
  background: rgba(114, 225, 215, 0.22);
  color: #176b66;
}

.pricing-badges .badge-mint {
  background: rgba(42, 169, 164, 0.18);
  color: #177370;
}

.pricing-cta-badges .badge-blue,
.pricing-cta-badges .badge-citrus,
.pricing-cta-badges .badge-mint {
  background: #0f3b3a;
  color: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.trust-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 50px var(--shadow);
  padding: 2rem;
  border: 1px solid rgba(164, 174, 200, 0.2);
}

.hero-card .card-header {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.8rem;
  color: var(--text);
  font-weight: 500;
}

.hero-card li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.5rem;
}

.hero-card .card-footer {
  font-size: 0.85rem;
  color: var(--muted);
}

.panel {
  padding: 5rem 0;
}

.pricing-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #e8f9f8 100%);
}

.pricing-panel::before,
.pricing-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.4;
  pointer-events: none;
}

.pricing-panel::before {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(114, 225, 215, 0.35), transparent 70%);
  top: -140px;
  left: -120px;
}

.pricing-panel::after {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(114, 225, 215, 0.3), transparent 70%);
  bottom: -140px;
  right: -110px;
}

.pricing-panel .container {
  position: relative;
  z-index: 1;
}

.pricing-footnote {
  text-align: center;
  margin-top: 1.5rem;
}

.panel.muted {
  background: var(--surface);
}

.panel h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.faq-hero__inner {
  max-width: 720px;
}

.faq-hero__inner h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.faq-hero__inner .lede {
  font-size: 1.1rem;
  color: var(--muted);
}

.faq-updated {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.faq-body {
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 2.1fr);
  gap: 2.5rem;
  align-items: start;
}

.faq-copy h2 {
  text-align: left;
  margin-bottom: 0.8rem;
}

.faq-list {
  display: grid;
  gap: 1.25rem;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(164, 174, 200, 0.25);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.faq-item h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--text);
}

.faq-item > * + * {
  margin-top: 0.6rem;
}

.faq-item p,
.faq-item ul,
.faq-item ol {
  margin: 0;
  color: var(--muted);
}

.faq-item ul,
.faq-item ol {
  padding-left: 1.2rem;
}

.faq-item code {
  font-size: 0.95em;
  background: #eff7f7;
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
}

.help-hero__inner {
  max-width: 720px;
}

.help-hero__inner h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.help-hero__inner .lede {
  font-size: 1.1rem;
  color: var(--muted);
}

.help-body {
  background: var(--surface);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.help-card {
  background: #fff;
  border: 1px solid rgba(164, 174, 200, 0.25);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.help-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
}

.help-card h3 {
  margin: 0 0 0.5rem;
  color: var(--text);
  font-size: 1.2rem;
}

.help-card p {
  margin: 0;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

/* [Intention: Clarity] Emphasize plan hierarchy with color and scale. */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: stretch;
  margin-top: 1.5rem;
}

.pricing-card {
  background: linear-gradient(160deg, #ffffff 0%, #e9f8f7 55%, #ffffff 100%);
  border-radius: 20px;
  padding: 2.5rem 2.2rem;
  border: 1px solid rgba(42, 169, 164, 0.12);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(42, 169, 164, 0.18), transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(114, 225, 215, 0.16), transparent 50%);
  opacity: 0.85;
  pointer-events: none;
}

.pricing-card > * {
  position: relative;
  z-index: 1;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
}

.pricing-card__header {
  display: grid;
  gap: 0.35rem;
}

.pricing-price {
  font-size: 2.4rem;
  margin: 0;
}

.pricing-note {
  font-size: 1rem;
  color: var(--muted);
  margin-left: 0.25rem;
}

.pricing-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.pricing-list li::before {
  content: "→";
  color: var(--accent);
  margin-right: 0.6rem;
}

.pricing-card .cta-button {
  width: 100%;
}

.cta-button.secondary {
  background: rgba(42, 169, 164, 0.12);
  color: var(--accent);
  border: 1px solid rgba(42, 169, 164, 0.2);
}

.cta-button.secondary:hover {
  background: rgba(42, 169, 164, 0.18);
  color: var(--accent-dark);
}

.pricing-card__badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.pricing-card--highlight {
  background: linear-gradient(155deg, #2aa9a4 0%, #1c7b76 40%, #0f3b3a 100%);
  color: #fff;
  border: none;
  box-shadow: 0 30px 60px rgba(15, 59, 58, 0.35);
}

.pricing-card--highlight::before {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.25), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(114, 225, 215, 0.4), transparent 50%);
}

.pricing-card--highlight .eyebrow,
.pricing-card--highlight .subdued,
.pricing-card--highlight .pricing-note,
.pricing-card--highlight .pricing-list {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-card--highlight .pricing-list li::before {
  color: #fff;
}

.pricing-card--highlight .cta-button.primary {
  background: #fff;
  color: #0f3b3a;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
}

.pricing-card--highlight .cta-button.primary:hover {
  background: #e9f8f7;
}

.pricing-cta {
  background: linear-gradient(140deg, #0f3b3a 0%, #2aa9a4 55%, #72e1d7 100%);
  color: #fff;
}

.pricing-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}

.pricing-cta__inner p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0.25rem 0 0;
}

.pricing-cta__inner > div {
  max-width: 680px;
}

.pricing-cta-badges {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 0.75rem;
}

.pricing-cta-badges li {
  color: rgba(255, 255, 255, 0.96);
  background: #0f3b3a;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.pricing-cta__inner h2 {
  margin-bottom: 0.25rem;
}

.pricing-cta .cta-button.primary {
  background: #fff;
  color: #0f3b3a;
}

.pricing-cta .cta-button.primary:hover {
  background: #e0f7f4;
}

.feature-grid article {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(164, 174, 200, 0.2);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.feature-grid h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
}

.explainer-hero {
  text-align: center;
  background: linear-gradient(160deg, #effaf9 0%, #ffffff 52%, #eaf9f8 100%);
}

.explainer-hero__inner {
  max-width: 760px;
  margin: 0 auto;
}

.explainer-hero__inner h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1.15;
}

.explainer-hero__inner .lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.explainer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.explainer-card {
  display: grid;
  gap: 0.85rem;
  padding: 2rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(164, 174, 200, 0.2);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.explainer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.12);
}

.explainer-card h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--text);
}

.explainer-card__summary {
  margin: 0;
  color: var(--muted);
}

.explainer-card__meta {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.flow-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.flow-grid ol {
  padding-left: 1.2rem;
  margin: 0;
  display: grid;
  gap: 1rem;
  color: var(--muted);
}

.flow-grid li {
  font-size: 1rem;
}

.flow-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(164, 174, 200, 0.2);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.flow-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.flow-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
  color: var(--muted);
}

.flow-card li::before {
  content: "→";
  color: var(--accent);
  margin-right: 0.5rem;
}

.resilience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.resilience-grid h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.resilience-grid p {
  margin: 0 0 1.2rem;
  color: var(--muted);
}

.resilience-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
  color: var(--muted);
}

.resilience-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid rgba(164, 174, 200, 0.2);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.resilience-card .card-header {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.resilience-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.resilience-metrics .metric {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

.resilience-metrics div {
  display: grid;
  gap: 0.25rem;
}

.resilience-metrics span {
  color: var(--muted);
  font-size: 0.9rem;
}

.resilience-card p {
  margin: 0;
  color: var(--muted);
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(164, 174, 200, 0.2);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.cta-grid h2 {
  text-align: left;
  margin: 0 0 0.6rem;
}

.cta-grid p {
  margin: 0;
  color: var(--muted);
}

/* [Intention: Clarity] Provide a readable explainer layout with consistent navigation. */
.page--explainer {
  background: var(--surface);
}

.explainer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
  gap: 3rem;
  align-items: stretch;
  grid-template-areas: "sidebar main";
}

.explainer__sidebar {
  grid-area: sidebar;
  align-self: stretch;
}

.explainer__main {
  grid-area: main;
}

.explainer__nav {
  position: sticky;
  top: 6.5rem;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(164, 174, 200, 0.2);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.explainer__nav-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.explainer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.explainer__nav a {
  display: block;
  padding: 0.4rem 0.6rem;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.explainer__nav a:hover {
  color: var(--accent);
  background: rgba(42, 169, 164, 0.08);
}

.explainer__nav a[aria-current="page"] {
  color: var(--accent);
  background: rgba(42, 169, 164, 0.12);
}

.explainer__header {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.explainer__title {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.explainer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.explainer__meta .dot {
  opacity: 0.6;
}

.explainer__lede {
  margin: 0;
  color: #3f475d;
  font-size: 1.1rem;
}

.explainer__content {
  background: #fff;
  border-radius: 18px;
  padding: 2.5rem;
  border: 1px solid rgba(164, 174, 200, 0.2);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  font-size: 1.02rem;
  max-width: 760px;
  width: 100%;
}

.explainer__content > * + * {
  margin-top: 1.15rem;
}

.explainer__content h2 {
  margin-top: 2.4rem;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
}

.explainer__content h3 {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
}

.explainer__content p {
  margin: 0;
  color: var(--muted);
}

.explainer__content ul,
.explainer__content ol {
  padding-left: 1.2rem;
  margin: 0;
  color: var(--muted);
}

.explainer__content li + li {
  margin-top: 0.6rem;
}

.explainer__content li strong {
  color: var(--text);
}

.explainer__content strong {
  color: var(--text);
}

.explainer__content a {
  color: var(--accent);
  font-weight: 600;
}

.legal-main {
  background: var(--background);
}

.changelog-main {
  background: var(--background);
}

.changelog-hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 3.5rem;
  background: linear-gradient(160deg, #effaf9 0%, #ffffff 55%, #eaf9f8 100%);
}

.changelog-hero::before,
.changelog-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.35;
  pointer-events: none;
}

.changelog-hero::before {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(42, 169, 164, 0.35), transparent 70%);
  top: -140px;
  right: -90px;
}

.changelog-hero::after {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(114, 225, 215, 0.35), transparent 70%);
  bottom: -120px;
  left: -60px;
}

.changelog-hero__inner {
  max-width: 720px;
}

.changelog-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.15;
}

.changelog-hero .lede {
  margin: 0;
  color: #3f475d;
  font-size: 1.08rem;
}

.changelog-body {
  padding: 5rem 0;
}

.changelog-shell {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.changelog-timeline {
  --timeline-date: 120px;
  --timeline-gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
  gap: 1.6rem;
}

.changelog-timeline::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  bottom: 0.8rem;
  left: calc(var(--timeline-date) + (var(--timeline-gap) / 2));
  width: 1px;
  background: rgba(164, 174, 200, 0.4);
}

.changelog-entry {
  display: grid;
  grid-template-columns: var(--timeline-date) 1fr;
  column-gap: var(--timeline-gap);
  align-items: start;
  position: relative;
}

.changelog-entry::before {
  content: "";
  position: absolute;
  top: 1.4rem;
  left: calc(var(--timeline-date) + (var(--timeline-gap) / 2) - 5px);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(42, 169, 164, 0.2);
}

.changelog-entry__date {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--muted);
}

.changelog-entry__card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(164, 174, 200, 0.35);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.changelog-entry__title {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: var(--text);
}

.changelog-entry__card p {
  margin: 0;
  color: var(--muted);
}

.changelog-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.changelog-actions [hidden] {
  display: none !important;
}

.changelog-load {
  min-width: 220px;
}

.changelog-status {
  margin: 0;
  font-size: 0.95rem;
  text-align: center;
  color: var(--muted);
  max-width: 560px;
}

.changelog-status[data-tone="warning"] {
  color: #9f5f00;
}

.changelog-status[data-tone="error"] {
  color: #b42318;
}

.changelog-timeline[aria-busy="true"] {
  opacity: 0.88;
}

.changelog-sentinel {
  width: 100%;
  height: 1px;
}

.changelog-noscript {
  margin-top: 2.5rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .changelog-timeline {
    --timeline-date: 96px;
    --timeline-gap: 1.5rem;
  }

  .changelog-entry__card {
    padding: 1.25rem 1.4rem;
  }
}

@media (max-width: 720px) {
  .changelog-hero {
    padding: 4.5rem 0 3rem;
  }

  .changelog-body {
    padding: 4rem 0;
  }

  .changelog-timeline {
    --timeline-date: 0px;
    --timeline-gap: 1.25rem;
    padding-left: 1.5rem;
  }

  .changelog-timeline::before {
    left: calc(var(--timeline-gap) / 2);
  }

  .changelog-entry {
    grid-template-columns: 1fr;
    row-gap: 0.5rem;
  }

  .changelog-entry::before {
    left: calc(var(--timeline-gap) / 2 - 5px);
  }

  .changelog-entry__date {
    font-size: 0.72rem;
  }
}

.legal-hero {
  text-align: center;
}

.legal-hero__inner {
  max-width: 780px;
  margin: 0 auto;
}

.legal-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.legal-hero h1 {
  margin-bottom: 1rem;
}

.legal-hero p {
  color: var(--muted);
  margin: 0 auto;
}

.legal-body {
  padding: 3rem 0 5rem;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.legal-toc {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(164, 174, 200, 0.2);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.legal-toc h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.legal-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.legal-toc a {
  color: var(--accent);
}

.legal-toc a:hover {
  text-decoration: underline;
}

.legal-section {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(164, 174, 200, 0.2);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.legal-section h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.legal-section p {
  margin: 0;
  color: var(--muted);
}

.legal-section p + p,
.legal-section p + ul {
  margin-top: 1rem;
}

.legal-section ul {
  padding-left: 1.25rem;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
  color: var(--muted);
}

.legal-section li strong {
  color: var(--text);
}

.legal-section a {
  color: var(--accent);
}

.legal-table {
  margin-top: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(164, 174, 200, 0.2);
  overflow-x: auto;
  background: #fff;
}

.legal-table table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.legal-table thead th {
  text-align: left;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  background: #f8fafc;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(164, 174, 200, 0.2);
}

.legal-table tbody td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(164, 174, 200, 0.16);
  color: var(--muted);
  vertical-align: top;
}

.legal-table tbody tr:nth-child(even) td {
  background: rgba(15, 23, 42, 0.02);
}

.legal-table tbody tr:last-child td {
  border-bottom: 0;
}

.cta {
  text-align: center;
  max-width: 640px;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.site-footer {
  background: #0a302e;
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0;
}

.ty-bridge__cta {
  width: min(1100px, calc(100% - 3rem));
  margin: 0 auto 3rem;
  background: linear-gradient(135deg, #0f3b3a 0%, #2aa9a4 55%, #72e1d7 100%);
  border-radius: 22px;
  padding: 2.8rem;
  color: #fff;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.35);
  display: grid;
  gap: 1rem;
}

.ty-bridge__cta h2 {
  margin: 0;
  font-size: 2rem;
}

.ty-bridge__cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
}

.ty-bridge__cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 0.75rem 1.7rem;
  border-radius: 999px;
  background: #fff;
  color: #0f3b3a;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ty-bridge__cta .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.3);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: #fff;
}

.footer-note {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-disclaimer {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.no-js .install-form-header {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}

.no-js .install-form-header .install-fields {
  max-width: none;
  width: auto;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: static;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.no-js .install-form-header input {
  width: 220px;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: minmax(280px, 1fr) minmax(340px, 1.12fr);
  }

  .pricing-card--highlight {
    padding: 2.9rem 2.6rem;
    transform: translateY(-10px) scale(1.02);
    z-index: 2;
  }

  .pricing-card--highlight:hover {
    transform: translateY(-14px) scale(1.03);
  }
}

@media (max-width: 900px) {
  .explainer {
    grid-template-columns: 1fr;
    grid-template-areas: "main" "sidebar";
  }

  .explainer__sidebar {
    margin-top: 2rem;
  }

  .explainer__nav {
    position: static;
  }

  .explainer__header,
  .explainer__content {
    max-width: none;
  }

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

@media (max-width: 768px) {
  .pricing-cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .pricing-card {
    padding: 2.1rem 1.8rem;
  }

  .pricing-card__badge {
    position: static;
    align-self: flex-start;
  }

  .nav-links {
    display: none;
  }

  .install-form-header {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.6rem;
  }

  .install-form-header input {
    width: 100%;
  }

  .has-js .install-form-header .install-fields {
    left: 0;
    right: 0;
    width: calc(100vw - 3rem);
    margin: 0 auto;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-card {
    order: 0;
  }

  .cta-grid {
    flex-direction: column;
    text-align: center;
  }

  .cta-grid h2 {
    text-align: center;
  }

  .explainer {
    padding: 2.5rem 1.5rem 4rem;
  }

  .explainer__content {
    padding: 2rem 1.8rem;
  }

  .legal-content {
    gap: 1.5rem;
  }

  .legal-section,
  .legal-toc {
    padding: 1.5rem;
  }

  .legal-table table {
    min-width: 520px;
  }

  .legal-table thead th,
  .legal-table tbody td {
    padding: 0.7rem 0.85rem;
    font-size: 0.9rem;
  }

  .ty-bridge__cta {
    padding: 2.2rem;
    text-align: center;
  }

  .ty-bridge__cta .btn {
    align-self: center;
  }
}
