:root {
  --ink: #06111c;
  --navy: #091926;
  --panel: #0c2232;
  --line: rgba(141, 204, 230, 0.18);
  --muted: #8ea6b5;
  --paper: #f4f8f9;
  --white: #ffffff;
  --cyan: #5ac8fa;
  --mint: #469dc5;
  --violet: #a78bfa;
  --shadow: 0 28px 80px rgba(3, 13, 22, 0.3);
  --font-geist-sans: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 11px 15px;
  border-radius: 6px;
  background: #fff;
  color: #062033;
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 17, 28, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.05em;
}

.brand-logo {
  display: block;
  width: auto;
  height: 38px;
  max-width: min(220px, 52vw);
}

.brand-logo--footer {
  height: 34px;
  max-width: 200px;
}

.brand-logo--card {
  height: 32px;
  max-width: 180px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 36px);
  color: #b5c6d0;
  font-size: 0.84rem;
}

nav a,
footer a {
  transition: color 160ms ease;
}

nav a:hover,
nav a:focus-visible,
footer a:hover,
footer a:focus-visible {
  color: var(--cyan);
}

/* --- Header right actions (GoDaddy-style group) ---------- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 8px;
  color: #d8eef6;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.header-phone svg {
  color: var(--mint, #469dc5);
  flex-shrink: 0;
}

.header-phone:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.header-login {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 8px;
  color: rgba(210, 230, 240, 0.85);
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.header-login:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

/* Account dropdown (GoDaddy-style signed-in menu) */
.header-account {
  position: relative;
}

.header-account[data-state="loading"] .header-account-guest,
.header-account[data-state="loading"] .header-account-menu {
  visibility: hidden;
}

.header-account[data-state="guest"] .header-account-menu {
  display: none;
}

.header-account[data-state="signed-in"] .header-account-guest {
  display: none;
}

.header-account-menu {
  position: relative;
}

.header-account-trigger {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 8px;
  color: rgba(210, 230, 240, 0.92);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.header-account-trigger::-webkit-details-marker {
  display: none;
}

.header-account-trigger:hover,
.header-account-menu[open] .header-account-trigger {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.header-account-avatar {
  display: inline-flex;
  color: var(--mint, #469dc5);
}

.header-account-caret {
  transition: transform 0.15s ease;
}

.header-account-menu[open] .header-account-caret {
  transform: rotate(180deg);
}

.header-account-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 120;
  width: min(280px, calc(100vw - 24px));
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(70, 157, 197, 0.22);
  background: #071722;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.header-account-meta {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-account-display-name {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: #fff;
}

.header-account-customer,
.header-account-pin {
  margin: 0 0 4px;
  font-size: 0.78rem;
  color: rgba(210, 230, 240, 0.72);
}

.header-account-customer-id {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.header-account-pin-link {
  font-weight: 700;
  color: var(--mint, #469dc5);
}

.header-account-pin-link:hover {
  color: #fff;
}

.header-account-section {
  margin: 12px 0 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(210, 230, 240, 0.55);
}

.header-account-links {
  display: grid;
  gap: 2px;
}

.header-account-link {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(230, 244, 250, 0.92);
  transition: background 0.15s, color 0.15s;
}

.header-account-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.header-account-link--signout {
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  color: rgba(210, 230, 240, 0.78);
}

.header-account--mobile {
  flex: 1;
}

.header-account--mobile .header-account-guest {
  width: 100%;
  justify-content: center;
  border: 1px solid rgba(70, 157, 197, 0.3);
}

.header-account--mobile .header-account-menu {
  width: 100%;
}

.header-account--mobile .header-account-trigger {
  width: 100%;
  justify-content: center;
}

.header-account--mobile .header-account-panel {
  position: static;
  width: 100%;
  margin-top: 8px;
  box-shadow: none;
}

/* Cart icon */
.header-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: rgba(210, 230, 240, 0.75);
  transition: color 0.15s, background 0.15s;
}

.header-cart:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.header-cart-count {
  position: absolute;
  top: 4px;
  right: 3px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--mint, #469dc5);
  color: #06111c;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 16px;
  text-align: center;
}

/* Hide cart badge when count is 0 */
.header-cart-count:empty,
.header-cart-count[data-count="0"] {
  display: none;
}

/* Purpose: a native details disclosure provides a keyboard- and touch-safe
   mobile menu without client state, scripts, or a fragile hydration boundary. */
.mobile-nav {
  position: relative;
  display: none;
}

.mobile-nav summary {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid rgba(90, 200, 250, 0.28);
  border-radius: 999px;
  color: #ddecf3;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker { display: none; }

.mobile-nav summary:focus-visible {
  outline: 3px solid rgba(90, 200, 250, 0.72);
  outline-offset: 3px;
}

.mobile-nav summary i,
.mobile-nav summary i::before,
.mobile-nav summary i::after {
  display: block;
  width: 14px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease;
}

.mobile-nav summary i { position: relative; }
.mobile-nav summary i::before { position: absolute; top: -4px; }
.mobile-nav summary i::after { position: absolute; top: 4px; }
.mobile-nav[open] summary i { background: transparent; }
.mobile-nav[open] summary i::before { top: 0; transform: rotate(45deg); }
.mobile-nav[open] summary i::after { top: 0; transform: rotate(-45deg); }

.mobile-nav-panel {
  position: absolute;
  top: calc(100% + 13px);
  right: 0;
  width: min(320px, calc(100vw - 32px));
  padding: 12px;
  border: 1px solid rgba(125, 210, 239, 0.2);
  border-radius: 12px;
  background: rgba(5, 18, 29, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.mobile-nav-panel nav,
.mobile-nav-panel ul {
  display: grid;
  gap: 3px;
}

.mobile-nav-panel a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  border-radius: 7px;
  color: #dce9ef;
  font-size: 0.82rem;
  font-weight: 700;
}

.mobile-nav-panel a:hover,
.mobile-nav-panel a:focus-visible {
  background: rgba(90, 200, 250, 0.09);
  color: #fff;
}

.mobile-nav-panel .mobile-account-link {
  margin-top: 7px;
  background: var(--mint);
  color: #041918;
}

.hero {
  position: relative;
  display: grid;
  height: 100dvh;
  min-height: 640px;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 30% 55%, rgba(90, 200, 250, 0.08), transparent 35%),
    linear-gradient(145deg, #06111c 0%, #081827 56%, #092231 100%);
}

.hero::after {
  position: absolute;
  right: -14%;
  bottom: -42%;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(90, 200, 250, 0.07);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(90, 200, 250, 0.025), 0 0 0 160px rgba(90, 200, 250, 0.016);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(119, 197, 229, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 197, 229, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, black 46%, black 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 72px 48px 72px 7vw;
}

.eyebrow-pill,
.section-kicker {
  color: var(--mint);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(70, 157, 197, 0.25);
  border-radius: 999px;
  background: rgba(70, 157, 197, 0.06);
}

.eyebrow-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 16px var(--mint);
}

.hero h1 {
  max-width: 790px;
  margin: 28px 0 24px;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: clamp(3.4rem, 6.3vw, 6.6rem);
  font-weight: 550;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero h1 em {
  display: block;
  color: var(--cyan);
  font-style: normal;
}

.hero-copy > p {
  max-width: 670px;
  margin: 0;
  color: #a9bdc9;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 21px;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--mint);
  color: #fff;
  box-shadow: 0 14px 35px rgba(70, 157, 197, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #5ab2d6;
  color: #fff;
}

/* Curated page CTAs — keep label readable on light sections */
.mss-curated-actions .button-primary,
.mss-curated-actions .button-primary:hover,
.mss-curated-actions .button-primary:focus-visible {
  color: #fff;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  color: #e4eff4;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(90, 200, 250, 0.48);
  background: rgba(90, 200, 250, 0.07);
}

.assurance-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 38px;
  color: #819aaa;
  font-size: 0.76rem;
}

.assurance-row span::before {
  margin-right: 8px;
  color: var(--mint);
  content: "✓";
}

.operations-console {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  background: #06111c;
}

.console-topline {
  position: absolute;
  z-index: 4;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(6, 17, 28, 0.72);
  color: #90a8b6;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.console-topline b {
  color: var(--mint);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
}

.console-visual {
  position: relative;
  margin: 0;
  height: 100%;
  overflow: hidden;
  background: #06111c;
}

.console-visual::after {
  position: absolute;
  inset: 0;
  background:
    /* strong left fade — blends into the hero-copy background */
    linear-gradient(to right, rgba(6, 17, 28, 1) 0%, rgba(6, 17, 28, 0.7) 22%, transparent 52%),
    /* top fade — softens the head crop */
    linear-gradient(to bottom, rgba(6, 17, 28, 0.65) 0%, transparent 28%),
    /* bottom fade */
    linear-gradient(to top, rgba(3, 13, 21, 0.88) 0%, transparent 40%);
  content: "";
  pointer-events: none;
}

.console-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center 20%;
}

.console-visual.approachable-visual img {
  object-position: center top;
}

.console-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  left: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.console-visual figcaption span,
.console-visual figcaption b {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-visual figcaption span {
  color: var(--cyan);
}

.console-visual figcaption b {
  max-width: 190px;
  color: #f1e8df;
  font-weight: 500;
  text-align: right;
}

.console-core {
  position: relative;
  display: grid;
  min-height: 355px;
  place-items: center;
  background:
    radial-gradient(circle, rgba(70, 157, 197, 0.1), transparent 37%),
    linear-gradient(rgba(91, 190, 226, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 190, 226, 0.05) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
}

.core-orbit {
  position: absolute;
  border: 1px solid rgba(90, 200, 250, 0.18);
  border-radius: 50%;
}

.orbit-one {
  width: 245px;
  height: 245px;
}

.orbit-two {
  width: 155px;
  height: 155px;
  border-color: rgba(70, 157, 197, 0.28);
  box-shadow: 0 0 50px rgba(70, 157, 197, 0.07);
}

.core-center {
  position: relative;
  z-index: 3;
  display: grid;
  width: 88px;
  height: 88px;
  place-content: center;
  border: 1px solid rgba(90, 200, 250, 0.36);
  border-radius: 50%;
  background: #092234;
  text-align: center;
  box-shadow: 0 0 42px rgba(90, 200, 250, 0.18);
}

.core-center small {
  color: #8da8b8;
  font-size: 0.56rem;
  letter-spacing: 0.2em;
}

.core-center strong {
  margin-top: 3px;
  color: var(--cyan);
  font-family: var(--font-geist-mono), monospace;
  font-size: 1.12rem;
  letter-spacing: 0.08em;
}

.node {
  position: absolute;
  z-index: 4;
  padding: 6px 8px;
  border: 1px solid rgba(141, 208, 232, 0.16);
  border-radius: 4px;
  background: #071a27;
  color: #93aab8;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.53rem;
  letter-spacing: 0.12em;
}

.node-commerce { top: 64px; left: 50%; transform: translateX(-50%); }
.node-engine { right: 45px; top: 50%; transform: translateY(-50%); }
.node-monitor { bottom: 64px; left: 50%; transform: translateX(-50%); }
.node-reports { left: 44px; top: 50%; transform: translateY(-50%); }

.console-list {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 20px;
  display: flex;
  gap: 8px;
  pointer-events: none;
}

.console-list div {
  display: grid;
  gap: 3px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(6, 17, 28, 0.72);
  backdrop-filter: blur(10px);
}

.console-list div:last-child {
  border-color: rgba(70, 157, 197, 0.22);
}

.console-list span {
  color: #708a99;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.console-list b {
  color: var(--mint);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.7rem;
  font-weight: 600;
}

.proof-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  padding: 25px 7vw;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: #07141f;
}

.proof-strip p {
  margin: 0;
  color: #637f90;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.proof-strip div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9fb2bd;
  font-size: 0.76rem;
}

.proof-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(90, 200, 250, 0.4);
}

.section {
  padding: 115px 7vw;
}

.services-section {
  color: #0c2130;
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2,
.operations-intro h2,
.ai-concierge-copy h2,
.migration-section h2,
.final-cta h2 {
  max-width: 800px;
  margin: 12px 0 0;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: clamp(2.45rem, 4.6vw, 4.8rem);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-heading > p {
  margin: 0;
  color: #59717f;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #cad8de;
  border-left: 1px solid #cad8de;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 450px;
  flex-direction: column;
  padding: 28px 25px 26px;
  border-right: 1px solid #cad8de;
  border-bottom: 1px solid #cad8de;
  background: rgba(255, 255, 255, 0.46);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 20px 50px rgba(16, 45, 62, 0.1);
}

.service-card > span {
  color: #78909d;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.service-symbol {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 50px 0 44px;
  border: 1px solid rgba(21, 69, 94, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 10px 24px rgba(16, 45, 62, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover .service-symbol {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 28px rgba(16, 45, 62, 0.1);
}

.service-symbol svg {
  width: 40px;
  height: 40px;
}

.service-card.cyan .service-symbol { color: #1ba9dd; background: rgba(27, 169, 221, 0.08); }
.service-card.mint .service-symbol { color: #10a993; background: rgba(16, 169, 147, 0.08); }
.service-card.blue .service-symbol { color: #4677d5; background: rgba(70, 119, 213, 0.08); }
.service-card.violet .service-symbol { color: #876bd0; background: rgba(135, 107, 208, 0.08); }

.service-card h3 {
  margin: 0 0 14px;
  font-size: 1.25rem;
}

.service-card p {
  margin: 0;
  color: #607784;
  font-size: 0.88rem;
  line-height: 1.7;
}

.service-card a {
  /* Purpose: keep longer plain-English service copy clear of the CTA at
     narrower desktop widths instead of relying on absolute positioning. */
  margin-top: auto;
  padding-top: 24px;
  color: #173f56;
  font-size: 0.72rem;
  font-weight: 800;
}

.service-card a span {
  margin-left: 8px;
  color: #1ba9dd;
}

/* Purpose: make the target customer visible through an authentic business
   story while keeping infrastructure imagery as supporting evidence. */
.owner-story-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(52px, 8vw, 132px);
  align-items: center;
  padding: 110px 7vw;
  background: #eaf2f3;
  color: var(--ink);
}

.owner-story-photo {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #c8dadd;
  box-shadow: 0 36px 90px rgba(8, 31, 43, 0.16);
}

.owner-story-photo::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.owner-story-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 42% center;
}

.owner-story-copy h2 {
  max-width: 780px;
  margin: 20px 0 24px;
  font-size: clamp(2.8rem, 4.8vw, 5.2rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.owner-story-copy > p {
  max-width: 660px;
  margin: 0 0 30px;
  color: #526c78;
  font-size: 1rem;
  line-height: 1.75;
}

.owner-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 34px;
}

.owner-types span {
  padding: 13px 15px;
  border: 1px solid rgba(10, 49, 68, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  color: #294c5c;
  font-size: 0.72rem;
  font-weight: 750;
}

.owner-story-copy .button-secondary {
  border-color: rgba(10, 49, 68, 0.25);
  color: #0b3144;
}

.reseller-products-section {
  color: #0c2130;
  background:
    radial-gradient(circle at 90% 5%, rgba(70, 157, 197, 0.12), transparent 32%),
    #f2f8fa;
}

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

.reseller-product-card {
  min-width: 0;
  min-height: 310px;
  padding: 30px;
  border: 1px solid #c9dbe2;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(15, 53, 72, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.reseller-product-card:hover {
  transform: translateY(-4px);
  border-color: #7fc7d6;
  box-shadow: 0 22px 52px rgba(15, 53, 72, 0.11);
}

/* MSS custom product icon — sits at the top of the card above the widget. */
.mss-product-icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: #469dc5; /* set but overridden by two-tone SVG inline colors */
}

.mss-product-icon svg {
  display: block;
  width: 48px;
  height: 48px;
  transition: opacity 200ms ease;
}

.reseller-product-card:hover .mss-product-icon svg {
  opacity: 0.8;
}

/* The provider widget remains the commerce owner; these rules align its
   product and cart controls with the MSS design system. When we supply our
   own icon above the widget, the widget becomes a plain flex column. */
.reseller-product-card .widget.rstore-product {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}

/* Hide the plugin's icon slot — our .mss-product-icon replaces it. */
.reseller-product-card .rstore-product-icons {
  display: none;
}

.reseller-product-card .rstore-product-header {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
}

.reseller-product-card .widget-title {
  margin: 0 0 18px;
  color: #0c2130;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.16;
}

.reseller-product-card .rstore-price {
  margin: 0 0 22px;
  color: #476674;
  font-size: 0.9rem;
}

.reseller-product-card .rstore-add-to-cart-form {
  margin-top: auto;
}

.reseller-product-card .rstore-add-to-cart {
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: #0b3144;
  color: #fff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.reseller-product-card .rstore-add-to-cart:hover,
.reseller-product-card .rstore-add-to-cart:focus-visible {
  background: #0e5068;
}

.reseller-product-card .rstore-cart {
  margin-top: 10px;
  font-size: 0.75rem;
}

.product-trust-row {
  display: flex;
  justify-content: center;
  gap: 12px 34px;
  flex-wrap: wrap;
  margin-top: 32px;
  color: #55717e;
  font-size: 0.72rem;
  font-weight: 750;
}

.product-trust-row span::before {
  content: "✓";
  margin-right: 8px;
  color: #0c9a87;
}

.product-fallback-section {
  background: #f5f9fa;
  color: var(--ink);
}

.product-family-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 1120px;
}

.product-family-pills span {
  padding: 17px 18px;
  border: 1px solid #d5e3e7;
  border-radius: 8px;
  background: #fff;
  color: #294d5d;
  font-size: 0.78rem;
  font-weight: 750;
}

.product-fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.product-fallback-actions .button-secondary {
  border-color: rgba(10, 49, 68, 0.22);
  color: #0b3144;
}

/* Purpose: broaden the owner-led retail story with project-owned imagery while
   keeping all price and availability facts inside the authorized catalog. */
.retail-stories-section { padding: 110px 7vw 125px; background: #dfeaec; color: var(--ink); }
.retail-stories-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr); gap: 30px 90px; align-items: end; margin-bottom: 44px; }
.retail-stories-heading .section-kicker { grid-column: 1 / -1; }
.retail-stories-heading h2 { margin: 0; font-size: clamp(2.6rem, 5vw, 5rem); line-height: 0.98; letter-spacing: -0.055em; }
.retail-stories-heading p { margin: 0; color: #52707b; line-height: 1.75; }
.retail-story-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.retail-story-card { overflow: hidden; border: 1px solid rgba(10, 49, 68, 0.12); border-radius: 18px; background: #fff; box-shadow: 0 24px 60px rgba(8, 31, 43, 0.09); }
.retail-story-card figure { height: clamp(270px, 31vw, 470px); margin: 0; overflow: hidden; background: #c7d7db; }
.retail-story-card img { width: 100%; height: 100%; object-fit: cover; }
.retail-story-card:first-child img { object-position: 58% center; }
.retail-story-card:last-child img { object-position: 38% center; }
.retail-story-card > div { padding: 28px 30px 32px; }
.retail-story-card > div > span { color: #178f9f; font-family: var(--font-mono); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.14em; }
.retail-story-card h3 { max-width: 560px; margin: 16px 0 24px; font-size: clamp(1.45rem, 2.5vw, 2.25rem); line-height: 1.1; letter-spacing: -0.025em; }
.retail-story-card a { display: inline-flex; gap: 9px; color: #0b5062; font-size: 0.76rem; font-weight: 800; }

.operations-section {
  display: grid;
  grid-template-columns: 1fr minmax(0, 1fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  padding: 100px 7vw;
  background:
    linear-gradient(rgba(105, 184, 216, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 184, 216, 0.045) 1px, transparent 1px),
    #07141f;
  background-size: 54px 54px;
}

.operations-intro p {
  max-width: 590px;
  margin: 28px 0;
  color: #93aab7;
  line-height: 1.75;
}

.operations-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(90, 200, 250, 0.16);
  border-radius: 12px;
  background: #051019;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  align-self: stretch;
  min-height: 380px;
}

.operations-photo::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

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

.approval-note {
  display: flex;
  max-width: 520px;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid rgba(70, 157, 197, 0.18);
  border-radius: 8px;
  background: rgba(70, 157, 197, 0.045);
}

.approval-note > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(70, 157, 197, 0.14);
  color: var(--mint);
}

.approval-note p {
  display: grid;
  gap: 5px;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
}

.approval-note strong {
  color: #d6e6ec;
}

.operating-loop {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.operating-loop li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.operating-loop > li > b {
  color: var(--cyan);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.7rem;
  font-weight: 500;
}

.operating-loop h3 {
  margin: 0 0 7px;
  font-size: 1.02rem;
}

.operating-loop p {
  margin: 0;
  color: #7f98a7;
  font-size: 0.82rem;
  line-height: 1.55;
}

/* Purpose: approved customer proof receives a premium editorial treatment;
   the entire section is absent until consent-gated WordPress records exist. */
.testimonials-section {
  padding: 120px 7vw;
  background:
    radial-gradient(circle at 18% 8%, rgba(70, 157, 197, 0.09), transparent 30%),
    #edf4f5;
  color: var(--ink);
}

.testimonial-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 70px;
  align-items: end;
  max-width: 1480px;
  margin: 0 auto 58px;
}

.testimonial-heading h2 {
  max-width: 940px;
  margin: 20px 0 0;
  font-size: clamp(3rem, 5.2vw, 5.6rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.testimonial-heading > p {
  max-width: 510px;
  margin: 0;
  color: #54707c;
  line-height: 1.75;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1480px;
  margin: 0 auto;
}

.testimonial-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  margin: 0;
  padding: 34px;
  border: 1px solid rgba(8, 48, 66, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 55px rgba(8, 31, 43, 0.07);
}

.testimonial-quote-mark {
  color: #20ac9b;
  font-family: Georgia, serif;
  font-size: 4.8rem;
  line-height: 0.75;
}

.testimonial-card blockquote {
  margin: 30px 0 42px;
  color: #15384a;
  font-size: clamp(1.18rem, 1.6vw, 1.48rem);
  line-height: 1.55;
}

.testimonial-card figcaption {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: auto;
}

.testimonial-card figcaption > span {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #0b3144;
  color: #74e0d4;
  font-weight: 800;
}

.testimonial-card figcaption div {
  display: grid;
  gap: 4px;
}

.testimonial-card figcaption strong {
  color: #0d2d3d;
  font-size: 0.9rem;
}

.testimonial-card figcaption small {
  color: #637b86;
  font-size: 0.72rem;
  line-height: 1.4;
}

.ai-concierge-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
  padding: 130px 7vw;
  background:
    radial-gradient(circle at 76% 48%, rgba(90, 200, 250, 0.1), transparent 31%),
    linear-gradient(145deg, #0a1c29, #07131e 70%);
}

.ai-concierge-copy > p {
  max-width: 620px;
  margin: 26px 0 34px;
  color: #9eb3bf;
  font-size: 1rem;
  line-height: 1.75;
}

.ai-capabilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.ai-capabilities article {
  display: grid;
  min-height: 130px;
  gap: 24px;
  align-content: space-between;
  padding: 20px;
  background: #0a1b28;
}

.ai-capabilities b {
  color: var(--cyan);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.ai-capabilities span {
  color: #dbe8ed;
  font-size: 0.82rem;
  line-height: 1.45;
}

.chat-workflow-preview {
  overflow: hidden;
  border: 1px solid rgba(107, 205, 236, 0.22);
  border-radius: 18px;
  background: #f7fbfc;
  color: var(--ink);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.32);
}

.chat-preview-header,
.chat-preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  color: #78909d;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.6rem;
  letter-spacing: 0.09em;
}

.chat-preview-header {
  border-bottom: 1px solid #dce8ec;
}

.chat-preview-header span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.chat-preview-header i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px rgba(70, 157, 197, 0.7);
}

.chat-preview-header b {
  color: #118b81;
}

.chat-preview-body {
  display: grid;
  gap: 18px;
  min-height: 390px;
  align-content: center;
  padding: clamp(26px, 5vw, 50px);
  background:
    linear-gradient(rgba(20, 107, 130, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 107, 130, 0.035) 1px, transparent 1px),
    #f6fafb;
  background-size: 34px 34px;
}

.chat-bubble {
  max-width: 88%;
  padding: 15px 17px;
  border-radius: 13px;
  font-size: 0.84rem;
  line-height: 1.6;
}

.user-bubble {
  justify-self: end;
  border-bottom-right-radius: 4px;
  background: #0d2737;
  color: #edf6f8;
}

.assistant-bubble {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  border: 1px solid #d8e5e9;
  border-bottom-left-radius: 4px;
  background: #fff;
}

.assistant-bubble > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #d7f7f2;
  color: #08796f;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
  font-weight: 800;
}

.assistant-bubble p {
  margin: 0;
}

.handoff-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 16px;
  border: 1px solid rgba(14, 133, 120, 0.2);
  border-radius: 8px;
  background: #e8faf7;
}

.handoff-card div {
  display: grid;
  gap: 4px;
}

.handoff-card small {
  color: #168e83;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.52rem;
  letter-spacing: 0.1em;
}

.handoff-card strong {
  font-size: 0.78rem;
}

.handoff-card > span {
  color: #53707e;
  font-size: 0.68rem;
}

.chat-preview-footer {
  border-top: 1px solid #dce8ec;
  justify-content: flex-end;
}

.client-center {
  color: #0c2130;
  background: #edf4f6;
}

.compact-heading {
  margin-bottom: 45px;
}

.login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.login-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 35px;
  border-radius: 14px;
}

.product-card {
  background: #0c2130;
  color: #fff;
}

.product-card::after,
.managed-card::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(90, 200, 250, 0.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 45px rgba(90, 200, 250, 0.04), 0 0 0 90px rgba(90, 200, 250, 0.025);
}

.managed-card {
  border: 1px solid rgba(16, 90, 101, 0.2);
  background: #d9f8f2;
}

.managed-card::after {
  border-color: rgba(14, 133, 120, 0.17);
  box-shadow: 0 0 0 45px rgba(14, 133, 120, 0.035), 0 0 0 90px rgba(14, 133, 120, 0.02);
}

.login-card-label {
  color: #7293a5;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.managed-card .login-card-label {
  color: #4a847e;
}

.login-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 36px 0 28px;
  place-items: center;
  border: 1px solid rgba(90, 200, 250, 0.32);
  border-radius: 10px;
  color: var(--cyan);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.9rem;
  font-weight: 800;
}

.managed-card .login-icon {
  border-color: rgba(12, 117, 104, 0.26);
  color: #0d8e7e;
}

.login-card h3 {
  margin: 0 0 14px;
  font-size: 1.6rem;
  letter-spacing: -0.035em;
}

.login-card p {
  max-width: 570px;
  margin: 0 0 32px;
  color: #8fa8b5;
  font-size: 0.88rem;
  line-height: 1.7;
}

.managed-card p {
  color: #49746f;
}

.login-card .button {
  position: relative;
  z-index: 2;
}

.light-button {
  border-color: rgba(255, 255, 255, 0.22);
}

.migration-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
  padding: 120px 7vw;
  color: #0c2130;
  background: #fff;
}

.migration-section > div:first-child > p {
  max-width: 600px;
  margin: 28px 0 0;
  color: #607986;
  line-height: 1.75;
}

.migration-path {
  border-top: 1px solid #ccd9df;
}

.migration-path article {
  display: grid;
  grid-template-columns: 65px 0.9fr 1.1fr;
  gap: 25px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #ccd9df;
}

.migration-path b {
  color: #139988;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.migration-path h3,
.migration-path p {
  margin: 0;
}

.migration-path h3 {
  font-size: 1rem;
}

.migration-path p {
  color: #687f8b;
  font-size: 0.8rem;
  line-height: 1.55;
}

.final-cta {
  display: flex;
  gap: 55px;
  align-items: center;
  justify-content: space-between;
  padding: 90px 7vw;
  background:
    radial-gradient(circle at 82% 40%, rgba(70, 157, 197, 0.13), transparent 25%),
    #0a1d2b;
}

.final-cta h2 {
  max-width: 730px;
  font-size: clamp(2.4rem, 4.2vw, 4.4rem);
}

.final-cta p {
  margin: 22px 0 0;
  color: #8fa8b5;
}

.final-cta .button {
  flex: 0 0 auto;
}

.site-footer {
  display: block;
  padding: 76px 7vw 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 12% 12%, rgba(90, 200, 250, 0.07), transparent 28%),
    #04101a;
  color: #8ba1ae;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(150px, 0.65fr));
  gap: clamp(38px, 5vw, 88px);
  width: min(100%, 1480px);
  margin: 0 auto;
  padding-bottom: 64px;
}

.footer-brand {
  color: #fff;
}

.footer-intro p {
  max-width: 420px;
  margin: 28px 0 24px;
  color: #91a8b5;
  font-size: 0.9rem;
  line-height: 1.75;
}

.footer-assurance {
  display: inline-flex;
  padding: 9px 12px;
  border: 1px solid rgba(70, 157, 197, 0.2);
  border-radius: 999px;
  color: #79d8cc;
  font-size: 0.68rem;
  font-weight: 700;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 15px;
}

.footer-column h2 {
  margin: 2px 0 11px;
  color: #f4f8f9;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a {
  color: #8ba1ae;
  font-size: 0.82rem;
  line-height: 1.4;
}

.footer-bottom {
  display: flex;
  width: min(100%, 1480px);
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #607986;
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
  padding-left: 142px;
}


@media (max-width: 1080px) {
  .site-header > .desktop-nav {
    display: none;
  }

  .mobile-nav { display: block; }

  .hero {
    height: auto;
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 80px 6vw 48px;
  }

  .operations-console {
    width: 100%;
    min-height: 360px;
  }

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

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

  .product-family-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operations-section,
  .ai-concierge-section,
  .owner-story-section,
  .migration-section,
  .retail-stories-heading,
  .testimonial-heading {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    padding: 0 20px;
  }

  .header-login {
    display: none;
  }

  .site-header { gap: 12px; }
  .brand-logo { height: 32px; max-width: 46vw; }

  .section,
  .owner-story-section,
  .retail-stories-section,
  .operations-section,
  .ai-concierge-section,
  .testimonials-section,
  .migration-section,
  .final-cta {
    padding-right: 22px;
    padding-left: 22px;
  }

  .hero {
    height: auto;
    min-height: auto;
    gap: 0;
  }

  .hero-copy {
    padding: 48px 22px 40px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  .assurance-row {
    display: grid;
  }

  .retail-story-grid { grid-template-columns: 1fr; }
  .retail-story-card figure { height: 280px; }
  .retail-story-card > div { padding: 24px; }

  .console-core {
    min-height: 300px;
  }

  .console-visual img {
    min-height: 340px;
  }

  .console-list {
    flex-wrap: wrap;
    right: 12px;
    bottom: 12px;
    gap: 6px;
  }

  .console-list div {
    grid-template-columns: 1fr auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .proof-strip {
    display: none;
  }

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

  .section-heading h2,
  .owner-story-copy h2,
  .operations-intro h2,
  .ai-concierge-copy h2,
  .testimonial-heading h2,
  .migration-section h2,
  .final-cta h2 {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
  }

  .service-grid,
  .reseller-product-grid,
  .testimonial-grid,
  .product-family-pills,
  .login-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 380px;
  }

  .owner-story-section {
    gap: 42px;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .owner-story-photo,
  .owner-story-photo img {
    min-height: 340px;
  }

  .owner-types {
    grid-template-columns: 1fr;
  }

  .operations-section {
    gap: 60px;
  }

  .operations-photo {
    min-height: 260px;
    align-self: auto;
  }

  .testimonials-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .testimonial-heading {
    gap: 24px;
    margin-bottom: 38px;
  }

  .testimonial-card {
    min-height: 340px;
    padding: 28px;
  }

  .ai-concierge-section {
    gap: 55px;
  }

  .ai-capabilities {
    grid-template-columns: 1fr;
  }

  .handoff-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .login-card {
    min-height: 430px;
    padding: 28px;
  }

  .migration-path article {
    grid-template-columns: 50px 1fr;
  }

  .migration-path article p {
    grid-column: 2;
  }

  .final-cta {
    display: grid;
  }

  .final-cta .button {
    justify-self: start;
  }

  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .footer-intro { grid-column: 1 / -1; }
}

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

  * {
    transition: none !important;
  }
}

/* WordPress emits menu lists and plugin content through standard templates. */
nav ul,
.site-footer ul {
  display: flex;
  gap: inherit;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wp-content-shell {
  min-height: 65vh;
  padding: clamp(64px, 8vw, 120px) 7vw;
  background: var(--paper);
  color: var(--ink);
}

.wp-content-shell > article {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.wp-content-shell h1 {
  margin-top: 0;
  font-family: var(--font-geist-sans);
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  letter-spacing: -0.055em;
}

.wp-content-shell a {
  color: #087f8c;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.mss-empty-state,
.mss-content-list {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.mss-empty-state {
  display: grid;
  justify-items: start;
  min-height: 48vh;
  align-content: center;
}

.mss-empty-state > p {
  max-width: 700px;
  color: #516d79;
  font-size: 1.08rem;
  line-height: 1.75;
}

.mss-empty-state.compact {
  min-height: 0;
  padding: 42px 0;
}

.mss-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.wp-content-shell .mss-empty-actions a,
.wp-content-shell .mss-content-card a {
  text-decoration: none;
}

.mss-search-form {
  max-width: 760px;
  margin: 28px 0 44px;
}

.mss-search-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}

.mss-search-form > div {
  display: flex;
  gap: 10px;
}

.mss-search-form input {
  min-width: 0;
  flex: 1;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid #9ab4be;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

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

.mss-content-card {
  padding: 28px;
  border: 1px solid #d4e0e5;
  border-radius: 16px;
  background: #fff;
}

.mss-content-card h2 {
  margin-top: 0;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.mss-content-card p,
.mss-archive-description {
  color: #516d79;
  line-height: 1.7;
}

.mss-curated-page {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.mss-curated-hero {
  display: grid;
  max-width: 900px;
  justify-items: start;
  padding-bottom: clamp(44px, 7vw, 80px);
}

.mss-curated-hero > p {
  max-width: 820px;
  color: #516d79;
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

.mss-curated-hero > strong {
  display: inline-flex;
  margin-top: 14px;
  padding: 12px 16px;
  border-left: 3px solid #16a693;
  background: #e5f5f2;
  color: #0b4d4b;
  line-height: 1.55;
}

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

.mss-curated-grid section {
  padding: 30px;
  border: 1px solid #d4e0e5;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(16, 52, 69, 0.06);
}

.mss-curated-grid h2 {
  margin: 0 0 14px;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}

.mss-curated-grid p,
.mss-curated-grid li {
  color: #516d79;
  line-height: 1.65;
}

.mss-curated-grid ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding-left: 20px;
}

.mss-curated-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.wp-content-shell .mss-curated-actions a {
  text-decoration: none;
}

.mss-live-catalog {
  margin-top: clamp(48px, 7vw, 84px);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid #cce0e5;
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 4%, rgba(70, 157, 197, 0.13), transparent 32%),
    #edf6f8;
}

.mss-live-catalog > h2 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.045em;
}

.mss-live-catalog > p {
  max-width: 760px;
  margin-bottom: 30px;
  color: #516d79;
  line-height: 1.7;
}

.mss-domain-search {
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid #c9dbe2;
  border-radius: 16px;
  background: #fff;
}

@media (max-width: 820px) {
  .site-header nav {
    display: none;
  }

  .site-footer { padding: 58px 22px 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; padding-bottom: 46px; }
  .footer-intro { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom p { padding-left: 0; padding-bottom: 54px; }

  .site-footer ul {
    flex-wrap: wrap;
  }

  .mss-content-grid {
    grid-template-columns: 1fr;
  }

  .mss-curated-grid {
    grid-template-columns: 1fr;
  }

  .mss-search-form > div {
    align-items: stretch;
    flex-direction: column;
  }
}

/* =============================================================================
   MEGA MENU — desktop + mobile
   ============================================================================= */

/* --- Header layout --------------------------------------------------------- */

/* Bump z-index so the mega panel overlays page content */
.site-header { z-index: 200; }

.desktop-nav {
  flex: 1;
  margin-left: clamp(20px, 4vw, 48px);
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu > li > a,
.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: color .18s, background .18s;
  white-space: nowrap;
  letter-spacing: .01em;
}

.primary-menu > li > a:hover,
.mega-trigger:hover,
.mega-trigger[aria-expanded="true"] {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.caret {
  flex-shrink: 0;
  transition: transform .22s;
}

.mega-trigger[aria-expanded="true"] .caret {
  transform: rotate(180deg);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  margin-left: 8px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: #0a1628;
  background: #4aeaae;
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s, opacity .18s;
}

.header-cta:hover {
  background: #6af3be;
}

/* --- Mega panel ------------------------------------------------------------ */
.has-mega-menu {
  position: static;
}

.mega-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: min(980px, 96vw);
  background: #0b1a2e;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  box-shadow: 0 28px 72px rgba(0,0,0,.50);
  padding: 0;
  overflow: hidden;
  animation: megaFadeIn .18s ease;
}

@keyframes megaFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Split layout: link groups left | featured panel right ───────────────── */
.mega-inner--split {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 0;
  min-width: 0;
}

/* Area containing all link group columns */
.mega-links-area {
  display: grid;
  grid-template-columns: repeat(var(--group-count, 2), 1fr);
  gap: 0;
  padding: 20px 0 10px;
  border-right: 1px solid rgba(255,255,255,.08);
}

/* Individual group column */
.mega-group {
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.06);
  text-align: left;
}

.mega-group:last-of-type {
  border-right: none;
}

/* "All X options" row spans full width of the links area */
.mega-all-row {
  grid-column: 1 / -1;
  padding: 12px 20px 8px;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 8px;
  text-align: left;
}

/* Section kicker above each group */
.mega-section-kicker {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: rgba(255,255,255,.30);
  margin: 0 0 10px;
  text-align: left;
}

/* --- Product list ---------------------------------------------------------- */
.mega-product-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.mega-product-item a {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .14s;
  line-height: 1;
  text-align: left;
  width: 100%;
}

.mega-product-item a:hover {
  background: rgba(255,255,255,.055);
}

/* Icon badge */
.mega-item-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(70,157,197,.13);
  color: var(--mint);
  margin-top: 1px;
}

.mega-product-item a:hover .mega-item-icon {
  background: rgba(70,157,197,.24);
}

/* Text block (label + desc) */
.mega-item-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mega-item-label {
  font-size: .845rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  line-height: 1.25;
}

.mega-product-item a:hover .mega-item-label {
  color: #fff;
}

.mega-item-desc {
  font-size: .74rem;
  color: rgba(255,255,255,.42);
  line-height: 1.45;
}

/* Keep legacy name/desc classes for backward compat */
.mega-svc-name { display: block; font-weight: 600; color: rgba(255,255,255,.88); font-size: .845rem; }
.mega-svc-desc { display: block; font-size: .725rem; color: rgba(255,255,255,.38); margin-top: 2px; line-height: 1.4; }

/* "All X options" arrow link */
.mega-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--mint);
  text-decoration: none;
  transition: opacity .14s;
}

.mega-all-link:hover { opacity: .72; }

/* --- Featured right panel -------------------------------------------------- */
.mega-featured-panel {
  display: flex;
  flex-direction: column;
  background: rgba(70,157,197,.05);
  border-radius: 0 14px 14px 0;
  overflow: hidden;
}

/* Image sits at top of panel, full-width */
.mega-featured-image {
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  background: #071929;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.mega-featured-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .3s ease;
}

.mega-featured-panel:hover .mega-featured-image img {
  transform: scale(1.03);
}

/* Text block below image */
.mega-featured-text {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mega-featured-eyebrow {
  font-size: .60rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--mint);
  margin: 0;
}

.mega-featured-heading {
  font-size: .875rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin: 0;
}

.mega-featured-body {
  font-size: .73rem;
  color: rgba(255,255,255,.45);
  line-height: 1.55;
  margin: 0;
}

.mega-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
  font-size: .775rem;
  font-weight: 600;
  color: var(--mint);
  text-decoration: none;
  transition: opacity .14s;
}

.mega-featured-cta:hover { opacity: .72; }

/* Hide legacy column elements (kept in markup for mobile nav compat) */
.mega-col { display: none; }

/* --- Mobile nav overrides -------------------------------------------------- */
.mobile-nav-section {
  margin-bottom: 20px;
}

.mobile-nav-section > strong {
  display: block;
  font-size: .70rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.40);
  margin-bottom: 8px;
}

.mobile-nav-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* --- Responsive: hide desktop mega on small screens ----------------------- */
@media (max-width: 820px) {
  .desktop-nav { display: none; }
  .header-cta  { display: none; }
  .mega-panel  { display: none !important; }
}

@media (min-width: 821px) {
  .mobile-nav { display: none; }
}

/* Tighten mega to 4 cols below 1024px */
@media (max-width: 1100px) and (min-width: 821px) {
  .mega-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .mega-col--services {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .mega-col--services .mega-col-head {
    grid-column: span 2;
  }
}

/* ─── Entrance animations ─────────────────────────────────────────────────── */
/*
 * data-animate="up"    – rises from below
 * data-animate="left"  – slides in from the left
 * data-animate="right" – slides in from the right
 * data-animate="fade"  – opacity only
 * Stagger via inline style="transition-delay: .Xs"
 */

@media (prefers-reduced-motion: no-preference) {
  [data-animate] {
    opacity: 0;
    transition:
      opacity   0.72s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }

  [data-animate="up"]    { transform: translateY(30px); }
  [data-animate="left"]  { transform: translateX(-30px); }
  [data-animate="right"] { transform: translateX(30px); }
  [data-animate="fade"]  { /* opacity only */ }

  [data-animate].is-visible {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/* Always-visible fallback for reduced-motion */
@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; }
}

/* ─── My Account bridge page ─────────────────────────────────────────────── */
.account-bridge {
  min-height: calc(100vh - 80px);
  padding: 80px 7vw 60px;
  background:
    linear-gradient(rgba(70,157,197,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70,157,197,.04) 1px, transparent 1px),
    var(--bg-deep);
  background-size: 54px 54px;
}

.account-bridge-inner {
  display: grid;
  grid-template-columns: 1fr minmax(0, 420px);
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto 80px;
}

/* Left copy */
.account-bridge-copy h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 14px 0 20px;
}

.account-bridge-copy > p {
  color: rgba(210,230,240,.65);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}

.account-bridge-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.account-bridge-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .875rem;
  color: rgba(210,230,240,.65);
  line-height: 1.5;
}

.account-bridge-list li svg {
  flex-shrink: 0;
  color: var(--mint);
  margin-top: 2px;
}

.account-bridge-list li strong {
  color: rgba(255,255,255,.88);
  font-weight: 600;
}

.account-bridge-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(70,157,197,.2);
  background: rgba(70,157,197,.05);
  font-size: .78rem;
  color: rgba(210,230,240,.55);
  line-height: 1.55;
}

.account-bridge-note svg { flex-shrink: 0; color: var(--mint); margin-top: 2px; }
.account-bridge-note p  { margin: 0; }

/* Right sign-in card */
.account-bridge-card {
  background: #0d1f3c;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
}

.account-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.account-card-header .brand-logo--card {
  opacity: 0.98;
}

.account-bridge-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.account-bridge-card > p {
  font-size: .825rem;
  color: rgba(210,230,240,.55);
  line-height: 1.6;
  margin: 0;
}

.account-signin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: .9rem;
  font-weight: 700;
  border-radius: 10px;
  margin-top: 4px;
}

.account-card-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.2);
  font-size: .75rem;
}

.account-card-divider::before,
.account-card-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.08);
}

.account-secondary-link {
  font-size: .8rem;
  color: rgba(210,230,240,.5);
  text-decoration: none;
  text-align: center;
  transition: color .15s;
}

.account-secondary-link:hover { color: #fff; }
.account-secondary-link strong { color: var(--mint); }

.account-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: .7rem;
  color: rgba(255,255,255,.25);
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 4px;
}

/* Help section */
.account-bridge-help {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 24px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.account-bridge-help h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
}

.account-bridge-help p {
  color: rgba(210,230,240,.55);
  line-height: 1.7;
  margin: 0 0 28px;
}

@media (max-width: 768px) {
  .account-bridge-inner {
    grid-template-columns: 1fr;
  }
  .account-bridge-copy h1 {
    font-size: 1.6rem;
  }
}

/* ─── Full product catalog ────────────────────────────────────────────────── */
.mss-catalog-section { padding-block: 80px; }

/* Tab navigation */
.catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.catalog-category-intro {
  max-width: 720px;
  margin-bottom: 32px;
}

.catalog-category-title {
  margin: 0 0 8px;
  font-size: 1.35rem;
  color: #fff;
}

.catalog-category-copy {
  margin: 0;
  color: rgba(210, 230, 240, 0.78);
  line-height: 1.6;
}

.catalog-panels {
  display: block;
}

.catalog-panel[hidden] {
  display: none;
}

.catalog-section-kicker {
  margin: 8px 0 18px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(90, 200, 250, 0.72);
}

.catalog-subgroup + .catalog-subgroup {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(70, 157, 197, 0.16);
}

.catalog-section-kicker + .catalog-subgroup {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.catalog-subgroup-header {
  margin-bottom: 16px;
  max-width: 640px;
}

.catalog-subgroup-label {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #fff;
}

.catalog-subgroup-copy {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(210, 230, 240, 0.68);
}

.catalog-tab {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(70, 157, 197, 0.3);
  background: transparent;
  color: rgba(210, 230, 240, 0.75);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.catalog-tab:hover {
  border-color: var(--mint);
  color: #fff;
}

.catalog-tab.is-active {
  background: var(--mint);
  border-color: var(--mint);
  color: #06111c;
  font-weight: 600;
}

/* Product grid — more columns for full catalog */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* Hide cards not in active tab */
.catalog-grid .reseller-product-card[hidden] {
  display: none;
}

/* Compact card sizing for full catalog */
.catalog-grid .reseller-product-card {
  padding: 20px 16px;
}

.catalog-grid .mss-product-icon svg {
  width: 36px;
  height: 36px;
}

@media (max-width: 768px) {
  .catalog-tabs { gap: 6px; }
  .catalog-tab { padding: 6px 14px; font-size: 0.8rem; }
  .catalog-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
}

/* =============================================================
   GoDaddy Reseller Store Plugin — MSS Brand Overrides
   Targets classes from wp-reseller-store plugin v2.x
   These override plugin defaults; no !important needed where
   specificity is sufficient; used where theme defaults conflict.
   ============================================================= */

/* --- Containers ------------------------------------------- */
.widget.rstore-product,
.widget.rstore-domain,
.widget.rstore-login,
.widget.rstore-cart {
  background: var(--surface, #0d1f2d);
  border: 1px solid rgba(70, 157, 197, 0.14);
  border-radius: 12px;
  padding: 24px;
  color: var(--text, #d2e6f0);
  font-family: var(--font-geist-sans), Arial, sans-serif;
}

/* --- Product header --------------------------------------- */
.rstore-product-header .widget-title {
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 10px 0 6px;
}

/* --- Pricing --------------------------------------------- */
.rstore-pricing {
  margin: 8px 0 14px;
  font-family: var(--font-geist-sans), Arial, sans-serif;
}

.rstore-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--mint, #469dc5);
}

.rstore-retail-price {
  font-size: 0.85rem;
  color: rgba(210, 230, 240, 0.5);
  text-decoration: line-through;
  margin-right: 6px;
}

.rstore-has-sale-price {
  color: #5edba7; /* sale = green accent */
}

/* --- Add-to-cart button — primary CTA -------------------- */
.rstore-add-to-cart.button,
.rstore-add-to-cart.btn,
.rstore-add-to-cart.btn-primary,
button.rstore-add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border: none;
  border-radius: 8px;
  background: var(--mint, #469dc5);
  color: #06111c;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 2px 14px rgba(70, 157, 197, 0.28);
  white-space: nowrap;
}

.rstore-add-to-cart.button:hover,
.rstore-add-to-cart.btn:hover,
.rstore-add-to-cart.btn-primary:hover,
button.rstore-add-to-cart:hover {
  background: #5ab2d6;
  box-shadow: 0 4px 20px rgba(70, 157, 197, 0.45);
  transform: translateY(-1px);
}

.rstore-add-to-cart.button:active,
button.rstore-add-to-cart:active {
  transform: translateY(0);
  box-shadow: none;
}

/* --- Add-to-cart form wrapper ----------------------------- */
.rstore-add-to-cart-form {
  margin-top: 6px;
}

/* Loading spinner — hide default, let browser handle */
.rstore-loading {
  display: none !important;
}

/* --- Cart link (post-add confirmation) ------------------- */
.rstore-cart a {
  color: var(--mint, #469dc5);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}
.rstore-cart a:hover { color: #fff; }

/* Success checkmark */
.rstore-success {
  color: #5edba7;
  margin-right: 4px;
}

/* --- View-cart widget ------------------------------------ */
.rstore-view-cart a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--mint, #469dc5);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}
.rstore-view-cart a:hover { color: #fff; }

.rstore-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--mint, #469dc5);
  color: #06111c;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
}

/* --- Product summary (description) ----------------------- */
.rstore-product-summary {
  font-size: 0.82rem;
  color: rgba(210, 230, 240, 0.72);
  line-height: 1.55;
  overflow: hidden;
}

/* Permalink / more-info link */
.rstore-product-permalink a.link {
  font-size: 0.78rem;
  color: var(--mint, #469dc5);
  text-decoration: none;
  font-weight: 600;
}
.rstore-product-permalink a.link:hover { text-decoration: underline; }

/* --- Trust bridge — shown below Buy buttons -------------- */
.rstore-trust-note {
  display: block;
  margin-top: 8px;
  font-size: 0.68rem;
  color: rgba(210, 230, 240, 0.42);
  letter-spacing: 0.02em;
}

/* --- Domain search widget -------------------------------- */
.widget.rstore-domain input[type="text"],
.widget.rstore-domain input[type="search"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(70, 157, 197, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.9rem;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  outline: none;
  transition: border-color 0.18s;
}
.widget.rstore-domain input[type="text"]:focus,
.widget.rstore-domain input[type="search"]:focus {
  border-color: var(--mint, #469dc5);
}

.widget.rstore-domain button[type="submit"],
.widget.rstore-domain input[type="submit"] {
  margin-top: 8px;
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  background: var(--mint, #469dc5);
  color: #06111c;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s;
}
.widget.rstore-domain button[type="submit"]:hover { background: #5ab2d6; }

/* --- Login widget --------------------------------------- */
.widget.rstore-login input[type="text"],
.widget.rstore-login input[type="email"],
.widget.rstore-login input[type="password"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(70, 157, 197, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.9rem;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.18s;
}
.widget.rstore-login input:focus { border-color: var(--mint, #469dc5); }

.widget.rstore-login button[type="submit"],
.widget.rstore-login input[type="submit"] {
  width: 100%;
  margin-top: 12px;
  padding: 11px 24px;
  border: none;
  border-radius: 8px;
  background: var(--mint, #469dc5);
  color: #06111c;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s;
}
.widget.rstore-login button[type="submit"]:hover { background: #5ab2d6; }

/* =========================================================== */

/* =============================================================
   Contact Page
   ============================================================= */

.contact-page {
  padding-bottom: 80px;
  background:
    radial-gradient(circle at 70% 10%, rgba(70, 157, 197, 0.06), transparent 40%),
    var(--bg-deep, #06111c);
}

/* --- Hero ------------------------------------------------ */
.contact-hero {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 24px 56px;
  text-align: center;
}

.contact-hero h1 {
  margin: 16px 0 18px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
}

.contact-hero > p {
  max-width: 580px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: rgba(210, 230, 240, 0.72);
  line-height: 1.65;
}

/* --- Contact method pills -------------------------------- */
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border: 1px solid rgba(70, 157, 197, 0.18);
  border-radius: 12px;
  background: rgba(70, 157, 197, 0.05);
  color: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, transform 0.15s;
}

.contact-method:hover {
  border-color: var(--mint, #469dc5);
  background: rgba(70, 157, 197, 0.1);
  transform: translateY(-2px);
}

.contact-method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(70, 157, 197, 0.12);
  color: var(--mint, #469dc5);
}

.contact-method-icon--pulse {
  position: relative;
}
.contact-method-icon--pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  border: 1px solid rgba(70, 157, 197, 0.35);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.18); }
}

.contact-method strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-method em {
  display: block;
  font-size: 0.88rem;
  font-style: normal;
  color: rgba(210, 230, 240, 0.65);
  margin-top: 2px;
}

/* --- Main split ----------------------------------------- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}

/* --- Form column ---------------------------------------- */
.contact-form-col h2 {
  margin: 0 0 8px;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
}

.contact-form-col > p {
  margin: 0 0 28px;
  font-size: 0.9rem;
  color: rgba(210, 230, 240, 0.65);
  line-height: 1.6;
}

/* Native HTML form */
.mss-contact-form { display: flex; flex-direction: column; gap: 18px; }

.mss-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.mss-field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(210, 230, 240, 0.7);
}

.mss-field input,
.mss-field select,
.mss-field textarea {
  padding: 11px 14px;
  border: 1px solid rgba(70, 157, 197, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.18s, background 0.18s;
  -webkit-appearance: none;
}

.mss-field input::placeholder,
.mss-field textarea::placeholder {
  color: rgba(210, 230, 240, 0.3);
}

.mss-field input:focus,
.mss-field select:focus,
.mss-field textarea:focus {
  border-color: var(--mint, #469dc5);
  background: rgba(70, 157, 197, 0.06);
}

.mss-field select option { background: #0d1f2d; }

.mss-field textarea { resize: vertical; min-height: 120px; }

.mss-field--check label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(210, 230, 240, 0.55);
  cursor: pointer;
}

.mss-field--check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  padding: 0;
  border-radius: 4px;
  accent-color: var(--mint, #469dc5);
}

.mss-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
}

/* --- Info column ---------------------------------------- */
.contact-info-col { display: flex; flex-direction: column; gap: 24px; }

/* AI chat card */
.contact-ai-card {
  padding: 28px;
  border: 1px solid rgba(70, 157, 197, 0.22);
  border-radius: 16px;
  background: rgba(70, 157, 197, 0.04);
}

.contact-ai-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.contact-ai-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}

.contact-ai-card > p {
  margin: 0 0 18px;
  font-size: 0.85rem;
  color: rgba(210, 230, 240, 0.65);
  line-height: 1.6;
}

/* Chat preview bubbles */
.contact-ai-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.ai-bubble {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.55;
}

.ai-bubble--user {
  align-self: flex-end;
  background: rgba(70, 157, 197, 0.15);
  border: 1px solid rgba(70, 157, 197, 0.2);
  color: rgba(210, 230, 240, 0.9);
  max-width: 85%;
}

.ai-bubble--mss {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(210, 230, 240, 0.85);
  max-width: 92%;
}

.ai-bubble-label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--mint, #469dc5);
  text-transform: uppercase;
}

.contact-ai-btn { width: 100%; justify-content: center; }

.contact-ai-note {
  margin: 10px 0 0;
  font-size: 0.72rem;
  color: rgba(210, 230, 240, 0.38);
  text-align: center;
}

/* Support tiers */
.contact-tiers {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
}

.contact-tiers h3 {
  margin: 0 0 18px;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(210, 230, 240, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-tier-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-tier-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.tier-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(70, 157, 197, 0.3);
  background: rgba(70, 157, 197, 0.06);
  color: var(--mint, #469dc5);
  font-size: 0.72rem;
  font-weight: 800;
  margin-top: 2px;
}

.contact-tier-list strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.contact-tier-list p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(210, 230, 240, 0.55);
  line-height: 1.5;
}

/* --- Responsive ----------------------------------------- */
@media (max-width: 960px) {
  .contact-split {
    grid-template-columns: 1fr;
  }
  .contact-info-col {
    order: -1; /* chat card above form on mobile */
  }
}

@media (max-width: 600px) {
  .contact-hero { padding: 56px 16px 40px; }
  .contact-methods { flex-direction: column; }
  .contact-method { width: 100%; }
  .mss-field-row { grid-template-columns: 1fr; }
  .contact-split { padding: 0 16px; }
}

/* =========================================================== */

/* Mobile nav additions */
.mobile-account-row {
  display: flex;
  gap: 10px;
  padding: 12px 0 6px;
}

.mobile-account-link,
.mobile-cta-link {
  flex: 1;
  padding: 11px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  transition: background 0.15s, color 0.15s;
}

.mobile-account-link {
  border: 1px solid rgba(70, 157, 197, 0.3);
  color: rgba(210, 230, 240, 0.85);
}

.mobile-cta-link {
  background: var(--mint, #469dc5);
  color: #06111c;
}

.mobile-phone-link {
  display: block;
  padding: 10px 0;
  color: rgba(210, 230, 240, 0.55);
  font-size: 0.82rem;
  text-align: center;
  letter-spacing: 0.02em;
}

/* Narrow desktop: keep phone icon, hide number digits */
@media (max-width: 1100px) {
  .header-phone-label { display: none; }
  .header-phone { padding: 8px; }
}

@media (max-width: 780px) {
  .header-login span { display: none; } /* hide text, keep icon */
  .header-login { padding: 8px; border-radius: 8px; }
}
