:root {
  --ink: #14211d;
  --paper: #f4f7f2;
  --paper-2: #e8eee9;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.72);
  --mint: #0b6e4f;
  --mint-2: #0f9a74;
  --amber: #c98919;
  --cobalt: #315c9b;
  --coral: #e25d47;
  --dark: #0f1412;
  --dark-2: #171d1a;
  --dark-3: #202923;
  --line: rgba(20, 33, 29, 0.12);
  --muted: rgba(20, 33, 29, 0.66);
  --shadow-soft: 0 18px 48px rgba(20, 33, 29, 0.08);
  --shadow-deep: 0 30px 90px rgba(20, 33, 29, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Avenir Next, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

.site-body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(232, 238, 233, 0.5) 42%, rgba(244, 247, 242, 0.96)),
    var(--paper);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.page-grid {
  background-image:
    linear-gradient(rgba(20, 33, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 33, 29, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  inset: 0;
  mask-image: linear-gradient(180deg, #000, transparent 88%);
  pointer-events: none;
  position: fixed;
}

.public-nav,
.hero,
.operator-strip,
.section,
.site-footer {
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  z-index: 1;
}

.public-nav {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 18px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  font-weight: 950;
  text-decoration: none;
}

.brand-mark {
  background: linear-gradient(135deg, var(--mint), var(--cobalt));
  border-radius: 13px;
  box-shadow: 0 12px 28px rgba(11, 110, 79, 0.22);
  display: inline-block;
  height: 42px;
  overflow: hidden;
  position: relative;
  width: 42px;
}

.brand-mark.small {
  border-radius: 10px;
  height: 34px;
  width: 34px;
}

.brand-mark::before {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  content: "";
  height: 38px;
  left: -10px;
  position: absolute;
  top: -12px;
  width: 38px;
}

.mark-arch,
.mark-base,
.mark-check {
  border-color: rgba(255, 255, 255, 0.92);
  border-style: solid;
  display: block;
  position: absolute;
}

.mark-arch {
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  border-width: 3px;
  height: 18px;
  left: 11px;
  top: 12px;
  width: 20px;
}

.mark-base {
  border-radius: 999px;
  border-width: 2px 0 0;
  bottom: 9px;
  left: 9px;
  width: 24px;
}

.mark-parcel {
  background: var(--amber);
  border-radius: 4px;
  bottom: 12px;
  display: block;
  height: 11px;
  left: 16px;
  position: absolute;
  width: 12px;
}

.mark-parcel::before,
.mark-parcel::after {
  background: rgba(255, 255, 255, 0.46);
  content: "";
  position: absolute;
}

.mark-parcel::before {
  height: 1px;
  left: 2px;
  right: 2px;
  top: 4px;
}

.mark-parcel::after {
  bottom: 2px;
  left: 5px;
  top: 1px;
  width: 1px;
}

.mark-check {
  border-width: 0 2px 2px 0;
  height: 9px;
  right: 8px;
  top: 9px;
  transform: rotate(45deg);
  width: 5px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 8px;
}

.nav-links a {
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  min-height: 40px;
  padding: 10px 12px;
  text-decoration: none;
  transition-duration: 180ms;
  transition-property: background-color, color, transform;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.nav-links a:hover {
  background: rgba(11, 110, 79, 0.08);
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-links a.is-current {
  background: rgba(11, 110, 79, 0.1);
  color: var(--ink);
}

.button {
  align-items: center;
  background: var(--mint);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(11, 110, 79, 0.18);
  color: #fff;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  text-decoration: none;
  transition-duration: 180ms;
  transition-property: background-color, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.button:hover {
  background: #095e44;
  box-shadow: 0 18px 38px rgba(11, 110, 79, 0.24);
  transform: translateY(-2px);
}

.button:active {
  transform: scale(0.96);
}

.button.secondary {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}

.button.secondary:hover {
  background: #fff;
}

.hero {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  min-height: calc(100vh - 78px);
  padding: 46px 18px 54px;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  color: var(--mint);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  font-weight: 950;
  letter-spacing: 0;
  margin: 0;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.88;
  max-width: 820px;
}

.hero-lead {
  color: var(--muted);
  font-size: 20px;
  font-weight: 680;
  line-height: 1.45;
  margin: 24px 0 0;
  max-width: 650px;
  text-wrap: pretty;
}

.hero-actions,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.signal-row {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  padding-top: 14px;
}

.signal-row span {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(20, 33, 29, 0.08);
  border-radius: 999px;
  color: rgba(20, 33, 29, 0.72);
  font-size: 12px;
  font-weight: 850;
  padding: 8px 10px;
}

.hero-product {
  align-self: center;
  display: grid;
  gap: 12px;
  justify-items: center;
  min-height: 0;
  position: relative;
}

.device-shell {
  background: #101713;
  border: 10px solid #0b110f;
  border-radius: 42px;
  box-shadow: var(--shadow-deep);
  margin: 0 auto;
  max-width: 390px;
  padding: 0;
  position: relative;
  transform: rotate(1.5deg);
}

.device-screen {
  background: linear-gradient(180deg, #f7faf6, #e6ede8);
  border-radius: 30px;
  min-height: 660px;
  overflow: hidden;
  padding: 22px 18px;
}

.app-topline {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.app-title {
  font-size: 34px;
  font-weight: 950;
}

.scan-panel {
  background:
    linear-gradient(135deg, rgba(11, 110, 79, 0.98), rgba(49, 92, 155, 0.98)),
    var(--mint);
  border-radius: 18px;
  color: #fff;
  margin: 22px 0 16px;
  min-height: 172px;
  overflow: hidden;
  padding: 20px;
  position: relative;
}

.scan-kicker {
  display: block;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 30px;
  opacity: 0.86;
}

.scan-panel strong {
  display: block;
  font-size: 25px;
  line-height: 1.04;
  max-width: 260px;
}

.scan-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.36;
  margin: 8px 0 0;
  max-width: 260px;
}

.scan-beam {
  animation: scanBeam 2.8s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.48);
  height: 3px;
  left: 20px;
  position: absolute;
  right: 20px;
  top: 56px;
}

@keyframes scanBeam {
  0%, 100% { opacity: 0.34; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(88px); }
}

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

.phone-row {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 33, 29, 0.1);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(20, 33, 29, 0.05);
  padding: 14px;
}

.phone-row strong,
.phone-row span {
  display: block;
}

.phone-row strong {
  font-size: 15px;
  font-weight: 950;
}

.phone-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  margin-top: 3px;
}

.phone-row.active {
  border-color: rgba(11, 110, 79, 0.22);
  box-shadow: 0 12px 34px rgba(11, 110, 79, 0.12);
}

.proof-card {
  animation: proofFloat 5s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 33, 29, 0.1);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(49, 92, 155, 0.14);
  max-width: 390px;
  padding: 14px;
  position: static;
  width: 100%;
  z-index: 2;
}

.proof-card span,
.proof-card strong {
  display: block;
}

.proof-card span {
  color: var(--mint);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-card strong {
  font-size: 16px;
  line-height: 1.18;
  margin-top: 8px;
}

.proof-top {
  justify-self: end;
}

.proof-bottom {
  animation-delay: -1.6s;
  justify-self: start;
}

@keyframes proofFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.operator-strip {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 33, 29, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.operator-strip div {
  background: rgba(255, 255, 255, 0.42);
  padding: 18px;
}

.operator-strip strong,
.operator-strip span {
  display: block;
}

.operator-strip strong {
  font-size: 17px;
  font-weight: 950;
}

.operator-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  margin-top: 4px;
}

.section {
  padding: 88px 18px 0;
}

.section h2 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 0.96;
  max-width: 790px;
}

.section-head {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.workflow-lab {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  margin-top: 30px;
}

.workflow-tabs {
  display: grid;
  gap: 10px;
}

.flow-step {
  align-items: center;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(20, 33, 29, 0.1);
  border-radius: 12px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-weight: 950;
  gap: 12px;
  min-height: 58px;
  padding: 0 14px;
  text-align: left;
  transition-duration: 180ms;
  transition-property: background-color, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.flow-step:hover,
.flow-step.is-active {
  background: #fff;
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.flow-step span {
  color: var(--mint);
  font-size: 12px;
  min-width: 30px;
}

.workflow-display {
  background:
    linear-gradient(135deg, rgba(15, 20, 18, 0.98), rgba(20, 45, 56, 0.98)),
    var(--dark);
  border-radius: 18px;
  box-shadow: var(--shadow-deep);
  color: #e7eee8;
  min-height: 320px;
  overflow: hidden;
  padding: 26px;
  position: relative;
}

.workflow-display::after {
  background-image:
    linear-gradient(rgba(231, 238, 232, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 238, 232, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(135deg, #000, transparent 72%);
  pointer-events: none;
  position: absolute;
}

.display-code {
  color: #a5e8d4;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.workflow-display h3 {
  font-size: clamp(32px, 6vw, 66px);
  line-height: 0.92;
  margin: 54px 0 14px;
  max-width: 640px;
  position: relative;
  text-wrap: balance;
  z-index: 1;
}

.workflow-display p {
  color: rgba(231, 238, 232, 0.68);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.45;
  max-width: 640px;
  position: relative;
  text-wrap: pretty;
  z-index: 1;
}

.display-meter {
  background: rgba(231, 238, 232, 0.1);
  border-radius: 999px;
  bottom: 26px;
  height: 8px;
  left: 26px;
  overflow: hidden;
  position: absolute;
  right: 26px;
  z-index: 1;
}

.display-meter span {
  background: linear-gradient(90deg, #a5e8d4, var(--amber));
  border-radius: inherit;
  display: block;
  height: 100%;
  transition-duration: 260ms;
  transition-property: width;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
  width: 25%;
}

.feature-grid,
.pricing-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.feature-card,
.plan-card {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(20, 33, 29, 0.1);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.feature-icon {
  align-items: center;
  background: rgba(11, 110, 79, 0.1);
  border-radius: 10px;
  color: var(--mint);
  display: inline-flex;
  font-weight: 950;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.feature-card h3,
.plan-card h3 {
  margin: 16px 0 8px;
}

.feature-card p,
.plan-card p,
.plan-card li {
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.45;
}

.pricing-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.pricing-shell {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(232, 238, 233, 0.64)),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 33, 29, 0.09);
  border-radius: 22px;
  box-shadow:
    0 34px 90px rgba(20, 33, 29, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.pricing-shell::before {
  background:
    linear-gradient(90deg, rgba(11, 110, 79, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(11, 110, 79, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(135deg, #000, transparent 76%);
  pointer-events: none;
  position: absolute;
}

.pricing-head,
.pricing-grid,
.pricing-assurance {
  position: relative;
  z-index: 1;
}

.pricing-head {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
}

.pricing-head h2 {
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
  margin: 0;
  max-width: 760px;
  text-wrap: balance;
}

.trial-summary {
  background:
    linear-gradient(145deg, rgba(15, 20, 18, 0.96), rgba(17, 80, 63, 0.92)),
    var(--dark);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(11, 110, 79, 0.22);
  color: #e7eee8;
  padding: 18px;
}

.trial-summary strong,
.trial-summary span {
  display: block;
}

.trial-summary strong {
  color: #a5e8d4;
  font-size: 24px;
  font-weight: 950;
}

.trial-summary span {
  color: rgba(231, 238, 232, 0.7);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.42;
  margin-top: 8px;
}

.plan-card {
  animation: planRise 520ms cubic-bezier(0.2, 0, 0, 1) both;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 33, 29, 0.09);
  border-radius: 18px;
  box-shadow:
    0 18px 40px rgba(20, 33, 29, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 18px;
  position: relative;
  transition-duration: 220ms;
  transition-property: box-shadow, transform, border-color;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.plan-card:nth-child(2) {
  animation-delay: 80ms;
}

.plan-card:nth-child(3) {
  animation-delay: 160ms;
}

.plan-card:nth-child(4) {
  animation-delay: 240ms;
}

.plan-card:hover {
  box-shadow:
    0 28px 70px rgba(20, 33, 29, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transform: translateY(-4px);
}

.plan-card.is-selected {
  border-color: rgba(11, 110, 79, 0.62);
  box-shadow:
    0 34px 82px rgba(11, 110, 79, 0.2),
    0 0 0 4px rgba(165, 232, 212, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.plan-card.featured {
  background:
    linear-gradient(180deg, rgba(244, 255, 250, 0.96), rgba(225, 244, 237, 0.92)),
    #fff;
  border-color: rgba(11, 110, 79, 0.34);
  box-shadow:
    0 30px 78px rgba(11, 110, 79, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.plan-card.cloud {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(234, 239, 249, 0.95)),
    #fff;
}

@keyframes planRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.plan-badge {
  background: var(--mint);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  padding: 8px 10px;
  position: absolute;
  right: 14px;
  top: 14px;
}

.plan-top {
  align-items: start;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.plan-top h3 {
  font-size: 22px;
  line-height: 1.02;
  margin: 0;
  max-width: 165px;
  text-wrap: balance;
}

.plan-top span {
  background: rgba(11, 110, 79, 0.1);
  border: 1px solid rgba(11, 110, 79, 0.16);
  border-radius: 999px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  padding: 8px 9px;
  white-space: nowrap;
}

.plan-fit {
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.35;
  margin: 16px 0 0;
  min-height: 36px;
}

.price-block {
  align-items: end;
  border-bottom: 1px solid rgba(20, 33, 29, 0.08);
  display: grid;
  grid-template-columns: auto 1fr;
  margin: 18px 0 0;
  padding-bottom: 16px;
}

.price-block span {
  color: rgba(20, 33, 29, 0.58);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.price-block strong {
  color: var(--ink);
  font-size: clamp(44px, 4.8vw, 64px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.82;
  padding-left: 6px;
}

.price-block em {
  color: rgba(20, 33, 29, 0.64);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
  grid-column: 1 / -1;
  margin-bottom: 8px;
  margin-top: 8px;
}

.plan-card ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
}

.site-meter {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.site-meter span {
  background: rgba(20, 33, 29, 0.08);
  border-radius: 999px;
  display: block;
  height: 8px;
  overflow: hidden;
  position: relative;
}

.site-meter span::after {
  background: linear-gradient(90deg, var(--mint), #a5e8d4);
  border-radius: inherit;
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
}

.site-meter.two span:first-child::after,
.site-meter.five span:nth-child(-n + 2)::after,
.site-meter.fifteen span:nth-child(-n + 3)::after,
.site-meter.thirty span::after {
  opacity: 1;
}

.site-meter.cloud-meter span::after {
  background: linear-gradient(90deg, var(--cobalt), #a5e8d4);
}

.plan-card li::before {
  color: var(--mint);
  content: "✓ ";
  font-weight: 950;
}

.contact-block {
  border-bottom: 1px solid rgba(20, 33, 29, 0.08);
  margin-top: 18px;
  padding-bottom: 17px;
}

.contact-block strong,
.contact-block span {
  display: block;
}

.contact-block strong {
  color: var(--ink);
  font-size: clamp(28px, 2.4vw, 34px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.contact-block span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.35;
  margin-top: 10px;
}

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

.enterprise-option {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(13, 68, 86, 0.96), rgba(12, 91, 73, 0.94)),
    var(--dark);
  border: 1px solid rgba(165, 232, 212, 0.18);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(20, 33, 29, 0.18);
  color: #e7eee8;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 16px;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.enterprise-option span,
.enterprise-option strong,
.enterprise-option p {
  display: block;
}

.enterprise-option span {
  color: #a5e8d4;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.enterprise-option strong {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
  margin-top: 8px;
  text-wrap: balance;
}

.enterprise-option p {
  color: rgba(231, 238, 232, 0.72);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.45;
  margin: 10px 0 0;
  max-width: 720px;
}

.enterprise-option .button {
  background: #e7eee8;
  color: var(--ink);
  white-space: nowrap;
}

.checkout-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.93), rgba(232, 244, 239, 0.9)),
    #fff;
  border: 1px solid rgba(20, 33, 29, 0.1);
  border-radius: 18px;
  box-shadow:
    0 24px 66px rgba(20, 33, 29, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: none;
  gap: 20px;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr);
  margin-top: 16px;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.checkout-panel.is-open {
  animation: planRise 360ms cubic-bezier(0.2, 0, 0, 1) both;
  display: grid;
}

.checkout-panel-copy span,
.checkout-panel-copy strong,
.checkout-panel-copy p {
  display: block;
}

.checkout-panel-copy span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-panel-copy strong {
  color: var(--ink);
  font-size: clamp(26px, 3.6vw, 48px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.95;
  margin-top: 10px;
  max-width: 560px;
  text-wrap: balance;
}

.checkout-panel-copy p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.45;
  margin: 14px 0 0;
  max-width: 560px;
}

.checkout-form {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 33, 29, 0.08);
  border-radius: 14px;
  display: grid;
  gap: 12px;
  padding: 14px;
}

.checkout-mode {
  background: rgba(20, 33, 29, 0.06);
  border-radius: 12px;
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 5px;
}

.checkout-mode button {
  background: transparent;
  border: 0;
  border-radius: 9px;
  color: rgba(20, 33, 29, 0.66);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  padding: 10px;
}

.checkout-mode button.is-active {
  background: #fff;
  box-shadow: 0 8px 24px rgba(20, 33, 29, 0.1);
  color: var(--ink);
}

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

.checkout-fields[hidden],
label.checkout-fields[hidden] {
  display: none;
}

label.checkout-fields {
  display: grid;
  grid-template-columns: 1fr;
}

.checkout-form label {
  color: rgba(20, 33, 29, 0.66);
  display: grid;
  font-size: 12px;
  font-weight: 900;
  gap: 6px;
}

.checkout-form input {
  background: #fff;
  border: 1px solid rgba(20, 33, 29, 0.14);
  border-radius: 10px;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 760;
  min-height: 44px;
  padding: 0 12px;
}

.checkout-form input:focus {
  border-color: rgba(11, 110, 79, 0.56);
  box-shadow: 0 0 0 4px rgba(165, 232, 212, 0.26);
  outline: none;
}

.checkout-form .button {
  border: 0;
  cursor: pointer;
  justify-content: center;
  width: 100%;
}

.checkout-form .button:disabled {
  cursor: progress;
  opacity: 0.62;
}

.checkout-status {
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.4;
  margin: 0;
  min-height: 18px;
}

.checkout-status[data-state="error"] {
  color: #9f2f28;
}

.checkout-status[data-state="success"] {
  color: var(--mint);
}

.pricing-section {
  scroll-margin-top: 36px;
}

.pricing-assurance {
  border-top: 1px solid rgba(20, 33, 29, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
  padding-top: 18px;
}

.pricing-assurance span {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(20, 33, 29, 0.08);
  border-radius: 999px;
  color: rgba(20, 33, 29, 0.72);
  font-size: 12px;
  font-weight: 900;
  padding: 9px 11px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid rgba(20, 33, 29, 0.1);
  color: var(--muted);
  display: flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: space-between;
  margin-top: 88px;
  padding: 22px 18px 34px;
}

.reveal {
  animation: revealIn 760ms cubic-bezier(0.2, 0, 0, 1) both;
}

.reveal-delay-1 {
  animation-delay: 110ms;
}

.reveal-delay-2 {
  animation-delay: 220ms;
}

@keyframes revealIn {
  from {
    filter: blur(8px);
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }
}

.guide-hero,
.guide-section,
.guide-body .site-footer {
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  z-index: 1;
}

.guide-hero {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  padding: 52px 18px 34px;
}

.guide-hero-copy {
  align-self: center;
}

.guide-hero h1 {
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
  margin: 0;
  max-width: 790px;
  text-wrap: balance;
}

.guide-console {
  align-self: center;
  background:
    linear-gradient(145deg, rgba(15, 20, 18, 0.98), rgba(24, 50, 66, 0.96)),
    var(--dark);
  border: 1px solid rgba(231, 238, 232, 0.1);
  border-radius: 20px;
  box-shadow: var(--shadow-deep);
  color: #e7eee8;
  overflow: hidden;
  padding: 22px;
  position: relative;
}

.guide-console::before {
  background:
    linear-gradient(90deg, rgba(165, 232, 212, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(165, 232, 212, 0.09) 1px, transparent 1px);
  background-size: 30px 30px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(135deg, #000, transparent 72%);
  pointer-events: none;
  position: absolute;
}

.console-top,
.route-map,
.mail-stack {
  position: relative;
  z-index: 1;
}

.console-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.console-top span,
.mail-stack span,
.mock-status,
.smtp-field span {
  color: rgba(231, 238, 232, 0.6);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-top strong {
  color: #a5e8d4;
  font-size: 12px;
}

.route-map {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr);
  margin: 28px 0;
}

.route-node {
  background: rgba(231, 238, 232, 0.08);
  border: 1px solid rgba(231, 238, 232, 0.11);
  border-radius: 12px;
  color: rgba(231, 238, 232, 0.72);
  font-size: 12px;
  font-weight: 900;
  min-height: 58px;
  padding: 13px;
}

.route-node.active {
  background: rgba(11, 110, 79, 0.3);
  color: #e7eee8;
}

.route-node.sent {
  background: rgba(201, 137, 25, 0.22);
  color: #ffe1a3;
}

.route-line {
  background: linear-gradient(90deg, rgba(165, 232, 212, 0.16), rgba(165, 232, 212, 0.86));
  border-radius: 999px;
  height: 3px;
  overflow: hidden;
  position: relative;
}

.route-line::after {
  animation: routePulse 2.4s cubic-bezier(0.2, 0, 0, 1) infinite;
  background: #fff;
  border-radius: inherit;
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-100%);
}

@keyframes routePulse {
  to { transform: translateX(100%); }
}

.mail-stack {
  display: grid;
  gap: 10px;
}

.mail-stack article {
  background: rgba(231, 238, 232, 0.08);
  border: 1px solid rgba(231, 238, 232, 0.1);
  border-radius: 12px;
  padding: 14px;
}

.mail-stack strong {
  display: block;
  font-size: 15px;
  margin-top: 5px;
}

.mail-stack p {
  color: #a5e8d4;
  font-size: 13px;
  font-weight: 900;
  margin: 8px 0 0;
}

.guide-provider-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.guide-provider {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 33, 29, 0.1);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  cursor: pointer;
  min-height: 152px;
  padding: 16px;
  text-align: left;
  transition-duration: 180ms;
  transition-property: background-color, border-color, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.guide-provider:hover,
.guide-provider.is-active {
  background: #fff;
  border-color: rgba(11, 110, 79, 0.26);
  box-shadow: 0 24px 60px rgba(11, 110, 79, 0.14);
  transform: translateY(-2px);
}

.guide-provider span,
.guide-provider strong,
.guide-provider small {
  display: block;
}

.guide-provider span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-provider strong {
  font-size: 22px;
  line-height: 1;
  margin-top: 18px;
}

.guide-provider small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  line-height: 1.38;
  margin-top: 9px;
}

.guide-panel {
  animation: panelIn 260ms cubic-bezier(0.2, 0, 0, 1) both;
  margin-top: 16px;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.guide-step-card,
.staff-flow-grid article,
.checklist-board,
.guide-faq {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(20, 33, 29, 0.1);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.guide-step-card,
.staff-flow-grid article {
  min-height: 212px;
  padding: 18px;
}

.guide-step-card span,
.staff-flow-grid span {
  align-items: center;
  background: rgba(11, 110, 79, 0.1);
  border-radius: 10px;
  color: var(--mint);
  display: inline-flex;
  font-size: 13px;
  font-weight: 950;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.guide-step-card h3,
.staff-flow-grid h3,
.guide-managed h3 {
  font-size: 22px;
  line-height: 1.05;
  margin: 18px 0 9px;
}

.guide-step-card p,
.staff-flow-grid p,
.guide-managed p,
.guide-faq p,
.smtp-preset span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 730;
  line-height: 1.48;
}

.guide-visual-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.64fr);
  margin-top: 14px;
}

.mock-browser,
.mock-phone,
.smtp-form-shot,
.guide-managed {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 33, 29, 0.1);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.mock-browser {
  min-height: 350px;
  overflow: hidden;
}

.mock-chrome {
  align-items: center;
  background: #17211d;
  color: rgba(231, 238, 232, 0.76);
  display: flex;
  gap: 8px;
  min-height: 46px;
  padding: 0 14px;
}

.mock-chrome span {
  background: #e25d47;
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.mock-chrome span:nth-child(2) {
  background: #c98919;
}

.mock-chrome span:nth-child(3) {
  background: #0f9a74;
}

.mock-chrome strong {
  font-size: 12px;
  margin-left: 8px;
}

.mock-browser-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.mock-security-row,
.mock-toggle-row,
.mock-admin-note {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(20, 33, 29, 0.08);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  min-height: 62px;
  padding: 14px;
}

.mock-security-row b,
.mock-toggle-row span {
  font-size: 15px;
}

.mock-security-row em,
.mock-toggle-row i {
  background: rgba(11, 110, 79, 0.1);
  border-radius: 999px;
  color: var(--mint);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  padding: 7px 9px;
}

.mock-security-row.active {
  border-color: rgba(11, 110, 79, 0.28);
  box-shadow: 0 14px 38px rgba(11, 110, 79, 0.1);
}

.mock-password {
  background:
    linear-gradient(135deg, rgba(11, 110, 79, 0.96), rgba(49, 92, 155, 0.92)),
    var(--mint);
  border-radius: 14px;
  color: #fff;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1.05;
  min-height: 132px;
  padding: 26px;
}

.mock-phone {
  background: #101713;
  border: 8px solid #0b110f;
  border-radius: 34px;
  padding: 0;
}

.mock-phone-screen {
  background: linear-gradient(180deg, #f7faf6, #e6ede8);
  border-radius: 24px;
  min-height: 338px;
  padding: 20px;
}

.mock-phone h3 {
  font-size: 24px;
  line-height: 1.02;
  margin: 14px 0 20px;
}

.mock-phone label {
  color: var(--muted);
  display: block;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin: 14px 0 6px;
  text-transform: uppercase;
}

.mock-input {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 33, 29, 0.1);
  border-radius: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  min-height: 42px;
  padding: 12px;
}

.mock-phone button {
  background: var(--mint);
  border: 0;
  border-radius: 10px;
  color: #fff;
  font-weight: 950;
  margin-top: 18px;
  min-height: 44px;
  width: 100%;
}

.smtp-preset {
  align-items: center;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(20, 33, 29, 0.1);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-top: 14px;
  padding: 16px;
}

.smtp-preset strong,
.smtp-preset span {
  display: block;
}

.copy-pill {
  background: var(--dark);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
  min-height: 40px;
  min-width: 112px;
  padding: 0 14px;
}

.smtp-form-shot {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
  padding: 18px;
}

.smtp-field {
  background: #fff;
  border: 1px solid rgba(20, 33, 29, 0.08);
  border-radius: 12px;
  padding: 14px;
}

.smtp-field span {
  color: var(--muted);
}

.smtp-field strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
  margin-top: 8px;
  overflow-wrap: anywhere;
}

.guide-managed {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  padding: 22px;
}

.delivery-timeline {
  display: grid;
  gap: 10px;
}

.delivery-timeline span {
  background: #fff;
  border: 1px solid rgba(20, 33, 29, 0.08);
  border-radius: 12px;
  font-weight: 950;
  min-height: 54px;
  padding: 16px;
}

.staff-flow-grid {
  margin-top: 30px;
}

.checklist-board {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: 210px minmax(0, 1fr);
  margin-top: 30px;
  padding: 20px;
}

.checklist-progress {
  align-items: center;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at center, #fff 0 58%, transparent 59%),
    conic-gradient(var(--mint), rgba(11, 110, 79, 0.12));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.checklist-progress strong {
  font-size: 42px;
  line-height: 1;
}

.checklist-progress span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  margin-top: 6px;
}

.checklist-items {
  display: grid;
  gap: 10px;
}

.checklist-items label {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 33, 29, 0.08);
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  font-weight: 880;
  gap: 12px;
  min-height: 52px;
  padding: 0 14px;
}

.checklist-items input {
  accent-color: var(--mint);
  height: 20px;
  width: 20px;
}

.faq-stack {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.guide-faq {
  overflow: hidden;
}

.guide-faq-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-weight: 950;
  justify-content: space-between;
  min-height: 62px;
  padding: 0 18px;
  text-align: left;
  width: 100%;
}

.guide-faq-button::after {
  content: "+";
  font-size: 22px;
}

.guide-faq.is-open .guide-faq-button::after {
  content: "-";
}

.guide-faq p {
  display: none;
  margin: 0;
  padding: 0 18px 18px;
}

.guide-faq.is-open p {
  display: block;
}

.admin-body {
  background: var(--dark);
  color: #e7eee8;
  min-height: 100vh;
}

.admin-login {
  align-items: center;
  display: grid;
  min-height: 100vh;
  padding: 22px;
}

.admin-login-panel {
  background:
    linear-gradient(145deg, rgba(23, 29, 26, 0.98), rgba(23, 42, 62, 0.72)),
    var(--dark-2);
  border: 1px solid rgba(231, 238, 232, 0.1);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  margin: 0 auto;
  max-width: 480px;
  padding: 26px;
  width: 100%;
}

.admin-login-panel h1,
.sidebar h1 {
  font-size: 38px;
  line-height: 0.96;
  margin: 24px 0 10px;
  text-wrap: balance;
}

.admin-login-panel p,
.admin-muted {
  color: rgba(231, 238, 232, 0.64);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.admin-login-panel label {
  color: rgba(231, 238, 232, 0.78);
  display: block;
  font-size: 12px;
  font-weight: 950;
  margin: 22px 0 8px;
  text-transform: uppercase;
}

.admin-login-panel input,
.admin-controls input,
.admin-controls select {
  background: #0d1210;
  border: 1px solid rgba(231, 238, 232, 0.14);
  border-radius: 8px;
  color: #e7eee8;
  min-height: 44px;
  outline: none;
  padding: 0 12px;
  width: 100%;
}

.admin-login-panel input:focus,
.admin-controls input:focus,
.admin-controls select:focus {
  border-color: rgba(165, 232, 212, 0.58);
  box-shadow: 0 0 0 4px rgba(11, 110, 79, 0.2);
}

.admin-error {
  color: #ffb2a6;
  font-weight: 850;
  min-height: 20px;
}

.admin-layout[hidden],
.admin-login[hidden] {
  display: none;
}

.admin-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  background: #121a17;
  border-right: 1px solid rgba(231, 238, 232, 0.08);
  padding: 22px;
}

.sidebar .brand {
  color: #e7eee8;
}

.admin-main {
  min-width: 0;
  padding: 22px;
}

.admin-topbar {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.admin-topbar h2 {
  font-size: 30px;
  margin: 0;
}

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

.admin-card {
  background: var(--dark-2);
  border: 1px solid rgba(231, 238, 232, 0.1);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  padding: 16px;
}

.admin-card strong {
  display: block;
  font-size: 30px;
  font-variant-numeric: tabular-nums;
  font-weight: 950;
}

.admin-card span {
  color: rgba(231, 238, 232, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.admin-table-wrap {
  overflow: auto;
}

.admin-table {
  border-collapse: collapse;
  margin-top: 14px;
  min-width: 820px;
  width: 100%;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid rgba(231, 238, 232, 0.08);
  padding: 13px 8px;
  text-align: left;
}

.admin-table th {
  color: rgba(231, 238, 232, 0.56);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-table button,
.admin-controls button,
.admin-login-panel button {
  background: var(--mint);
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-weight: 950;
  min-height: 42px;
  padding: 0 12px;
  transition-duration: 180ms;
  transition-property: background-color, transform;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.admin-table button:hover,
.admin-controls button:hover,
.admin-login-panel button:hover {
  background: #0f7e5c;
  transform: translateY(-1px);
}

.admin-table button:active,
.admin-controls button:active,
.admin-login-panel button:active {
  transform: scale(0.96);
}

.admin-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-controls input {
  max-width: 280px;
}

.status {
  border-radius: 999px;
  display: inline-block;
  font-size: 12px;
  font-weight: 950;
  padding: 6px 9px;
}

.status.active,
.status.trialing {
  background: rgba(11, 110, 79, 0.28);
  color: #a5e8d4;
}

.status.past_due {
  background: rgba(201, 137, 25, 0.24);
  color: #ffd486;
}

.status.canceled,
.status.inactive {
  background: rgba(226, 93, 71, 0.22);
  color: #ffb2a6;
}

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

@media (max-width: 1040px) {
  .hero,
  .workflow-lab,
  .guide-hero,
  .guide-managed,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .guide-provider-grid,
  .guide-steps,
  .staff-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .public-nav {
    padding: 16px;
  }

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

  .hero h1 {
    font-size: clamp(42px, 15vw, 64px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .device-shell {
    border-width: 7px;
    max-width: 100%;
    transform: none;
  }

  .device-screen {
    min-height: 580px;
  }

  .operator-strip,
  .feature-grid,
  .pricing-grid,
  .guide-provider-grid,
  .guide-steps,
  .guide-visual-grid,
  .staff-flow-grid,
  .smtp-form-shot,
  .checklist-board,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .pricing-shell {
    border-radius: 18px;
    padding: 18px;
  }

  .pricing-head {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .pricing-head h2 {
    font-size: clamp(38px, 14vw, 58px);
    line-height: 0.92;
  }

  .trial-summary {
    border-radius: 14px;
    padding: 16px;
  }

  .trial-summary strong {
    font-size: 22px;
  }

  .pricing-grid {
    margin-top: 18px;
  }

  .plan-card {
    min-height: 430px;
    padding: 18px;
  }

  .plan-card:hover {
    transform: none;
  }

  .plan-card.featured {
    transform: none;
  }

  .enterprise-option {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .enterprise-option .button {
    justify-content: center;
    width: 100%;
  }

  .checkout-panel {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .checkout-fields {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 66px 16px 0;
  }

  .guide-hero {
    padding: 32px 16px 20px;
  }

  .guide-console {
    padding: 16px;
  }

  .guide-provider {
    min-height: 118px;
    padding: 14px;
  }

  .guide-provider strong {
    font-size: 20px;
    margin-top: 10px;
  }

  .guide-provider small {
    margin-top: 7px;
  }

  .guide-step-card,
  .staff-flow-grid article {
    min-height: auto;
  }

  .route-map {
    grid-template-columns: 1fr;
  }

  .route-line {
    height: 24px;
    justify-self: center;
    width: 3px;
  }

  .route-line::after {
    transform: translateY(-100%);
  }

  @keyframes routePulse {
    to { transform: translateY(100%); }
  }

  .smtp-preset {
    align-items: flex-start;
    flex-direction: column;
  }

  .copy-pill {
    width: 100%;
  }

  .checklist-progress {
    justify-self: center;
    max-width: 210px;
  }

  .section-head {
    display: block;
  }

  .site-footer,
  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
}
