/* ============================================================
   Smart Spaces — custom additions on top of tia.css
   ============================================================ */

/* Nav tweaks — show "Smart Spaces" wordmark next to logo */
.nav-logo .nav-product {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  color: var(--ink-900);
  margin-left: 10px;
  padding-left: 12px;
  border-left: 1px solid rgba(0,0,0,0.16);
  letter-spacing: 0.01em;
  position: relative;
  top: 1px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
}

/* Hero adjustments */
.hero-display em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}
.hero-sub-centered {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.86);
}

/* ============================================================
   Product offerings — stacked horizontal rows
   ============================================================ */
.offerings {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.offering {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 360px;
  transition: border-color 220ms, box-shadow 220ms, transform 220ms;
}
.offering:hover {
  border-color: var(--accent);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
/* alternate direction so visuals zig-zag */
.offering.reverse { grid-template-columns: 1fr 1.15fr; }
.offering.reverse .offering-visual { order: 2; }
.offering.reverse .offering-body   { order: 1; }

@media (max-width: 860px) {
  .offering, .offering.reverse {
    grid-template-columns: 1fr;
  }
  .offering.reverse .offering-visual { order: 0; }
  .offering.reverse .offering-body   { order: 0; }
}

/* ------- visual side ------- */
.offering-visual {
  position: relative;
  background: var(--bg-soft);
  overflow: hidden;
  min-height: 320px;
}
.offering-visual > img.offering-hero {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.offering-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(170deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.45));
  pointer-events: none;
}

.offering-num {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: #fff;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
}
.offering-ribbon {
  position: absolute;
  top: 22px; right: 22px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 5px 9px;
  border-radius: 4px;
}

/* Photography quad grid — 4 images */
.offering-quad {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  z-index: 1;
}
.offering-quad img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ------- body side ------- */
.offering-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
@media (max-width: 600px) { .offering-body { padding: 28px 24px; } }

.offering-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.offering-name {
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}
.offering-name em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}
.offering-tag {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.55;
  margin: 0;
  max-width: 52ch;
}
.offering-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
@media (max-width: 600px) { .offering-list { grid-template-columns: 1fr; } }
.offering-list li {
  font-size: 14px;
  color: var(--ink-900);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.offering-list li .material-icons-outlined {
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   Staging mini-tool — matches the screenshot
   ============================================================ */
.section-stage { background: var(--bg-soft); }
.section-stage .section-head { margin-bottom: clamp(24px, 2.8vw, 40px); }

.stage-tool {
  max-width: 1180px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 800px) {
  .stage-tool { grid-template-columns: 1fr; padding: 18px; }
}

.stage-panel {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.stage-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 14px;
}
.stage-panel-head h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-900);
  margin: 0;
}
.stage-panel-head .material-icons-outlined {
  font-size: 18px;
  color: var(--ink-700);
}

.stage-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.stage-option {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  transition: border-color 200ms, transform 160ms;
}
.stage-option:hover { transform: translateY(-1px); }
.stage-option.active {
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(15,165,171,0.18);
}
.stage-option-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
}
.stage-option-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.stage-option-label {
  display: block;
  padding: 8px 10px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-900);
}

.stage-preview {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-mute);
  min-height: 420px;
}
.stage-preview-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 500ms var(--ease-out);
}
.stage-preview-img.active { opacity: 1; }

.stage-pill {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 7px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: 0.02em;
}
.stage-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(15,165,171,0.18);
}

.stage-actions {
  position: absolute;
  bottom: 18px; right: 18px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.stage-action {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink-900);
  transition: background 200ms;
}
.stage-action:hover { background: #fff; }
.stage-action .material-icons-outlined { font-size: 20px; }

.stage-meta {
  position: absolute;
  bottom: 18px; left: 18px;
  z-index: 2;
  display: flex;
  gap: 10px;
}
.stage-chip {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  color: var(--ink-900);
  letter-spacing: 0.04em;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.stage-chip .material-icons-outlined { font-size: 14px; color: var(--ink-700); }

.stage-intro {
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: end;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.stage-intro h3 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  margin: 8px 0 0;
  line-height: 1.1;
}
.stage-intro h3 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}
.stage-intro .stage-blurb {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.55;
  max-width: 38ch;
}
@media (max-width: 800px) {
  .stage-intro { grid-template-columns: 1fr; gap: 16px; }
}

.stage-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 200ms, gap 200ms;
}
.stage-cta:hover { color: var(--accent-hover, #0D8C91); gap: 12px; }

/* ============================================================
   Listing website preview — 6-tab carousel
   ============================================================ */
.section-listing { background: #fff; }
.section-listing .section-head { margin-bottom: clamp(24px, 2.8vw, 40px); }
.listing-wrap {
  max-width: 1320px;
  margin: 0 auto;
}
.listing-modebar { text-align: center; margin: 0 0 16px; }
.listing-modebar .mode-toggle { margin: 0; }
.listing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.listing-tab {
  background: transparent;
  border: 0;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-700);
  cursor: pointer;
  position: relative;
  transition: color 200ms;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.listing-tab .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--accent);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.listing-tab:hover { color: var(--ink-900); }
.listing-tab.active { color: var(--ink-900); }
.listing-tab.active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  bottom: -1px;
  height: 2px;
  background: var(--accent);
}

.listing-frame {
  position: relative;
  background: var(--ink-900);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  aspect-ratio: 16/9;
}
.listing-chrome {
  background: #1a1a1c;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.listing-chrome .dots {
  display: flex; gap: 6px;
}
.listing-chrome .dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #3a3a3d;
}
.listing-chrome .ai-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(15,165,171,0.14);
  padding: 4px 9px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.listing-chrome .ai-badge .material-icons-outlined { font-size: 12px; }

.listing-stage {
  position: relative;
  width: 100%;
  background: #fff;
  height: 100%;
  overflow: hidden;
}
.listing-shot {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 400ms var(--ease-out);
}
.listing-shot.active { opacity: 1; }

.listing-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}
.listing-counter {
  font-size: 13px;
  color: var(--ink-700);
}
.listing-counter em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-900);
  font-weight: 500;
}
.listing-arrows { display: flex; gap: 8px; }
.listing-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--ink-900);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms, color 200ms;
}
.listing-arrow:hover { background: var(--ink-900); color: #fff; }
.listing-arrow .material-icons-outlined { font-size: 20px; }

/* ============================================================
   Pricing row — Set-Up + Starter Package
   ============================================================ */
.section-pricing-row { background: var(--bg-soft); }
.pricing-row {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 880px) { .pricing-row { grid-template-columns: 1fr; } }

.pricing-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  position: relative;
}
.pricing-tile.featured {
  border: 2px solid var(--ink-900);
}
.pricing-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 36px; right: 36px;
  height: 3px;
  background: var(--ink-900);
}
.pricing-tile.featured::before { background: var(--accent); }

.pricing-tile-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  margin-top: 18px;
}
.pricing-tile-title {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pricing-tile-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pricing-tile-icon .material-icons-outlined { font-size: 22px; }
.pricing-tile-name {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.pricing-tile-cost {
  text-align: right;
  font-size: 14px;
  color: var(--ink-700);
  white-space: nowrap;
}
.pricing-tile-cost .amount {
  display: block;
  font-size: 32px;
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  line-height: 1;
}
.pricing-tile-cost .period {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}

.pricing-feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pricing-feats li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-900);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.pricing-feats .material-icons-outlined {
  color: var(--ink-900);
  font-size: 20px;
  margin-top: 1px;
  flex-shrink: 0;
}

.pricing-footnote {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-700);
}
.pricing-footnote a { color: var(--accent); text-decoration: underline; }

/* ============================================================
   Section spacing tweaks
   ============================================================ */
.section-tight { padding: clamp(48px, 6vw, 90px) var(--page-pad); }

/* small visual rhythm */
.section-bg-cream { background: #faf6f0; }

/* ============================================================
   Step Four — Listing Management dashboard
   ============================================================ */
.section-mgmt { background: var(--bg-soft); }

.mgmt-intro {
  max-width: 1280px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: end;
}
.mgmt-intro h3 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  margin: 8px 0 0;
  line-height: 1.1;
}
.mgmt-intro h3 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}
.mgmt-intro .mgmt-blurb {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.55;
  max-width: 42ch;
}
@media (max-width: 800px) {
  .mgmt-intro { grid-template-columns: 1fr; gap: 16px; }
}

.mgmt-frame {
  max-width: 1280px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 640px;
}
@media (max-width: 800px) {
  .mgmt-frame { grid-template-columns: 1fr; }
  .mgmt-side { display: none; }
}

.mgmt-side {
  background: #fafaf8;
  border-right: 1px solid var(--border);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mgmt-side .brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px 8px;
}
.mgmt-side .brand img { height: 18px; }
.mgmt-side .brand .pill {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  background: #ebebeb;
  padding: 3px 7px;
  border-radius: 3px;
  color: var(--ink-700);
}
.mgmt-side .grp-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  padding: 0 8px 8px;
}
.mgmt-side .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mgmt-side .nav-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  font-size: 13px;
  color: var(--ink-900);
  border-radius: 6px;
  cursor: default;
}
.mgmt-side .nav-list li:hover { background: rgba(0,0,0,0.04); }
.mgmt-side .nav-list li.cur {
  background: rgba(15,165,171,0.10);
  color: var(--accent);
  font-weight: 600;
}
.mgmt-side .nav-list li .ico {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mgmt-side .nav-list li .ico .material-icons-outlined { font-size: 18px; }
.mgmt-side .nav-list li .count {
  font-size: 11px;
  color: #999;
}
.mgmt-side .user {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
}
.mgmt-side .user .av {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink-900);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.mgmt-side .user .name { font-size: 12px; font-weight: 600; }
.mgmt-side .user .role { font-size: 10px; color: var(--ink-700); }

/* main column */
.mgmt-main {
  display: flex;
  flex-direction: column;
}
.mgmt-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}
.mgmt-topbar .title-block .eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-700);
}
.mgmt-topbar .title-block h4 {
  margin: 4px 0 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink-900);
}
.mgmt-topbar .actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mgmt-topbar .icon-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-700);
  position: relative;
}
.mgmt-topbar .icon-btn .material-icons-outlined { font-size: 16px; }
.mgmt-topbar .icon-btn .dot {
  position: absolute;
  top: 4px; right: 4px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  border: 1.5px solid #fff;
}
.mgmt-topbar .new-btn {
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mgmt-topbar .new-btn .material-icons-outlined { font-size: 16px; }

.mgmt-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 20px 24px 0;
}
@media (max-width: 720px) { .mgmt-stats { grid-template-columns: repeat(2, 1fr); } }
.mgmt-stat {
  background: #fafaf8;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.mgmt-stat .lbl {
  font-size: 11px;
  color: var(--ink-700);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mgmt-stat .lbl .material-icons-outlined { font-size: 16px; color: var(--ink-500); }
.mgmt-stat .val {
  font-size: 28px;
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  margin-top: 6px;
  line-height: 1;
}
.mgmt-stat .chip {
  display: inline-block;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #2e7d32;
  background: rgba(46,125,50,0.12);
  padding: 3px 7px;
  border-radius: 4px;
}
.mgmt-stat .chip.coral { color: var(--accent); background: rgba(15,165,171,0.12); }

.mgmt-portfolio-head {
  padding: 22px 24px 12px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}
.mgmt-portfolio-head .eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-700);
}
.mgmt-portfolio-head h4 {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 600;
}
.mgmt-portfolio-head .new-btn {
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mgmt-portfolio-head .new-btn .material-icons-outlined { font-size: 16px; }

.mgmt-filters {
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.mgmt-filter-pills {
  display: flex;
  gap: 6px;
  background: #fafaf8;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px;
}
.mgmt-filter-pills .pill {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-700);
  padding: 6px 12px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mgmt-filter-pills .pill.cur {
  background: #fff;
  color: var(--ink-900);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  font-weight: 600;
}
.mgmt-filter-pills .pill .ct {
  font-size: 11px;
  color: var(--ink-500);
}
.mgmt-search {
  flex: 1;
  max-width: 340px;
  margin-left: auto;
  background: #fafaf8;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--ink-700);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mgmt-search .material-icons-outlined { font-size: 16px; color: var(--ink-500); }
.mgmt-search .kbd {
  margin-left: auto;
  font-size: 10px;
  color: var(--ink-500);
  background: #fff;
  border: 1px solid var(--border);
  padding: 1px 5px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

.mgmt-grid {
  padding: 16px 24px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .mgmt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .mgmt-grid { grid-template-columns: 1fr; } }

.mgmt-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mgmt-card .ph {
  position: relative;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-soft);
}
.mgmt-card .status {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(255,255,255,0.95);
  padding: 4px 9px 4px 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-900);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.mgmt-card .status .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2e7d32;
}
.mgmt-card .status.draft .dot   { background: #b8a45a; }
.mgmt-card .status.coming .dot  { background: var(--accent); }
.mgmt-card .status.leased .dot  { background: #888; }
.mgmt-card .status.incent .dot  { background: #d97757; }
.mgmt-card .more {
  position: absolute;
  top: 10px; right: 10px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-700);
}
.mgmt-card .more .material-icons-outlined { font-size: 14px; }
.mgmt-card .ribbon {
  position: absolute;
  bottom: 10px; left: 10px;
  background: var(--ink-900);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 4px 7px;
  border-radius: 3px;
  text-transform: uppercase;
}
.mgmt-card .ribbon.coral { background: var(--accent); }
.mgmt-card .info {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mgmt-card .info .row1 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.mgmt-card .info .nm {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.mgmt-card .info .price {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
  white-space: nowrap;
}
.mgmt-card .info .price small {
  font-weight: 400;
  color: var(--ink-700);
  font-size: 11px;
  margin-left: 1px;
}
.mgmt-card .info .loc {
  font-size: 12px;
  color: var(--ink-700);
}
.mgmt-card .info .specs {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--ink-700);
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.mgmt-card .info .specs span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.mgmt-card .info .specs .material-icons-outlined { font-size: 13px; color: var(--ink-500); }
.mgmt-card .info .metrics {
  display: flex;
  gap: 14px;
  font-size: 11px;
  color: var(--ink-700);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  align-items: center;
}
.mgmt-card .info .metrics span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.mgmt-card .info .metrics .material-icons-outlined { font-size: 13px; color: var(--ink-500); }
.mgmt-card .info .metrics .owner {
  margin-left: auto;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
}

/* ============================================================
   Step Four — section tabs + panel switching
   ============================================================ */
.mgmt-tabs {
  max-width: 1280px;
  margin: 0 auto 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.mgmt-tab {
  background: transparent;
  border: 0;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-700);
  cursor: pointer;
  position: relative;
  transition: color 200ms;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mgmt-tab .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--accent);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.mgmt-tab:hover { color: var(--ink-900); }
.mgmt-tab.active { color: var(--ink-900); }
.mgmt-tab.active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  bottom: -1px;
  height: 2px;
  background: var(--accent);
}

.mgmt-panel { display: none; }
.mgmt-panel.active { display: flex; flex-direction: column; flex: 1; }

/* sidebar nav becomes the in-app section switcher too */
.mgmt-side .nav-list li { cursor: pointer; }

/* ============================================================
   Step Four · Property analysis
   ============================================================ */
.pa-top .ai-tag,
.ms-top .ai-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: rgba(15,165,171,0.12);
  padding: 4px 9px;
  border-radius: 999px;
  margin-left: 12px;
  vertical-align: middle;
}
.pa-top .ai-tag .material-icons-outlined,
.ms-top .ai-tag .material-icons-outlined { font-size: 12px; }
.mgmt-topbar .ghost-btn {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-900);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: border-color 180ms;
}
.mgmt-topbar .ghost-btn:hover { border-color: var(--border-hover); }
.mgmt-topbar .ghost-btn .material-icons-outlined { font-size: 15px; color: var(--ink-500); }
.mgmt-topbar .new-btn .material-icons-outlined { color: #fff; }

.pa-body {
  padding: 20px 24px 26px;
  display: flex;
  flex-direction: column;
}
.pa-lede {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.5;
  margin: 0;
}
.pa-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9a9a9a;
  margin: 24px 0 12px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.pa-section-label small {
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #b8b8b8;
  font-size: 11px;
}
.pa-scores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 640px) { .pa-scores { grid-template-columns: 1fr; } }
.pa-score {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
}
.pa-ring { position: relative; width: 118px; height: 118px; }
.pa-ring svg { transform: rotate(-90deg); display: block; }
.pa-ring .num {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.pa-ring .num b { font-size: 30px; font-weight: 600; color: var(--ink-900); }
.pa-ring .num span { font-size: 11px; color: var(--ink-500); margin-top: 3px; }
.pa-score .ttl { font-size: 14px; font-weight: 600; color: var(--ink-900); margin-top: 12px; }
.pa-score .q { font-size: 13px; font-weight: 600; color: var(--accent); margin-top: 4px; }

.pa-prices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 760px) { .pa-prices { grid-template-columns: repeat(2, 1fr); } }
.pa-price {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  background: #fff;
}
.pa-price .k {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.pa-price .v {
  font-size: 26px;
  font-weight: 600;
  color: var(--ink-900);
  margin-top: 10px;
  line-height: 1;
}
.pa-price .note {
  font-size: 12px;
  color: var(--ink-700);
  margin-top: 9px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pa-price .note .material-icons-outlined { font-size: 14px; }
.pa-price .note.pos { color: var(--success); }
.pa-price .note.warn { color: #c9603c; }

.pa-rec {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 720px) { .pa-rec { grid-template-columns: 1fr; } }
.pa-rec-left { padding: 22px 24px; }
.pa-rec-right {
  padding: 22px 24px;
  background: #fafaf8;
  border-left: 1px solid var(--border);
}
@media (max-width: 720px) { .pa-rec-right { border-left: 0; border-top: 1px solid var(--border); } }
.pa-rec-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.pa-rec-tag .material-icons-outlined { font-size: 15px; }
.pa-rec-num {
  font-size: 40px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 12px 0 8px;
}
.pa-rec-num small { font-size: 15px; font-weight: 500; color: var(--ink-700); }
.pa-rec-sub { font-size: 13px; color: var(--ink-700); margin: 0 0 18px; }
.pa-rec-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.pa-rec-actions .apply {
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.pa-rec-actions .apply .material-icons-outlined { font-size: 17px; }
.pa-rec-actions .adjust {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.pa-rec-actions .adjust .material-icons-outlined { font-size: 16px; color: var(--ink-500); }
.pa-rec-right-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pa-rec-right .k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.pa-conf {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--success);
  background: rgba(46,125,50,0.10);
  padding: 4px 10px;
  border-radius: 999px;
}
.pa-conf .material-icons-outlined { font-size: 14px; }
.pa-rec-est {
  font-size: 38px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
  line-height: 1;
}
.pa-slider {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: var(--bg-mute);
}
.pa-slider .fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 58%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15,165,171,0.35), var(--accent));
}
.pa-slider .knob {
  position: absolute;
  top: 50%;
  left: 58%;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.pa-slider .start {
  position: absolute;
  left: 0; top: 50%;
  width: 3px; height: 12px;
  background: var(--ink-400);
  transform: translateY(-50%);
  border-radius: 2px;
}
.pa-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-700);
  margin-top: 12px;
}
.pa-range-labels .mid { color: var(--ink-500); }
.pa-rec-right .foot { font-size: 12px; color: var(--ink-500); margin-top: 10px; }
.pa-ai {
  margin-top: 14px;
  background: rgba(15,165,171,0.06);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  gap: 11px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-900);
}
.pa-ai .material-icons-outlined { font-size: 18px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   Step Four · Seller acquisition (pitch deck builder)
   ============================================================ */
.sa-body {
  flex: 1;
  padding: 44px 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sa-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(15,165,171,0.10);
  padding: 7px 15px;
  border-radius: 999px;
}
.sa-badge .material-icons-outlined { font-size: 13px; }
.sa-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin: 22px 0 0;
  max-width: 14ch;
}
.sa-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-700);
  max-width: 56ch;
  margin: 20px 0 0;
  text-wrap: pretty;
}
.sa-input {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 720px;
  margin: 34px 0 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px 8px 8px 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.sa-input .material-icons-outlined.pin { font-size: 20px; color: var(--ink-500); }
.sa-input input {
  flex: 1;
  border: 0;
  outline: 0;
  font-family: inherit;
  font-size: 17px;
  color: var(--ink-900);
  background: transparent;
  padding: 12px 4px;
}
.sa-input .clear {
  background: transparent;
  border: 0;
  color: var(--ink-500);
  cursor: pointer;
  display: inline-flex;
  padding: 6px;
}
.sa-input .gen {
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 9px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 180ms;
}
.sa-input .gen:hover { background: var(--accent-hover); }
.sa-input .gen .material-icons-outlined { font-size: 16px; }
.sa-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 880px;
  margin: 28px 0 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
  background: #fff;
}
@media (max-width: 640px) { .sa-features { grid-template-columns: 1fr; } }
.sa-feature {
  padding: 24px 22px;
  border-right: 1px solid var(--border);
}
.sa-feature:last-child { border-right: 0; }
@media (max-width: 640px) {
  .sa-feature { border-right: 0; border-bottom: 1px solid var(--border); }
  .sa-feature:last-child { border-bottom: 0; }
}
.sa-feature .fic {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(15,165,171,0.10);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.sa-feature .fic .material-icons-outlined { font-size: 22px; }
.sa-feature h5 { font-size: 15px; font-weight: 600; color: var(--ink-900); margin: 0 0 6px; }
.sa-feature p { font-size: 13px; line-height: 1.5; color: var(--ink-700); margin: 0; }
.sa-recent {
  width: 100%;
  max-width: 880px;
  margin: 26px 0 0;
  text-align: left;
}
.sa-recent .lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 12px;
}
.sa-recent-list { display: flex; flex-direction: column; gap: 8px; }
.sa-deck {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}
.sa-deck .thumb {
  width: 46px; height: 36px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.sa-deck .nm { font-size: 14px; font-weight: 600; color: var(--ink-900); }
.sa-deck .meta { font-size: 12px; color: var(--ink-700); margin-top: 2px; }
.sa-deck .stat {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
}
.sa-deck .stat.won { color: var(--success); background: rgba(46,125,50,0.10); }
.sa-deck .stat.sent { color: var(--ink-700); background: var(--bg-mute); }
.sa-deck .open {
  margin-left: 12px;
  color: var(--ink-500);
  display: inline-flex;
}
.sa-deck .open .material-icons-outlined { font-size: 18px; }

/* ============================================================
   Step Four · Marketing studio
   ============================================================ */
.ms-body { padding: 20px 24px 26px; }
.ms-lede { font-size: 14px; color: var(--ink-700); line-height: 1.5; margin: 0 0 18px; }
.ms-channel-toggle {
  display: inline-flex;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 16px;
}
.ms-channel-toggle button {
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  padding: 8px 16px;
  border-radius: 7px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.ms-channel-toggle button .material-icons-outlined { font-size: 16px; }
.ms-channel-toggle button.cur {
  background: #fff;
  color: var(--ink-900);
  box-shadow: 0 1px 3px rgba(0,0,0,0.10);
}
.ms-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(100deg, #128b83, var(--accent));
  border-radius: 14px;
  padding: 20px 22px;
  color: #fff;
  margin-bottom: 20px;
}
.ms-banner .bic {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(255,255,255,0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ms-banner .bic .material-icons-outlined { font-size: 26px; }
.ms-banner .btxt { flex: 1; }
.ms-banner .btxt h5 { font-size: 17px; font-weight: 600; margin: 0 0 4px; }
.ms-banner .btxt p { font-size: 13px; line-height: 1.45; margin: 0; color: rgba(255,255,255,0.88); }
.ms-banner .gen {
  background: #fff;
  color: var(--accent);
  border: 0;
  border-radius: 9px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.ms-banner .gen .material-icons-outlined { font-size: 16px; }
.ms-subtabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.ms-subtab {
  background: transparent;
  border: 0;
  padding: 8px 2px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-500);
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.ms-subtab .material-icons-outlined { font-size: 17px; }
.ms-subtab.cur { color: var(--ink-900); }
.ms-subtab.cur::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--accent);
}
.ms-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px;
}
@media (max-width: 860px) { .ms-grid { grid-template-columns: 1fr; } }
.ms-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 560px) { .ms-posts { grid-template-columns: 1fr; } }
.ms-post {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.ms-post .pv {
  position: relative;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.ms-post .pv.story { aspect-ratio: 9/16; }
.ms-post .pv::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.55) 100%);
}
.ms-post .badge {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--ink-900);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
}
.ms-post .badge .material-icons-outlined { font-size: 11px; color: #f2c14e; }
.ms-post .ig {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 2;
  width: 24px; height: 24px;
  border-radius: 7px;
  background: linear-gradient(135deg, #feda75, #d62976 55%, #4f5bd5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.ms-post .ig .material-icons-outlined { font-size: 14px; }
.ms-post .pv-cap {
  position: absolute;
  left: 14px; bottom: 13px;
  right: 14px;
  z-index: 2;
  color: #fff;
}
.ms-post .pv-cap .addr {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.1;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.ms-post .pv-cap .pr {
  font-size: 18px;
  font-weight: 600;
  margin-top: 4px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.ms-post .pv-cap .sp {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  margin-top: 3px;
}
.ms-post .ask {
  position: absolute;
  top: 50%; right: 12px;
  z-index: 2;
  transform: translateY(-60%);
  background: #fff;
  border-radius: 8px;
  padding: 7px 11px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.ms-post .ask .k { font-size: 8px; font-weight: 700; letter-spacing: 0.14em; color: var(--accent); }
.ms-post .ask .v { font-size: 15px; font-weight: 700; color: var(--ink-900); }
.ms-post .pf {
  padding: 12px 13px 13px;
  border-top: 1px solid var(--border);
}
.ms-post .pf .ttl { font-size: 13px; font-weight: 600; color: var(--ink-900); }
.ms-post .pf .sub { font-size: 11px; color: var(--ink-700); margin-top: 2px; }
.ms-post .pf-actions {
  display: flex;
  gap: 6px;
  margin-top: 11px;
}
.ms-post .pf-actions button {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.ms-post .pf-actions button.icon { flex: 0 0 auto; width: 34px; color: var(--ink-500); }
.ms-post .pf-actions button .material-icons-outlined { font-size: 15px; }
.ms-post .pf-actions button.ai .material-icons-outlined { color: var(--accent); }

.ms-aside { display: flex; flex-direction: column; gap: 16px; }
.ms-aside-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}
.ms-aside-card .hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.ms-aside-card .hd .lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9a9a9a;
}
.ms-aside-card .hd .lnk { font-size: 12px; font-weight: 600; color: var(--accent); cursor: pointer; }
.ms-channel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
}
.ms-channel + .ms-channel { border-top: 1px solid var(--border); }
.ms-channel .logo {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.ms-channel .logo .material-icons-outlined { font-size: 17px; }
.ms-channel .logo.ig { background: linear-gradient(135deg, #feda75, #d62976 55%, #4f5bd5); }
.ms-channel .logo.fb { background: #1877f2; }
.ms-channel .logo.tt { background: #111; }
.ms-channel .logo.li { background: #0a66c2; }
.ms-channel .nm { font-size: 13px; font-weight: 600; color: var(--ink-900); }
.ms-channel .at { font-size: 11px; color: var(--ink-700); }
.ms-channel .conn {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--success);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ms-channel .conn::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
}
.ms-channel .connect {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(15,165,171,0.10);
  border: 0;
  border-radius: 999px;
  padding: 5px 12px;
  cursor: pointer;
}
.ms-sched {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
}
.ms-sched + .ms-sched { border-top: 1px solid var(--border); }
.ms-sched .th {
  width: 34px; height: 34px;
  border-radius: 7px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.ms-sched .nm { font-size: 12px; font-weight: 600; color: var(--ink-900); }
.ms-sched .when { font-size: 11px; color: var(--ink-700); margin-top: 1px; }
.ms-sched-add {
  width: 100%;
  margin-top: 10px;
  background: rgba(15,165,171,0.07);
  border: 1px dashed rgba(15,165,171,0.4);
  border-radius: 8px;
  padding: 9px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.ms-sched-add .material-icons-outlined { font-size: 15px; }

/* ============================================================
   Nav login link
   ============================================================ */
.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: 0.01em;
  transition: color 180ms;
}
.nav-login .material-icons-outlined { font-size: 19px; }
.nav-login:hover { color: var(--accent); }
@media (max-width: 600px) { .nav-login span:not(.material-icons-outlined) { display: none; } }

/* ============================================================
   Who it's for — three-part audience toggle (Residential / Commercial / Leasing)
   ============================================================ */
.section-who { background: #fff; }
.who-cards {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 760px) { .who-cards { grid-template-columns: 1fr; gap: 22px; } }
.who-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
  border: 0;
  padding: 0;
  font-family: inherit;
  text-align: left;
}
.who-card:hover { opacity: 1; }
.who-card-img {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-soft);
  outline: 3px solid transparent;
  outline-offset: 3px;
  transition: outline-color 240ms var(--ease-out);
}
.who-card.active .who-card-img { outline-color: var(--accent); }
.who-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease-out);
}
.who-card:hover .who-card-img img { transform: scale(1.04); }
.who-card-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  display: none;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
}
.who-card-tag .material-icons-outlined { font-size: 13px; }
.who-card.active .who-card-tag { display: inline-flex; }
.who-card-label {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 18px 22px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 240ms, color 240ms;
}
.who-card.active .who-card-label { background: var(--ink-900); color: #fff; }
.who-card-label .material-icons-outlined { font-size: 20px; opacity: 0; width: 0; transition: opacity 200ms, width 200ms; }
.who-card.active .who-card-label .material-icons-outlined { opacity: 1; width: 20px; color: var(--accent); }

.who-detail { max-width: 1180px; margin: 34px auto 0; }
.who-panel { display: none; }
.who-panel.active {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 44px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 38px 42px;
  background: var(--bg-soft);
  animation: whoFade 420ms var(--ease-out);
}
@keyframes whoFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@media (max-width: 760px) { .who-panel.active { grid-template-columns: 1fr; gap: 26px; padding: 30px 26px; } }
.who-panel .eyebrow { color: var(--accent); margin-bottom: 12px; }
.who-panel h3 {
  font-size: clamp(26px, 2.7vw, 36px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 0 0 14px;
}
.who-panel h3 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.who-panel p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0;
  max-width: 48ch;
}
.who-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.who-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
}
.who-chip .material-icons-outlined { font-size: 16px; color: var(--accent); }
.who-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink-900);
  color: #fff;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.who-cta .material-icons-outlined { font-size: 16px; }

/* ============================================================
   Photography section — Step 01 (matches Step Two intro style)
   ============================================================ */
.photo-section { background: #fff; }

.photo-intro {
  max-width: 1180px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: end;
}
@media (max-width: 800px) {
  .photo-intro { grid-template-columns: 1fr; gap: 16px; }
}

.photo-intro h3 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  margin: 8px 0 0;
  line-height: 1.1;
}
.photo-intro h3 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.photo-blurb {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.55;
  margin: 0 0 14px;
  max-width: 38ch;
}
.photo-blurb strong { color: var(--ink-900); font-weight: 600; }

.photo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.photo-stats .stat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--ink-900);
  line-height: 1;
}
.photo-stats .stat-label {
  display: block;
  font-size: 12px;
  color: var(--ink-700);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.photo-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 14px;
}
@media (max-width: 920px) {
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
}
@media (max-width: 540px) {
  .photo-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .photo-grid figure.tall { grid-row: auto; }
}

.photo-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--bg-soft);
}
.photo-grid figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease-out);
}
.photo-grid figure:hover img { transform: scale(1.04); }

.photo-grid figure.tall { grid-row: span 2; }

/* Text tile in the photo grid — replaces an image cell with the stats card */
.photo-grid figure.photo-text-tile {
  background: var(--ink-900);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 24px;
}
.photo-grid figure.photo-text-tile .photo-stats {
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-top: 0;
  padding-top: 0;
}
.photo-grid figure.photo-text-tile .photo-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.photo-grid figure.photo-text-tile .stat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 38px;
  color: var(--accent);
  line-height: 1;
}
.photo-grid figure.photo-text-tile .stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.72);
  margin-top: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* CTA wrap below section-head paragraph (used in Step Two) */
.stage-cta-wrap {
  margin-top: 22px;
}
.stage-cta-wrap .stage-cta {
  display: inline-flex;
}
/* Residential / commercial toggle (Step Two) */
.stage-modebar { text-align: center; margin: 0 0 24px; }
.stage-modebar .mode-toggle { margin: 0; }

/* tag pill on a tile */
.photo-grid .photo-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 5px 9px;
  border-radius: 4px;
}


/* ============================================================
   Contact section — Get In Touch
   ============================================================ */
.section-contact {
  background: #fff;
  padding-top: 96px;
  padding-bottom: 120px;
}
.contact-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .section-contact { padding-top: 64px; padding-bottom: 80px; }
}

.contact-title {
  font-family: var(--font-sans);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 0 0 56px;
}
.contact-sub {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.contact-copy {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-800);
  max-width: 460px;
  margin: 0 0 56px;
}
.contact-skip {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-800);
  margin: 0 0 24px;
}
.contact-channels {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-channels li {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 17px;
  color: var(--ink-900);
}
.contact-channels a { color: inherit; text-decoration: none; }
.contact-channels a:hover { color: var(--tia-teal); }
.contact-ic {
  color: var(--tia-teal);
  font-size: 26px;
  width: 32px;
  text-align: center;
}

/* ----- form ----- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-step {
  font-size: 32px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.cf-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cf-lbl {
  font-size: 15px;
  color: var(--ink-900);
  font-weight: 400;
}
.cf-lbl sup {
  color: var(--ink-900);
  font-size: 14px;
  top: -0.2em;
}
.cf-field input,
.cf-field select {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink-900);
  background: #fff;
  border: 1px solid var(--ink-900);
  border-radius: 999px;
  padding: 16px 22px;
  width: 100%;
  outline: none;
  transition: border-color 200ms;
  appearance: none;
  -webkit-appearance: none;
}
.cf-field input::placeholder { color: #B7B7B7; }
.cf-field input:focus,
.cf-field select:focus {
  border-color: var(--tia-teal);
}
.cf-select {
  position: relative;
  display: block;
}
.cf-select select {
  padding-right: 48px;
  color: var(--ink-900);
  cursor: pointer;
}
.cf-caret {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--ink-900);
  font-size: 22px;
}
.cf-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}
.cf-submit {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ink-900);
  background: #fff;
  border: 1px solid var(--ink-900);
  border-radius: 999px;
  padding: 14px 36px;
  cursor: pointer;
  transition: background 200ms, color 200ms;
}
.cf-submit:hover {
  background: var(--ink-900);
  color: #fff;
}
.cf-step {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cf-step[hidden] {
  display: none;
}
.cf-calendly {
  min-width: 280px;
  height: 700px;
}
.cf-calendly-fallback {
  font-size: 13px;
  color: var(--ink-600);
  text-align: center;
}
.cf-back {
  font-family: inherit;
  font-size: inherit;
  color: var(--tia-teal);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
}

/* Decorative auto-advancing cross-fades (hero rotation, staging cards) —
   the transition itself stays off; JS gates the setInterval separately. */
@media (prefers-reduced-motion: reduce) {
  .hero-bg-fade,
  .cs-img,
  .hero-staging-dot {
    transition: none !important;
  }
}

/* ============================================================
   Footer — TIA brand (theinteractiveabode.com style)
   ============================================================ */
.foot-tia {
  background: var(--ink-900);
  color: #fff;
  padding: 96px 0 36px;
}
.foot-tia .foot-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}
.foot-wordmark {
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: 0.22em;
  color: #fff;
  margin: 0 0 96px;
  line-height: 1;
}
.foot-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  padding-bottom: 96px;
}
@media (max-width: 880px) {
  .foot-cols { grid-template-columns: 1fr; gap: 56px; }
}
.foot-tia h5 {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  margin: 0 0 36px;
}

.foot-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  max-width: 520px;
}
@media (max-width: 560px) {
  .foot-contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
.foot-addr {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}
.foot-addr strong {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
}

.foot-channels {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.foot-channels li,
.foot-channels a {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 200ms;
}
.foot-channels a:hover { color: var(--tia-teal); }

.foot-products {
  justify-self: end;
  text-align: left;
}
@media (max-width: 880px) {
  .foot-products { justify-self: start; }
}
.foot-products ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.foot-products a {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 200ms;
}
.foot-products a:hover { color: var(--tia-teal); }

.foot-tia .foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}
.foot-tia .foot-bottom a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 200ms;
}
.foot-tia .foot-bottom a:hover { color: var(--tia-teal); }
.foot-legal {
  display: flex;
  gap: 32px;
}
@media (max-width: 560px) {
  .foot-tia .foot-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .foot-legal { flex-wrap: wrap; gap: 18px; }
}

/* ===========================================================
   Nav
   =========================================================== */
.nav-actions .btn-pill.btn-ghost { height: 38px; padding: 10px 18px; }
.nav-actions .btn-pill.btn-dark { height: 38px; padding: 10px 20px; }
@media (max-width: 1040px) { .nav-links { display: none; } }

/* ===========================================================
   Hero
   =========================================================== */
.hero-display .hero-nowrap { white-space: nowrap; }
.hero-avatars { display: flex; }
.hero-avatar {
  width: 26px; height: 26px;
  border-radius: 14px;
  border: 2px solid rgba(255,255,255,0.9);
}
.hero-avatar + .hero-avatar { margin-left: -8px; }
.hero-staging-pill .material-icons-outlined { font-size: 14px; }

/* ===========================================================
   Get started
   =========================================================== */
.section-getstarted { background: var(--bg-soft); }
.gs-wrap {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.02fr);
  gap: clamp(40px,5vw,88px); align-items: center;
}
.gs-left .eyebrow { display: block; margin-bottom: 16px; }
.gs-h2 {
  font-family: var(--font-sans); font-weight: 400;
  font-size: clamp(32px,3.6vw,50px); line-height: 1.05;
  letter-spacing: -0.02em; color: var(--ink-900); margin: 0 0 18px; max-width: 16ch;
}
.gs-h2 em { font-family: var(--font-display); font-style: italic; color: var(--accent); }
.gs-lede { font-size: 17px; line-height: 1.6; color: var(--ink-700); margin: 0 0 30px; max-width: 46ch; }
.gs-steps { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.gs-steps li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--border); }
.gs-steps .n { width: 36px; height: 36px; border-radius: 50%; background: var(--ink-900); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; }
.gs-steps li.free .n { background: var(--accent); }
.gs-steps h5 { font-size: 16px; font-weight: 600; color: var(--ink-900); margin: 2px 0 4px; }
.gs-steps p { font-size: 13.5px; line-height: 1.5; color: var(--ink-700); margin: 0; }
.gs-trust { display: flex; gap: 10px; flex-wrap: wrap; }
.gs-trust span { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: var(--ink-700); background: #fff; border: 1px solid var(--border); padding: 8px 14px; border-radius: 999px; }
.gs-trust .material-icons-outlined { font-size: 16px; color: var(--accent); }
.gs-note { margin-top: 18px; display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; line-height: 1.5; color: var(--ink-700); border-top: 1px solid var(--border); padding-top: 16px; }
.gs-note .material-icons-outlined { font-size: 18px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.gs-note strong { color: var(--ink-900); font-weight: 600; }
.gs-card {
  background: #fff; border: 1px solid var(--border); border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.05);
  padding: 26px 26px 24px;
}
.gs-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.gs-brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 14px; color: var(--ink-900); }
.gs-brand-mark { width: 22px; height: 22px; border-radius: 6px; background: var(--accent); display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 11px; }
.gs-stepper { display: inline-flex; gap: 6px; }
.gs-stepper i { width: 24px; height: 5px; border-radius: 999px; background: var(--bg-mute); display: inline-block; }
.gs-stepper i.on { background: var(--accent); }
.gs-tabs { display: flex; gap: 4px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 999px; padding: 4px; margin-bottom: 20px; }
.gs-tabs button { flex: 1; border: 0; background: transparent; padding: 9px; border-radius: 999px; font-family: inherit; font-size: 13px; font-weight: 600; color: var(--ink-700); cursor: pointer; transition: background 200ms, color 200ms; }
.gs-tabs button.cur { background: var(--ink-900); color: #fff; }
.gs-h { font-size: 20px; font-weight: 600; color: var(--ink-900); margin: 0 0 6px; }
.gs-p { font-size: 13.5px; line-height: 1.5; color: var(--ink-700); margin: 0 0 18px; }
.gs-field { display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--accent); border-radius: 12px; padding: 13px 14px; }
.gs-field > .material-icons-outlined { color: var(--accent); font-size: 20px; }
.gs-field input { flex: 1; border: 0; outline: 0; font-family: inherit; font-size: 15px; font-weight: 500; color: var(--ink-900); background: transparent; }
.gs-field .tag { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: var(--accent); }
.gs-suggest { margin: 10px 0 0; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.gs-suggest div { display: flex; align-items: center; gap: 10px; padding: 10px 14px; font-size: 13px; color: var(--ink-800); border-bottom: 1px solid var(--border); }
.gs-suggest div:last-child { border-bottom: 0; }
.gs-suggest div.cur { background: rgba(15,165,171,0.07); color: var(--ink-900); font-weight: 600; }
.gs-suggest .material-icons-outlined { font-size: 18px; color: var(--ink-500); }
.gs-suggest div.cur .material-icons-outlined { color: var(--accent); }
.gs-free { display: flex; align-items: center; gap: 12px; background: rgba(15,165,171,0.08); border: 1px solid rgba(15,165,171,0.3); border-radius: 12px; padding: 13px 14px; margin: 16px 0; }
.gs-free > .material-icons-outlined { color: var(--accent); }
.gs-free strong { display: block; font-size: 13.5px; color: var(--ink-900); }
.gs-free span { font-size: 12px; color: var(--ink-700); }
.gs-free-tag { margin-left: auto; background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; padding: 5px 10px; border-radius: 999px; }
.gs-go { width: 100%; height: 50px; border: 0; border-radius: 999px; background: var(--ink-900); color: #fff; font-family: inherit; font-size: 14px; font-weight: 600; letter-spacing: 0.02em; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: background 200ms; }
.gs-go .material-icons-outlined { font-size: 18px; }
.gs-go:hover { background: #000; }
.gs-foot { text-align: center; font-size: 12.5px; color: var(--ink-700); margin-top: 14px; }
.gs-foot a { color: var(--accent); font-weight: 600; }
.gs-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 0 0 26px; }
.gs-btn-dark,
.gs-btn-ghost { display: inline-flex; align-items: center; gap: 8px; height: 50px; padding: 0 28px; border-radius: 999px; font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; transition: background 200ms, border-color 200ms, color 200ms; }
.gs-btn-dark { background: var(--ink-900); color: #fff; }
.gs-btn-dark:hover { background: #000; }
.gs-btn-ghost { background: #fff; color: var(--ink-900); border: 1px solid var(--ink-900); }
.gs-btn-ghost:hover { background: var(--ink-900); color: #fff; }
.gs-btn-ghost .material-icons-outlined { font-size: 18px; }
.gs-step-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-500); }
@media (max-width: 900px) { .gs-wrap { grid-template-columns: 1fr; gap: 40px; } }

/* ===========================================================
   Welcome Home
   =========================================================== */
.section-welcome { background: #fff; }
.wh-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }
.wh-portal {
  max-width: 1180px; margin: 0 auto 52px;
  border-radius: 18px; overflow: hidden; background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px rgba(0,0,0,0.14), 0 4px 14px rgba(0,0,0,0.06);
}
.wh-chrome { display: flex; align-items: center; gap: 14px; padding: 12px 18px; background: var(--bg-soft); border-bottom: 1px solid var(--border); }
.wh-dots { display: flex; gap: 7px; }
.wh-dots i { width: 11px; height: 11px; border-radius: 50%; background: #d7d7d7; display: inline-block; }
.wh-url { flex: 1; display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 6px 14px; font-size: 12px; color: var(--ink-700); max-width: 420px; margin: 0 auto; }
.wh-url .material-icons-outlined { font-size: 14px; color: var(--success); }
.wh-url strong { color: var(--ink-900); font-weight: 600; }
.wh-wl { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; color: var(--ink-500); text-transform: uppercase; }
.wh-site-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 30px; border-bottom: 1px solid var(--border); }
.wh-rb { display: flex; flex-direction: column; line-height: 1.05; }
.wh-rb .nm { font-family: var(--font-display); font-weight: 600; font-size: 21px; letter-spacing: 0.02em; color: #1a1a1a; }
.wh-rb .sub { font-size: 10px; letter-spacing: 0.24em; color: #9c6b43; font-weight: 700; margin-top: 4px; }
.wh-site-nav { display: flex; gap: 26px; font-size: 13px; color: var(--ink-800); font-weight: 500; }
.wh-site-nav span.cur { color: #9c6b43; font-weight: 600; }
.wh-site-cta { background: #1a1a1a; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; padding: 9px 16px; border-radius: 999px; white-space: nowrap; }
.wh-hero { position: relative; height: 280px; display: flex; align-items: flex-end; }
.wh-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wh-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.55)); }
.wh-hero-copy { position: relative; z-index: 1; padding: 30px 34px; color: #fff; }
.wh-hero-copy .e { font-size: 11px; letter-spacing: 0.2em; font-weight: 700; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.wh-hero-copy h3 { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(28px,3vw,40px); margin: 8px 0 0; color: #fff; }
.wh-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; padding: 24px 30px 30px; }
.wh-pcard { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: #fff; transition: box-shadow 200ms, transform 200ms; }
.wh-pcard:hover { box-shadow: 0 12px 28px rgba(0,0,0,0.08); transform: translateY(-2px); }
.wh-pcard .ph { height: 130px; position: relative; background-size: cover; background-position: center; }
.wh-pcard .ph.map { background: #ede8db; }
.wh-pcard .ph.map svg { display: block; width: 100%; height: 100%; }
.wh-pcard .chip { position: absolute; top: 10px; left: 10px; background: rgba(255,255,255,0.92); color: #1a1a1a; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; padding: 4px 9px; border-radius: 999px; }
.wh-pcard .bd { padding: 14px 16px 16px; }
.wh-pcard h5 { font-size: 15px; font-weight: 600; color: var(--ink-900); margin: 0 0 4px; }
.wh-pcard p { font-size: 12.5px; line-height: 1.45; color: var(--ink-700); margin: 0 0 12px; }
.wh-pcard .open { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: #9c6b43; letter-spacing: 0.04em; }
.wh-pcard .open .material-icons-outlined { font-size: 15px; }
.wh-feats { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 20px; }
.wh-feat { padding: 26px 24px; border: 1px solid var(--border); border-radius: 16px; background: var(--bg-soft); }
.wh-feat-ic { width: 46px; height: 46px; border-radius: 12px; background: #fff; border: 1px solid var(--border); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.wh-feat h4 { font-size: 16px; font-weight: 600; color: var(--ink-900); margin: 0 0 8px; }
.wh-feat p { font-size: 13px; line-height: 1.55; color: var(--ink-700); margin: 0; }
@media (max-width: 980px) {
  .wh-cards { grid-template-columns: repeat(2,1fr); }
  .wh-feats { grid-template-columns: repeat(2,1fr); }
  .wh-site-nav { display: none; }
}
@media (max-width: 560px) { .wh-feats { grid-template-columns: 1fr; } }
@media (max-width: 540px) { .wh-cards { grid-template-columns: 1fr; } }

/* ===========================================================
   Languages panel (Step Three · Panel 08)
   Sizes use em so layout scales with the panel base font
   (clamp(8px, 0.78vw, 13px) from .listing-panel).
   =========================================================== */
.kp-lang {
  position: absolute;
  inset: 0;
  background-image: url('assets/imagery/lang-hero.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.kp-lang::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,22,26,0.55) 0%, rgba(20,22,26,0.10) 22%, rgba(20,22,26,0.0) 55%, rgba(20,22,26,0.55) 100%),
    linear-gradient(90deg, rgba(20,22,26,0.42) 0%, rgba(20,22,26,0.0) 45%, rgba(20,22,26,0.0) 60%, rgba(20,22,26,0.35) 100%);
  pointer-events: none;
}
.kp-lang-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2em;
  padding: 1.6em 2.2em;
  background: linear-gradient(180deg, rgba(20,22,26,0.62) 0%, rgba(20,22,26,0.0) 100%);
  color: #fff;
}
.kp-lang-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.kp-lang-brand .nm {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7em;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.kp-lang-brand .nm em { font-style: italic; }
.kp-lang-brand .sub {
  font-family: 'Figtree', sans-serif;
  font-size: 0.72em;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5em;
  white-space: nowrap;
}
.kp-lang-nav {
  display: flex;
  gap: 1.6em;
  justify-content: center;
  flex-wrap: nowrap;
  overflow: hidden;
  font-family: 'Figtree', sans-serif;
  font-size: 0.95em;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}
.kp-lang-nav span {
  white-space: nowrap;
}
.kp-lang-switch {
  position: relative;
}
.kp-lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.55em 1em 0.55em 0.45em;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: #fff;
  font-family: 'Figtree', sans-serif;
  font-size: 0.95em;
  font-weight: 600;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 200ms;
}
.kp-lang-switch-btn:hover { background: rgba(255,255,255,0.18); }
.kp-lang-switch-btn .material-icons-outlined { font-size: 1.2em; }
.kp-lang-flag {
  width: 1.5em; height: 1.5em; border-radius: 50%;
  display: inline-block;
  background-size: cover; background-position: center;
  border: 1px solid rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.kp-lang-flag.en {
  background: linear-gradient(180deg,
    #b22234 0 8%, #fff 8% 16%, #b22234 16% 24%, #fff 24% 32%,
    #b22234 32% 40%, #fff 40% 48%, #b22234 48% 56%, #fff 56% 64%,
    #b22234 64% 72%, #fff 72% 80%, #b22234 80% 88%, #fff 88% 100%);
  position: relative;
}
.kp-lang-flag.en::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 45%; height: 50%;
  background: #3c3b6e;
  border-radius: 50% 0 0 0 / 50% 0 0 0;
}
.kp-lang-flag.es {
  background: linear-gradient(180deg, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%);
}
.kp-lang-flag.pt {
  background: linear-gradient(90deg, #006400 0 40%, #ffcc29 40% 42%, #d52b1e 42% 100%);
}
.kp-lang-flag.fr {
  background: linear-gradient(90deg, #002654 0 33%, #fff 33% 66%, #ed2939 66% 100%);
}
.kp-lang-flag.zh {
  background: #de2910;
  position: relative;
}
.kp-lang-flag.zh::before {
  content: "★";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -55%);
  font-size: 0.95em;
  line-height: 1;
  color: #ffde00;
}
.kp-lang-cta { display: none; }

/* Dropdown */
.kp-lang-menu {
  position: absolute;
  top: calc(100% + 0.7em);
  right: 0;
  min-width: 14em;
  background: #fff;
  border-radius: 0.9em;
  box-shadow: 0 18px 50px rgba(0,0,0,0.20), 0 2px 8px rgba(0,0,0,0.06);
  padding: 0.6em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 180ms, transform 180ms;
  z-index: 30;
}
.kp-lang-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.kp-lang-menu-item {
  display: flex;
  align-items: center;
  gap: 0.9em;
  padding: 0.7em 1em;
  border-radius: 0.6em;
  font-family: 'Figtree', sans-serif;
  font-size: 1em;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
  transition: background 150ms;
}
.kp-lang-menu-item:hover { background: #f4ede1; }
.kp-lang-menu-item.cur { color: #1aa39a; font-weight: 600; }

/* Status pill (LIVE · JUST LISTED) */
.kp-lang-status {
  position: absolute;
  top: 6.5em;
  right: 2.2em;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.8em 1.4em;
  background: rgba(20,22,26,0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  color: #fff;
  font-family: 'Figtree', sans-serif;
  font-size: 0.85em;
  font-weight: 700;
  letter-spacing: 0.22em;
}
.kp-lang-status::before {
  content: "";
  width: 0.6em; height: 0.6em;
  border-radius: 50%;
  background: #1aa39a;
  box-shadow: 0 0 0 0.35em rgba(26,163,154,0.25);
}

/* Hero copy */
.kp-lang-copy {
  position: absolute;
  left: 3.4em;
  top: 9em;
  right: 30em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 3;
  color: #fff;
  gap: 1.6em;
}
.kp-lang-display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 6.6em;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: #f4ede1;
  margin: 0;
  max-width: 14ch;
  text-wrap: balance;
  text-shadow: 0 2px 32px rgba(0,0,0,0.25);
}
.kp-lang-display em {
  font-style: italic;
  display: block;
  margin-top: 0.12em;
}
.kp-lang-sub {
  font-family: 'Figtree', sans-serif;
  font-size: 1.15em;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.95);
  max-width: 32ch;
  margin: 0;
  text-wrap: pretty;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}
/* Chinese needs different rhythm — shorter lines, no italic break */
.kp-lang[data-lang="zh"] .kp-lang-display {
  font-family: 'Noto Serif SC', 'Cormorant Garamond', 'Songti SC', serif;
  font-weight: 500;
  font-size: 5.4em;
  line-height: 1.18;
  letter-spacing: 0.06em;
  max-width: 10ch;
}
.kp-lang[data-lang="zh"] .kp-lang-display em {
  font-style: normal;
}
.kp-lang[data-lang="zh"] .kp-lang-sub {
  font-size: 1.1em;
  line-height: 1.85;
  letter-spacing: 0.04em;
}

/* Price card (glassy) */
.kp-lang-price {
  position: absolute;
  right: 2.2em;
  bottom: 4.5em;
  width: 24em;
  padding: 2em 2em;
  background: rgba(244,237,225,0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  z-index: 4;
  color: #fff;
}
.kp-lang-price .lbl {
  font-family: 'Figtree', sans-serif;
  font-size: 0.85em;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.75);
  text-align: center;
  margin-bottom: 0.9em;
}
.kp-lang-price-num {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.35em;
  font-family: 'Cormorant Garamond', serif;
  color: #f4ede1;
}
.kp-lang-price-num .dollar {
  font-size: 1.7em;
  font-weight: 400;
  margin-top: 0.8em;
}
.kp-lang-price-num .amt {
  font-size: 4.4em;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.kp-lang-price-num .per {
  font-size: 1.05em;
  font-weight: 400;
  margin-top: 2.2em;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.03em;
}
.kp-lang-specs {
  text-align: center;
  font-family: 'Figtree', sans-serif;
  font-size: 0.85em;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.72);
  margin-top: 0.9em;
  padding-bottom: 1.4em;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.kp-lang-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6em;
  margin-top: 1.4em;
}
.kp-lang-actions .btn-tour {
  padding: 1em 1em;
  background: #1aa39a;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: background 180ms;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kp-lang-actions .btn-tour:hover { background: #128b83; }
.kp-lang-actions .btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  padding: 1em 1em;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: background 180ms;
}
.kp-lang-actions .btn-wa:hover { background: #1eb858; }
.kp-lang-actions .btn-wa svg {
  width: 1.2em; height: 1.2em;
  fill: currentColor;
}

/* Language note (bottom-left footnote) */
.kp-lang-note {
  position: absolute;
  left: 2.8em;
  bottom: 1.8em;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.55em 1em;
  background: rgba(20,22,26,0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
  font-family: 'Figtree', sans-serif;
  font-size: 0.7em;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.kp-lang-note .dot {
  width: 0.55em; height: 0.55em;
  border-radius: 50%;
  background: #1aa39a;
}

/* Central interactive language dock */
.kp-lang-dock {
  position: absolute;
  left: 50%;
  bottom: 21em;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1em;
  padding: 1.7em 2em 1.5em;
  background: rgba(20,22,26,0.48);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2.4em;
  box-shadow: 0 22px 70px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.kp-lang-dock-eyebrow {
  font-family: 'Figtree', sans-serif;
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.7);
  padding: 0 0.4em;
}
.kp-lang-dock-row {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.kp-lang-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
  padding: 0.7em 1.2em 0.7em 0.7em;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  color: rgba(255,255,255,0.78);
  font-family: 'Figtree', sans-serif;
  font-size: 0.95em;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 220ms ease, color 220ms, transform 220ms, border-color 220ms;
}
.kp-lang-chip .ch-code {
  display: none;
  font-size: 0.85em;
  letter-spacing: 0.15em;
  opacity: 0.7;
  margin-left: -0.3em;
}
.kp-lang-chip:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  transform: translateY(-1px);
}
.kp-lang-chip.cur {
  background: #f4ede1;
  color: #1a1a1a;
  border-color: #f4ede1;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.kp-lang-chip.cur .kp-lang-flag {
  border-color: rgba(0,0,0,0.15);
}
.kp-lang-chip .kp-lang-flag {
  width: 1.6em;
  height: 1.6em;
}

/* Push the auto-translated note to the right to make room for dock */
.kp-lang-note { display: none; }
