:root {
  --bg: #fcfbf8;
  --bg-soft: #fffefb;
  --card: #ffffff;
  --card-soft: #faf7f2;
  --text: #111111;
  --muted: #65605a;
  --line: rgba(17, 17, 17, 0.08);
  --line-strong: rgba(17, 17, 17, 0.14);
  --accent: #4f6d66;
  --accent-2: #ae8241;
  --accent-soft: rgba(79, 109, 102, 0.08);
}

/* Live atlas landing page */
.atlasBody {
  min-height: 100vh;
  background: #f6f1e8;
}

.atlas {
  width: min(1880px, 100%);
  margin: 0 auto;
  padding: 8px clamp(8px, 1.4vw, 20px) 80px;
}

.atlasHeader {
  position: sticky;
  top: 8px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  margin-bottom: 8px;
}

.atlasBrand,
.atlasActions {
  pointer-events: auto;
}

.atlasBrand {
  display: inline-flex;
  align-items: center;
}

.atlasMark,
.atlasIconButton,
.pinButton,
.downloadButton {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: #16130f;
  background: rgba(246, 241, 232, 0.54);
  box-shadow: 0 10px 30px rgba(54, 43, 28, 0.08);
  backdrop-filter: blur(14px);
}

.atlasMark {
  color: #f6f1e8;
  background: rgba(18, 16, 13, 0.92);
  font-weight: 760;
  letter-spacing: -0.08em;
}

.atlasActions,
.cardActions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.atlasIconButton {
  cursor: pointer;
}

.atlasIconButton.active {
  color: #17130d;
  background: #f2c14f;
}

.atlasIconButton svg,
.pinButton svg,
.downloadButton svg {
  width: 18px;
  height: 18px;
}

.atlasGrid,
.pinGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  grid-auto-rows: 88px;
  grid-auto-flow: dense;
  gap: clamp(7px, 0.8vw, 12px);
  align-items: stretch;
}

.atlasCard,
.atlasSkeleton {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #e8dfd0;
  grid-column: span 2;
  grid-row: span 3;
}

.atlasCard.tileLarge,
.atlasSkeleton.tileLarge {
  grid-column: span 3;
  grid-row: span 4;
}

.atlasCard.tileWide,
.atlasSkeleton.tileWide {
  grid-column: span 4;
  grid-row: span 3;
}

.atlasCard.tileTall,
.atlasSkeleton.tileTall {
  grid-column: span 2;
  grid-row: span 5;
}

.atlasCard.tileFeature,
.atlasSkeleton.tileFeature {
  grid-column: span 4;
  grid-row: span 5;
}

.atlasImageButton {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.atlasImage {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #e8dfd0;
}

.atlasMeta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 42px 11px 11px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
  opacity: 0;
  transition: opacity 120ms ease;
}

.atlasCard:hover .atlasMeta,
.atlasCard:focus-within .atlasMeta {
  opacity: 1;
}

.atlasMeta h2 {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.cardActions {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  opacity: 0;
  transition: opacity 120ms ease;
}

.atlasCard:hover .cardActions,
.atlasCard:focus-within .cardActions,
.cardActions:has(.pinButton.active) {
  opacity: 1;
}

.pinButton,
.downloadButton {
  width: 34px;
  height: 34px;
  padding: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 255, 255, 0.24);
  cursor: pointer;
}

.pinButton.active {
  color: #17130d;
  background: #f2c14f;
}

.pinButton.justPinned {
  animation: pinPop 260ms ease-out;
}

.atlasSentinel {
  width: 100%;
  height: 40vh;
}

.atlasSentinel.hidden,
.pinDrawer.hidden {
  display: none;
}

.atlasSkeleton {
  background: linear-gradient(100deg, #e8dfd0 0%, #f4edde 45%, #e8dfd0 90%);
  background-size: 220% 100%;
  animation: atlasSkeleton 1.1s linear infinite;
}

.pinDrawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  justify-items: end;
  background: rgba(20, 17, 13, 0.22);
  backdrop-filter: blur(6px);
}

.pinDrawerPanel {
  width: min(620px, 100%);
  height: 100%;
  overflow: auto;
  padding: 12px;
  background: rgba(246, 241, 232, 0.92);
  box-shadow: -20px 0 80px rgba(54, 43, 28, 0.16);
}

.pinDrawerHeader {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  padding-bottom: 10px;
  background: linear-gradient(180deg, rgba(246, 241, 232, 0.96), rgba(246, 241, 232, 0));
}

.pinEmpty {
  min-height: 60vh;
}

@keyframes atlasSkeleton {
  from { background-position: 120% 0; }
  to { background-position: -120% 0; }
}

@keyframes pinPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.22); }
  100% { transform: scale(1); }
}

@media (hover: none) {
  .atlasMeta,
  .cardActions {
    opacity: 1;
  }
}

@media (max-width: 760px) {
  .atlas {
    padding-inline: 7px;
  }

  .atlasHeader {
    top: 7px;
  }

  .atlasGrid,
  .pinGrid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 74px;
    gap: 7px;
  }

  .atlasCard.tileLarge,
  .atlasSkeleton.tileLarge,
  .atlasCard.tileWide,
  .atlasSkeleton.tileWide,
  .atlasCard.tileFeature,
  .atlasSkeleton.tileFeature {
    grid-column: span 4;
    grid-row: span 4;
  }
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fdfcf9 0%, #faf8f3 100%);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(17, 17, 17, 0.015) 1px, transparent 1px);
  background-size: 100% 44px;
  opacity: 0.42;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 80%);
}

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

button,
input {
  font: inherit;
}

.site {
  position: relative;
  z-index: 1;
}

.shell {
  max-width: 1260px;
  margin: 0 auto;
  padding: 28px 18px 56px;
}

.landing.shell {
  padding-top: 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

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

.brandIcon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 239, 232, 0.94));
}

.topbar h1 {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 650;
  color: rgba(17, 17, 17, 0.72);
}

.topTabs {
  margin-left: auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding: 0 18px 38px;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  min-height: 100vh;
  overflow: hidden;
}

.topbarLanding {
  position: absolute;
  z-index: 3;
  top: 28px;
  left: 18px;
  right: 18px;
  margin-bottom: 0;
}

.heroCopy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-bottom: 4vh;
}

.heroCopyPanel {
  max-width: 620px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.heroCopy h2,
.sectionCopy h3,
.sectionSplit h3,
.sectionHeader h3 {
  margin: 0;
  font-weight: 540;
  letter-spacing: -0.04em;
}

.heroCopy h2 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.94;
}

.heroCopy p {
  margin: 18px 0 0;
  max-width: 42ch;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  color: rgba(17, 17, 17, 0.72);
}

.heroActions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.ctaPrimary,
.ctaSecondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  transition: transform 140ms ease, border-color 140ms ease, background-color 140ms ease;
}

.ctaPrimary {
  background: #111111;
  color: #fff;
  border-color: #111111;
  font-weight: 600;
}

.ctaSecondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
}

.ctaPrimary:hover,
.ctaSecondary:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 17, 17, 0.24);
}

.heroVisual,
.mosaicFrame {
  min-width: 0;
}

.heroBackdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.34;
  pointer-events: none;
}

.heroSlider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.heroSliderTrack {
  display: flex;
  width: 200%;
  height: 100%;
  animation: heroPan 40s linear infinite;
  will-change: transform;
}

.heroSliderSet {
  width: 50%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  gap: 0;
  padding: 0;
  align-content: stretch;
}

.heroSliderSet .mosaicTile {
  min-height: 0;
}

.heroBackdrop .mosaicTile {
  border-color: rgba(17, 17, 17, 0.04);
}

.heroBackdrop .mosaicTile img {
  opacity: 0.92;
  filter: saturate(1) contrast(1.04);
}

.sectionMosaic .mosaicTile img {
  opacity: 1;
}

.heroMosaic,
.sectionMosaic {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 10px;
}

.heroMosaic {
  min-height: 100%;
}

.mosaicTile {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #f1ede6;
  transform: translateZ(0);
  animation: floatIn 500ms ease both;
  animation-delay: var(--delay, 0ms);
}

.mosaicTile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 180ms ease, filter 180ms ease;
}

.mosaicTile:hover img {
  transform: scale(1.04);
}

.tile-round {
  border-radius: 8px;
}

.tile-soft {
  border-radius: 8px;
}

.tile-clip {
  border-radius: 8px 12px 8px 12px;
}

.tile-square {
  border-radius: 8px;
}

.tile-wide {
  grid-column: span 5;
  min-height: 150px;
}

.tile-tall {
  grid-column: span 4;
  min-height: 220px;
}

.tile-large {
  grid-column: span 6;
  min-height: 240px;
}

.tile-small {
  grid-column: span 1;
  min-height: 86px;
}

.tile-mini {
  grid-column: span 1;
  min-height: 72px;
}

.tile-offset {
  transform: translateY(12px);
}

.sectionBlock {
  padding: 24px 0 36px;
}

.sectionLead {
  display: grid;
  gap: 10px;
  max-width: 780px;
}

.sectionLead h3,
.sectionCta h3 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.05;
}

.sectionLead p {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 52ch;
}

.textCardGrid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

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

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

.textCard,
.sectionCta {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
}

.textCard {
  padding: 18px;
  border-radius: 10px;
}

.cardIcon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  display: block;
}

.textCard h4 {
  margin: 12px 0 0;
  font-size: 1rem;
  color: var(--text);
  font-weight: 620;
}

.textCard p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.dualList > div,
.stepItem {
  padding: 22px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
}

.dualList span,
.stepItem span {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.dualList h4,
.stepItem p {
  margin: 10px 0 0;
}

.dualList p {
  margin: 8px 0 0;
  color: var(--muted);
}

.splitText {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.splitTextReverse {
  align-items: flex-end;
}

.workflowSection {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.workflowDiagramBox,
.workflowCopy {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 22px;
}

.workflowDiagram {
  width: 100%;
  height: auto;
  display: block;
  color: var(--text);
}

.workflowCopy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.workflowList {
  display: grid;
  gap: 12px;
}

.workflowItem {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.workflowItem span {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.workflowItem h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 620;
}

.workflowItem p {
  margin: 8px 0 0;
  color: var(--muted);
}

.stepRail {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.stepItem p {
  color: var(--muted);
}

.sectionCta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border-radius: 2px;
  padding: 22px;
  margin-top: 8px;
}

.sectionCta p {
  margin: 14px 0 0;
  color: var(--muted);
}

.sectionCta .ctaPrimary {
  flex: none;
}

@keyframes heroPan {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes loadingPulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  50% {
    transform: translateY(-3px);
    opacity: 0.9;
  }
}

@keyframes shimmerFast {
  from { background-position: 120% 0; }
  to { background-position: -120% 0; }
}

@keyframes fastSkeleton {
  from { opacity: 0.58; transform: translateY(0); }
  to { opacity: 1; transform: translateY(-1px); }
}

.featureIcon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
}

.featureCopy p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

.appSection {
  padding-top: 18px;
  padding-bottom: 132px;
  margin-top: 18px;
}

.appShell {
  display: block;
}

.authGate {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px 0;
}

.authPanel {
  width: min(100%, 340px);
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  background: rgba(246, 241, 232, 0.64);
  box-shadow: 0 16px 54px rgba(54, 43, 28, 0.08);
  backdrop-filter: blur(16px);
}

.authBrand {
  margin-bottom: 2px;
}

.authPanel h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
  font-weight: 560;
  letter-spacing: 0;
}

.authPanel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
  text-align: center;
  font-size: 0.88rem;
}

.authDevButton {
  min-height: 44px;
  padding: 10px 16px;
  display: block;
  text-align: center;
  border-radius: 999px;
}

.appTopbar {
  margin-bottom: 12px;
}

.appBrand {
  flex: 0 0 auto;
  text-decoration: none;
}

.topTabs {
  margin-left: auto;
}

.appMain {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.appTabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.pane {
  display: none;
}

.pane.active {
  display: block;
}

.priceStage {
  display: grid;
  align-content: start;
  justify-items: stretch;
  gap: 16px;
  text-align: left;
  width: 100%;
}

.priceWorkspace {
  display: grid;
  grid-template-columns: minmax(290px, 348px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.priceWorkspace.singleColumn {
  grid-template-columns: minmax(0, 640px);
  justify-content: center;
}

.priceWorkspace.singleColumn .priceColumnLeft {
  display: none;
}

.priceColumn {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.priceColumnLeft {
  position: sticky;
  top: 82px;
  align-self: start;
}

.priceIntroCard {
  padding: 0;
}

.primaryAction {
  width: 100%;
  min-height: 120px;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition:
    transform 140ms ease,
    border-color 140ms ease,
    background-color 140ms ease,
    box-shadow 140ms ease;
  box-shadow: none;
}

.pricePrimary {
  min-height: 260px;
  padding: 28px;
  text-align: left;
  display: grid;
  place-items: start;
  align-content: end;
  gap: 8px;
}

.pricePrimary .primaryLabel {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.pricePrimary .primaryHint {
  margin-top: 0;
  font-size: 0.96rem;
  max-width: 36ch;
  text-align: left;
}

.primaryAction:hover {
  transform: translateY(-2px);
  border-color: #111111;
  background: #232323;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
}

.primaryAction:focus-visible {
  outline: 2px solid rgba(79, 109, 102, 0.65);
  outline-offset: 3px;
}

.primaryLabel {
  display: block;
  font-size: 1.08rem;
  font-weight: 680;
  letter-spacing: -0.02em;
}

.primaryHint {
  display: block;
  margin-top: 7px;
  font-size: 0.92rem;
  color: var(--muted);
}

.loadingState {
  width: 100%;
  min-height: 220px;
  display: grid;
  justify-items: start;
  align-content: end;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
}

.loadingOrbs {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.loadingOrbs span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #111111;
  opacity: 0.35;
  animation: loadingPulse 640ms ease-in-out infinite;
}

.loadingOrbs span:nth-child(2) {
  animation-delay: 90ms;
}

.loadingOrbs span:nth-child(3) {
  animation-delay: 180ms;
}

.loadingCopy {
  display: grid;
  gap: 4px;
}

.loadingLabel {
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--text);
}

.loadingDetail:empty {
  display: none;
}

.loadingDots {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 12px;
}

.loadingDots i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.45;
  animation: loadingPulse 1.2s ease-in-out infinite;
}

.loadingDots i:nth-child(2) {
  animation-delay: 140ms;
}

.loadingDots i:nth-child(3) {
  animation-delay: 280ms;
}

.resultsSection {
  width: 100%;
  display: grid;
  align-content: start;
  gap: 14px;
}

#priceResultsSection,
#priceSummarySection {
  margin-top: 0;
}

.resultsHeader {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.resultsHeader h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 620;
}

.resultsHeader p {
  margin: 0;
  color: var(--muted);
}

.resultsHeaderCompact {
  margin-bottom: 0;
}

.featureSummarySection {
  width: 100%;
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.featureSummaryHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.featureSummaryHeader h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 620;
}

.featureChipGrid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.featureGroup {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
}

.featureGroupLabel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.featureGroupIcon {
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  color: var(--accent);
  flex: 0 0 auto;
}

.featureGroupIcon svg {
  width: 16px;
  height: 16px;
  display: block;
}

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

.featureChip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  font-size: 0.9rem;
}

.featureChipMuted {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.66);
}

.featureNarrative {
  margin: 0;
  color: var(--muted);
  max-width: 80ch;
  line-height: 1.6;
}

.imagePreview {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
}

.imagePreview img {
  width: 100%;
  max-height: 230px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.authControls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  min-width: 0;
}

.authName {
  max-width: 180px;
  color: var(--muted);
  font-size: 0.86rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.googleSignIn {
  min-width: 160px;
}

.authAvatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #fff;
  flex: 0 0 auto;
}

.authAvatarFallback {
  display: inline-grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 760;
  color: #f6f1e8;
  background: rgba(18, 16, 13, 0.92);
}

.atlasAuthLink {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #111111;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.atlasAuthLink .authAvatar {
  width: 26px;
  height: 26px;
}

.atlasAuthPrompt {
  position: fixed;
  z-index: 80;
  top: 72px;
  right: 18px;
  width: min(360px, calc(100vw - 36px));
  padding: 16px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: #111111;
  display: grid;
  gap: 14px;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.16);
}

.atlasAuthPrompt strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.atlasAuthPrompt p {
  margin: 0;
  color: rgba(17, 17, 17, 0.66);
  line-height: 1.45;
}

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

.atlasAuthPromptActions a,
.atlasAuthPromptActions button {
  min-height: 38px;
  border-radius: 999px;
  padding: 0 14px;
  border: 1px solid #111111;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.atlasAuthPromptActions a {
  background: #111111;
  color: #ffffff;
}

.atlasAuthPromptActions button {
  background: transparent;
  color: #111111;
}

.photoStrip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(74px, 1fr));
  gap: 8px;
}

.photoTile {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  overflow: hidden;
}

.photoTile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.photoTile span {
  display: block;
  padding: 6px;
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.emptyState {
  margin: 0;
  color: var(--muted);
}

.priceGrid {
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
}

.priceGrid .thumb {
  aspect-ratio: 0.92;
}

.priceGrid .cardBody {
  padding: 9px 10px 11px;
}

.profileItemCard {
  cursor: pointer;
}

.profileItemCard:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.48);
  outline-offset: 3px;
}

.profileListingDetail {
  display: grid;
  gap: 14px;
}

.profileListingSummary {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 14px;
}

.profileListingSummaryText {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.profileListingSummaryText span {
  color: var(--muted);
  text-transform: capitalize;
}

.priceSkeleton {
  display: grid;
  gap: 9px;
  animation: fastSkeleton 520ms ease-in-out infinite alternate;
  animation-delay: var(--delay, 0ms);
}

.priceSkeletonThumb,
.priceSkeletonLine {
  display: block;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.17), rgba(17, 17, 17, 0.08));
  background-size: 220% 100%;
  animation: shimmerFast 620ms linear infinite;
}

.priceSkeletonThumb {
  aspect-ratio: 0.92;
}

.priceSkeletonLine {
  height: 10px;
}

.priceSkeletonLine.short {
  width: 58%;
}

.controls {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 10px;
}

.controls input,
.controls button {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
}

.controls input::placeholder {
  color: rgba(101, 96, 90, 0.8);
}

.controls button {
  background: #111111;
  color: #fff;
  border-color: #111111;
  cursor: pointer;
}

.decision {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.76);
}

.summarySection {
  width: 100%;
  display: grid;
  gap: 14px;
  justify-items: center;
}

#priceSummarySection {
  order: 1;
}

#priceResultsSection {
  order: 2;
}

.summarySection .estimateBox,
.summarySection .fallbackBox {
  width: 100%;
}

.listingWorkflowSection {
  width: 100%;
  display: grid;
  gap: 14px;
}

.listingDraftGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  width: 100%;
}

.listingEmptyCard {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  padding: 16px;
  display: grid;
  gap: 12px;
}

.listingEmptyCard h4,
.listingEmptyCard p {
  margin: 0;
}

.listingEmptyCard h4 {
  font-size: 1rem;
}

.listingEmptyCard p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.listingDraftCard {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  padding: 14px;
  display: grid;
  gap: 12px;
}

.listingDraftHeader {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.listingDraftHeader h4 {
  margin: 0;
  font-size: 1rem;
}

.listingDraftHeader p,
.listingNote {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.listingPrice,
.listingStatus {
  font-weight: 760;
  white-space: nowrap;
}

.listingBadgeStack {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.listingStatus {
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  padding: 5px 9px;
  background: #f7f4ee;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: capitalize;
}

.listingStatus-ready {
  background: #eef7f1;
  color: #1f6b3a;
}

.listingStatus-listed {
  background: #edf3ff;
  color: #2456a3;
}

.listingStatus-sold {
  background: #111111;
  color: #ffffff;
}

.listingStatus-skipped {
  background: #f3f3f3;
  color: #676767;
}

.connectorBadge {
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.78rem;
  font-weight: 760;
  white-space: nowrap;
}

.connectorBadge-auto {
  color: #0f5f36;
  background: #dff5e8;
  border: 1px solid rgba(31, 107, 58, 0.2);
}

.connectorBadge-manual {
  color: #6b4b12;
  background: #fff7db;
  border: 1px solid rgba(211, 153, 34, 0.35);
}

.listingField {
  display: grid;
  gap: 6px;
}

.listingField span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listingField input,
.listingField textarea,
.listingField select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 11px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

.listingField textarea {
  min-height: 142px;
  resize: vertical;
}

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

.listingDraftActions .secondaryAction {
  min-width: 92px;
  text-align: center;
  text-decoration: none;
}

.listingFilterBar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.listingFilterBtn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 720;
  padding: 8px 10px;
}

.listingFilterBtn.active {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.listingSummaryStrip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.listingSummaryPill {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 680;
  padding: 8px 10px;
}

.listingSummaryPill strong {
  color: var(--text);
}

.connectorSetupPanel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  margin: 0 0 12px;
  padding: 12px;
}

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

.connectorSetupHeader h4 {
  margin: 0;
  font-size: 0.95rem;
}

.connectorSetupHeader span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

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

.connectorRefreshBtn {
  min-width: auto;
  padding: 7px 10px;
}

.connectorSetupGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
}

.connectorSetupItem {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
}

.connectorSetupItem div {
  display: grid;
  gap: 3px;
}

.connectorSetupItem strong {
  font-size: 0.9rem;
}

.connectorSetupItem span {
  color: var(--muted);
  font-size: 0.82rem;
}

.connectorSetupStatus {
  align-self: start;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 4px 8px;
}

.connectorSetupStatusReady {
  background: #dff7e8;
  color: #116333;
}

.connectorSetupStatusOff {
  background: #f2f2f2;
  color: #666666;
}

.listingsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.listingManagerCard {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  padding: 14px;
  display: grid;
  gap: 12px;
}

.listingManagerTop {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.listingManagerTop h4,
.listingManagerTop p {
  margin: 0;
}

.listingManagerTop h4 {
  font-size: 0.98rem;
}

.listingManagerTop p,
.listingManagerMeta {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.listingManagerMeta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.listingManagerFields {
  display: grid;
  gap: 10px;
}

.listingManagerNotice {
  margin: 0;
  color: #6b4b12;
  background: #fff7db;
  border: 1px solid rgba(211, 153, 34, 0.35);
  border-radius: 8px;
  padding: 9px 10px;
  font-size: 0.86rem;
  line-height: 1.35;
}

.marketLogo {
  min-width: 38px;
  height: 38px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  padding: 0 9px;
  font-weight: 800;
  font-size: 0.76rem;
  line-height: 1;
  color: #ffffff;
  background: #111111;
  white-space: nowrap;
}

.marketLogoEbay {
  background: #ffffff;
  color: #111111;
  border: 1px solid var(--line-strong);
}

.marketLogoEtsy {
  background: #f1641e;
}

.marketLogoBonanza {
  background: #5c8f22;
}

.marketLogoCraigslist {
  background: #551a8b;
}

.marketLogoMeta {
  background: #0866ff;
}

.followupSection {
  width: 100%;
  display: grid;
  gap: 14px;
}

.followupGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.followupField {
  display: grid;
  gap: 8px;
  color: var(--text);
}

.followupField span {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.followupField input,
.followupField textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 15px;
  background: #ffffff;
  color: #111111;
  font: inherit;
}

.followupField textarea {
  resize: vertical;
  min-height: 150px;
}

.followupFieldWide {
  grid-column: 1 / -1;
}

.priceEstimateAction {
  width: min(100%, 280px);
  min-height: 58px;
  padding: 0 20px;
  text-align: center;
  place-items: center;
}

.estimateBox,
.fallbackBox {
  margin-top: 10px;
  border-radius: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
}

.fallbackBox {
  color: var(--muted);
}

.hidden {
  display: none;
}

.meta {
  margin: 16px 2px 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
}

.card {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
}

.thumbWrap {
  position: relative;
  overflow: hidden;
}

.thumb {
  width: 100%;
  aspect-ratio: 1.02;
  object-fit: cover;
  background: #f1ede6;
  display: block;
}

.hoverDesc {
  position: absolute;
  inset: auto 10px 10px 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  border: 1px solid rgba(17, 17, 17, 0.08);
  font-size: 0.8rem;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 140ms ease, transform 140ms ease;
  max-height: 46%;
  overflow: auto;
}

.thumbWrap:hover .hoverDesc {
  opacity: 1;
  transform: translateY(0);
}

.lens {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 8px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-color: #e8e3d8;
  transition: opacity 120ms ease;
}

.thumbWrap:hover .lens {
  opacity: 1;
}

.cardBody {
  padding: 14px;
}

.title {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 580;
}

.price {
  margin: 8px 0 2px;
  color: var(--text);
  font-weight: 700;
}

.house {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.bottomTabs {
  display: none;
}

.tab {
  border: 0;
  background: transparent;
  color: rgba(17, 17, 17, 0.64);
  padding: 8px 10px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 10px;
}

.tab.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
}

.tabIcon {
  display: inline-grid;
  place-items: center;
}

.pricingResult {
  margin-top: 0;
  text-align: left;
}

.pricingValue {
  font-size: clamp(2.6rem, 9vw, 4.8rem);
  line-height: 1.05;
  font-weight: 780;
  margin: 5px 0 8px;
}

.pricingMeta {
  color: var(--muted);
  font-size: 0.92rem;
}

.pricingRationale {
  margin: 10px 0 0;
  color: var(--text);
}

.pricingBullets {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.rerunBtn {
  margin-top: 12px;
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 600;
}

.workflowCtaRow {
  display: none;
}

.secondaryAction {
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #ffffff;
  color: var(--text);
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 650;
  cursor: pointer;
}

.secondaryActionDark {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.secondaryActionDark:hover {
  background: #232323;
}

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

@media (max-width: 980px) {
  .hero {
    min-height: 58vh;
    padding-top: 44px;
  }

  .fourUp,
  .threeUp,
  .dualList,
  .workflowSection,
  .sectionCta {
    grid-template-columns: 1fr;
  }

  .splitTextReverse {
    align-items: stretch;
  }

  .workflowItem {
    grid-template-columns: 1fr;
  }

  .priceWorkspace {
    grid-template-columns: 1fr;
  }

  .priceColumnLeft {
    position: static;
  }

  .pricePrimary,
  .loadingState {
    min-height: 220px;
  }
}

@media (max-width: 680px) {
  .shell {
    padding-left: 14px;
    padding-right: 14px;
  }

  .landing.shell {
    padding-top: 0;
  }

  .topbarLanding {
    left: 14px;
    right: 14px;
    top: 18px;
  }

  .topbar {
    margin-bottom: 20px;
  }

  .hero {
    padding: 0 14px 30px;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }

  .heroCopy h2 {
    font-size: clamp(2.35rem, 15vw, 3.8rem);
  }

  .heroSliderSet {
    gap: 0;
  }

  .topTabs {
    top: 10px;
  }

  .controls {
    grid-template-columns: 1fr;
  }

  .followupGrid {
    grid-template-columns: 1fr;
  }

  .priceWorkspace {
    grid-template-columns: 1fr;
  }

  .priceColumnLeft {
    position: static;
  }

  .pricePrimary {
    min-height: 220px;
    padding: 22px 18px;
  }

  .pricePrimary .primaryLabel {
    font-size: clamp(1.3rem, 8vw, 2rem);
  }

  .icpGrid {
    grid-template-columns: 1fr;
  }

  .primaryAction {
    min-height: 104px;
  }
}
