@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT@9..144,300..700,30..100&family=Geist:wght@300..700&family=JetBrains+Mono:wght@400;500&display=swap');

.sqyd-home {
  --ink:       #0E0E0D;
  --ink-2:     #181816;
  --ink-3:     #26261F;
  --cream:     #F4F0E8;
  --cream-2:   #ECE6D7;
  --ivory:     #FAF7F1;
  --paper:     #FFFFFF;
  --bone:      #E8E1D0;
  --gold:      #A87A3E;
  --gold-2:    #C9A063;
  --gold-deep: #6E5024;
  --muted:     #6B6A64;
  --muted-2:   #97968E;
  --line:      #E3DCCC;
  --line-soft: #ECE6D8;
  --line-ink:  #292921;
  --success:   #3D7A4E;
  --danger:    #B23B2E;

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans:  'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, monospace;

  --max:        1280px;
  --gutter:     clamp(20px, 4vw, 56px);
  --pad:        clamp(56px, 7vw, 104px);

  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01' on, 'cv11' on, 'tnum' on;
}
.sqyd-home *, .sqyd-home *::before, .sqyd-home *::after { box-sizing: border-box; }
.sqyd-home p, .sqyd-home h1, .sqyd-home h2, .sqyd-home h3, .sqyd-home h4,
.sqyd-home h5, .sqyd-home h6, .sqyd-home ol, .sqyd-home ul, .sqyd-home li,
.sqyd-home figure, .sqyd-home dl, .sqyd-home dt, .sqyd-home dd { margin: 0; padding: 0; }
.sqyd-home a { color: inherit; text-decoration: none; }
.sqyd-home img, .sqyd-home svg { display: block; max-width: 100%; }
.sqyd-home button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
.sqyd-home input, .sqyd-home select, .sqyd-home textarea { font: inherit; color: inherit; }
.sqyd-home ul { list-style: none; }

.sqyd-home .wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* TYPE SYSTEM */
.sqyd-home .display {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 20;
  letter-spacing: -0.018em;
  line-height: 1.02;
  color: var(--ink);
}
.sqyd-home .display em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.sqyd-home .display--xxl { font-size: clamp(48px, 8vw, 110px); }
.sqyd-home .display--xl  { font-size: clamp(40px, 5.5vw, 76px); }
.sqyd-home .display--lg  { font-size: clamp(30px, 3.4vw, 48px); }
.sqyd-home .display--md  { font-size: clamp(24px, 2.2vw, 32px); }

.sqyd-home .kicker {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.sqyd-home .kicker--cream { color: var(--gold-2); }
.sqyd-home .label-sm {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.sqyd-home .data {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}

/* SECTION SCAFFOLDING */
.sqyd-home .sect { padding: var(--pad) 0; }
.sqyd-home .sect--cream { background: var(--cream); }
.sqyd-home .sect--ink { background: var(--ink); color: var(--cream); }
.sqyd-home .sect--ink h2, .sqyd-home .sect--ink h3, .sqyd-home .sect--ink h4 { color: var(--cream); }
.sqyd-home .sect--paper { background: var(--paper); }
.sqyd-home .sect--tight { padding: clamp(40px, 5vw, 64px) 0; }

.sqyd-home .shead {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 32px;
  align-items: end;
  padding-bottom: 24px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.sqyd-home .sect--cream .shead { border-bottom-color: var(--cream-2); }
.sqyd-home .sect--ink .shead { border-bottom-color: var(--line-ink); }
.sqyd-home .shead__num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.06em;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  display: inline-block;
  width: max-content;
}
.sqyd-home .shead__k { display: block; margin-bottom: 10px; }
.sqyd-home .shead__h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.1;
  color: inherit;
  max-width: 22ch;
}
.sqyd-home .shead__h2 em { font-style: italic; color: var(--gold); }
.sqyd-home .sect--ink .shead__h2 em { color: var(--gold-2); }
.sqyd-home .shead__m {
  font-size: 11.5px;
  color: var(--muted);
  text-align: right;
  line-height: 1.6;
  max-width: 22ch;
}
.sqyd-home .sect--ink .shead__m { color: rgba(244, 240, 232, 0.55); }

/* BUTTONS */
.sqyd-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1;
  text-transform: uppercase;
}
.sqyd-home .btn svg { width: 14px; height: 14px; }
.sqyd-home .btn--ghost { border-color: var(--line); color: var(--ink); }
.sqyd-home .btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.sqyd-home .btn--ghost-light { border-color: rgba(244, 240, 232, 0.3); color: var(--cream); }
.sqyd-home .btn--ghost-light:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.sqyd-home .btn--ink { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.sqyd-home .btn--ink:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.sqyd-home .btn--gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.sqyd-home .btn--gold:hover { background: var(--gold-deep); color: var(--cream); border-color: var(--gold-deep); }
.sqyd-home .btn--lg { padding: 17px 30px; font-size: 13.5px; }
.sqyd-home .btn--sm { padding: 9px 14px; font-size: 11.5px; }

/* BADGES */
.sqyd-home .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}
.sqyd-home .badge svg { width: 11px; height: 11px; }
.sqyd-home .badge--ink { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.sqyd-home .badge--gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.sqyd-home .badge--off { background: var(--ink); color: var(--gold-2); border-color: var(--ink); }
.sqyd-home .badge--verified {
  background: transparent;
  color: var(--success);
  border-color: rgba(61, 122, 78, 0.4);
}
.sqyd-home .badge--ghost {
  background: rgba(14, 14, 13, 0.5);
  color: var(--cream);
  border-color: rgba(244, 240, 232, 0.25);
  backdrop-filter: blur(6px);
}

/* ===================================================================
   01 · CINEMATIC HERO
   =================================================================== */
.sqyd-home .hero {
  position: relative;
  min-height: clamp(620px, 92vh, 880px);
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.sqyd-home .hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}
.sqyd-home .hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(14, 14, 13, 0.65) 0%,
      rgba(14, 14, 13, 0.15) 30%,
      rgba(14, 14, 13, 0.25) 55%,
      rgba(14, 14, 13, 0.92) 100%),
    linear-gradient(90deg, rgba(14, 14, 13, 0.35) 0%, rgba(14, 14, 13, 0) 50%);
}
.sqyd-home .hero__top {
  position: absolute;
  top: 28px; left: 0; right: 0;
  z-index: 2;
}
.sqyd-home .hero__top .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.sqyd-home .hero__signal {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-2);
}
.sqyd-home .hero__signal .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-2);
  animation: sqydPulse 2.2s ease-in-out infinite;
}
@keyframes sqydPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.4); }
}
.sqyd-home .hero__tier {
  display: inline-flex; gap: 8px;
}

.sqyd-home .hero__body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 var(--pad);
  color: var(--cream);
}
.sqyd-home .hero__kicker {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-2);
  margin-bottom: 24px;
}
.sqyd-home .hero__kicker .line { width: 40px; height: 1px; background: var(--gold-2); }
.sqyd-home .hero__title {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 0.98;
  color: var(--cream);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  max-width: 17ch;
  margin-bottom: 28px;
}
.sqyd-home .hero__title em {
  font-style: italic;
  color: var(--gold-2);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.sqyd-home .hero__lede {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(244, 240, 232, 0.78);
  max-width: 52ch;
  margin-bottom: 36px;
}
.sqyd-home .hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.sqyd-home .hero__floor {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(244, 240, 232, 0.15);
  padding: 22px 0;
  background: rgba(14, 14, 13, 0.4);
  backdrop-filter: blur(8px);
}
.sqyd-home .hero__floor .wrap {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.sqyd-home .hero__trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  font-size: 11.5px; color: rgba(244, 240, 232, 0.7);
  letter-spacing: 0.04em;
}
.sqyd-home .hero__trust .t { display: flex; align-items: center; gap: 8px; }
.sqyd-home .hero__trust .t svg { width: 14px; height: 14px; color: var(--gold-2); }
.sqyd-home .hero__concierge {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: var(--cream);
}
.sqyd-home .hero__concierge .ph {
  font-family: var(--mono);
  color: var(--gold-2);
  border-bottom: 1px solid var(--gold-2);
  padding-bottom: 1px;
}

/* ===================================================================
   02 · TRUST STRIP — the numbers
   =================================================================== */
.sqyd-home .trust {
  background: var(--cream);
  border-top: 1px solid var(--cream-2);
  border-bottom: 1px solid var(--cream-2);
}
.sqyd-home .trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 56px 0;
}
.sqyd-home .trust__col {
  padding: 0 32px;
  border-right: 1px solid var(--cream-2);
}
.sqyd-home .trust__col:first-child { padding-left: 0; }
.sqyd-home .trust__col:last-child { border-right: 0; padding-right: 0; }
.sqyd-home .trust__lbl {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}
.sqyd-home .trust__num {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 12px;
}
.sqyd-home .trust__num em {
  font-style: italic;
  color: var(--gold);
  font-size: 0.55em;
  vertical-align: 0.4em;
  margin-left: 2px;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.sqyd-home .trust__num small {
  font-family: var(--sans);
  font-size: 0.32em;
  font-weight: 400;
  color: var(--muted);
  margin-left: 6px;
  letter-spacing: 0.04em;
  vertical-align: 0.4em;
}
.sqyd-home .trust__desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ===================================================================
   03 · DESK PULSE — anonymized signals of what's moving
   =================================================================== */
.sqyd-home .pulse-bg { background: var(--ivory); }
.sqyd-home .pulses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.sqyd-home .pulse-card {
  background: var(--paper);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.sqyd-home .pulse-card__status {
  display: flex; align-items: center; gap: 8px;
  font-size: 9.5px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500;
  margin-bottom: 20px;
}
.sqyd-home .pulse-card__status .dot {
  width: 7px; height: 7px; border-radius: 50%;
}
.sqyd-home .pulse-card__status--closed { color: var(--success); }
.sqyd-home .pulse-card__status--closed .dot { background: var(--success); }
.sqyd-home .pulse-card__status--live { color: var(--danger); }
.sqyd-home .pulse-card__status--live .dot {
  background: var(--danger);
  animation: sqydPulse 2.2s ease-in-out infinite;
}
.sqyd-home .pulse-card__status--bid { color: var(--gold); }
.sqyd-home .pulse-card__status--bid .dot { background: var(--gold); }

.sqyd-home .pulse-card__type {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.25;
}
.sqyd-home .pulse-card__loc {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.sqyd-home .pulse-card__amt {
  font-family: var(--serif);
  font-size: 38px;
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
  font-weight: 400;
}
.sqyd-home .pulse-card__amt small {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  margin-left: 4px;
}
.sqyd-home .pulse-card__amt-lbl {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
  font-weight: 500;
}
.sqyd-home .pulse-card__meta {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  font-size: 12px;
}
.sqyd-home .pulse-card__meta .k {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.sqyd-home .pulse-card__meta .v {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink);
}

.sqyd-home .pulse-foot {
  text-align: center;
  padding: 32px 0 0;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.sqyd-home .pulse-foot strong { color: var(--ink); font-weight: 500; }

/* ===================================================================
   04 · INTENT — qualification flow (replacing search)
   =================================================================== */
.sqyd-home .intent {
  background: var(--ink);
  color: var(--cream);
}
.sqyd-home .intent__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
}
.sqyd-home .intent__lhs h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 18px;
}
.sqyd-home .intent__lhs h3 em { color: var(--gold-2); font-style: italic; }
.sqyd-home .intent__lhs p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(244, 240, 232, 0.7);
  margin-bottom: 26px;
}
.sqyd-home .intent__lhs .or {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(244, 240, 232, 0.15);
}
.sqyd-home .intent__lhs .or-ph {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--cream);
  margin-top: 8px;
}

.sqyd-home .intent__form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 240, 232, 0.15);
  padding: 36px;
}
.sqyd-home .intent__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin-bottom: 24px;
}
.sqyd-home .intent__field { display: flex; flex-direction: column; gap: 12px; }
.sqyd-home .intent__field label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 500;
}
.sqyd-home .intent__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.sqyd-home .intent__chip {
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(244, 240, 232, 0.7);
  border: 1px solid rgba(244, 240, 232, 0.15);
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.sqyd-home .intent__chip:hover { color: var(--cream); border-color: rgba(244, 240, 232, 0.4); }
.sqyd-home .intent__chip.is-on {
  background: var(--gold-2);
  color: var(--ink);
  border-color: var(--gold-2);
}
.sqyd-home .intent__submit { display: flex; gap: 14px; align-items: center; }
.sqyd-home .intent__submit .note { font-size: 11px; color: rgba(244, 240, 232, 0.5); }

/* ===================================================================
   05 · PROPERTY SPOTLIGHTS — editorial features
   =================================================================== */
.sqyd-home .spots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.sqyd-home .spot {
  background: var(--paper);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 380px;
}
.sqyd-home .spot:nth-child(even) { grid-template-columns: 1fr 1.2fr; }
.sqyd-home .spot__media {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.sqyd-home .spot__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.sqyd-home .spot:hover .spot__media img { transform: scale(1.04); }
.sqyd-home .spot__media .badges {
  position: absolute;
  top: 20px; left: 20px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.sqyd-home .spot:nth-child(even) .spot__media { order: 2; }

.sqyd-home .spot__body {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sqyd-home .spot__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 18px;
}
.sqyd-home .spot__nm {
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 8px;
}
.sqyd-home .spot__loc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sqyd-home .spot__loc svg { width: 13px; height: 13px; color: var(--gold); }

.sqyd-home .spot__take {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  font-variation-settings: 'opsz' 36, 'SOFT' 100;
  line-height: 1.55;
  color: var(--ink-2);
  padding: 18px 0 18px 20px;
  border-left: 2px solid var(--gold);
  margin-bottom: 26px;
}

.sqyd-home .spot__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
}
.sqyd-home .spot__row .col { padding-right: 16px; border-right: 1px solid var(--line); }
.sqyd-home .spot__row .col:last-child { border-right: 0; padding-right: 0; padding-left: 16px; }
.sqyd-home .spot__row .col:nth-child(2) { padding-left: 16px; }
.sqyd-home .spot__row .l {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 6px;
}
.sqyd-home .spot__row .v {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}
.sqyd-home .spot__row .v.up {
  color: var(--success);
  font-family: var(--mono);
  font-size: 18px;
}

.sqyd-home .spot__cta { display: flex; gap: 12px; }

/* Section foot — "see all" link */
.sqyd-home .sfoot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 36px; margin-top: 36px;
  border-top: 1px solid var(--line);
  font-size: 12px; color: var(--muted);
}
.sqyd-home .sfoot a {
  font-size: 12.5px; color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.12em;
}

/* ===================================================================
   06 · FOUR DESKS
   =================================================================== */
.sqyd-home .desks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.sqyd-home .desk {
  background: var(--paper);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 320px;
  transition: background 0.2s;
}
.sqyd-home .desk:hover { background: var(--ivory); }
.sqyd-home .desk__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.sqyd-home .desk__icon {
  width: 38px; height: 38px;
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
}
.sqyd-home .desk__icon svg { width: 18px; height: 18px; }
.sqyd-home .desk__nm {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.sqyd-home .desk__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 22px;
  flex: 1;
}
.sqyd-home .desk__link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 6px;
}
.sqyd-home .desk__link svg { width: 11px; height: 11px; }

/* ===================================================================
   07 · MARKET INTELLIGENCE — heatmap + signals + brief excerpt
   =================================================================== */
.sqyd-home .intel {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

.sqyd-home .heatmap {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px;
}
.sqyd-home .heatmap__top {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.sqyd-home .heatmap__top h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.sqyd-home .heatmap__top .meta {
  font-size: 11px;
  color: var(--muted);
  text-align: right;
  line-height: 1.5;
}
.sqyd-home .heatmap__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 60px;
  gap: 8px 16px;
  font-size: 13px;
  align-items: center;
}
.sqyd-home .heatmap__hd {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding-bottom: 10px;
}
.sqyd-home .heatmap__row {
  display: contents;
}
.sqyd-home .heatmap__row > * {
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
}
.sqyd-home .heatmap__loc {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.sqyd-home .heatmap__cell {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
  text-align: left;
}
.sqyd-home .heatmap__sig {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sqyd-home .heatmap__sig .dot {
  width: 8px; height: 8px;
}
.sqyd-home .heatmap__sig.up .dot { background: var(--success); }
.sqyd-home .heatmap__sig.flat .dot { background: var(--muted-2); }
.sqyd-home .heatmap__sig.warn .dot { background: var(--gold); }
.sqyd-home .heatmap__cell .v.up { color: var(--success); }
.sqyd-home .heatmap__cell .v.dn { color: var(--danger); }

/* Signal sparkline cells */
.sqyd-home .spark {
  display: inline-flex; align-items: end; gap: 2px;
  height: 18px;
}
.sqyd-home .spark span {
  width: 4px;
  background: var(--bone);
}
.sqyd-home .spark.is-up span:nth-child(n+5) { background: var(--success); }
.sqyd-home .spark.is-flat span { background: var(--muted-2); }

/* Right column — brief excerpt + signals */
.sqyd-home .brief {
  background: var(--ink);
  color: var(--cream);
  padding: 36px;
}
.sqyd-home .brief__top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-ink);
}
.sqyd-home .brief__lab {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 500;
}
.sqyd-home .brief__date {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(244, 240, 232, 0.5);
}
.sqyd-home .brief h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.008em;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 14px;
}
.sqyd-home .brief p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(244, 240, 232, 0.7);
  margin-bottom: 18px;
}
.sqyd-home .brief__sigs {
  margin: 24px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line-ink);
  border-bottom: 1px solid var(--line-ink);
  display: flex; flex-direction: column; gap: 12px;
}
.sqyd-home .brief__sig {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.sqyd-home .brief__sig .k { color: rgba(244, 240, 232, 0.6); letter-spacing: 0.02em; }
.sqyd-home .brief__sig .v {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--cream);
  display: inline-flex; align-items: center; gap: 6px;
}
.sqyd-home .brief__sig .v::before {
  content: ''; width: 6px; height: 6px;
}
.sqyd-home .brief__sig .v.up { color: #84BD8F; }
.sqyd-home .brief__sig .v.up::before { background: #84BD8F; }
.sqyd-home .brief__sig .v.warn { color: var(--gold-2); }
.sqyd-home .brief__sig .v.warn::before { background: var(--gold-2); }
.sqyd-home .brief__sig .v.dn { color: #E8866C; }
.sqyd-home .brief__sig .v.dn::before { background: #E8866C; }

.sqyd-home .brief__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-2);
  border-bottom: 1px solid var(--gold-2);
  padding-bottom: 3px;
  font-weight: 500;
}

/* ===================================================================
   08 · TESTIMONIALS — editorial pull quotes
   =================================================================== */
.sqyd-home .quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.sqyd-home .quote {
  display: flex; flex-direction: column;
}
.sqyd-home .quote__mark {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 18px;
}
.sqyd-home .quote__text {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  font-variation-settings: 'opsz' 36, 'SOFT' 100;
  letter-spacing: -0.005em;
  margin-bottom: 28px;
  flex: 1;
}
.sqyd-home .quote__by {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.sqyd-home .quote__role {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
}
.sqyd-home .quote__loc {
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 4px;
}
.sqyd-home .quote__ctx {
  font-size: 11.5px;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 0.02em;
}

/* ===================================================================
   09 · MEMBERSHIP TIERS (new)
   =================================================================== */
.sqyd-home .tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.sqyd-home .tier {
  background: var(--paper);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
}
.sqyd-home .tier--feat { background: var(--ink); color: var(--cream); }
.sqyd-home .tier__lvl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 10px;
}
.sqyd-home .tier--feat .tier__lvl { color: var(--gold-2); }
.sqyd-home .tier__nm {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.008em;
  margin-bottom: 18px;
  line-height: 1.2;
}
.sqyd-home .tier--feat .tier__nm { color: var(--cream); }
.sqyd-home .tier__unlocks {
  list-style: none;
  margin-bottom: 22px;
  flex: 1;
}
.sqyd-home .tier__unlocks li {
  padding: 8px 0;
  padding-left: 18px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
}
.sqyd-home .tier--feat .tier__unlocks li { color: rgba(244, 240, 232, 0.78); border-color: var(--line-ink); }
.sqyd-home .tier__unlocks li:last-child { border-bottom: 0; }
.sqyd-home .tier__unlocks li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 8px; height: 1px;
  background: var(--gold);
}
.sqyd-home .tier--feat .tier__unlocks li::before { background: var(--gold-2); }
.sqyd-home .tier__qual {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.5;
}
.sqyd-home .tier--feat .tier__qual { color: rgba(244, 240, 232, 0.55); border-color: var(--line-ink); }
.sqyd-home .tier__qual strong { color: var(--ink); font-weight: 500; }
.sqyd-home .tier--feat .tier__qual strong { color: var(--gold-2); }

/* ===================================================================
   10 · SELLER / PRINCIPAL PITCH
   =================================================================== */
.sqyd-home .seller {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.sqyd-home .seller__img {
  aspect-ratio: 4/5;
  background: var(--ink);
  overflow: hidden;
  position: relative;
}
.sqyd-home .seller__img img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.92;
}
.sqyd-home .seller__lhs h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  letter-spacing: -0.014em;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 18ch;
}
.sqyd-home .seller__lhs h2 em { color: var(--gold); font-style: italic; }
.sqyd-home .seller__lhs p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 18px;
}
.sqyd-home .seller__visi {
  margin: 32px 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sqyd-home .seller__visi h5 {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
}
.sqyd-home .seller__visi ul li {
  padding: 9px 0;
  font-size: 13.5px;
  color: var(--ink-2);
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--line-soft);
}
.sqyd-home .seller__visi ul li:last-child { border-bottom: 0; }
.sqyd-home .seller__visi ul li svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.sqyd-home .seller__visi ul li strong { color: var(--ink); font-weight: 500; min-width: 110px; }

.sqyd-home .seller__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===================================================================
   11 · JOURNAL
   =================================================================== */
.sqyd-home .articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.sqyd-home .article {
  display: flex; flex-direction: column;
}
.sqyd-home .article__media {
  aspect-ratio: 4/3;
  background: var(--ink);
  margin-bottom: 22px;
  overflow: hidden;
}
.sqyd-home .article__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.sqyd-home .article:hover .article__media img { transform: scale(1.04); }
.sqyd-home .article__meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 14px;
}
.sqyd-home .article__meta .cat { color: var(--gold); font-weight: 500; }
.sqyd-home .article__meta .sep { width: 24px; height: 1px; background: var(--line); }
.sqyd-home .article__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin-bottom: 14px;
}
.sqyd-home .article__excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 18px;
}
.sqyd-home .article__more {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  align-self: flex-start;
}

/* ===================================================================
   12 · APPLY FOR INVITATION (final CTA)
   =================================================================== */
.sqyd-home .apply {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.sqyd-home .apply::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(168, 122, 62, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.sqyd-home .apply__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sqyd-home .apply__lhs h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 24px;
  max-width: 14ch;
}
.sqyd-home .apply__lhs h2 em { color: var(--gold-2); font-style: italic; }
.sqyd-home .apply__lhs p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(244, 240, 232, 0.75);
  margin-bottom: 32px;
  max-width: 52ch;
}
.sqyd-home .apply__steps {
  display: flex; flex-direction: column; gap: 0;
}
.sqyd-home .apply__step {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(244, 240, 232, 0.15);
}
.sqyd-home .apply__step:last-child { border-bottom: 0; }
.sqyd-home .apply__step .n {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.018em;
  color: var(--gold-2);
  line-height: 1;
}
.sqyd-home .apply__step .h {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--cream);
  margin-bottom: 6px;
}
.sqyd-home .apply__step .d {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(244, 240, 232, 0.7);
}
.sqyd-home .apply__cta {
  display: flex; gap: 14px; margin-top: 36px;
  flex-wrap: wrap;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1100px) {
  .sqyd-home .hero__title { max-width: 14ch; }
  .sqyd-home .hero__floor .wrap { gap: 16px; }
  .sqyd-home .trust__inner { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .sqyd-home .trust__col { padding: 22px 24px; border-right: 0; border-bottom: 1px solid var(--cream-2); }
  .sqyd-home .trust__col:nth-child(2) { padding-right: 0; padding-left: 24px; }
  .sqyd-home .trust__col:nth-child(odd) { border-right: 1px solid var(--cream-2); padding-left: 0; padding-right: 24px; }
  .sqyd-home .trust__col:nth-child(n+3) { border-bottom: 0; }
  .sqyd-home .pulses { grid-template-columns: 1fr; }
  .sqyd-home .intent__grid { grid-template-columns: 1fr; gap: 36px; }
  .sqyd-home .intent__row { grid-template-columns: 1fr; }
  .sqyd-home .spot { grid-template-columns: 1fr; }
  .sqyd-home .spot:nth-child(even) { grid-template-columns: 1fr; }
  .sqyd-home .spot:nth-child(even) .spot__media { order: 0; }
  .sqyd-home .spot__media { aspect-ratio: 16/10; min-height: 0; }
  .sqyd-home .desks { grid-template-columns: 1fr 1fr; }
  .sqyd-home .intel { grid-template-columns: 1fr; gap: 32px; }
  .sqyd-home .quotes { grid-template-columns: 1fr; gap: 40px; }
  .sqyd-home .tiers { grid-template-columns: 1fr 1fr; }
  .sqyd-home .seller { grid-template-columns: 1fr; gap: 36px; }
  .sqyd-home .seller__img { aspect-ratio: 16/9; }
  .sqyd-home .articles { grid-template-columns: 1fr; gap: 36px; }
  .sqyd-home .apply__inner { grid-template-columns: 1fr; gap: 36px; }
  .sqyd-home .shead { grid-template-columns: 80px 1fr; }
  .sqyd-home .shead__m { grid-column: 1 / -1; text-align: left; max-width: none; }
}
@media (max-width: 700px) {
  .sqyd-home .hero__title { font-size: clamp(34px, 9vw, 56px); }
  .sqyd-home .hero__trust { gap: 14px; font-size: 11px; }
  .sqyd-home .trust__inner { grid-template-columns: 1fr; }
  .sqyd-home .trust__col { border-right: 0 !important; border-bottom: 1px solid var(--cream-2); padding: 22px 0 !important; }
  .sqyd-home .trust__col:last-child { border-bottom: 0; }
  .sqyd-home .desks { grid-template-columns: 1fr; }
  .sqyd-home .tiers { grid-template-columns: 1fr; }
  .sqyd-home .spot__row { grid-template-columns: 1fr; }
  .sqyd-home .spot__row .col { padding: 12px 0 !important; border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .sqyd-home .spot__row .col:last-child { border-bottom: 0; }
}

/* 99Sqyd home widget compatibility tweaks */
.sqyd-home .intent__form input[type=hidden]{display:none!important}
.sqyd-home .btn{cursor:pointer}

/* 1.3.24 — Dynamic homepage property spotlights */
.sqyd-home .spots--grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
}
.sqyd-home .spots--grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sqyd-home .spots--grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sqyd-home .spots--grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.sqyd-home .spots--grid .spot,
.sqyd-home .spots--grid .spot:nth-child(even) {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  grid-template-columns: none;
}
.sqyd-home .spots--grid .spot__media,
.sqyd-home .spots--grid .spot:nth-child(even) .spot__media {
  order: 0;
  aspect-ratio: 16 / 10;
  min-height: 0;
}
.sqyd-home .spots--grid .spot__body {
  flex: 1;
  justify-content: flex-start;
  padding: clamp(24px, 2.6vw, 34px);
}
.sqyd-home .spots--grid .spot__nm {
  font-size: clamp(22px, 2vw, 28px);
}
.sqyd-home .spots--grid .spot__row {
  margin-top: auto;
  grid-template-columns: 1fr;
}
.sqyd-home .spots--grid .spot__row .col,
.sqyd-home .spots--grid .spot__row .col:nth-child(2),
.sqyd-home .spots--grid .spot__row .col:last-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-right: 0;
  border-bottom: 1px solid var(--line-soft);
}
.sqyd-home .spots--grid .spot__row .col:last-child { border-bottom: 0; }
.sqyd-home .spots--grid .spot__take {
  font-size: 15px;
  margin-bottom: 22px;
}
.sqyd-home .spots--grid .spot__cta {
  flex-wrap: wrap;
}
.sqyd-home .spots--grid .spot__cta .btn {
  flex: 1 1 auto;
}
@media (max-width: 1100px) {
  .sqyd-home .spots--grid,
  .sqyd-home .spots--grid-2,
  .sqyd-home .spots--grid-3,
  .sqyd-home .spots--grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .sqyd-home .spots--grid,
  .sqyd-home .spots--grid-2,
  .sqyd-home .spots--grid-3,
  .sqyd-home .spots--grid-4 { grid-template-columns: 1fr; }
}

/* ===================================================================
   99Sqyd home widget consistency patch — 1.3.25
   Keeps all legacy and new homepage widgets on one grid/panel system.
   =================================================================== */
.sqyd-home .pulses--cols-2,
.sqyd-home .desks--cols-2,
.sqyd-home .tiers--cols-2,
.sqyd-home .quotes--cols-2,
.sqyd-home .articles--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.sqyd-home .pulses--cols-3,
.sqyd-home .desks--cols-3,
.sqyd-home .tiers--cols-3,
.sqyd-home .quotes--cols-3,
.sqyd-home .articles--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.sqyd-home .pulses--cols-4,
.sqyd-home .desks--cols-4,
.sqyd-home .tiers--cols-4,
.sqyd-home .articles--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.sqyd-home .quotes--cols-1 { grid-template-columns: 1fr; }

.sqyd-home .pulse-card,
.sqyd-home .desk,
.sqyd-home .tier,
.sqyd-home .article {
  border: 0;
  min-width: 0;
}

.sqyd-home .pulse-card[href],
.sqyd-home .article,
.sqyd-home .desk__link,
.sqyd-home .tier__link {
  cursor: pointer;
}

.sqyd-home .pulse-card[href]:hover,
.sqyd-home .article:hover,
.sqyd-home .tier:hover {
  background: var(--ivory);
}

.sqyd-home .pulse-card__status--flat { color: var(--muted); }
.sqyd-home .pulse-card__status--flat .dot { background: var(--muted-2); }

.sqyd-home .tier__qual strong {
  display: block;
  margin-bottom: 4px;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sqyd-home .tier__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  margin-top: 18px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--gold);
  color: var(--ink);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.sqyd-home .tier__link svg { width: 11px; height: 11px; }
.sqyd-home .tier--feat .tier__link { color: var(--gold-2); border-bottom-color: var(--gold-2); }

.sqyd-home .quote {
  min-width: 0;
}

.sqyd-home .article__media:empty {
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(168,122,62,.16), rgba(14,14,13,.78)),
    var(--ink);
}

@media (max-width: 1100px) {
  .sqyd-home .pulses--cols-4,
  .sqyd-home .desks--cols-4,
  .sqyd-home .tiers--cols-4,
  .sqyd-home .articles--cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .sqyd-home .pulses--cols-2,
  .sqyd-home .pulses--cols-3,
  .sqyd-home .pulses--cols-4,
  .sqyd-home .desks--cols-2,
  .sqyd-home .desks--cols-3,
  .sqyd-home .desks--cols-4,
  .sqyd-home .tiers--cols-2,
  .sqyd-home .tiers--cols-3,
  .sqyd-home .tiers--cols-4,
  .sqyd-home .quotes--cols-1,
  .sqyd-home .quotes--cols-2,
  .sqyd-home .quotes--cols-3,
  .sqyd-home .articles--cols-2,
  .sqyd-home .articles--cols-3,
  .sqyd-home .articles--cols-4 {
    grid-template-columns: 1fr;
  }
}

/* ===================================================================
   Phase 1.3.52 — Mobile homepage alignment + uniform card system
   Fixes stacked mobile homepage rhythm, card widths, image ratios and
   inconsistent card heights without changing the Elementor content model.
   =================================================================== */
@media (max-width: 767px) {
  html, body { overflow-x: hidden !important; }
  body.home .site-content,
  body.home .elementor,
  body.home .elementor-section,
  body.home .elementor-container,
  .sqyd-home {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .sqyd-home {
    --gutter: 18px;
    --pad: 42px;
    font-size: 14px;
    line-height: 1.55;
  }

  .sqyd-home .wrap {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .sqyd-home .sect,
  .sqyd-home .sect--tight {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }

  .sqyd-home .display--xxl { font-size: clamp(36px, 10.5vw, 48px) !important; line-height: 1.02 !important; }
  .sqyd-home .display--xl  { font-size: clamp(30px, 8.6vw, 40px) !important; line-height: 1.06 !important; }
  .sqyd-home .display--lg  { font-size: clamp(25px, 7vw, 32px) !important; line-height: 1.1 !important; }
  .sqyd-home .display--md  { font-size: clamp(22px, 6vw, 27px) !important; line-height: 1.16 !important; }

  .sqyd-home .kicker,
  .sqyd-home .label-sm {
    font-size: 9.5px !important;
    letter-spacing: .18em !important;
  }

  .sqyd-home .shead {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    align-items: start !important;
    padding-bottom: 16px !important;
    margin-bottom: 22px !important;
  }
  .sqyd-home .shead__num {
    padding-bottom: 0 !important;
    font-size: 11px !important;
  }
  .sqyd-home .shead__h2 {
    font-size: clamp(26px, 8vw, 34px) !important;
    max-width: 100% !important;
  }
  .sqyd-home .shead__m {
    grid-column: auto !important;
    max-width: 100% !important;
    text-align: left !important;
    font-size: 13px !important;
  }

  /* Hero is intentionally shorter on mobile so it does not dominate the
     entire page before the first card appears. */
  .sqyd-home .hero {
    min-height: 620px !important;
    align-items: flex-end !important;
  }
  .sqyd-home .hero__top { top: 20px !important; }
  .sqyd-home .hero__top .wrap {
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .sqyd-home .hero__signal {
    font-size: 9.5px !important;
    letter-spacing: .16em !important;
    line-height: 1.45 !important;
    max-width: 21ch !important;
  }
  .sqyd-home .hero__tier {
    justify-content: flex-end !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    max-width: 46% !important;
  }
  .sqyd-home .badge {
    padding: 5px 8px !important;
    font-size: 8.5px !important;
    letter-spacing: .12em !important;
  }
  .sqyd-home .hero__body {
    padding-bottom: 28px !important;
  }
  .sqyd-home .hero__kicker {
    gap: 10px !important;
    font-size: 9.5px !important;
    letter-spacing: .17em !important;
    margin-bottom: 16px !important;
  }
  .sqyd-home .hero__kicker .line { width: 28px !important; }
  .sqyd-home .hero__title {
    font-size: clamp(39px, 12vw, 55px) !important;
    max-width: 9.5ch !important;
    margin-bottom: 18px !important;
  }
  .sqyd-home .hero__lede {
    font-size: 14px !important;
    line-height: 1.55 !important;
    max-width: 28ch !important;
    margin-bottom: 22px !important;
  }
  .sqyd-home .hero__cta,
  .sqyd-home .seller__cta,
  .sqyd-home .apply__cta,
  .sqyd-home .intent__submit,
  .sqyd-home .spot__cta {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .sqyd-home .btn {
    width: 100% !important;
    min-height: 46px !important;
    padding: 13px 15px !important;
    font-size: 11px !important;
  }
  .sqyd-home .hero__floor { padding: 14px 0 !important; }
  .sqyd-home .hero__floor .wrap {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .sqyd-home .hero__trust {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px 14px !important;
    font-size: 10.8px !important;
  }
  .sqyd-home .hero__concierge {
    font-size: 11.5px !important;
    justify-content: flex-start !important;
  }

  /* Unified mobile card rhythm. Each card sits on the same full-width rail,
     with consistent border, padding and internal spacing. */
  .sqyd-home .pulses,
  .sqyd-home .desks,
  .sqyd-home .tiers,
  .sqyd-home .quotes,
  .sqyd-home .articles,
  .sqyd-home .spots,
  .sqyd-home .spots--grid,
  .sqyd-home .spots--grid-2,
  .sqyd-home .spots--grid-3,
  .sqyd-home .spots--grid-4,
  .sqyd-home .pulses--cols-2,
  .sqyd-home .pulses--cols-3,
  .sqyd-home .pulses--cols-4,
  .sqyd-home .desks--cols-2,
  .sqyd-home .desks--cols-3,
  .sqyd-home .desks--cols-4,
  .sqyd-home .tiers--cols-2,
  .sqyd-home .tiers--cols-3,
  .sqyd-home .tiers--cols-4,
  .sqyd-home .quotes--cols-1,
  .sqyd-home .quotes--cols-2,
  .sqyd-home .quotes--cols-3,
  .sqyd-home .articles--cols-2,
  .sqyd-home .articles--cols-3,
  .sqyd-home .articles--cols-4 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    background: transparent !important;
    border: 0 !important;
  }

  .sqyd-home .pulse-card,
  .sqyd-home .desk,
  .sqyd-home .tier,
  .sqyd-home .quote,
  .sqyd-home .article,
  .sqyd-home .heatmap,
  .sqyd-home .brief,
  .sqyd-home .intent__form,
  .sqyd-home .seller__visi {
    width: 100% !important;
    min-width: 0 !important;
    border: 1px solid var(--line) !important;
    margin: 0 !important;
    padding: 22px !important;
    box-shadow: none !important;
  }

  .sqyd-home .pulse-card,
  .sqyd-home .desk,
  .sqyd-home .tier {
    min-height: 280px !important;
  }
  .sqyd-home .quote {
    min-height: 230px !important;
    background: var(--paper) !important;
  }
  .sqyd-home .article {
    min-height: 430px !important;
    background: var(--paper) !important;
  }

  .sqyd-home .trust__inner {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1px !important;
    background: var(--cream-2) !important;
    padding: 0 !important;
    border: 1px solid var(--cream-2) !important;
  }
  .sqyd-home .trust__col {
    background: var(--cream) !important;
    border: 0 !important;
    padding: 18px 14px !important;
    min-height: 145px !important;
  }
  .sqyd-home .trust__lbl { font-size: 8.8px !important; letter-spacing: .16em !important; margin-bottom: 10px !important; }
  .sqyd-home .trust__num { font-size: clamp(30px, 9vw, 42px) !important; margin-bottom: 8px !important; }
  .sqyd-home .trust__desc { font-size: 11.5px !important; line-height: 1.45 !important; }

  .sqyd-home .pulse-card__type,
  .sqyd-home .desk__nm,
  .sqyd-home .tier__nm,
  .sqyd-home .article__title,
  .sqyd-home .quote__text {
    font-size: 20px !important;
    line-height: 1.22 !important;
  }
  .sqyd-home .pulse-card__amt { font-size: 34px !important; }
  .sqyd-home .pulse-card__meta { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }

  .sqyd-home .intent__grid,
  .sqyd-home .seller,
  .sqyd-home .apply__inner,
  .sqyd-home .intel {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .sqyd-home .intent__row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .sqyd-home .intent__chips { gap: 8px !important; }
  .sqyd-home .intent__chip { flex: 1 1 calc(50% - 8px) !important; text-align: center !important; }
  .sqyd-home .intent__submit .note { font-size: 11px !important; }

  .sqyd-home .spot,
  .sqyd-home .spot:nth-child(even),
  .sqyd-home .spots--grid .spot,
  .sqyd-home .spots--grid .spot:nth-child(even) {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-height: 0 !important;
    border: 1px solid var(--line) !important;
    background: var(--paper) !important;
  }
  .sqyd-home .spot__media,
  .sqyd-home .spot:nth-child(even) .spot__media,
  .sqyd-home .spots--grid .spot__media,
  .sqyd-home .spots--grid .spot:nth-child(even) .spot__media {
    order: 0 !important;
    width: 100% !important;
    aspect-ratio: auto !important;
    height: 220px !important;
    min-height: 220px !important;
  }
  .sqyd-home .spot__body,
  .sqyd-home .spots--grid .spot__body {
    padding: 22px !important;
    min-height: 340px !important;
    justify-content: flex-start !important;
  }
  .sqyd-home .spot__num { margin-bottom: 12px !important; }
  .sqyd-home .spot__nm { font-size: 24px !important; line-height: 1.12 !important; }
  .sqyd-home .spot__loc { margin-bottom: 16px !important; }
  .sqyd-home .spot__take {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
    padding: 14px 0 14px 16px !important;
    margin-bottom: 18px !important;
  }
  .sqyd-home .spot__row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    margin-top: auto !important;
    margin-bottom: 18px !important;
    padding: 0 !important;
  }
  .sqyd-home .spot__row .col,
  .sqyd-home .spot__row .col:nth-child(2),
  .sqyd-home .spot__row .col:last-child {
    display: flex !important;
    align-items: baseline !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 12px 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line-soft) !important;
  }
  .sqyd-home .spot__row .col:last-child { border-bottom: 0 !important; }

  .sqyd-home .desk__desc,
  .sqyd-home .tier__unlocks,
  .sqyd-home .article__excerpt,
  .sqyd-home .quote__text { flex: 1 1 auto !important; }
  .sqyd-home .article__media {
    width: 100% !important;
    height: 205px !important;
    min-height: 205px !important;
    aspect-ratio: auto !important;
    margin-bottom: 18px !important;
  }
  .sqyd-home .seller__img {
    width: 100% !important;
    aspect-ratio: auto !important;
    height: 260px !important;
  }
  .sqyd-home .seller__visi ul li {
    align-items: flex-start !important;
    gap: 10px !important;
  }
  .sqyd-home .seller__visi ul li strong {
    min-width: 92px !important;
  }

  /* Heatmap becomes readable mobile cards instead of a compressed data table. */
  .sqyd-home .heatmap__top {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    align-items: start !important;
    margin-bottom: 16px !important;
  }
  .sqyd-home .heatmap__top .meta { text-align: left !important; }
  .sqyd-home .heatmap__grid {
    display: block !important;
    font-size: 12.5px !important;
  }
  .sqyd-home .heatmap__hd { display: none !important; }
  .sqyd-home .heatmap__row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px 12px !important;
    padding: 14px 0 !important;
    border-top: 1px solid var(--line-soft) !important;
  }
  .sqyd-home .heatmap__row > * {
    padding: 0 !important;
    border-top: 0 !important;
  }
  .sqyd-home .heatmap__loc {
    grid-column: 1 / -1 !important;
    font-size: 16px !important;
  }

  .sqyd-home .brief { padding: 24px !important; }
  .sqyd-home .brief__top { align-items: flex-start !important; gap: 10px !important; }
  .sqyd-home .brief h4 { font-size: 21px !important; }

  .sqyd-home .apply__step {
    grid-template-columns: 44px 1fr !important;
    padding: 18px 0 !important;
  }
  .sqyd-home .apply__step .n { font-size: 28px !important; }

  .sqyd-home .sfoot {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding-top: 22px !important;
    margin-top: 22px !important;
  }
}

@media (max-width: 390px) {
  .sqyd-home .trust__inner { grid-template-columns: 1fr !important; }
  .sqyd-home .trust__col { min-height: 0 !important; }
  .sqyd-home .hero__tier { display: none !important; }
  .sqyd-home .hero__title { max-width: 9ch !important; }
}
