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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #4b5568;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: #0066ff;
  text-decoration: none;
}

a:hover {
  color: #0052cc;
}

:focus-visible {
  outline: 2px solid #0066ff;
  outline-offset: 3px;
}

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

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 40;
  padding: 8px 12px;
  background: #0a1128;
  color: #fff;
  border-radius: 8px;
}

.skip:focus {
  top: 12px;
  color: #fff;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.jump {
  display: block;
  scroll-margin-top: 88px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #eef0f5;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0a1128;
  flex-shrink: 0;
}

.brand:hover {
  color: #0a1128;
}

.brand-mark {
  width: 36px;
  height: 36px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: #5b6478;
  letter-spacing: 0.01em;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: -8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #0a1128;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.site-nav {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  position: absolute;
  left: 0;
  right: 0;
  top: 72px;
  padding: 12px 20px 20px;
  background: #fff;
  border-bottom: 1px solid #eef0f5;
}

.site-nav.is-open {
  display: flex;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-nav a {
  color: #1c2438;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 4px;
}

.site-nav a:hover,
.nav-links a[aria-current="page"] {
  color: #0066ff;
}

.nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #eef0f5;
}

.nav-login {
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-sm {
  min-height: 38px;
  padding: 8px 16px;
  font-size: 0.9rem;
}

.btn-fill {
  background: #0066ff;
  border-color: #0066ff;
  color: #fff;
}

.btn-fill:hover {
  background: #0052cc;
  border-color: #0052cc;
  color: #fff;
}

.btn-line {
  background: #fff;
  border-color: #0066ff;
  color: #0066ff;
}

.btn-line:hover {
  background: #f0f6ff;
  color: #0052cc;
}

.btn-block {
  width: 100%;
}

/* Hero */

.hero {
  padding: 48px 0 56px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-copy h1 {
  margin: 0 0 16px;
  color: #0a1128;
  font-size: clamp(1.85rem, 5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.035em;
  max-width: 18ch;
}

.hero-sub {
  margin: 0 0 12px;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #5c6578;
  max-width: 42ch;
}

.hero-third {
  margin: 0 0 28px;
  font-size: 1.02rem;
  line-height: 1.5;
  color: #5c6578;
  max-width: 42ch;
}

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

.hero-visual {
  margin: 0;
}

/* Dashboard illustration */

.dash {
  display: flex;
  width: 100%;
  min-height: 340px;
  background: #fff;
  border: 1px solid #e4e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(10, 17, 40, 0.04), 0 16px 40px rgba(10, 17, 40, 0.07);
}

.dash-side {
  width: 132px;
  flex-shrink: 0;
  padding: 14px 10px;
  background: #fff;
  border-right: 1px solid #e8ecf3;
}

.dash-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  padding: 0 6px;
  color: #0a1128;
}

.dash-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.dash-brand-text span:first-child {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.dash-brand-text span:last-child {
  font-size: 0.55rem;
  font-weight: 500;
  color: #6b7386;
}

.dash-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dash-nav li {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  border-radius: 6px;
  color: #6b7386;
  font-size: 0.68rem;
  font-weight: 500;
}

.dash-nav .is-on {
  background: #e8f1ff;
  color: #0066ff;
}

.dash-main {
  flex: 1;
  min-width: 0;
  padding: 16px 18px 18px;
  background: #f4f6f8;
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.dash-title {
  margin: 0;
  color: #0a1128;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.dash-select {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border: 1px solid #e4e8f0;
  border-radius: 6px;
  color: #4b5568;
  font-size: 0.68rem;
  font-weight: 500;
  background: #fff;
}

.dash-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.dash-card {
  padding: 10px 12px 8px;
  border: 1px solid #e8ecf3;
  border-radius: 8px;
  background: #fff;
}

.dash-card span {
  display: block;
  color: #7a8294;
  font-size: 0.62rem;
  font-weight: 500;
}

.dash-card i {
  font-style: normal;
  color: #9aa3b5;
}

.dash-card strong {
  display: block;
  margin-top: 4px;
  color: #0a1128;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.dash-go {
  margin-top: 6px;
  color: #0066ff !important;
  font-size: 0.58rem !important;
  font-weight: 600 !important;
}

.dash-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.dash-panel {
  padding: 10px 12px 12px;
  background: #fff;
  border: 1px solid #e8ecf3;
  border-radius: 8px;
}

.dash-h {
  margin: 0 0 8px;
  color: #0a1128;
  font-size: 0.72rem;
  font-weight: 600;
}

.dash-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.dash-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  color: #3d4658;
  font-size: 0.68rem;
  font-weight: 500;
}

.site-name {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.site-live {
  color: #16a34a;
  font-size: 0.6rem;
  font-weight: 600;
}

.camp-name {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.camp-name small {
  color: #8b93a4;
  font-size: 0.58rem;
  font-weight: 500;
}

.dash-spend b {
  color: #5c6578;
  font-weight: 600;
  flex-shrink: 0;
}

.live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

#work,
#sites,
#ads,
#plans {
  scroll-margin-top: 88px;
}

/* Plans */

.plans-sec {
  padding: 56px 0 72px;
  background: #f8f9fa;
}

.plans {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin-inline: auto;
}

.plan {
  display: flex;
  flex-direction: column;
  padding: 28px 28px 24px;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(10, 17, 40, 0.03), 0 8px 24px rgba(10, 17, 40, 0.04);
}

.plan h2 {
  margin: 0 0 8px;
  color: #0a1128;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.plan-price {
  margin: 0 0 18px;
  color: #0a1128;
  font-size: 2.15rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 600;
  color: #0a1128;
}

.plan-feats {
  list-style: none;
  margin: 0 0 24px;
  padding: 18px 0 0;
  border-top: 1px solid #eef0f5;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.plan-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3d4658;
  font-size: 0.95rem;
}

.plan-feats li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: center / 18px 18px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='9' fill='%230066FF'/%3E%3Cpath d='M5.2 9.1 7.7 11.6 12.8 6.4' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Who this is for — light middle, not a sales letter */
.who-for {
  padding: 8px 0 48px;
}

.who-for h2 {
  margin: 0 0 10px;
  color: #0a1128;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.who-for p {
  margin: 0 0 16px;
  max-width: 40rem;
  color: #5b6478;
}

.who-for ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  max-width: 40rem;
}

.who-for li {
  color: #3d4658;
  font-size: 0.98rem;
  padding-left: 18px;
  position: relative;
}

.who-for li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0066ff;
}

.plans-intro {
  max-width: 36rem;
  margin: 0 auto 32px;
  text-align: center;
}

.plans-intro h2 {
  margin: 0 0 8px;
  color: #0a1128;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.plans-intro p {
  margin: 0;
  color: #5b6478;
}

.plan-context {
  margin: -6px 0 16px;
  color: #5b6478;
  font-size: 0.95rem;
  line-height: 1.45;
}

.plans-closer {
  max-width: 36rem;
  margin: 28px auto 0;
  text-align: center;
  color: #5b6478;
  font-size: 0.98rem;
}

.plans-closer p {
  margin: 0;
}

.plans-closer ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.plans-closer li + li {
  margin-top: 6px;
}

.plans-closer a {
  color: #0066ff;
  font-weight: 500;
}

.plans-closer a:hover {
  text-decoration: underline;
}

/* Footer */

.site-footer {
  padding: 36px 20px 48px;
  text-align: center;
  background: #fff;
}

.site-footer p {
  margin: 0;
  color: #8b93a4;
  font-size: 0.88rem;
  line-height: 1.55;
}

@media (min-width: 720px) {
  .dash-stats {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (min-width: 900px) {
  .wrap {
    width: min(1120px, calc(100% - 64px));
  }

  .nav-toggle {
    display: none;
  }

  .header-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .site-nav {
    display: contents;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
  }

  .site-nav a {
    padding: 0;
    font-size: 0.9375rem;
  }

  .nav-actions {
    flex-direction: row;
    align-items: center;
    justify-self: end;
    gap: 18px;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .hero {
    padding: 72px 0 64px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 48px;
  }

  .hero-copy h1 {
    font-size: 2.75rem;
  }

  .dash {
    min-height: 392px;
  }

  .plans-sec {
    padding: 72px 0 88px;
  }
}

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

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


.site-nav a.btn,
.site-nav a.btn:hover {
  color: #fff;
}

.site-nav a.btn-fill {
  background: #0066ff;
  border-color: #0066ff;
  color: #fff;
}

.site-nav a.btn-fill:hover {
  background: #0052cc;
  border-color: #0052cc;
  color: #fff;
}

.site-nav .nav-actions .btn {
  padding: 8px 16px;
  min-height: 38px;
}

/* Get started page */
.start {
  padding: 48px 0 72px;
}

.start-lead {
  max-width: 36rem;
  margin: 0 auto 36px;
  text-align: center;
}

.start-lead h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  color: #0a1128;
  line-height: 1.15;
}

.start-lead p {
  margin: 0;
  color: #5b6478;
  font-size: 1.05rem;
}

.start-lead p + p {
  margin-top: 0.6em;
}

.start-plans {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 40px;
}

@media (min-width: 720px) {
  .start-plans {
    grid-template-columns: 1fr 1fr;
  }
}

.plan.is-picked {
  border-color: #0066ff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

.start-next {
  max-width: 480px;
  margin: 0 auto;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  text-align: center;
}

.start-next h2 {
  margin: 0 0 8px;
  color: #0a1128;
  font-size: 1.15rem;
}

.start-next p {
  margin: 0 0 18px;
  color: #5b6478;
}

.start-next .btn {
  min-width: 200px;
}

body.start-page .plans-sec {
  background: transparent;
  padding: 0;
}

/* Footer links — all pages */

.site-footer .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.footer-links a {
  color: #5b6478;
  font-size: 0.88rem;
  font-weight: 500;
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: #0066ff;
}

.footer-links span {
  color: #c5cad6;
  font-size: 0.88rem;
}

/* Shared sales layout */

.sales-hero {
  padding: 48px 0 56px;
}

.sales-hero-inner {
  max-width: 40rem;
}

.sales-kicker {
  margin: 0 0 12px;
  color: #0066ff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sales-hero h1 {
  margin: 0 0 16px;
  color: #0a1128;
  font-size: clamp(1.85rem, 5.4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.sales-lead {
  margin: 0 0 28px;
  font-size: 1.125rem;
  line-height: 1.55;
  color: #5c6578;
}

.sales-sec {
  padding: 56px 0;
}

.sales-sec-alt {
  background: #f8f9fa;
}

.sales-h {
  margin: 0 0 10px;
  color: #0a1128;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.sales-intro {
  margin: 0 0 28px;
  max-width: 38rem;
  color: #5b6478;
  font-size: 1.02rem;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.sales-card {
  padding: 24px 24px 22px;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(10, 17, 40, 0.03), 0 8px 24px rgba(10, 17, 40, 0.04);
}

.sales-card h3 {
  margin: 0 0 8px;
  color: #0a1128;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.sales-card p {
  margin: 0;
  color: #3d4658;
  font-size: 0.98rem;
}

.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 22px 20px;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #e8f1ff;
  color: #0066ff;
  font-size: 0.9rem;
  font-weight: 700;
}

.step h3 {
  margin: 0 0 6px;
  color: #0a1128;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  color: #3d4658;
}

.compare {
  display: grid;
  gap: 16px;
}

.compare-col {
  padding: 24px 24px 22px;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
}

.compare-col-on {
  border-color: #0066ff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12);
}

.compare-col h3 {
  margin: 0 0 14px;
  color: #0a1128;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.compare-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-col li {
  color: #3d4658;
  padding-left: 18px;
  position: relative;
}

.compare-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c5cad6;
}

.compare-col-on li::before {
  background: #0066ff;
}

.cta-band {
  padding: 56px 20px;
  text-align: center;
  background: #0a1128;
}

.cta-band h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.cta-band p {
  margin: 0 auto 24px;
  max-width: 34rem;
  color: #c5cbe0;
}

.cta-band .btn-fill:focus-visible {
  outline-color: #fff;
}

#how,
#dangers,
#solution {
  scroll-margin-top: 88px;
}

@media (min-width: 720px) {
  .card-grid-2,
  .card-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .sales-card-wide {
    grid-column: 1 / -1;
  }

  .step-list {
    grid-template-columns: 1fr 1fr;
  }

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

@media (min-width: 900px) {
  .sales-hero {
    padding: 72px 0 64px;
  }

  .sales-sec {
    padding: 72px 0;
  }

  .card-grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .sales-card-wide {
    grid-column: auto;
  }

  .cta-band {
    padding: 72px 20px;
  }
}

/* Workflow — /workflow/ */

.wf-page .sales-hero h1 {
  max-width: 16ch;
}

.wf-page .wf-outcomes .sales-card h3 {
  color: #0066ff;
}

/* Private AI — /private-ai/ */

.pai-page .sales-hero h1 {
  max-width: 16ch;
}

.pai-page .pai-dangers .sales-card h3 {
  color: #0a1128;
}

.pai-page .pai-dangers .sales-card {
  border-left: 3px solid #0066ff;
}

.sales-note {
  margin: 24px 0 0;
  max-width: 42rem;
  color: #5c6578;
  font-size: 0.95rem;
}

/* Backup — /backup/ */

.bk-page .sales-hero h1 {
  max-width: 20ch;
}

.bk-page .bk-wrong .sales-card {
  border-left: 3px solid #0066ff;
}

.bk-page .step-list {
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .bk-page .step-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Aberdeen — /aberdeen/ */

.ab-page .sales-hero h1 {
  max-width: 18ch;
}

.ab-hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ab-price-lock {
  display: inline-block;
  margin: 0 0 24px;
  padding: 10px 14px;
  background: #e8f1ff;
  color: #0a1128;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  border-radius: 8px;
}

.ab-hero-note {
  margin: 14px 0 0;
  color: #5b6478;
  font-size: 0.95rem;
}

.ab-hero-mark {
  display: none;
}

.ab-phone-slot {
  border-style: dashed;
  border-color: #c5cad6;
  color: #5b6478;
  background: #f8f9fa;
  cursor: default;
}

.ab-phone-slot:hover {
  background: #f8f9fa;
  color: #5b6478;
  border-color: #c5cad6;
}

.ab-phone-aside {
  margin: 0 0 12px;
}

.ab-list,
.ab-not-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 40rem;
}

.ab-list li,
.ab-not-list li {
  padding: 16px 18px 16px 42px;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  color: #3d4658;
  position: relative;
}

.ab-list li::before,
.ab-not-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 1.35em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0066ff;
}

.ab-not-list {
  max-width: none;
}

.ab-prose {
  max-width: 40rem;
}

.ab-prose p {
  margin: 0 0 14px;
  color: #3d4658;
  font-size: 1.02rem;
}

.ab-prose p:last-child {
  margin-bottom: 0;
}

.ab-close {
  display: grid;
  gap: 28px;
}

.ab-close-note {
  margin: 0;
  color: #5b6478;
  font-size: 0.95rem;
}

.ab-close-steps {
  margin: 16px 0 0;
  padding-left: 1.2em;
  color: #1a2233;
  line-height: 1.5;
}

.ab-close-steps li + li {
  margin-top: 8px;
}

.ab-or-call {
  margin: 16px 0 0;
  color: #5b6478;
  font-size: 0.95rem;
}

.ab-or-call a {
  color: inherit;
  font-weight: 600;
}

.ab-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(10, 17, 40, 0.03), 0 8px 24px rgba(10, 17, 40, 0.04);
}

.ab-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ab-field label {
  color: #0a1128;
  font-size: 0.88rem;
  font-weight: 600;
}

.ab-field input,
.ab-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #d5dae6;
  border-radius: 8px;
  background: #fff;
  color: #0a1128;
  font-family: inherit;
  font-size: 1rem;
}

.ab-field textarea {
  min-height: 110px;
  resize: vertical;
}

.ab-field input:focus,
.ab-field textarea:focus {
  outline: 2px solid #0066ff;
  outline-offset: 2px;
  border-color: #0066ff;
}

.ab-form .btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.ab-form-note {
  margin: 0;
  color: #5b6478;
  font-size: 0.92rem;
}

#talk,
#what-you-get,
#helper,
#why,
#not,
#who {
  scroll-margin-top: 88px;
}

@media (min-width: 720px) {
  .ab-not-list {
    grid-template-columns: 1fr 1fr;
  }

  .ab-close {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: start;
    gap: 40px;
  }
}

@media (min-width: 900px) {
  .ab-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.6fr);
    align-items: center;
    gap: 48px;
  }

  .ab-hero-mark {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ab-hero-mark img {
    width: 140px;
    height: 140px;
  }
}

/* Aberdeen Launch — abd-page (landing copy) */

.abd-page .sales-hero-inner {
  max-width: 44rem;
}

.abd-page .sales-hero h1 {
  max-width: 20ch;
}

.abd-page .sales-lead {
  margin-bottom: 16px;
}

.abd-price {
  margin: 0 0 24px;
  color: #0a1128;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.abd-under {
  margin: 14px 0 0;
  color: #5b6478;
  font-size: 0.95rem;
}

.abd-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 40rem;
}

.abd-list li {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  color: #0a1128;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.abd-prose {
  max-width: 40rem;
}

.abd-prose p {
  margin: 0 0 14px;
  color: #3d4658;
  font-size: 1.02rem;
}

.abd-prose p:last-child {
  margin-bottom: 0;
}

.abd-close {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.abd-call-aside {
  display: flex;
  align-items: flex-start;
}

.talk-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(10, 17, 40, 0.03), 0 8px 24px rgba(10, 17, 40, 0.04);
}

.talk-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.talk-field label {
  color: #0a1128;
  font-size: 0.88rem;
  font-weight: 600;
}

.talk-field input,
.talk-field select,
.talk-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #d5dae6;
  border-radius: 8px;
  background: #fff;
  color: #0a1128;
  font-family: inherit;
  font-size: 1rem;
}

.talk-field textarea {
  min-height: 112px;
  resize: vertical;
}

.talk-field input:focus,
.talk-field select:focus,
.talk-field textarea:focus {
  outline: 2px solid #0066ff;
  outline-offset: 2px;
  border-color: #0066ff;
}

.talk-note {
  margin: 4px 0 0;
  color: #5b6478;
  font-size: 0.95rem;
}

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

.talk-thanks {
  margin: 0;
  color: #0a1128;
  font-size: 0.98rem;
  font-weight: 600;
}

@media (min-width: 720px) {
  .talk-form {
    grid-template-columns: 1fr 1fr;
    padding: 28px;
  }

  .talk-field-full,
  .talk-note,
  .talk-actions,
  .talk-thanks {
    grid-column: 1 / -1;
  }

  .abd-close {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 28px;
  }
}


/* Local SEO — /seo/ */

.seo-page .sales-hero h1 {
  max-width: 22ch;
}

.seo-under {
  margin: 0 0 20px;
  max-width: 42rem;
  color: #3d4658;
  font-size: 1.05rem;
}

.seo-hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.seo-price {
  display: inline-block;
  margin: 0 0 24px;
  padding: 10px 14px;
  background: #e8f1ff;
  color: #0a1128;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  border-radius: 8px;
}

.seo-hero-note {
  margin: 14px 0 0;
  color: #5b6478;
  font-size: 0.95rem;
}

.seo-hero-mark {
  display: none;
}

.seo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 40rem;
}

.seo-list li {
  padding: 16px 18px 16px 42px;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  color: #3d4658;
  position: relative;
}

.seo-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 1.35em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0066ff;
}

.seo-month-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 40rem;
}

.seo-month-list li {
  padding: 16px 18px 16px 42px;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  color: #3d4658;
  position: relative;
}

.seo-month-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 1.35em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0066ff;
}

.seo-month-list strong {
  color: #0a1128;
}

.seo-prose {
  max-width: 40rem;
}

.seo-prose p {
  margin: 0 0 14px;
  color: #3d4658;
  font-size: 1.02rem;
}

.seo-prose p:last-child {
  margin-bottom: 0;
}

.seo-in-note {
  margin: 20px 0 0;
  max-width: 40rem;
  color: #3d4658;
  font-size: 1.02rem;
}

.seo-month-run {
  margin-top: 20px;
}

.seo-site-link {
  display: inline-block;
  margin-top: 4px;
  font-weight: 600;
}

.seo-close {
  display: grid;
  gap: 28px;
}

.seo-phone-aside {
  margin: 0 0 12px;
}

.seo-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(10, 17, 40, 0.03), 0 8px 24px rgba(10, 17, 40, 0.04);
}

.seo-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.seo-field label {
  color: #0a1128;
  font-size: 0.88rem;
  font-weight: 600;
}

.seo-field input,
.seo-field select,
.seo-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #d5dae6;
  border-radius: 8px;
  background: #fff;
  color: #0a1128;
  font-family: inherit;
  font-size: 1rem;
}

.seo-field textarea {
  min-height: 110px;
  resize: vertical;
}

.seo-field input:focus,
.seo-field select:focus,
.seo-field textarea:focus {
  outline: 2px solid #0066ff;
  outline-offset: 2px;
  border-color: #0066ff;
}

.seo-form-note {
  margin: 0;
  color: #5b6478;
  font-size: 0.92rem;
}

.seo-page .talk-thanks {
  margin: 0;
  color: #0a1128;
  font-size: 0.98rem;
  font-weight: 600;
}

#what,
#costs,
#already,
#included,
#give,
#month,
#never,
#who,
#site,
#talk {
  scroll-margin-top: 88px;
}

@media (min-width: 720px) {
  .seo-close {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: start;
    gap: 40px;
  }

  .seo-form {
    grid-template-columns: 1fr 1fr;
    padding: 28px;
  }

  .seo-field-full,
  .seo-form .btn {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .seo-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.6fr);
    align-items: center;
    gap: 48px;
  }

  .seo-hero-mark {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .seo-hero-mark img {
    width: 140px;
    height: 140px;
  }
}

/* Website refresh — /build/ */

.build-page .sales-hero-inner {
  max-width: none;
}

.build-page .sales-hero h1 {
  max-width: 24em;
}

.build-page .sales-lead {
  margin-bottom: 12px;
}

.build-hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.build-under {
  margin: 0 0 24px;
  max-width: 42rem;
  color: #3d4658;
  font-size: 1.05rem;
}

.build-hero-note {
  margin: 14px 0 0;
  color: #5b6478;
  font-size: 0.95rem;
}

.build-hero-mark {
  display: none;
}

.build-means {
  margin: 0 0 14px;
  max-width: 40rem;
  color: #0a1128;
  font-size: 1.02rem;
  font-weight: 600;
}

.build-blocks {
  display: grid;
  gap: 16px;
}

.build-block {
  padding: 24px 24px 22px;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(10, 17, 40, 0.03), 0 8px 24px rgba(10, 17, 40, 0.04);
}

.build-block h3 {
  margin: 0 0 10px;
  color: #0a1128;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.build-block p {
  margin: 0;
  color: #3d4658;
  font-size: 0.98rem;
}

.build-list,
.build-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 40rem;
}

.build-steps {
  margin: 0 0 20px;
  counter-reset: build-step;
}

.build-list li,
.build-steps li {
  padding: 16px 18px 16px 42px;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  color: #3d4658;
  position: relative;
}

.build-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 1.35em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0066ff;
}

.build-steps li {
  padding-left: 52px;
}

.build-steps li::before {
  content: counter(build-step);
  counter-increment: build-step;
  position: absolute;
  left: 14px;
  top: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e8f1ff;
  color: #0066ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.build-prose {
  max-width: 40rem;
}

.build-prose p {
  margin: 0 0 14px;
  color: #3d4658;
  font-size: 1.02rem;
}

.build-prose p:last-child {
  margin-bottom: 0;
}

.build-follow {
  margin-top: 20px;
}

.build-close-line {
  margin: 0;
  max-width: 40rem;
  color: #0a1128;
  font-size: 1.05rem;
  font-weight: 600;
}

.build-other-link {
  font-weight: 600;
}

.build-close {
  display: grid;
  gap: 28px;
}

.build-phone-aside {
  margin: 0 0 12px;
}

.build-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(10, 17, 40, 0.03), 0 8px 24px rgba(10, 17, 40, 0.04);
}

.build-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.build-field label {
  color: #0a1128;
  font-size: 0.88rem;
  font-weight: 600;
}

.build-field input,
.build-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #d5dae6;
  border-radius: 8px;
  background: #fff;
  color: #0a1128;
  font-family: inherit;
  font-size: 1rem;
}

.build-field textarea {
  min-height: 110px;
  resize: vertical;
}

.build-field input:focus,
.build-field textarea:focus {
  outline: 2px solid #0066ff;
  outline-offset: 2px;
  border-color: #0066ff;
}

.build-form-note {
  margin: 0;
  color: #5b6478;
  font-size: 0.92rem;
}

.build-page .talk-thanks {
  margin: 0;
  color: #0a1128;
  font-size: 0.98rem;
  font-weight: 600;
}

#shift,
#fine,
#refresh,
#ai,
#not,
#how,
#who,
#other,
#talk {
  scroll-margin-top: 88px;
}

@media (min-width: 720px) {
  .build-blocks {
    grid-template-columns: 1fr 1fr;
  }

  .build-close {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: start;
    gap: 40px;
  }

  .build-form {
    grid-template-columns: 1fr 1fr;
    padding: 28px;
  }

  .build-field-full,
  .build-form .btn,
  .build-form-note,
  .build-page .talk-thanks {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .build-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) 140px;
    align-items: center;
    gap: 32px;
  }

  .build-hero-mark {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .build-hero-mark img {
    width: 140px;
    height: 140px;
  }

  .build-blocks {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
  }
}


/* Rep recruit — /rep/ */

.rep-page .sales-hero h1 {
  max-width: 18ch;
}
.rep-page .sales-hero .rep-prose {
  margin: 0 0 28px;
}

.rep-page .sales-hero .hero-cta {
  margin-top: 0;
}


.rep-hero-mark {
  display: none;
}


.rep-lead {
  margin: 0 0 28px;
}

.rep-lead p {
  margin: 0 0 0.4em;
  font-size: 1.125rem;
  line-height: 1.55;
  color: #5c6578;
}

.rep-lead p:last-child {
  margin-bottom: 0;
}

.rep-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 40rem;
}

.rep-list li {
  padding: 16px 18px 16px 42px;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  color: #3d4658;
  position: relative;
}

.rep-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 1.35em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0066ff;
}

.rep-split {
  display: grid;
  gap: 16px;
}

.rep-split-col {
  padding: 24px 24px 22px;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(10, 17, 40, 0.03), 0 8px 24px rgba(10, 17, 40, 0.04);
}

.rep-split-col .sales-h {
  margin-bottom: 14px;
}

.rep-split-col p {
  margin: 0 0 10px;
  color: #3d4658;
  font-size: 1.02rem;
}

.rep-split-col p:last-child {
  margin-bottom: 0;
}

.rep-say {
  margin: 0;
  max-width: 40rem;
  padding: 24px 26px;
  background: #e8f1ff;
  border-left: 4px solid #0066ff;
  border-radius: 12px;
}

.rep-say p {
  margin: 0;
  color: #0a1128;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.rep-say + .rep-prose {
  margin-top: 20px;
}

.rep-prose {
  max-width: 40rem;
}

.rep-prose p {
  margin: 0 0 14px;
  color: #3d4658;
  font-size: 1.02rem;
}

.rep-prose p:last-child {
  margin-bottom: 0;
}

.rep-close {
  display: grid;
  gap: 28px;
}

.rep-phone-aside {
  margin: 0 0 12px;
}

.rep-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(10, 17, 40, 0.03), 0 8px 24px rgba(10, 17, 40, 0.04);
}

.rep-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rep-field label {
  color: #0a1128;
  font-size: 0.88rem;
  font-weight: 600;
}

.rep-field input,
.rep-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #d5dae6;
  border-radius: 8px;
  background: #fff;
  color: #0a1128;
  font-family: inherit;
  font-size: 1rem;
}

.rep-field textarea {
  min-height: 110px;
  resize: vertical;
}

.rep-field input:focus,
.rep-field textarea:focus {
  outline: 2px solid #0066ff;
  outline-offset: 2px;
  border-color: #0066ff;
}

.rep-page .talk-thanks {
  margin: 0;
  color: #0a1128;
  font-size: 0.98rem;
  font-weight: 600;
}

#shop,
#do,
#never,
#is,
#words,
#pay,
#talk {
  scroll-margin-top: 88px;
}

@media (min-width: 720px) {
  .rep-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
    align-items: start;
  }

  .rep-close {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: start;
    gap: 40px;
  }

  .rep-form {
    grid-template-columns: 1fr 1fr;
    padding: 28px;
  }

  .rep-field-full,
  .rep-form .btn,
  .rep-page .talk-thanks {
    grid-column: 1 / -1;
  }
}


@media (min-width: 900px) {
  .rep-hero-mark {
    display: none;
  }
}

/* About — /about/ */

.about-page .sales-hero-inner {
  max-width: 44rem;
}

.about-page .sales-hero h1 {
  max-width: 28ch;
}

.about-hold {
  margin: 1.25rem 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.about-hold:first-of-type {
  margin-top: 0.5rem;
}

.about-hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-hero-note {
  margin: 14px 0 0;
  color: #5b6478;
  font-size: 0.95rem;
}

.about-hero-mark {
  display: none;
}

.about-mvv {
  display: grid;
  gap: 16px;
}

.about-mvv-card {
  padding: 24px 24px 22px;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(10, 17, 40, 0.03), 0 8px 24px rgba(10, 17, 40, 0.04);
}

.about-label {
  margin: 0 0 10px;
  color: #0066ff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-mvv-card p {
  margin: 0;
  color: #3d4658;
  font-size: 1.02rem;
}

.about-values {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.about-values li {
  color: #3d4658;
  font-size: 1.02rem;
  padding-left: 18px;
  position: relative;
}

.about-values li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0066ff;
}

.about-prose {
  max-width: 40rem;
}

.about-prose p {
  margin: 0 0 14px;
  color: #3d4658;
  font-size: 1.02rem;
}

.about-prose p:last-child {
  margin-bottom: 0;
}

.about-list,
.about-run {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 40rem;
}

.about-list li,
.about-run li {
  padding: 16px 18px 16px 42px;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  color: #3d4658;
  position: relative;
}

.about-list li::before,
.about-run li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 1.35em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0066ff;
}

.about-run a {
  color: #0a1128;
  font-weight: 600;
}

.about-run a:hover {
  color: #0066ff;
}

.about-close {
  display: grid;
  gap: 28px;
}

.about-phone-aside {
  margin: 0 0 12px;
}

.about-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(10, 17, 40, 0.03), 0 8px 24px rgba(10, 17, 40, 0.04);
}

.about-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-field label {
  color: #0a1128;
  font-size: 0.88rem;
  font-weight: 600;
}

.about-field input,
.about-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #d5dae6;
  border-radius: 8px;
  background: #fff;
  color: #0a1128;
  font-family: inherit;
  font-size: 1rem;
}

.about-field textarea {
  min-height: 110px;
  resize: vertical;
}

.about-field input:focus,
.about-field textarea:focus {
  outline: 2px solid #0066ff;
  outline-offset: 2px;
  border-color: #0066ff;
}

.about-form-note {
  margin: 0;
  color: #5b6478;
  font-size: 0.92rem;
}

.about-page .talk-thanks {
  margin: 0;
  color: #0a1128;
  font-size: 0.98rem;
  font-weight: 600;
}

#mission,
#vision,
#values,
#who,
#run,
#talk {
  scroll-margin-top: 88px;
}

@media (min-width: 720px) {
  .about-mvv {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
  }

  .about-close {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: start;
    gap: 40px;
  }

  .about-form {
    grid-template-columns: 1fr 1fr;
    padding: 28px;
  }

  .about-field-full,
  .about-form .btn,
  .about-form-note,
  .about-page .talk-thanks {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .about-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.6fr);
    align-items: center;
    gap: 48px;
  }

  .about-hero-mark {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-hero-mark img {
    width: 140px;
    height: 140px;
  }
}


/* Public support — /support/ */

.support-page .sales-hero h1 {
  max-width: 18ch;
}

.support-page .sales-lead {
  margin-bottom: 16px;
}

.support-note {
  margin: 14px 0 0;
  color: #5b6478;
  font-size: 0.95rem;
}

.support-copy {
  max-width: 36rem;
  margin: 0 0 20px;
  color: #4b5568;
}

.support-copy p {
  margin: 0 0 10px;
}

.support-copy p:last-child {
  margin-bottom: 0;
}

.support-session {
  max-width: 440px;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(10, 17, 40, 0.03), 0 8px 24px rgba(10, 17, 40, 0.04);
}

.support-status {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f4f6f8;
  color: #6b7386;
  font-size: 0.82rem;
  font-weight: 600;
}

.support-session[data-support-state="connected"] .support-status {
  background: #e7f6ed;
  color: #16a34a;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.support-page #support-end {
  display: none;
}

.support-page .support-session[data-support-state="connected"] #support-end {
  display: inline-flex;
}

.support-page .support-session[data-support-state="connected"] #support-start {
  display: none;
}

.support-page #session,
.support-page #text {
  scroll-margin-top: 88px;
}


.support-join {
  margin: 16px 0 0;
  display: none;
}

.support-session[data-support-state="connected"] .support-join {
  display: block;
}

.support-code-label {
  margin: 0 0 4px;
  color: #6b7386;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.support-code {
  margin: 0 0 8px;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #111827;
}

.support-join-note {
  margin: 0 0 12px;
  color: #5b6478;
  font-size: 0.92rem;
}

/* Security week — /security/ */

.security-page .sales-hero h1 {
  max-width: 22ch;
}

.security-price {
  margin: 0 0 16px;
  max-width: 42rem;
  padding: 12px 16px;
  background: #e8f1ff;
  color: #0a1128;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.5;
  border-radius: 8px;
}

.security-page .seo-under {
  margin-bottom: 24px;
}

.security-page .seo-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%230a1128' stroke-width='1.6' d='M1.5 1.5 6 6l4.5-4.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.security-page .seo-form-note,
.security-page .talk-thanks {
  grid-column: 1 / -1;
}

.security-page #what,
.security-page #costs,
.security-page #week,
.security-page #give,
.security-page #not,
.security-page #who,
.security-page #talk {
  scroll-margin-top: 88px;
}

/* Portfolio — /portfolio/ and /portfolio/<slug>/ */

@media (min-width: 900px) {
  .nav-links {
    gap: 20px;
  }
}

.portfolio-page .sales-hero h1 {
  max-width: 22ch;
}

.portfolio-page .sales-lead {
  margin-bottom: 16px;
}

.pf-honest {
  margin: 0 0 18px;
  padding: 16px 18px;
  max-width: 42rem;
  background: #e8f1ff;
  border-left: 4px solid #0066ff;
  border-radius: 0 8px 8px 0;
  color: #0a1128;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.5;
}

.pf-under {
  margin: 0 0 24px;
  max-width: 42rem;
  color: #3d4658;
  font-size: 1.05rem;
}

.pf-back {
  margin: 0 0 16px;
}

.pf-back a {
  color: #5b6478;
  font-size: 0.92rem;
  font-weight: 600;
}

.pf-back a:hover {
  color: #0066ff;
}

.pf-style {
  margin: 0 0 24px;
  max-width: 40rem;
  color: #3d4658;
  font-size: 1.125rem;
  line-height: 1.5;
}

.pf-grid {
  display: grid;
  gap: 20px;
}

.pf-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(10, 17, 40, 0.03), 0 8px 24px rgba(10, 17, 40, 0.04);
  overflow: hidden;
}

.pf-card h3 {
  margin: 0 0 6px;
  padding: 0 20px;
  color: #0a1128;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pf-card-copy {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pf-card p {
  margin: 0 0 16px;
  color: #5b6478;
  font-size: 0.98rem;
  flex: 1;
}

.pf-card .btn {
  align-self: flex-start;
}

.browser-frame {
  background: #eef0f5;
  border: 1px solid #d5dae6;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.browser-frame-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 12px;
  background: #e4e8f0;
  border-bottom: 1px solid #d5dae6;
}

.browser-frame-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c5cad6;
}

.browser-frame-bar i:first-child {
  background: #f0b4b4;
}

.pf-thumb {
  position: relative;
  height: 188px;
  overflow: hidden;
  background: #f4f6f8;
}

.pf-thumb iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 1280px;
  height: 800px;
  border: 0;
  transform: scale(0.28);
  transform-origin: top left;
  pointer-events: none;
}

.pf-thumb-hem {
  min-height: 260px;
  height: 260px;
}
.pf-thumb-hem iframe {
  height: 1000px;
}

.pf-stage {
  display: grid;
  gap: 24px;
  align-items: start;
}

.pf-desktop {
  min-width: 0;
}

.pf-desktop .browser-frame {
  border-radius: 10px;
}

.pf-desktop-view {
  position: relative;
  height: 640px;
  overflow: auto;
  background: #fff;
}

.pf-desktop-view iframe {
  display: block;
  width: 100%;
  height: 640px;
  border: 0;
  background: #fff;
}

.phone-frame {
  width: 220px;
  justify-self: center;
  background: #0a1128;
  border: 10px solid #0a1128;
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(10, 17, 40, 0.18);
  overflow: hidden;
}

.phone-frame-notch {
  height: 14px;
  background: #0a1128;
}

.phone-frame-view {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: #fff;
  border-radius: 4px;
}

.phone-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 390px;
  height: 780px;
  border: 0;
  transform: scale(0.512);
  transform-origin: top left;
  background: #fff;
}

.pf-open-mock {
  margin: 12px 0 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.pf-feature {
  margin: 0 0 16px;
  color: #3d4658;
  font-size: 1.02rem;
}

.pf-feature:last-child {
  margin-bottom: 0;
}

.pf-feature strong {
  color: #0a1128;
}

.portfolio-page #grid,
.portfolio-page #close,
.portfolio-page #what,
.portfolio-page #on-it,
.portfolio-page #fits,
.portfolio-page #talk,
.portfolio-page #mock {
  scroll-margin-top: 88px;
}

@media (min-width: 720px) {
  .pf-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pf-stage {
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 28px;
    align-items: start;
  }

  .pf-desktop-view,
  .pf-desktop-view iframe {
    height: 680px;
  }
}

@media (min-width: 900px) {
  .pf-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pf-desktop-view,
  .pf-desktop-view iframe {
    height: 720px;
  }
}

@media (min-width: 1100px) {
  .pf-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.portfolio-page .seo-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%230a1128' stroke-width='1.6' d='M1.5 1.5 6 6l4.5-4.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.portfolio-page .seo-form-note,
.portfolio-page .talk-thanks {
  grid-column: 1 / -1;
}

.portfolio-page .sales-hero .pf-stage {
  margin-top: 32px;
}

.pf-live { height: 100%; overflow: hidden; }
.pf-live main { position: fixed; inset: 72px 0 0; margin: 0; padding: 0; }


/* Own AI — /own-ai/ */

.own-ai-page .sales-hero h1 {
  max-width: 18ch;
}

.own-ai-proof-list {
  margin-bottom: 20px;
}

.own-ai-stand-close {
  margin: 0;
  max-width: 40rem;
  color: #3d4658;
  font-size: 1.02rem;
  line-height: 1.55;
}

.own-ai-faq {
  display: grid;
  gap: 14px;
  max-width: 44rem;
}

.own-ai-faq-item {
  padding: 20px 22px 18px;
  background: #fff;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
}

.own-ai-faq-item h3 {
  margin: 0 0 8px;
  color: #0a1128;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.own-ai-faq-item p {
  margin: 0;
  color: #3d4658;
  font-size: 0.98rem;
  line-height: 1.55;
}

.own-ai-form .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.own-ai-page #double-loss,
.own-ai-page #after-picture,
.own-ai-page #who,
.own-ai-page #offer,
.own-ai-page #proof,
.own-ai-page #faq,
.own-ai-page #talk {
  scroll-margin-top: 88px;
}
