:root {
  color-scheme: light;
  --ink: #0d1720;
  --ink-soft: #31414d;
  --muted: #66757f;
  --line: #dce3e5;
  --line-strong: #c7d1d4;
  --paper: #ffffff;
  --canvas: #f5f8f7;
  --canvas-blue: #eef6f7;
  --brand: #147f9f;
  --brand-dark: #0a637d;
  --brand-pale: #dff2f4;
  --mint: #8ee8dc;
  --success: #15755d;
  --error: #ae2b32;
  --shadow-sm: 0 8px 24px rgb(13 23 32 / 7%);
  --shadow-lg: 0 28px 70px rgb(13 23 32 / 14%);
  --shell: min(1240px, calc(100% - 48px));
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--ink);
  font-family:
    Inter,
    Manrope,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

svg {
  width: 1.15em;
  height: 1.15em;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgb(20 127 159 / 30%);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.35rem);
  font-weight: 770;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 730;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgb(245 248 247 / 88%);
  backdrop-filter: blur(18px) saturate(140%);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header--scrolled {
  border-color: rgb(199 209 212 / 70%);
  background: rgb(255 255 255 / 93%);
  box-shadow: 0 5px 20px rgb(13 23 32 / 5%);
}

.site-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 176px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a,
.client-link {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 640;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-cta {
  min-height: 40px;
  white-space: nowrap;
}

.language-switcher {
  position: relative;
}

.language-switcher summary {
  display: flex;
  min-width: 62px;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding-inline: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 720;
  list-style: none;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary svg:first-child {
  width: 16px;
  height: 16px;
}

.language-switcher summary svg:last-child {
  width: 13px;
  height: 13px;
  transition: transform 160ms ease;
}

.language-switcher[open] summary svg:last-child {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  z-index: 10;
  top: calc(100% + 9px);
  right: 0;
  display: grid;
  width: 230px;
  overflow: hidden;
  padding: 7px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.language-menu a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 6px 9px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  text-decoration: none;
}

.language-menu a:hover,
.language-menu a[aria-current="page"] {
  background: var(--canvas-blue);
  color: var(--ink);
}

.language-menu a small {
  color: var(--muted);
  font-size: 0.65rem;
}

.client-link {
  display: flex;
  align-items: center;
  gap: 7px;
}

.client-link svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: transparent;
  color: var(--ink);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.mobile-menu {
  position: fixed;
  z-index: 99;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu .shell {
  display: grid;
  padding-block: 20px 40px;
}

.mobile-menu a:not(.button) {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 680;
  text-decoration: none;
}

.mobile-menu a svg {
  color: var(--brand);
}

.mobile-menu .button {
  margin-top: 24px;
}

.mobile-languages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.mobile-menu .mobile-languages a:not(.button) {
  min-height: 46px;
  justify-content: space-between;
  padding-inline: 11px;
  border: 1px solid var(--line);
  font-size: 0.78rem;
}

.mobile-languages a[aria-current="page"] {
  border-color: var(--brand);
  background: var(--canvas-blue);
}

.mobile-languages a small {
  color: var(--muted);
  font-size: 0.62rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 720;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg,
.text-link svg,
.contact-card a svg {
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

.button:hover svg,
.text-link:hover svg,
.contact-card a:hover svg {
  transform: translateX(3px);
}

.button--primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 8px 20px rgb(13 23 32 / 16%);
}

.button--primary:hover {
  background: #162732;
  box-shadow: 0 12px 26px rgb(13 23 32 / 22%);
}

.button--quiet,
.button--outline {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.button--quiet:hover,
.button--outline:hover {
  border-color: var(--ink);
  background: var(--paper);
}

.button--light {
  background: white;
  color: var(--ink);
}

.button--small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.82rem;
}

.button--wide {
  width: 100%;
}

.button[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 20px;
  height: 2px;
  background: currentcolor;
}

.eyebrow--dark {
  color: var(--mint);
}

.hero {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(40px, 7vw, 94px);
  padding-block: 72px 86px;
}

.hero__copy h1 {
  max-width: 780px;
  margin-bottom: 27px;
}

.hero__lead {
  max-width: 660px;
  margin-bottom: 31px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__note {
  display: flex;
  max-width: 590px;
  align-items: flex-start;
  gap: 10px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero__note svg {
  flex: 0 0 18px;
  margin-top: 3px;
  color: var(--success);
}

.inbox-scene {
  position: relative;
  min-width: 0;
  padding: 34px 0 46px;
}

.inbox-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.78;
}

.inbox-glow--one {
  top: -4%;
  right: -4%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgb(105 191 211 / 37%), transparent 70%);
}

.inbox-glow--two {
  bottom: 2%;
  left: -12%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgb(142 232 220 / 30%), transparent 70%);
}

.inbox-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgb(199 209 212 / 80%);
  border-radius: 14px;
  background: rgb(255 255 255 / 91%);
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.inbox-card__top {
  display: grid;
  height: 51px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
}

.inbox-card__top > span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inbox-card__top > svg {
  justify-self: end;
  margin-right: 17px;
}

.window-dots {
  display: flex;
  gap: 5px;
  margin-left: 17px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c5ced1;
}

.window-dots i:nth-child(2) {
  background: #80c3cf;
}

.inbox-card__body {
  display: grid;
  min-height: 405px;
  grid-template-columns: 67px 1fr;
}

.inbox-card__body aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 24px;
  border-right: 1px solid var(--line);
  background: #f6f9f9;
}

.inbox-card__body aside i {
  width: 20px;
  height: 5px;
  border-radius: 8px;
  background: #d0d9db;
}

.inbox-card__body aside i:nth-of-type(2) {
  background: #88bdc8;
}

.inbox-logo {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 7px;
  background: var(--ink);
  color: white;
}

.message-list {
  min-width: 0;
  padding: 20px;
}

.message-list__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.79rem;
}

.message-list__heading svg {
  color: var(--muted);
}

.message-row {
  display: grid;
  min-height: 78px;
  grid-template-columns: 37px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}

.message-row--active {
  border: 1px solid #c7e0e5;
  border-radius: 8px;
  background: var(--canvas-blue);
}

.avatar {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  background: #d9edf0;
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 760;
}

.message-row strong,
.message-row p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.message-row strong {
  display: block;
  font-size: 0.75rem;
}

.message-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.67rem;
}

.message-row time {
  align-self: start;
  padding-top: 7px;
  color: var(--muted);
  font-size: 0.58rem;
}

.floating-status {
  position: absolute;
  z-index: 2;
  right: -22px;
  bottom: 13px;
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid #c3e1d8;
  border-radius: 9px;
  background: rgb(255 255 255 / 96%);
  box-shadow: var(--shadow-sm);
}

.floating-status > svg {
  width: 29px;
  height: 29px;
  padding: 5px;
  border-radius: 50%;
  background: #dff3ec;
  color: var(--success);
}

.floating-status span {
  min-width: 0;
}

.floating-status strong,
.floating-status small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.floating-status strong {
  font-size: 0.72rem;
}

.floating-status small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.62rem;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: grid;
  gap: 1px;
  min-height: 91px;
  align-content: center;
  padding-inline: 26px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  font-size: 0.76rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  padding-block: clamp(78px, 10vw, 138px);
}

.section--tinted {
  border-block: 1px solid var(--line);
  background: var(--canvas-blue);
}

.section-heading {
  max-width: 790px;
  margin-bottom: clamp(42px, 6vw, 70px);
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading > p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 50px;
}

.section-heading--split h2,
.section-heading--split p {
  margin-bottom: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
}

.benefit {
  min-height: 310px;
  padding: 31px 36px 25px 0;
  border-right: 1px solid var(--line);
}

.benefit + .benefit {
  padding-left: 36px;
}

.benefit:last-child {
  border-right: 0;
}

.benefit__number {
  display: block;
  margin-bottom: 70px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 760;
}

.benefit h3 {
  margin-bottom: 15px;
}

.benefit p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 590px;
  flex-direction: column;
  padding: 31px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgb(255 255 255 / 80%);
}

.plan-card--featured {
  border-color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.plan-card__top {
  min-height: 230px;
  border-bottom: 1px solid var(--line);
}

.plan-card h3 {
  margin: 7px 0 11px;
  font-size: 1.5rem;
}

.plan-card__top p {
  min-height: 68px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.89rem;
}

.plan-badge {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--brand-pale);
  color: var(--brand-dark);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.plan-price strong {
  font-size: 2.3rem;
  letter-spacing: -0.05em;
}

.plan-price span {
  color: var(--muted);
  font-size: 0.78rem;
}

.plan-card ul {
  display: grid;
  gap: 13px;
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.plan-card li svg {
  flex: 0 0 17px;
  margin-top: 2px;
  color: var(--success);
}

.plan-card .button {
  margin-top: auto;
}

.pricing-note {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.web-presence {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.web-presence__layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(500px, 1.22fr);
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
}

.web-presence__copy h2 {
  max-width: 610px;
  margin-bottom: 22px;
}

.web-presence__copy > p:not(.eyebrow) {
  max-width: 590px;
  color: var(--ink-soft);
}

.web-presence__copy ul {
  display: grid;
  gap: 11px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.web-presence__copy li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.web-presence__copy li svg {
  flex: 0 0 18px;
  margin-top: 3px;
  color: var(--success);
}

.web-presence__copy > small {
  display: block;
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.72rem;
}

.mini-site-preview {
  padding: clamp(16px, 2.4vw, 30px);
  background:
    radial-gradient(circle at 85% 5%, rgb(142 232 220 / 45%), transparent 34%),
    #10242e;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}

.mini-site-preview__browser {
  display: flex;
  height: 44px;
  align-items: center;
  gap: 20px;
  padding-inline: 15px;
  background: #eaf0f1;
  color: var(--muted);
  font-size: 0.64rem;
}

.mini-site-preview__browser > span {
  display: flex;
  gap: 5px;
}

.mini-site-preview__browser i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9dafb4;
}

.mini-site-preview__browser b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-site-preview__page {
  min-height: 390px;
  padding: 24px;
  background: #fbfcfa;
}

.mini-site-preview__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
}

.mini-site-preview__nav span {
  width: 74px;
  height: 16px;
  margin-right: auto;
  background: var(--ink);
}

.mini-site-preview__nav i {
  width: 36px;
  height: 5px;
  background: #bfcbcd;
}

.mini-site-preview__hero {
  display: grid;
  max-width: 440px;
  gap: 10px;
  padding: 60px 20px 44px;
}

.mini-site-preview__hero small {
  color: var(--brand-dark);
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-site-preview__hero strong {
  max-width: 390px;
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.mini-site-preview__hero > span {
  width: min(100%, 340px);
  height: 6px;
  background: #d8e0e1;
}

.mini-site-preview__hero > span + span {
  width: min(78%, 270px);
}

.mini-site-preview__hero button {
  width: max-content;
  margin-top: 9px;
  padding: 9px 14px;
  border: 0;
  border-radius: 4px;
  background: var(--ink);
  color: white;
  font-size: 0.65rem;
}

.mini-site-preview__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-site-preview__cards span {
  height: 64px;
  border: 1px solid #dfe5e5;
  background: white;
}

.custom-callout {
  display: flex;
  max-width: 870px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line-strong);
}

.custom-callout p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
}

.custom-callout a,
.text-link,
.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-weight: 720;
  text-decoration: none;
  white-space: nowrap;
}

.flow-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.flow-step {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.flow-step__index {
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 780;
}

.flow-step > div:last-child {
  display: grid;
  grid-template-columns: 140px minmax(220px, 0.65fr) minmax(260px, 1fr);
  align-items: baseline;
  gap: 30px;
}

.flow-step span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 680;
  text-transform: uppercase;
}

.flow-step h3,
.flow-step p {
  margin: 0;
}

.flow-step p {
  color: var(--muted);
  font-size: 0.91rem;
}

.security-section {
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: clamp(50px, 9vw, 130px);
}

.security-copy h2 {
  margin-bottom: 24px;
}

.security-copy > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: #b7c3c9;
  font-size: 1rem;
}

.text-link--light {
  color: var(--mint);
}

.security-list {
  display: grid;
  border-top: 1px solid #33434e;
}

.security-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 17px;
  padding: 23px 0;
  border-bottom: 1px solid #33434e;
}

.security-list > div > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #426370;
  border-radius: 50%;
  color: var(--mint);
}

.security-list p,
.security-list strong {
  display: block;
  margin: 0;
}

.security-list p {
  color: #b7c3c9;
  font-size: 0.87rem;
}

.security-list strong {
  margin-bottom: 3px;
  color: white;
  font-size: 0.78rem;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 120px);
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line-strong);
}

.faq-item summary {
  display: flex;
  min-height: 75px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 680;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary svg {
  flex: 0 0 20px;
  color: var(--brand);
  transition: transform 180ms ease;
}

.faq-item[open] summary svg {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 700px;
  margin: -6px 42px 26px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.final-cta {
  padding-block: 84px;
  background: var(--brand);
  color: white;
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta h2 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.final-cta p {
  max-width: 650px;
  margin-bottom: 0;
  color: #dceff2;
}

.site-footer {
  padding-top: 72px;
  background: #091219;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.72fr);
  gap: 60px;
  padding-bottom: 68px;
}

.footer-brand img {
  width: 190px;
  height: auto;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 300px;
  margin-bottom: 22px;
  color: #aebbc1;
  font-size: 0.9rem;
}

.footer-brand a {
  display: block;
  width: fit-content;
  margin-top: 5px;
  color: #d8e2e5;
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-grid nav strong {
  margin-bottom: 8px;
  color: white;
  font-size: 0.78rem;
}

.footer-grid nav a {
  color: #aebbc1;
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-grid nav a:hover,
.footer-brand a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #26343d;
  color: #8f9da4;
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom span {
  color: #bdc8cc;
}

.form-page,
.content-page,
.legal-page {
  min-height: 70vh;
}

.form-page {
  background:
    radial-gradient(circle at 15% 10%, rgb(105 191 211 / 17%), transparent 30%),
    var(--canvas);
}

.form-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1fr);
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
  padding-block: 76px 110px;
}

.form-hero__intro {
  position: sticky;
  top: calc(var(--header-height) + 52px);
}

.form-hero__intro h1,
.content-hero h1,
.legal-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5.7vw, 4.9rem);
}

.form-hero__intro > p:not(.eyebrow),
.content-hero > p:not(.eyebrow),
.legal-hero > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.lead-card {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.lead-card form {
  padding: 38px;
}

.form-section {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.form-section__heading {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  margin-bottom: 23px;
}

.form-section__heading > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid #b9d8de;
  border-radius: 50%;
  color: var(--brand-dark);
  font-size: 0.64rem;
  font-weight: 800;
}

.form-section__heading h2 {
  margin: 2px 0 5px;
  font-size: 1.07rem;
  letter-spacing: -0.02em;
}

.form-section__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.77rem;
}

.plan-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.plan-option {
  position: relative;
  cursor: pointer;
}

.plan-option input,
.segmented-control input,
.checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.plan-option > span {
  position: relative;
  display: block;
  min-height: 75px;
  padding: 12px 38px 12px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 7px 7px 0 0;
}

.plan-option > span::after {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 17px;
  height: 17px;
  border: 1.5px solid #82969c;
  border-radius: 50%;
  background: white;
  content: "";
}

.plan-option b {
  display: block;
  padding: 7px 12px 9px;
  border: 1px solid var(--line-strong);
  border-top: 0;
  border-radius: 0 0 7px 7px;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.plan-option strong,
.plan-option small {
  display: block;
}

.plan-option strong {
  font-size: 0.8rem;
}

.plan-option small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 500;
}

.plan-option input:checked ~ span,
.plan-option input:checked ~ b {
  border-color: var(--brand);
  background: var(--canvas-blue);
  color: var(--brand-dark);
}

.plan-option input:checked ~ span::after {
  border-color: var(--brand);
  background: var(--brand);
  box-shadow: inset 0 0 0 4px white;
}

.plan-option input:focus-visible ~ span {
  outline: 3px solid rgb(20 127 159 / 25%);
  outline-offset: 2px;
}

.plan-picker-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.plan-picker-note svg {
  width: 15px;
  min-width: 15px;
  margin-top: 2px;
  color: var(--brand);
}

.plan-picker-note strong {
  color: var(--ink-soft);
}

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

.field {
  position: relative;
  display: grid;
  gap: 7px;
  margin-top: 17px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 660;
}

.field-grid .field {
  margin-top: 0;
}

.field > span:first-child b {
  color: var(--brand-dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #fbfcfc;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

.field input,
.field select {
  height: 47px;
}

.field select {
  padding-right: 40px;
  appearance: none;
}

.field textarea {
  min-height: 145px;
  padding-block: 11px;
  line-height: 1.5;
  resize: vertical;
}

.field--wide {
  width: 100%;
}

.field__select-icon {
  position: absolute;
  right: 13px;
  bottom: 15px;
  color: var(--muted);
  pointer-events: none;
}

.field__select-icon svg {
  width: 16px;
  height: 16px;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #9fb0b5;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  outline: 0;
  background: white;
  box-shadow: 0 0 0 3px rgb(20 127 159 / 12%);
}

.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
  border-color: var(--error);
}

.field small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.segmented-control label {
  cursor: pointer;
}

.segmented-control span {
  display: grid;
  min-height: 48px;
  place-items: center;
  padding-inline: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 0.77rem;
  font-weight: 650;
  text-align: center;
}

.segmented-control input:checked + span {
  border-color: var(--brand);
  background: var(--canvas-blue);
  color: var(--brand-dark);
}

.segmented-control input:focus-visible + span {
  outline: 3px solid rgb(20 127 159 / 25%);
  outline-offset: 2px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-consents {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.checkbox {
  position: relative;
  display: grid;
  grid-template-columns: 21px 1fr;
  align-items: start;
  gap: 10px;
  cursor: pointer;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.checkbox__box {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: white;
  color: transparent;
}

.checkbox__box svg {
  width: 14px;
  height: 14px;
}

.checkbox input:checked + .checkbox__box {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
}

.checkbox input:focus-visible + .checkbox__box {
  outline: 3px solid rgb(20 127 159 / 25%);
  outline-offset: 2px;
}

.checkbox a {
  color: var(--brand-dark);
  font-weight: 680;
}

.form-message {
  margin-bottom: 16px;
  padding: 11px 13px;
  border-left: 3px solid currentcolor;
  font-size: 0.78rem;
}

.form-message--error {
  background: #fff1f1;
  color: var(--error);
}

.checkout-reassurance {
  display: grid;
  justify-items: center;
  gap: 3px;
  margin-top: 14px;
  color: var(--muted);
  text-align: center;
}

.checkout-reassurance span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.73rem;
  font-weight: 680;
}

.checkout-reassurance svg {
  width: 14px;
  height: 14px;
}

.success-panel {
  padding: 65px 44px;
  text-align: center;
}

.success-panel__icon {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #dff3ec;
  color: var(--success);
}

.success-panel__icon svg {
  width: 30px;
  height: 30px;
}

.success-panel .eyebrow {
  justify-content: center;
}

.success-panel h2 {
  margin-bottom: 17px;
  font-size: 2rem;
}

.success-panel > p:not(.eyebrow) {
  color: var(--muted);
}

.reference {
  display: grid;
  gap: 2px;
  max-width: 320px;
  margin: 26px auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--canvas);
}

.reference span {
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.reference strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9rem;
}

.content-hero,
.legal-hero {
  padding-block: 85px 65px;
}

.content-hero {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.content-hero .eyebrow {
  justify-content: center;
}

.content-hero > p:last-child {
  max-width: 720px;
  margin-inline: auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.68fr);
  align-items: start;
  gap: clamp(38px, 6vw, 80px);
  padding-bottom: 115px;
}

.contact-form-card {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.contact-form-card form {
  padding: clamp(24px, 4vw, 42px);
}

.contact-form-card__heading {
  margin-bottom: 28px;
}

.contact-form-card__heading h2 {
  margin-bottom: 10px;
  font-size: 1.75rem;
}

.contact-form-card__heading p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-form-card .form-consents {
  margin-top: 22px;
}

.contact-aside {
  display: grid;
  gap: 38px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line-strong);
}

.contact-aside .contact-grid {
  grid-template-columns: 1fr;
  border: 1px solid var(--line-strong);
}

.contact-aside .contact-card {
  min-height: 135px;
  padding: 24px;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.contact-aside .contact-card:last-child {
  border-bottom: 0;
}

.contact-aside .contact-card > span {
  margin-bottom: 18px;
}

.contact-aside .support-note h2 {
  font-size: 1.35rem;
}

.contact-card {
  min-height: 180px;
  padding: 31px;
  border-right: 1px solid var(--line);
}

.contact-card:last-child {
  border-right: 0;
}

.contact-card > span {
  display: block;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card p,
.contact-card a {
  margin: 0;
  font-size: 0.92rem;
  white-space: normal;
}

.content-narrow {
  max-width: 760px;
  margin-block: 85px 110px;
}

.support-note h2 {
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.support-note ul {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.support-note li {
  display: flex;
  gap: 11px;
  color: var(--ink-soft);
}

.support-note li svg {
  flex: 0 0 18px;
  margin-top: 4px;
  color: var(--success);
}

.support-note > p {
  padding: 15px 18px;
  border-left: 3px solid var(--brand);
  background: var(--canvas-blue);
  color: var(--muted);
  font-size: 0.82rem;
}

.legal-hero {
  max-width: 940px;
  margin-inline: auto;
  text-align: center;
}

.legal-hero .eyebrow {
  justify-content: center;
}

.legal-hero > p:not(.eyebrow) {
  max-width: 730px;
  margin-inline: auto;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.legal-meta span {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  font-size: 0.68rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  justify-content: center;
  gap: clamp(50px, 8vw, 110px);
  padding-bottom: 120px;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  align-self: start;
  max-height: calc(100vh - var(--header-height) - 64px);
  overflow-y: auto;
  padding: 19px 0;
  border-block: 1px solid var(--line-strong);
}

.legal-toc strong {
  font-size: 0.74rem;
}

.legal-toc ol {
  display: grid;
  gap: 8px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.legal-toc a {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--brand-dark);
}

.legal-document {
  min-width: 0;
}

.legal-section {
  padding: 34px 0 38px;
  border-top: 1px solid var(--line-strong);
}

.legal-section:first-child {
  border-top-width: 2px;
  border-top-color: var(--ink);
}

.legal-section h2 {
  margin-bottom: 22px;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.legal-section p,
.legal-section li,
.legal-section dd,
.legal-section td {
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.legal-section p:last-child,
.legal-section ul:last-child,
.legal-section dl:last-child,
.legal-section .table-scroll:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-section dl {
  margin: 0;
}

.legal-section dl > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section dt {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 720;
}

.legal-section dd {
  margin: 0;
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  margin-bottom: 20px;
  border: 1px solid var(--line);
}

.legal-section table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: white;
}

.legal-section th,
.legal-section td {
  padding: 13px 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-section th:last-child,
.legal-section td:last-child {
  border-right: 0;
}

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

.legal-section th {
  background: var(--canvas-blue);
  color: var(--ink);
  font-size: 0.75rem;
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  align-content: center;
  padding-block: 80px;
  text-align: center;
}

.not-found > span {
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.not-found h1 {
  margin: 14px 0;
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.not-found p {
  color: var(--muted);
}

.not-found .button {
  margin-top: 16px;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 20px;
  bottom: 20px;
  max-width: 360px;
  padding: 13px 16px;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow-lg);
  font-size: 0.82rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal--visible {
  opacity: 1;
  transform: none;
}

.rescue-hero {
  min-height: min(820px, calc(100svh - var(--header-height)));
}

.rescue-ticket {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid #30424d;
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 0%, rgb(74 171 184 / 24%), transparent 38%),
    var(--ink);
  box-shadow: var(--shadow-lg);
  color: white;
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.rescue-ticket__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
  color: #aebdc5;
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rescue-ticket__top b {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid rgb(142 232 220 / 28%);
  border-radius: 999px;
  background: rgb(142 232 220 / 9%);
  color: var(--mint);
  font-size: 0.68rem;
}

.rescue-ticket__top b::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgb(142 232 220 / 10%);
  content: "";
}

.rescue-ticket h2 {
  max-width: 470px;
  margin-bottom: 32px;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.rescue-ticket ol {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid #33434e;
  list-style: none;
}

.rescue-ticket li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid #33434e;
}

.rescue-ticket li > span {
  color: var(--brand-light);
  font-size: 0.72rem;
  font-weight: 780;
}

.rescue-ticket li div {
  display: grid;
  gap: 3px;
}

.rescue-ticket li strong {
  font-size: 0.9rem;
}

.rescue-ticket li small {
  color: #aebdc5;
  font-size: 0.76rem;
}

.rescue-ticket li svg {
  width: 18px;
  color: var(--mint);
}

.rescue-pricing .plan-card {
  min-height: 535px;
}

.rescue-pricing .plan-card__top {
  min-height: 215px;
}

.rescue-flow .flow-step > div:last-child {
  grid-template-columns: 140px minmax(220px, 0.65fr) minmax(260px, 1fr);
}

@media (min-width: 1500px) {
  :root {
    --shell: min(1320px, calc(100% - 80px));
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(520px, 0.92fr);
  }

  .plan-card {
    min-height: 570px;
  }
}

@media (min-width: 1081px) and (max-width: 1200px) {
  .site-header__inner {
    gap: 18px;
  }

  .brand img {
    width: 160px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a,
  .client-link {
    font-size: 0.82rem;
  }

  .header-actions {
    gap: 10px;
  }

  .header-cta {
    padding-inline: 14px;
    font-size: 0.78rem;
  }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .client-link span,
  .header-cta {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    gap: 45px;
  }

  .rescue-ticket {
    transform: none;
  }

  .floating-status {
    right: -8px;
  }

  .plan-card {
    padding: 25px;
  }

  .flow-step > div:last-child {
    grid-template-columns: 110px minmax(180px, 0.65fr) minmax(220px, 1fr);
    gap: 20px;
  }

  .form-hero {
    grid-template-columns: minmax(0, 0.7fr) minmax(480px, 1fr);
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 0.75fr);
    gap: 35px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 32px, 700px);
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 45px;
    padding-block: 64px 75px;
  }

  .hero__copy {
    min-width: 0;
    max-width: 720px;
  }

  .inbox-scene {
    width: min(620px, 100%);
    justify-self: center;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(odd) {
    padding-left: 0;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .benefit {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit + .benefit {
    padding-left: 0;
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .benefit__number {
    margin-bottom: 35px;
  }

  .plan-grid {
    width: min(560px, 100%);
    margin-inline: auto;
  }

  .plan-card {
    min-height: auto;
  }

  .rescue-pricing .plan-card {
    min-height: auto;
  }

  .plan-card__top {
    min-height: 0;
  }

  .plan-card__top p {
    min-height: 0;
  }

  .web-presence__layout {
    grid-template-columns: 1fr;
  }

  .web-presence__copy {
    max-width: 680px;
  }

  .mini-site-preview {
    width: min(700px, 100%);
    justify-self: center;
  }

  .flow-step {
    grid-template-columns: 55px 1fr;
  }

  .flow-step > div:last-child {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .rescue-flow .flow-step > div:last-child {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .security-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

  .final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-hero {
    grid-template-columns: 1fr;
    padding-block: 60px 90px;
  }

  .form-hero__intro {
    position: static;
  }

  .lead-card {
    width: min(620px, 100%);
    justify-self: center;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
  }

  .contact-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-card:last-child {
    border-bottom: 0;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .legal-toc {
    position: static;
    max-height: none;
  }

  .legal-toc ol {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 30px;
    border-bottom: 1px solid #26343d;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100% - 28px);
    --header-height: 68px;
  }

  body {
    font-size: 15px;
  }

  .brand img {
    width: 148px;
  }

  .header-actions {
    gap: 9px;
  }

  .language-switcher summary {
    min-width: 55px;
    height: 36px;
    padding-inline: 7px;
  }

  .client-link {
    display: none;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  h1 {
    overflow-wrap: anywhere;
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9.5vw, 2.75rem);
  }

  .hero {
    padding-block: 49px 60px;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .inbox-scene {
    padding-bottom: 38px;
  }

  .inbox-card {
    border-radius: 10px;
    transform: none;
  }

  .inbox-card__body {
    min-height: 330px;
    grid-template-columns: 45px 1fr;
  }

  .inbox-card__body aside {
    gap: 18px;
  }

  .inbox-card__body aside i {
    width: 15px;
  }

  .inbox-logo {
    width: 29px;
    height: 29px;
  }

  .message-list {
    padding: 13px;
  }

  .message-row {
    min-height: 70px;
    grid-template-columns: 31px minmax(0, 1fr);
    padding-inline: 8px;
  }

  .message-row time {
    display: none;
  }

  .avatar {
    width: 30px;
    height: 30px;
  }

  .floating-status {
    right: 8px;
    bottom: 4px;
    left: 8px;
    min-width: 0;
  }

  .trust-item {
    min-height: 82px;
    padding-inline: 16px;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading > p:last-child {
    font-size: 0.95rem;
  }

  .plan-card {
    padding: 23px;
  }

  .plan-price strong {
    font-size: 2.05rem;
  }

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

  .custom-callout a {
    white-space: normal;
  }

  .web-presence__layout {
    gap: 48px;
  }

  .mini-site-preview {
    padding: 12px;
    transform: none;
  }

  .mini-site-preview__page {
    min-height: 330px;
    padding: 18px;
  }

  .mini-site-preview__hero {
    padding: 45px 10px 35px;
  }

  .flow-step {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .security-layout {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    min-height: 68px;
    font-size: 0.92rem;
  }

  .final-cta {
    padding-block: 67px;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 25px;
  }

  .footer-grid nav:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 18px;
  }

  .form-hero {
    padding-block: 47px 70px;
  }

  .form-hero__intro h1,
  .content-hero h1,
  .legal-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .lead-card form {
    padding: 25px 18px;
  }

  .plan-picker,
  .field-grid,
  .segmented-control {
    grid-template-columns: 1fr;
  }

  .plan-option {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .plan-option > span {
    min-height: 61px;
    border-radius: 7px 0 0 7px;
  }

  .plan-option b {
    display: grid;
    min-width: 110px;
    place-content: center;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
    border-radius: 0 7px 7px 0;
    text-align: right;
  }

  .plan-option input:checked ~ b {
    border-top-color: var(--brand);
  }

  .success-panel {
    padding: 50px 24px;
  }

  .content-hero,
  .legal-hero {
    padding-block: 62px 47px;
    text-align: left;
  }

  .content-hero .eyebrow,
  .legal-hero .eyebrow {
    justify-content: flex-start;
  }

  .content-hero > p:last-child,
  .legal-hero > p:not(.eyebrow) {
    margin-inline: 0;
  }

  .legal-meta {
    justify-content: flex-start;
  }

  .legal-toc ol {
    grid-template-columns: 1fr;
  }

  .legal-section dl > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .content-narrow {
    margin-block: 65px 85px;
  }

  .contact-layout {
    padding-bottom: 80px;
  }

  .contact-aside {
    grid-template-columns: 1fr;
  }

  .contact-form-card form {
    padding: 24px 18px;
  }
}

/* Commercial storefront refresh: compact hierarchy, sales-first flow and
   dimensioned SVG artwork. Scoped to the home and subscription pages. */
.page--home {
  background: #f7faf9;
}

.page--home #main-content {
  overflow: hidden;
}

.page--home .hero {
  position: relative;
  isolation: isolate;
  width: min(1380px, calc(100% - 32px));
  min-height: 0;
  margin-block: 20px 0;
  padding: clamp(48px, 6vw, 84px);
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 18%, rgb(58 197 211 / 24%), transparent 31%),
    radial-gradient(
      circle at 10% 105%,
      rgb(142 232 220 / 16%),
      transparent 34%
    ),
    linear-gradient(135deg, #08151e 0%, #102b36 100%);
  color: white;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(42px, 6vw, 88px);
}

.page--home .hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.page--home .hero__copy {
  position: relative;
  z-index: 2;
}

.page--home .hero .eyebrow {
  color: var(--mint);
}

.page--home .hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.15rem, 5.2vw, 5.35rem);
  line-height: 0.98;
  text-wrap: balance;
}

.page--home .hero__lead {
  max-width: 625px;
  margin-bottom: 28px;
  color: #c7d6db;
  font-size: clamp(1.04rem, 1.4vw, 1.2rem);
  line-height: 1.58;
}

.page--home .hero .button--primary {
  background: var(--mint);
  color: #07171f;
  box-shadow: 0 12px 32px rgb(0 0 0 / 22%);
}

.page--home .hero .button--primary:hover {
  background: #aff4eb;
}

.page--home .hero .button--quiet {
  border-color: rgb(255 255 255 / 28%);
  color: white;
}

.page--home .hero .button--quiet:hover {
  border-color: rgb(255 255 255 / 55%);
  background: rgb(255 255 255 / 8%);
}

.page--home .hero__note {
  color: #aebfc5;
}

.page--home .hero__note svg {
  color: var(--mint);
}

.page--home .inbox-scene {
  padding: 24px 12px 42px 0;
}

.page--home .inbox-card {
  border-color: rgb(255 255 255 / 32%);
  border-radius: 20px;
  box-shadow: 0 38px 90px rgb(0 0 0 / 35%);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.page--home .inbox-card__body {
  min-height: 330px;
}

.page--home .floating-status,
.page--home .floating-site {
  border: 1px solid rgb(151 228 218 / 48%);
  border-radius: 14px;
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 20px 50px rgb(0 0 0 / 24%);
}

.floating-site {
  position: absolute;
  z-index: 3;
  top: 2px;
  left: -26px;
  display: flex;
  max-width: 255px;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
}

.floating-site > svg {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  padding: 6px;
  border-radius: 9px;
  background: var(--brand-pale);
  color: var(--brand-dark);
}

.floating-site span,
.floating-site strong,
.floating-site small {
  display: block;
  min-width: 0;
}

.floating-site strong {
  color: var(--ink);
  font-size: 0.72rem;
  line-height: 1.2;
}

.floating-site small {
  overflow: hidden;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.61rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page--home .trust-strip {
  border-block: 0;
  background: transparent;
}

.page--home .trust-strip__inner {
  gap: 12px;
  padding-block: 20px;
}

.page--home .trust-item {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.page--home .trust-item:first-child,
.page--home .trust-item:nth-child(odd) {
  padding-left: 16px;
}

.page--home .trust-item__icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 11px;
  background: var(--brand-pale);
  color: var(--brand-dark);
}

.page--home .trust-item__icon svg {
  width: 19px;
  height: 19px;
}

.page--home .trust-item strong,
.page--home .trust-item span:not(.trust-item__icon) {
  display: block;
}

.page--home .trust-item strong {
  font-size: 0.78rem;
}

.page--home .trust-item span:not(.trust-item__icon) {
  font-size: 0.7rem;
}

.page--home .section {
  padding-block: clamp(70px, 8vw, 106px);
}

.page--home .section-heading {
  margin-bottom: clamp(36px, 4vw, 52px);
}

.page--home .section-heading h2 {
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  line-height: 1.02;
  text-wrap: balance;
}

.page--home .section-heading--split {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(28px, 5vw, 72px);
}

.page--home .section-heading > p:last-child {
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
}

.sales-pricing {
  border-block: 1px solid #d7e7e5;
  background:
    radial-gradient(circle at 100% 0, rgb(105 191 211 / 18%), transparent 28%),
    #eef6f4;
}

.page--home .plan-grid {
  gap: 20px;
  align-items: stretch;
}

.page--home .plan-card {
  min-height: 438px;
  padding: 29px;
  border-color: #cbdad9;
  border-radius: 22px;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 12px 36px rgb(18 48 56 / 6%);
}

.page--home .plan-card--featured {
  border-color: #142832;
  background: #10242e;
  color: white;
  box-shadow: 0 28px 65px rgb(13 35 44 / 20%);
  transform: translateY(-10px);
}

.page--home .plan-card__top {
  min-height: 190px;
}

.page--home .plan-card__top p {
  min-height: 58px;
}

.page--home .plan-card--featured .plan-card__top,
.page--home .plan-card--featured li {
  border-color: #304651;
  color: #c7d4d9;
}

.page--home .plan-card--featured .plan-card__top p,
.page--home .plan-card--featured .plan-price span {
  color: #9fb1b8;
}

.page--home .plan-card--featured .plan-badge {
  background: var(--mint);
  color: #0a2630;
}

.page--home .plan-card--featured li svg {
  color: var(--mint);
}

.page--home .plan-card--featured .button--primary {
  background: white;
  color: var(--ink);
  box-shadow: none;
}

.page--home .plan-card ul {
  margin-block: 22px 26px;
}

.all-included {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  margin-top: 34px;
  padding: 25px 28px;
  border: 1px solid #cbdad9;
  border-radius: 18px;
  background: rgb(255 255 255 / 72%);
}

.all-included > strong {
  padding-top: 4px;
  font-size: 0.82rem;
}

.all-included > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 22px;
}

.all-included span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.4;
}

.all-included svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 1px;
  color: var(--brand-dark);
}

.page--home .custom-callout {
  margin-top: 30px;
  padding-top: 22px;
}

.page--home .benefit-grid {
  gap: 18px;
  border-top: 0;
}

.page--home .benefit {
  position: relative;
  min-height: 292px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgb(13 23 32 / 4%);
}

.page--home .benefit + .benefit {
  padding-left: 29px;
}

.benefit__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 44px;
  border-radius: 15px;
  background: var(--brand-pale);
  color: var(--brand-dark);
}

.benefit__icon svg {
  width: 25px;
  height: 25px;
}

.page--home .benefit__number {
  position: absolute;
  top: 31px;
  right: 31px;
  margin: 0;
  color: #91a1a7;
}

.page--home .benefit h3 {
  font-size: clamp(1.22rem, 1.6vw, 1.45rem);
}

.page--home .web-presence {
  border-block: 1px solid var(--line);
  background: #fff;
}

.page--home .web-presence__layout {
  grid-template-columns: minmax(340px, 0.83fr) minmax(500px, 1.17fr);
  gap: clamp(50px, 8vw, 110px);
}

.page--home .mini-site-preview {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgb(13 23 32 / 18%);
  transform: rotate(0.8deg);
}

.page--home .flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border-top: 0;
}

.page--home .flow-step {
  display: block;
  min-height: 310px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
}

.page--home .flow-step__index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.page--home .flow-step__index svg {
  width: 29px;
  height: 29px;
}

.page--home .flow-step__index span {
  color: var(--brand);
}

.page--home .flow-step > div:last-child {
  display: block;
}

.page--home .flow-step > div:last-child > span {
  display: block;
  margin-bottom: 8px;
}

.page--home .flow-step h3 {
  margin-bottom: 13px;
  font-size: 1.32rem;
}

.page--home .flow-step p {
  line-height: 1.55;
}

.page--home .security-section {
  padding-block: clamp(68px, 7vw, 92px);
  background:
    radial-gradient(circle at 12% 0, rgb(20 127 159 / 30%), transparent 30%),
    #0b1922;
}

.page--home .security-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1fr);
  align-items: center;
}

.page--home .security-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border-top: 0;
}

.page--home .security-list > div {
  min-height: 112px;
  align-content: start;
  padding: 18px;
  border: 1px solid #31434d;
  border-radius: 15px;
  background: rgb(255 255 255 / 3%);
}

.page--home .faq-section {
  align-items: start;
}

.page--home .faq-item summary {
  min-height: 68px;
}

.page--home .final-cta {
  padding-block: 74px;
  background:
    radial-gradient(circle at 88% 0, rgb(142 232 220 / 32%), transparent 27%),
    linear-gradient(120deg, #0a6f8a, #125e76);
}

.page--subscribe .form-page {
  background:
    radial-gradient(circle at 0 0, rgb(105 191 211 / 17%), transparent 29%),
    #f4f8f7;
}

.page--subscribe .form-hero {
  width: min(1180px, calc(100% - 48px));
  grid-template-columns: minmax(320px, 0.68fr) minmax(540px, 1fr);
  gap: clamp(44px, 7vw, 92px);
  padding-block: 58px 90px;
}

.page--subscribe .form-hero__intro {
  top: calc(var(--header-height) + 34px);
}

.page--subscribe .form-hero__intro h1 {
  max-width: 540px;
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 4.6vw, 4.35rem);
  line-height: 1;
  text-wrap: balance;
}

.page--subscribe .form-hero__intro > p:not(.eyebrow) {
  max-width: 510px;
  line-height: 1.6;
}

.form-steps {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.form-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 11px;
  min-height: 62px;
  border-bottom: 1px solid var(--line);
}

.form-steps li > span {
  color: var(--brand-dark);
  font-size: 0.68rem;
  font-weight: 800;
}

.form-steps strong,
.form-steps small {
  display: block;
}

.form-steps strong {
  font-size: 0.78rem;
}

.form-steps small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.66rem;
}

.page--subscribe .lead-card {
  border-color: #cbd8d8;
  border-radius: 24px;
  box-shadow: 0 28px 70px rgb(13 23 32 / 11%);
}

.page--subscribe .lead-card form {
  padding: 34px;
}

.page--subscribe .form-section {
  margin-bottom: 27px;
  padding-bottom: 27px;
}

.page--subscribe .plan-option > span,
.page--subscribe .plan-option b {
  background: #fbfdfc;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.page--subscribe .plan-option > span {
  min-height: 88px;
}

.page--subscribe .plan-option em {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-dark);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page--subscribe .plan-option:hover > span,
.page--subscribe .plan-option:hover > b {
  border-color: #78aebb;
  background: #f4fafb;
}

.page--subscribe .plan-option input:checked ~ span,
.page--subscribe .plan-option input:checked ~ b {
  border-color: var(--brand);
  background: #e9f6f8;
  box-shadow: 0 8px 22px rgb(15 103 127 / 12%);
}

@media (max-width: 1080px) {
  .page--home .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
    padding: 52px;
  }

  .page--home .all-included > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page--subscribe .form-hero {
    grid-template-columns: minmax(280px, 0.62fr) minmax(500px, 1fr);
    gap: 42px;
  }
}

@media (max-width: 860px) {
  .page--home .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    padding: 54px;
  }

  .page--home .hero__copy {
    max-width: 680px;
  }

  .page--home .inbox-scene {
    width: min(620px, 100%);
    justify-self: center;
  }

  .page--home .trust-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page--home .trust-item,
  .page--home .trust-item:nth-child(-n + 2) {
    border: 1px solid var(--line);
  }

  .page--home .plan-card--featured {
    order: -1;
    transform: none;
  }

  .all-included {
    grid-template-columns: 1fr;
  }

  .page--home .benefit-grid {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .page--home .benefit,
  .page--home .benefit + .benefit {
    min-height: 250px;
    padding: 27px;
    border: 1px solid var(--line);
  }

  .page--home .web-presence__layout {
    grid-template-columns: 1fr;
  }

  .page--home .flow-list {
    grid-template-columns: 1fr;
  }

  .page--home .flow-step {
    min-height: 0;
  }

  .page--home .flow-step__index {
    margin-bottom: 32px;
  }

  .page--home .security-layout {
    grid-template-columns: 1fr;
  }

  .page--subscribe .form-hero {
    width: min(700px, calc(100% - 32px));
    grid-template-columns: 1fr;
    padding-block: 52px 78px;
  }

  .page--subscribe .form-hero__intro {
    position: static;
  }

  .page--subscribe .form-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    border-top: 0;
  }

  .page--subscribe .form-steps li {
    display: block;
    min-height: 94px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgb(255 255 255 / 58%);
  }

  .page--subscribe .form-steps li > span {
    display: block;
    margin-bottom: 7px;
  }
}

@media (max-width: 580px) {
  .page--home .hero {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 38px 20px 30px;
    border-radius: 24px;
  }

  .page--home .hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.45rem);
    line-height: 0.98;
  }

  .page--home .hero__lead {
    font-size: 0.98rem;
  }

  .page--home .inbox-scene {
    padding: 18px 0 48px;
  }

  .page--home .inbox-card__body {
    min-height: 270px;
  }

  .page--home .message-row:nth-child(n + 4) {
    display: none;
  }

  .page--home .floating-site {
    top: 2px;
    right: 12px;
    left: 12px;
    width: max-content;
    max-width: calc(100% - 24px);
  }

  .page--home .floating-status {
    right: 8px;
    left: 8px;
  }

  .page--home .trust-strip__inner {
    gap: 8px;
    padding-block: 12px;
  }

  .page--home .trust-item {
    min-height: 108px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 13px;
  }

  .page--home .trust-item:first-child,
  .page--home .trust-item:nth-child(odd) {
    padding-left: 13px;
  }

  .page--home .trust-item__icon {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }

  .page--home .section {
    padding-block: 66px;
  }

  .page--home .section-heading--split {
    gap: 18px;
  }

  .page--home .section-heading h2 {
    font-size: clamp(2.05rem, 10vw, 2.7rem);
  }

  .page--home .plan-card {
    min-height: 0;
    padding: 24px;
    border-radius: 18px;
  }

  .page--home .plan-card__top {
    min-height: 0;
  }

  .page--home .plan-card__top p {
    min-height: 0;
  }

  .all-included {
    gap: 18px;
    padding: 22px;
  }

  .page--home .all-included > div {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .page--home .benefit,
  .page--home .benefit + .benefit {
    padding: 24px;
  }

  .benefit__icon {
    margin-bottom: 36px;
  }

  .page--home .mini-site-preview {
    border-radius: 16px;
  }

  .page--home .flow-step {
    padding: 24px;
    border-radius: 17px;
  }

  .page--home .security-list {
    grid-template-columns: 1fr;
  }

  .page--home .security-list > div {
    min-height: 0;
  }

  .page--home .final-cta {
    padding-block: 62px;
  }

  .page--subscribe .form-hero {
    width: calc(100% - 28px);
    padding-block: 42px 64px;
  }

  .page--subscribe .form-hero__intro h1 {
    font-size: clamp(2.55rem, 12vw, 3.25rem);
  }

  .page--subscribe .form-steps {
    grid-template-columns: 1fr;
  }

  .page--subscribe .form-steps li {
    display: grid;
    min-height: 64px;
    grid-template-columns: 34px 1fr;
  }

  .page--subscribe .form-steps li > span {
    margin-bottom: 0;
  }

  .page--subscribe .lead-card {
    border-radius: 18px;
  }

  .page--subscribe .lead-card form {
    padding: 25px 18px;
  }
}

/* Storefront refinement: stable media, measured type and collision-free
   device previews. All decorative elements stay in normal document flow. */
.page--home #main-content,
.page--subscribe #main-content {
  overflow-x: clip;
}

.page--home
  :where(
    .hero__copy,
    .hero-media,
    .trust-item,
    .section-heading,
    .plan-card,
    .benefit,
    .compatibility-copy,
    .device-showcase,
    .mail-desktop,
    .mail-phone,
    .web-presence__copy,
    .mini-site-preview,
    .flow-step,
    .security-copy,
    .security-list
  ),
.page--subscribe :where(.form-hero__intro, .lead-card, .form-section) {
  min-width: 0;
}

.page--home .hero {
  width: min(1280px, calc(100% - 32px));
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(36px, 5vw, 68px);
  padding: clamp(40px, 5.2vw, 68px);
}

.page--home .hero h1 {
  max-width: 660px;
  margin-bottom: 21px;
  font-size: clamp(2.75rem, 4.35vw, 4.3rem);
  line-height: 1.02;
  overflow-wrap: break-word;
  hyphens: auto;
}

.page--home .hero__lead {
  margin-bottom: 24px;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.55;
}

.hero-media {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 24px;
  background: #f5f8f7;
  box-shadow: 0 28px 72px rgb(0 0 0 / 27%);
}

.hero-media__image {
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #d8e4e1;
}

.hero-media__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media figcaption {
  display: grid;
  min-width: 0;
  grid-template-columns: 38px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  color: var(--ink);
}

.hero-media figcaption > span,
.hero-media figcaption strong,
.hero-media figcaption small {
  display: block;
  min-width: 0;
}

.hero-media figcaption strong,
.hero-media figcaption small {
  overflow-wrap: anywhere;
}

.hero-media figcaption strong {
  font-size: 0.78rem;
}

.hero-media figcaption small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.35;
}

.hero-media__icon {
  display: grid !important;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: var(--brand-pale);
  color: var(--brand-dark);
}

.hero-media__icon svg {
  width: 20px;
  height: 20px;
}

.hero-media__check {
  color: var(--success);
}

.hero-media__check svg {
  width: 22px;
  height: 22px;
}

.page--home .section {
  padding-block: clamp(58px, 6.5vw, 88px);
}

.page--home .section-heading {
  margin-bottom: clamp(30px, 3.5vw, 44px);
}

.page--home .section-heading h2,
.page--home .web-presence__copy h2,
.page--home .compatibility-copy h2,
.page--home .security-copy h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.08;
  overflow-wrap: break-word;
  hyphens: auto;
}

.page--home .plan-card--featured,
.page--home .mini-site-preview {
  transform: none;
}

.compatibility-section {
  border-block: 1px solid var(--line);
  background: #fff;
}

.compatibility-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(470px, 1.22fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.compatibility-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 18px 0 24px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.client-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7faf9;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
}

.client-list svg {
  width: 14px;
  height: 14px;
  color: var(--success);
}

.device-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 154px;
  align-items: end;
  gap: 16px;
  padding: clamp(17px, 2.5vw, 28px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgb(142 232 220 / 30%), transparent 32%),
    #0d202a;
}

.mail-desktop,
.mail-phone {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 23%);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 45px rgb(0 0 0 / 22%);
}

.mail-desktop {
  border-radius: 14px;
}

.mail-device__bar {
  display: grid;
  height: 43px;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding-inline: 13px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.mail-device__bar .window-dots {
  margin: 0;
}

.mail-device__bar strong {
  overflow: hidden;
  font-size: 0.64rem;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mail-device__bar svg {
  width: 16px;
  height: 16px;
}

.mail-desktop__body {
  display: grid;
  min-height: 250px;
  grid-template-columns: 48px minmax(0, 1fr);
}

.mail-desktop__body aside {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  padding-top: 17px;
  border-right: 1px solid var(--line);
  background: #f5f8f8;
}

.mail-desktop__body aside span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.mail-desktop__body aside svg {
  width: 15px;
  height: 15px;
}

.mail-desktop__body aside i {
  width: 17px;
  height: 4px;
  border-radius: 5px;
  background: #c8d4d6;
}

.mail-device__messages {
  min-width: 0;
  padding: 17px;
}

.mail-device__messages > b {
  display: block;
  margin-bottom: 11px;
  font-size: 0.72rem;
}

.mail-device__message {
  display: grid;
  min-width: 0;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border-bottom: 1px solid var(--line);
}

.mail-device__message.is-active {
  border: 1px solid #c5e1e4;
  border-radius: 9px;
  background: var(--canvas-blue);
}

.mail-device__message strong,
.mail-device__message small,
.mail-phone__message strong,
.mail-phone__message small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mail-device__message strong,
.mail-phone__message strong {
  font-size: 0.66rem;
}

.mail-device__message small,
.mail-phone__message small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.58rem;
}

.mail-device__message time {
  align-self: start;
  color: var(--muted);
  font-size: 0.52rem;
}

.mail-device__message .avatar,
.mail-phone__message .avatar {
  width: 30px;
  height: 30px;
  font-size: 0.65rem;
}

.mail-phone {
  align-self: center;
  min-width: 0;
  padding: 10px 9px 9px;
  border: 5px solid #202f38;
  border-radius: 26px;
}

.mail-phone__status {
  display: flex;
  height: 18px;
  align-items: start;
  justify-content: space-between;
  padding-inline: 6px;
  font-size: 0.48rem;
  font-weight: 800;
}

.mail-phone__status i {
  width: 24px;
  height: 6px;
  border-radius: 5px;
  background: #1b2931;
}

.mail-phone__head {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  padding: 9px 4px 11px;
  border-bottom: 1px solid var(--line);
}

.mail-phone__head svg {
  width: 16px;
  height: 16px;
  color: var(--brand-dark);
}

.mail-phone__head strong {
  overflow: hidden;
  font-size: 0.58rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mail-phone__message {
  display: grid;
  min-width: 0;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
}

.mail-phone__home {
  width: 38px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 4px;
  background: #1b2931;
}

.page--subscribe .form-hero__intro h1 {
  font-size: clamp(2.35rem, 3.8vw, 3.55rem);
  line-height: 1.06;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 1080px) {
  .page--home .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 36px;
    padding: 46px;
  }

  .compatibility-layout {
    grid-template-columns: minmax(270px, 0.75fr) minmax(420px, 1.25fr);
    gap: 36px;
  }
}

@media (max-width: 860px) {
  .page--home .hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 48px;
  }

  .page--home .section-heading--split {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .page--home .hero__copy,
  .hero-media {
    width: min(650px, 100%);
    justify-self: center;
  }

  .compatibility-layout {
    grid-template-columns: 1fr;
  }

  .compatibility-copy,
  .device-showcase {
    width: min(650px, 100%);
    justify-self: center;
  }
}

@media (max-width: 580px) {
  body {
    font-size: 16px;
  }

  .page--home .hero {
    width: calc(100% - 20px);
    gap: 28px;
    padding: 30px 18px 18px;
  }

  .page--home .hero h1 {
    font-size: clamp(2.1rem, 10.5vw, 2.55rem);
    line-height: 1.04;
  }

  .page--home .hero__lead {
    font-size: 0.96rem;
  }

  .hero-media {
    border-radius: 17px;
  }

  .hero-media figcaption {
    grid-template-columns: 34px minmax(0, 1fr) 20px;
    gap: 9px;
    padding: 11px;
  }

  .hero-media__icon {
    width: 34px;
    height: 34px;
  }

  .hero-media figcaption small {
    font-size: 0.62rem;
  }

  .page--home .trust-item,
  .page--home .trust-item:nth-child(-n + 2) {
    display: grid;
    min-height: 82px;
    grid-template-columns: 31px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    padding: 12px;
  }

  .page--home .trust-item strong {
    font-size: 0.76rem;
  }

  .page--home .trust-item span:not(.trust-item__icon) {
    font-size: 0.68rem;
  }

  .page--home .section {
    padding-block: 56px;
  }

  .page--home .section-heading h2,
  .page--home .web-presence__copy h2,
  .page--home .compatibility-copy h2,
  .page--home .security-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.15rem);
    line-height: 1.1;
  }

  .device-showcase {
    grid-template-columns: minmax(0, 1fr) 102px;
    gap: 9px;
    padding: 11px;
    border-radius: 18px;
  }

  .mail-device__bar {
    grid-template-columns: auto minmax(0, 1fr);
    padding-inline: 9px;
  }

  .mail-device__bar > svg {
    display: none;
  }

  .mail-desktop__body {
    min-height: 223px;
    grid-template-columns: 1fr;
  }

  .mail-desktop__body aside {
    display: none;
  }

  .mail-device__messages {
    padding: 10px;
  }

  .mail-device__message {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 6px;
    padding: 9px 6px;
  }

  .mail-device__message time {
    display: none;
  }

  .mail-device__message .avatar,
  .mail-phone__message .avatar {
    width: 27px;
    height: 27px;
  }

  .mail-phone {
    padding-inline: 6px;
    border-width: 4px;
    border-radius: 20px;
  }

  .mail-phone__message {
    grid-template-columns: 27px minmax(0, 1fr);
    gap: 5px;
  }

  .page--home .mini-site-preview {
    transform: none;
  }

  .page--subscribe .form-hero__intro h1 {
    font-size: clamp(2rem, 9.5vw, 2.4rem);
    line-height: 1.08;
  }
}

/* Final storefront hierarchy: edge-to-edge desktop hero, clearly separated
   chapters and a compact, scannable list of shared plan benefits. */
.page--home .hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-block: clamp(44px, 5vw, 68px);
  padding-inline: max(24px, calc((100vw - 1240px) / 2));
  border: 0;
  border-radius: 0;
}

.page--home .hero::before {
  border-radius: 0;
}

.page--home .plan-price {
  flex-wrap: wrap;
}

.page--home .section-heading--split {
  display: block;
  max-width: 760px;
}

.page--home .section-heading--split > p {
  max-width: 680px;
  margin-top: 18px;
}

.all-included {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  margin-top: 28px;
  padding: 0;
  border-color: #c6d9d7;
  border-radius: 18px;
  background: rgb(255 255 255 / 88%);
}

.all-included__heading {
  display: flex;
  align-self: stretch;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  background: #102b36;
  color: white;
}

.all-included__heading > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: #0a2630;
}

.all-included__heading > span svg {
  width: 18px;
  height: 18px;
  margin: 0;
}

.all-included__heading strong {
  max-width: 170px;
  font-size: 1.03rem;
  line-height: 1.25;
}

.all-included ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.all-included li {
  display: grid;
  min-width: 0;
  min-height: 58px;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-right: 1px solid #e0e9e8;
  border-bottom: 1px solid #e0e9e8;
}

.all-included li:nth-child(2n) {
  border-right: 0;
}

.all-included li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.all-included li > span:first-child {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-pale);
  color: var(--brand-dark);
}

.all-included li > span:first-child svg {
  width: 13px;
  height: 13px;
  margin: 0;
}

.all-included li > span:last-child {
  display: block;
  min-width: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.4;
}

.page--home .value-section {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.page--home .compatibility-section {
  background: #f1f7f6;
}

.page--home .web-presence {
  background: #fff;
}

.page--home .process-section {
  border-block: 1px solid var(--line);
  background: #f1f7f6;
}

.page--home .faq-section {
  display: block;
  border-top: 1px solid var(--line);
  background: #fff;
}

.faq-section__inner {
  display: block;
}

.page--home .faq-section .section-heading {
  max-width: 680px;
  margin-bottom: 30px;
}

.page--home .faq-list--columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  border-top: 0;
}

.page--home .faq-list--columns > div {
  min-width: 0;
  border-top: 1px solid var(--line-strong);
}

@media (max-width: 1080px) {
  .all-included {
    grid-template-columns: 210px minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  .all-included {
    grid-template-columns: 1fr;
  }

  .all-included__heading {
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    padding: 18px 20px;
  }

  .all-included__heading strong {
    max-width: none;
  }

  .page--home .faq-list--columns {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 580px) {
  .page--home .hero {
    width: 100%;
    margin: 0;
    padding: 34px 18px 22px;
    border: 0;
    border-radius: 0;
  }

  .page--home .hero::before {
    border-radius: 0;
  }

  .all-included {
    margin-top: 28px;
  }

  .all-included ul {
    grid-template-columns: 1fr;
  }

  .all-included li,
  .all-included li:nth-child(2n),
  .all-included li:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid #e0e9e8;
  }

  .all-included li:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .legal-toc,
  .final-cta {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .legal-layout {
    display: block;
  }

  .legal-section {
    break-inside: avoid;
  }
}

/* Two-step storefront checkout: three details, one recap, then Stripe. */
.page--subscribe .lead-card {
  overflow: visible;
}

.page--subscribe .lead-card > .form-message--notice {
  margin: 0;
  padding: 15px 20px;
  border: 0;
  border-bottom: 1px solid #b9ddd3;
  border-radius: 23px 23px 0 0;
}

.form-message--notice {
  background: #e9f7f2;
  color: #17664f;
}

.page--subscribe .form-section:last-of-type {
  margin-bottom: 22px;
  padding-bottom: 22px;
}

.page--subscribe .plan-option > span {
  min-height: 82px;
}

.page--subscribe .plan-option strong {
  font-size: 0.85rem;
}

.page--subscribe .plan-option input:user-invalid ~ span,
.page--subscribe .plan-option input:user-invalid ~ b {
  border-color: #ca7b7b;
}

.domain-fields {
  margin-top: 25px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.domain-fields h3 {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.page--subscribe .segmented-control {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checkout-summary {
  outline: 0;
}

.checkout-summary__head {
  text-align: center;
}

.checkout-summary__head .success-panel__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}

.checkout-summary__head .success-panel__icon svg {
  width: 24px;
  height: 24px;
}

.checkout-summary__head .eyebrow {
  justify-content: center;
  margin-bottom: 11px;
}

.checkout-summary__head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.035em;
}

.checkout-summary__head > p:last-child {
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.order-summary {
  margin: 28px 0 14px;
  border-block: 1px solid var(--line-strong);
}

.order-summary > div {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(110px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 16px;
  padding: 14px 2px;
  border-bottom: 1px solid var(--line);
}

.order-summary > div:last-child {
  border-bottom: 0;
}

.order-summary dt {
  color: var(--muted);
  font-size: 0.73rem;
}

.order-summary dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 720;
  text-align: right;
}

.order-summary__total dt,
.order-summary__total dd {
  color: var(--brand-dark);
  font-size: 0.92rem;
}

.summary-included {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  margin: 0 0 25px;
  padding: 13px;
  border-radius: 10px;
  background: var(--brand-pale);
  color: var(--ink-soft);
  font-size: 0.74rem;
  line-height: 1.45;
}

.summary-included svg {
  width: 17px;
  color: var(--success);
}

.button-link {
  display: block;
  margin: 15px auto 0;
  padding: 3px;
  border: 0;
  background: transparent;
  color: var(--brand-dark);
  cursor: pointer;
  font: inherit;
  font-size: 0.73rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 580px) {
  .page--subscribe .form-hero {
    width: calc(100% - 20px);
    gap: 30px;
    padding-block: 34px 54px;
  }

  .page--subscribe .form-hero__intro > p:not(.eyebrow) {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .page--subscribe .form-steps {
    display: none;
  }

  .page--subscribe .lead-card {
    width: 100%;
    border-radius: 16px;
  }

  .page--subscribe .lead-card form {
    padding: 22px 15px;
  }

  .page--subscribe .lead-card > .form-message--notice {
    border-radius: 15px 15px 0 0;
  }

  .page--subscribe .form-section {
    margin-bottom: 22px;
    padding-bottom: 22px;
  }

  .page--subscribe .plan-picker {
    gap: 7px;
  }

  .page--subscribe .plan-option > span {
    min-height: 64px;
    padding: 10px 36px 10px 10px;
  }

  .page--subscribe .plan-option b {
    min-width: 105px;
    padding-inline: 9px;
  }

  .page--subscribe .segmented-control {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .page--subscribe .segmented-control span {
    min-height: 43px;
  }

  .page--subscribe .checkbox {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .order-summary > div {
    grid-template-columns: minmax(90px, 0.75fr) minmax(0, 1.25fr);
    gap: 10px;
  }
}
