@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600&display=swap");

:root {
  color-scheme: only light;

  --f360-color-text-primary: #10203a;
  --f360-color-text-secondary: #34445e;
  --f360-color-text-muted: #748197;
  --f360-color-text-quiet: #a0aabb;
  --f360-color-text-inverse: #ffffff;

  --f360-color-blue: #4a7de8;
  --f360-color-mint: #5ccb9b;
  --f360-color-mint-dark: #2a9d6e;
  --f360-color-warning: #f3a53d;
  --f360-color-warning-rgb: 243, 165, 61;
  --f360-color-warning-dark: #d67a1f;
  --f360-color-danger: #d94b4b;
  --f360-color-danger-rgb: 217, 75, 75;
  --f360-color-danger-dark: #a83d3d;
  --f360-color-danger-soft: #fff7f7;

  --f360-color-bg: #f6f8fb;
  --f360-color-surface: #ffffff;
  --f360-color-surface-subtle: #fbfcfe;
  --f360-color-blue-soft: #eef4ff;
  --f360-color-mint-soft: #edf9f4;
  --f360-color-border: #e8edf4;
  --f360-color-border-soft: rgba(16, 32, 58, 0.07);

  --f360-gradient-brand: linear-gradient(135deg, var(--f360-color-blue) 0%, var(--f360-color-mint) 100%);
  --f360-gradient-brand-soft: linear-gradient(135deg, rgba(74, 125, 232, 0.12), rgba(92, 203, 155, 0.14));

  --f360-space-2xs: 4px;
  --f360-space-xs: 6px;
  --f360-space-sm: 10px;
  --f360-space-md: 14px;
  --f360-space-lg: 16px;
  --f360-space-xl: 20px;
  --f360-space-2xl: 22px;
  --f360-space-3xl: 24px;
  --f360-space-4xl: 28px;
  --f360-space-5xl: 30px;

  --f360-radius-button: 10px;
  --f360-radius-control: 10px;
  --f360-radius-card: 14px;
  --f360-radius-card-lg: 16px;
  --f360-radius-phone: 26px;
  --f360-radius-pill: 999px;

  --f360-touch-target-min: 44px;
  --f360-bottom-nav-height: 72px;

  --f360-shadow-phone: 0 30px 90px rgba(16, 32, 58, 0.15);
  --f360-shadow-card: 0 1px 2px rgba(16, 32, 58, 0.03);
  --f360-shadow-button: 0 12px 24px rgba(74, 125, 232, 0.18);

  --f360-font-family: Sora, -apple-system, BlinkMacSystemFont, "Segoe UI", ui-sans-serif, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: only light;
  min-height: 100%;
  background: #ffffff;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  background:
    radial-gradient(circle at 50% -8%, rgba(74, 125, 232, 0.12), transparent 340px),
    var(--f360-color-bg);
  color: var(--f360-color-text-primary);
  font-family: var(--f360-font-family);
  letter-spacing: 0;
}

body.f360-app-clean {
  background: #ffffff;
}

body.f360-app-clean .f360-page,
body.f360-app-clean .f360-phone {
  background: #ffffff;
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

.f360-page {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: var(--f360-space-4xl);
}

.f360-phone {
  position: relative;
  width: min(390px, 100%);
  height: 844px;
  max-height: calc(100vh - 28px);
  max-height: calc(100svh - 28px);
  max-height: calc(100dvh - 28px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 58, 0.08);
  border-radius: var(--f360-radius-phone);
  background: var(--f360-color-bg);
  box-shadow: var(--f360-shadow-phone);
}

.f360-phone--no-header {
  grid-template-rows: minmax(0, 1fr) auto;
}

.f360-phone--flow {
  grid-template-rows: minmax(0, 1fr);
}

.f360-header {
  padding: var(--f360-space-xl) var(--f360-space-2xl) var(--f360-space-md);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(232, 237, 244, 0.75);
  backdrop-filter: blur(22px);
}

.f360-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--f360-space-md);
}

.f360-logo {
  display: block;
  width: 116px;
  height: auto;
}

.f360-auth-brand {
  display: grid;
  justify-items: center;
  gap: var(--f360-space-lg);
}

.f360-logo--auth {
  width: min(270px, 100%);
}

.f360-auth-title {
  max-width: 310px;
  margin: 0;
  text-align: center;
}

.f360-auth-copy {
  max-width: 300px;
  margin: 0;
  color: var(--f360-color-text-muted);
  text-align: center;
  font-size: 12px;
  line-height: 19px;
  font-weight: 300;
}

.f360-icon-button {
  width: var(--f360-touch-target-min);
  height: var(--f360-touch-target-min);
  display: grid;
  place-items: center;
  border: 1px solid var(--f360-color-border);
  border-radius: var(--f360-radius-control);
  background: rgba(255, 255, 255, 0.78);
  color: var(--f360-color-text-secondary);
  text-decoration: none;
}

.f360-icon-button svg {
  width: 17px;
  height: 17px;
}

.f360-content {
  min-height: 0;
  height: 100%;
  overflow-y: auto;
  padding: var(--f360-space-3xl) var(--f360-space-2xl) var(--f360-space-5xl);
}

.f360-phone:has(.f360-nav) .f360-content {
  padding-bottom: calc(var(--f360-bottom-nav-height) + var(--f360-space-4xl));
}

.f360-phone--flow .f360-content {
  padding-bottom: 152px;
}

.f360-phone--action-nav:has(.f360-nav) .f360-content {
  padding-bottom: 230px;
}

.f360-phone--no-header .f360-content {
  padding-top: calc(var(--f360-space-4xl) + env(safe-area-inset-top, 0px));
}

.f360-flow-head {
  display: grid;
  gap: var(--f360-space-sm);
  margin-bottom: var(--f360-space-4xl);
}

.f360-flow-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--f360-space-md);
  color: var(--f360-color-text-muted);
  font-size: 11px;
  line-height: 15px;
  font-weight: 300;
}

.f360-flow-label span:first-child {
  width: 24px;
  height: 18px;
  display: block;
  color: var(--f360-color-text-primary);
  font-weight: 400;
}

.f360-flow-back {
  width: 24px;
  height: 18px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: var(--f360-radius-control);
  color: var(--f360-color-text-muted);
  text-decoration: none;
  transform: translateX(-6px);
}

.f360-flow-back::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--f360-touch-target-min);
  height: var(--f360-touch-target-min);
  transform: translate(-50%, -50%);
}

.f360-flow-back svg {
  width: 20px;
  height: 20px;
}

.f360-stepper {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: var(--f360-space-xs);
}

.f360-stepper span {
  height: 6px;
  border-radius: var(--f360-radius-pill);
  background: var(--f360-color-border);
}

.f360-stepper .is-complete {
  background: var(--f360-color-blue);
}

.f360-stepper .is-active {
  background: var(--f360-gradient-brand);
}

.f360-flow-exit {
  justify-self: end;
  color: var(--f360-color-text-muted);
  text-decoration: none;
  font-size: 11px;
  line-height: 15px;
  font-weight: 300;
}

.f360-flow-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  padding: var(--f360-space-lg) var(--f360-space-2xl) var(--f360-space-2xl);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.f360-action-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--f360-bottom-nav-height);
  z-index: 10;
  padding: var(--f360-space-lg) var(--f360-space-2xl) var(--f360-space-lg);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.f360-intro {
  margin: 0 0 26px;
}

.f360-intro--flow {
  margin-bottom: var(--f360-space-4xl);
}

.f360-intro--auth {
  margin-top: 56px;
}

.f360-intro--compact-top {
  margin-top: 42px;
}

.f360-intro--admin-login {
  margin-top: 46px;
}

.f360-intro--after-media {
  margin-top: 24px;
}

.f360-kicker {
  margin: 0 0 var(--f360-space-sm);
  color: var(--f360-color-text-muted);
  font-size: 12.5px;
  line-height: 18px;
  font-weight: 300;
}

.f360-screen-title {
  max-width: 310px;
  margin: 0;
  color: var(--f360-color-text-primary);
  font-size: 30px;
  line-height: 38px;
  font-weight: 300;
  letter-spacing: 0;
}

.f360-text-gradient {
  background: var(--f360-gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 400;
}

.f360-intro-copy {
  max-width: 318px;
  margin: var(--f360-space-md) 0 0;
  color: var(--f360-color-text-muted);
  font-size: 12px;
  line-height: 19px;
  font-weight: 300;
}

.f360-card {
  border: 1px solid var(--f360-color-border-soft);
  border-radius: var(--f360-radius-card);
  background: var(--f360-color-surface);
  box-shadow: var(--f360-shadow-card);
}

a.f360-card {
  color: inherit;
  text-decoration: none;
}

.f360-card--large {
  border-radius: var(--f360-radius-card-lg);
}

.f360-property-card {
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.f360-property-image {
  display: block;
  height: 166px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(16, 32, 58, 0.02), rgba(16, 32, 58, 0.18)),
    linear-gradient(135deg, rgba(74, 125, 232, 0.10), rgba(92, 203, 155, 0.08));
}

.f360-property-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.f360-property-image[data-pill]::after {
  content: attr(data-pill);
  position: absolute;
  left: 18px;
  bottom: 18px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--f360-radius-control);
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--f360-color-text-primary);
  font-size: 11px;
  line-height: 14px;
  font-weight: 400;
  backdrop-filter: blur(12px);
}

.f360-property-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--f360-space-lg);
  margin-top: var(--f360-space-lg);
  padding-top: var(--f360-space-lg);
  border-top: 1px solid rgba(232, 237, 244, 0.78);
}

.f360-property-stats strong,
.f360-property-stats small {
  display: block;
}

.f360-property-stats strong {
  color: var(--f360-color-text-primary);
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
}

.f360-property-stats small {
  margin-top: var(--f360-space-2xs);
  color: var(--f360-color-text-muted);
  font-size: 11px;
  line-height: 15px;
  font-weight: 300;
}

.f360-card-body {
  display: block;
  padding: var(--f360-space-xl);
}

.f360-row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--f360-space-md);
}

.f360-card-title {
  margin: 0;
  color: var(--f360-color-text-primary);
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}

.f360-card-subtitle {
  margin: var(--f360-space-2xs) 0 0;
  color: var(--f360-color-text-muted);
  font-size: 12px;
  line-height: 17px;
  font-weight: 300;
}

.f360-status {
  min-height: 18px;
  display: inline-flex;
  align-items: center;
  gap: var(--f360-space-xs);
  padding: 0;
  white-space: nowrap;
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 14px;
  font-weight: 300;
}

.f360-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: var(--f360-radius-pill);
  background: var(--f360-gradient-brand);
  box-shadow: 0 0 0 4px rgba(92, 203, 155, 0.12);
}

.f360-next-action {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--f360-space-md);
  margin-top: var(--f360-space-lg);
  padding-top: var(--f360-space-lg);
  border-top: 1px solid var(--f360-color-border);
  color: inherit;
  text-decoration: none;
}

.f360-next-action small {
  display: block;
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 300;
}

.f360-next-action strong {
  display: block;
  margin-top: var(--f360-space-2xs);
  color: var(--f360-color-text-primary);
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
}

.f360-next-action-cta {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: var(--f360-radius-pill);
  padding: 0 13px;
  background: var(--f360-gradient-brand-soft);
  color: var(--f360-color-blue);
  font-size: 11.5px;
  line-height: 15px;
  font-weight: 400;
}

.f360-callout {
  padding: var(--f360-space-lg);
  border: 1px solid var(--f360-color-border);
  border-radius: var(--f360-radius-card);
  background:
    linear-gradient(135deg, rgba(74, 125, 232, 0.06), rgba(92, 203, 155, 0.07)),
    var(--f360-color-surface-subtle);
}

.f360-callout--spaced {
  margin-top: 18px;
}

.f360-callout--quiet {
  padding: var(--f360-space-md);
  border-color: var(--f360-color-border-soft);
  background: rgba(246, 248, 251, 0.5);
}

.f360-callout--quiet .f360-callout-label {
  font-size: 10.8px;
  line-height: 15px;
}

.f360-callout--quiet .f360-callout-value {
  max-width: none;
  color: var(--f360-color-text-muted);
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
}

.f360-callout-label {
  display: block;
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 300;
}

.f360-callout-value {
  display: block;
  max-width: 260px;
  margin-top: var(--f360-space-2xs);
  color: var(--f360-color-text-primary);
  font-size: 21px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0;
}

.f360-button {
  min-height: 44px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--f360-space-sm);
  border: 0;
  border-radius: var(--f360-radius-button);
  background: var(--f360-gradient-brand);
  color: var(--f360-color-text-inverse);
  font-size: 13px;
  line-height: 17px;
  font-weight: 400;
  text-decoration: none;
  box-shadow: var(--f360-shadow-button);
  cursor: pointer;
}

.f360-button svg {
  width: 14px;
  height: 14px;
}

.f360-button--spaced {
  margin-top: 18px;
}

.f360-micro-note {
  margin: 12px var(--f360-space-2xs) 0;
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 17px;
  font-weight: 300;
}

.f360-trial-summary {
  display: grid;
  gap: var(--f360-space-sm);
  margin-top: var(--f360-space-md);
  border-radius: var(--f360-radius-card);
  padding: var(--f360-space-md);
  background: rgba(246, 248, 251, 0.54);
}

.f360-trial-row {
  min-height: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--f360-space-md);
}

.f360-trial-row span,
.f360-trial-summary p {
  color: var(--f360-color-text-muted);
  font-size: 11px;
  line-height: 16px;
  font-weight: 300;
}

.f360-trial-row strong {
  color: var(--f360-color-text-primary);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 400;
  white-space: nowrap;
}

.f360-trial-summary p {
  margin: 0;
  padding-top: var(--f360-space-xs);
  border-top: 1px solid var(--f360-color-border-soft);
}

.f360-publish-status {
  display: grid;
  border-top: 1px solid var(--f360-color-border-soft);
}

.f360-publish-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--f360-space-md);
  padding: var(--f360-space-lg) 0;
  border-bottom: 1px solid var(--f360-color-border-soft);
}

.f360-publish-row strong,
.f360-publish-row small {
  display: block;
}

.f360-publish-row strong {
  color: var(--f360-color-text-primary);
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
}

.f360-publish-row small {
  margin-top: 2px;
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 300;
}

.f360-publish-state {
  justify-self: end;
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 300;
  white-space: nowrap;
}

.f360-publish-state--active,
.f360-publish-state--complete {
  color: var(--f360-color-blue);
  font-weight: 400;
}

.f360-publish-dot {
  width: 12px;
  height: 12px;
  justify-self: center;
  border: 1px solid var(--f360-color-border);
  border-radius: var(--f360-radius-pill);
  background: var(--f360-color-surface);
}

.f360-publish-row.is-active .f360-publish-dot {
  border-color: transparent;
  background: var(--f360-gradient-brand);
  box-shadow: 0 0 0 5px rgba(74, 125, 232, 0.08);
}

.f360-publish-row.is-complete .f360-publish-dot {
  border-color: transparent;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m3 6.1 1.8 1.8L9 3.8' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 10px 10px no-repeat,
    var(--f360-color-blue);
}

.f360-settings-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--f360-space-md);
  margin: -8px 0 var(--f360-space-xl);
  padding: var(--f360-space-md) 0;
  border-top: 1px solid var(--f360-color-border-soft);
  border-bottom: 1px solid var(--f360-color-border-soft);
  color: inherit;
  text-decoration: none;
}

.f360-settings-row strong,
.f360-settings-row small {
  display: block;
}

.f360-settings-row strong {
  color: var(--f360-color-text-primary);
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
}

.f360-settings-row small {
  margin-top: 2px;
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 300;
}

.f360-settings-row > span:last-child {
  color: var(--f360-color-blue);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 400;
}

.f360-settings-row--plain {
  margin: -4px 0 var(--f360-space-2xl);
  padding: 0;
  border: 0;
}

.f360-visit-list {
  display: grid;
  border-top: 0;
}

.f360-visit-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--f360-space-md);
  padding: 18px 0;
  border-bottom: 1px solid rgba(232, 237, 244, 0.68);
  color: inherit;
  text-decoration: none;
}

.f360-visit-row:last-child {
  border-bottom: 0;
}

.f360-visit-row strong,
.f360-visit-row small {
  display: block;
}

.f360-visit-row strong {
  color: var(--f360-color-text-primary);
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
}

.f360-visit-row small {
  margin-top: 2px;
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 300;
}

.f360-visit-dot {
  width: 12px;
  height: 12px;
  justify-self: center;
  border: 1px solid var(--f360-color-border);
  border-radius: var(--f360-radius-pill);
  background: var(--f360-color-surface);
}

.f360-visit-row.is-active .f360-visit-dot {
  border-color: transparent;
  background: var(--f360-gradient-brand);
  box-shadow: 0 0 0 5px rgba(74, 125, 232, 0.08);
}

.f360-visit-row.is-complete .f360-visit-dot {
  border-color: transparent;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m3 6.1 1.8 1.8L9 3.8' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 10px 10px no-repeat,
    var(--f360-color-blue);
}

.f360-visit-state {
  justify-self: end;
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 300;
  white-space: nowrap;
}

.f360-visit-state--complete {
  color: var(--f360-color-blue);
  font-weight: 400;
}

.f360-property-list {
  display: grid;
}

.f360-property-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--f360-space-md);
  padding: 18px 0;
  border-bottom: 1px solid rgba(232, 237, 244, 0.68);
  color: inherit;
  text-decoration: none;
}

.f360-property-row:last-child {
  border-bottom: 0;
}

.f360-property-row strong,
.f360-property-row small {
  display: block;
}

.f360-property-row strong {
  color: var(--f360-color-text-primary);
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
}

.f360-property-row small {
  margin-top: 2px;
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 300;
}

.f360-property-dot {
  width: 12px;
  height: 12px;
  justify-self: center;
  border: 1px solid var(--f360-color-border);
  border-radius: var(--f360-radius-pill);
  background: var(--f360-color-surface);
}

.f360-property-row.is-active .f360-property-dot {
  border-color: transparent;
  background: var(--f360-color-blue);
  box-shadow: 0 0 0 5px rgba(74, 125, 232, 0.08);
}

.f360-property-dot.is-active {
  border-color: transparent;
  background: var(--f360-color-blue);
  box-shadow: 0 0 0 5px rgba(74, 125, 232, 0.08);
}

.f360-property-row.is-draft .f360-property-dot {
  border-color: rgba(var(--f360-color-warning-rgb), 0.45);
  background: rgba(var(--f360-color-warning-rgb), 0.16);
}

.f360-property-state {
  justify-self: end;
  color: var(--f360-color-blue);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 400;
  white-space: nowrap;
}

.f360-property-state--active {
  color: var(--f360-color-text-muted);
  font-weight: 300;
}

.f360-property-state--urgent {
  color: var(--f360-color-warning-dark);
}

.f360-property-price {
  justify-self: end;
  color: var(--f360-color-text-primary);
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  white-space: nowrap;
}

.f360-profile-avatar {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: var(--f360-radius-pill);
  background: var(--f360-gradient-brand-soft);
  color: var(--f360-color-blue);
  font-size: 11px;
  line-height: 14px;
  font-weight: 400;
}

.f360-profile-avatar--large {
  width: 48px;
  height: 48px;
  font-size: 13px;
  line-height: 17px;
}

.f360-profile-summary {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--f360-space-lg);
  margin-top: -4px;
  color: inherit;
  text-decoration: none;
}

.f360-profile-summary-main strong,
.f360-profile-summary-main small {
  display: block;
}

.f360-profile-summary-main strong {
  color: var(--f360-color-text-primary);
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
}

.f360-profile-summary-main small {
  margin-top: 2px;
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 300;
}

.f360-photo-upload {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--f360-space-lg);
  padding: 2px 0 var(--f360-space-lg);
  color: inherit;
  cursor: pointer;
}

.f360-photo-upload strong,
.f360-photo-upload small {
  display: block;
}

.f360-photo-upload strong {
  color: var(--f360-color-text-primary);
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
}

.f360-photo-upload small {
  margin-top: 2px;
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 300;
}

.f360-photo-upload > span:last-of-type {
  color: var(--f360-color-blue);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 400;
  white-space: nowrap;
}

.f360-photo-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.f360-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--f360-space-md);
  margin-bottom: var(--f360-space-4xl);
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 300;
}

.f360-detail-back {
  width: 24px;
  height: 24px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: var(--f360-radius-control);
  color: var(--f360-color-text-muted);
  text-decoration: none;
  transform: translateX(-6px);
}

.f360-detail-back::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--f360-touch-target-min);
  height: var(--f360-touch-target-min);
  transform: translate(-50%, -50%);
}

.f360-detail-back svg {
  width: 20px;
  height: 20px;
}

.f360-detail-status {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: var(--f360-space-md);
  margin-top: -8px;
}

.f360-detail-status strong,
.f360-detail-status small {
  display: block;
}

.f360-detail-status strong {
  color: var(--f360-color-text-primary);
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
}

.f360-detail-status small {
  margin-top: 2px;
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 300;
}

.f360-detail-list {
  display: grid;
}

.f360-detail-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--f360-space-md);
  padding: 18px 0;
  border-bottom: 1px solid rgba(232, 237, 244, 0.68);
}

a.f360-detail-row {
  color: inherit;
  text-decoration: none;
}

.f360-detail-row:last-child {
  border-bottom: 0;
}

.f360-detail-row strong,
.f360-detail-row small {
  display: block;
}

.f360-detail-row strong {
  color: var(--f360-color-text-primary);
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
}

.f360-detail-row small {
  margin-top: 2px;
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 300;
}

.f360-detail-row > span:last-child:not(:first-child) {
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 300;
}

.f360-detail-row--muted strong,
.f360-detail-row--muted small {
  color: var(--f360-color-text-muted);
}

.f360-detail-row--danger strong {
  color: var(--f360-color-danger-dark);
}

.f360-insight-copy {
  margin: 0;
  color: var(--f360-color-text-secondary);
  font-size: 13px;
  line-height: 21px;
  font-weight: 300;
}

.f360-home-focus {
  display: grid;
  gap: var(--f360-space-lg);
  margin: -6px 0 var(--f360-space-4xl);
  border: 1px solid rgba(74, 125, 232, 0.14);
  border-radius: var(--f360-radius-card-lg);
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(74, 125, 232, 0.1), rgba(92, 203, 155, 0.12)),
    var(--f360-color-surface);
}

.f360-home-focus span,
.f360-home-focus strong,
.f360-home-focus small {
  display: block;
}

.f360-home-focus span {
  color: var(--f360-color-blue);
  font-size: 11px;
  line-height: 15px;
  font-weight: 400;
}

.f360-home-focus strong {
  margin-top: var(--f360-space-xs);
  color: var(--f360-color-text-primary);
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
}

.f360-home-focus small {
  margin-top: var(--f360-space-2xs);
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 300;
}

.f360-home-focus a {
  min-height: var(--f360-touch-target-min);
  width: fit-content;
  display: inline-flex;
  align-items: center;
  border-radius: var(--f360-radius-button);
  padding: 0 13px;
  background: var(--f360-color-surface);
  color: var(--f360-color-text-primary);
  text-decoration: none;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}

.f360-home-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--f360-space-lg);
}

.f360-home-metrics a {
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.f360-home-metrics strong,
.f360-home-metrics span {
  display: block;
}

.f360-home-metrics strong {
  color: var(--f360-color-text-primary);
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
}

.f360-home-metrics span {
  margin-top: var(--f360-space-2xs);
  color: var(--f360-color-text-muted);
  font-size: 11px;
  line-height: 15px;
  font-weight: 300;
}

.f360-section {
  margin-top: var(--f360-space-4xl);
}

.f360-section--first {
  margin-top: 0;
}

.f360-section-head {
  margin: 0 var(--f360-space-2xs) var(--f360-space-md);
}

.f360-section-title {
  margin: 0;
  color: var(--f360-color-text-primary);
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}

.f360-section-copy {
  margin: var(--f360-space-xs) 0 0;
  color: var(--f360-color-text-muted);
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
}

.f360-mini-title {
  margin: 0;
  color: var(--f360-color-text-primary);
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
}

.f360-tip-list {
  display: grid;
  gap: var(--f360-space-xs);
  margin: var(--f360-space-sm) 0 0;
  padding: 0;
  list-style: none;
}

.f360-tip-list li {
  position: relative;
  padding-left: 14px;
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 17px;
  font-weight: 300;
}

.f360-tip-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: var(--f360-radius-pill);
  background: var(--f360-color-blue);
}

.f360-tip-list strong {
  color: var(--f360-color-text-primary);
  font-weight: 400;
}

.f360-progress-card {
  padding: 18px var(--f360-space-lg) var(--f360-space-lg);
}

.f360-progress-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: var(--f360-space-sm) 0 0;
}

.f360-progress-line::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: var(--f360-color-border);
}

.f360-progress-line::after {
  content: "";
  position: absolute;
  top: 21px;
  left: 24px;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, var(--f360-color-blue), var(--f360-color-mint));
}

.f360-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: var(--f360-space-sm);
  text-align: center;
}

.f360-step-dot {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: var(--f360-radius-control);
  border: 1px solid var(--f360-color-border);
  background: var(--f360-color-surface);
  color: var(--f360-color-text-quiet);
}

.f360-step--done .f360-step-dot {
  border: 0;
  background: var(--f360-color-blue);
  color: var(--f360-color-text-inverse);
}

.f360-step--active .f360-step-dot {
  border: 0;
  background: var(--f360-gradient-brand);
  color: var(--f360-color-text-inverse);
}

.f360-step-dot svg {
  width: 12px;
  height: 12px;
}

.f360-step-label {
  color: var(--f360-color-text-secondary);
  font-size: 10.5px;
  line-height: 14px;
  font-weight: 300;
}

.f360-signal-list {
  display: grid;
  gap: var(--f360-space-sm);
}

.f360-signal {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--f360-space-md);
  align-items: center;
  padding: var(--f360-space-lg);
}

.f360-signal-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--f360-radius-control);
  background: linear-gradient(135deg, rgba(74, 125, 232, 0.13), rgba(92, 203, 155, 0.08));
  color: var(--f360-color-blue);
  font-size: 19px;
  line-height: 22px;
  font-weight: 400;
}

.f360-signal--mint .f360-signal-number {
  background: linear-gradient(135deg, rgba(92, 203, 155, 0.16), rgba(74, 125, 232, 0.08));
  color: var(--f360-color-mint-dark);
}

.f360-signal-title {
  margin: 0;
  color: var(--f360-color-text-primary);
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
}

.f360-signal-copy {
  margin: var(--f360-space-2xs) 0 0;
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 17px;
  font-weight: 300;
}

.f360-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
  height: var(--f360-bottom-nav-height);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid rgba(232, 237, 244, 0.86);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px);
}

.f360-nav-link {
  height: 58px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: var(--f360-space-2xs);
  color: var(--f360-color-text-quiet);
  text-decoration: none;
  font-size: 10.5px;
  line-height: 13px;
  font-weight: 300;
}

.f360-nav-link::before {
  content: "";
  width: 19px;
  height: 19px;
  display: none;
  background: currentColor;
  -webkit-mask: var(--f360-nav-icon) center / contain no-repeat;
  mask: var(--f360-nav-icon) center / contain no-repeat;
}

.f360-nav-link[href$="viviendas.html"] {
  --f360-nav-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 21V9l8-6 8 6v12h-6v-7h-4v7H4Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.f360-nav-link[href$="visitas.html"] {
  --f360-nav-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 2v4M16 2v4M3 10h18' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Crect x='3' y='4' width='18' height='18' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
}

.f360-nav-link[href$="servicios.html"] {
  --f360-nav-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 2h9l5 5v15H6z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M14 2v6h6M9 14h6M9 18h4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.f360-nav-link[href$="perfil.html"] {
  --f360-nav-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 21a8 8 0 1 0-16 0' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='7' r='4' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
}

.f360-nav-link[href$="viviendas.html"]::before,
.f360-nav-link[href$="visitas.html"]::before,
.f360-nav-link[href$="servicios.html"]::before,
.f360-nav-link[href$="perfil.html"]::before {
  display: block;
}

.f360-nav-link svg {
  width: 19px;
  height: 19px;
}

.f360-nav-link--active {
  color: var(--f360-color-text-primary);
  font-weight: 400;
}

.f360-nav-link--active svg {
  color: var(--f360-color-blue);
}

.f360-page--scroll {
  place-items: start center;
}

.f360-page--admin {
  display: block;
  padding: 0;
}

.f360-phone--auth {
  grid-template-rows: 1fr;
}

.f360-content--center {
  display: grid;
  align-content: center;
}

.f360-auth-layout {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: var(--f360-space-3xl);
}

.f360-auth-layout--centered {
  grid-template-rows: 1fr auto;
  gap: var(--f360-space-4xl);
}

.f360-auth-main {
  display: grid;
  align-content: center;
}

.f360-auth-main--centered {
  align-content: center;
  justify-items: stretch;
  gap: var(--f360-space-4xl);
}

.f360-auth-footer {
  display: grid;
  gap: var(--f360-space-md);
}

.f360-top-link {
  display: inline-flex;
  align-items: center;
  gap: var(--f360-space-xs);
  color: var(--f360-color-text-muted);
  text-decoration: none;
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
}

.f360-top-link svg {
  width: 15px;
  height: 15px;
}

.f360-button-row {
  display: grid;
  gap: var(--f360-space-sm);
}

.f360-button-row--section {
  margin-bottom: 18px;
}

.f360-exit-modal {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: end;
  background: rgba(16, 32, 58, 0.28);
}

.f360-exit-modal:target {
  display: grid;
}

.f360-exit-backdrop {
  position: absolute;
  inset: 0;
}

.f360-exit-sheet {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--f360-space-md);
  width: 100%;
  border: 1px solid var(--f360-color-border-soft);
  border-radius: 22px 22px 0 0;
  padding: var(--f360-space-2xl);
  background: var(--f360-color-surface);
  box-shadow: 0 -18px 50px rgba(16, 32, 58, 0.16);
}

.f360-sheet-title {
  margin: 0;
  color: var(--f360-color-text-primary);
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}

.f360-sheet-copy {
  margin: -4px 0 var(--f360-space-sm);
  color: var(--f360-color-text-muted);
  font-size: 12px;
  line-height: 19px;
  font-weight: 300;
}

.f360-picker-modal {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: end;
  background: rgba(16, 32, 58, 0.28);
}

.f360-picker-modal.is-open {
  display: grid;
}

.f360-picker-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: transparent;
}

.f360-picker-sheet {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--f360-space-lg);
  width: 100%;
  border: 1px solid var(--f360-color-border-soft);
  border-radius: 22px 22px 0 0;
  padding: var(--f360-space-2xl);
  background: var(--f360-color-surface);
  box-shadow: 0 -18px 50px rgba(16, 32, 58, 0.16);
}

.f360-picker-field {
  display: grid;
  gap: var(--f360-space-xs);
}

.f360-picker-field > span {
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 300;
}

.f360-day-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--f360-space-xs);
}

.f360-day-option {
  min-height: var(--f360-touch-target-min);
  border: 1px solid var(--f360-color-border);
  border-radius: var(--f360-radius-control);
  background: var(--f360-color-surface);
  color: var(--f360-color-text-secondary);
  font-size: 11.5px;
  line-height: 15px;
  font-weight: 300;
  cursor: pointer;
}

.f360-day-option.is-selected {
  border-color: rgba(74, 125, 232, 0.2);
  background: linear-gradient(135deg, rgba(74, 125, 232, 0.08), rgba(92, 203, 155, 0.09));
  color: var(--f360-color-text-primary);
  font-weight: 400;
}

.f360-time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--f360-space-sm);
}

.f360-button--secondary {
  border: 1px solid var(--f360-color-border);
  background: var(--f360-color-surface);
  color: var(--f360-color-text-primary);
  box-shadow: none;
}

.f360-button--quiet {
  border: 0;
  background: transparent;
  color: var(--f360-color-text-muted);
  box-shadow: none;
}

.f360-button--danger {
  border: 1px solid rgba(var(--f360-color-danger-rgb), 0.22);
  background: var(--f360-color-danger-soft);
  color: var(--f360-color-danger-dark);
  box-shadow: none;
}

.f360-social-stack {
  display: grid;
  gap: var(--f360-space-sm);
}

.f360-social-button {
  min-height: 46px;
  display: grid;
  grid-template-columns: 22px 1fr 22px;
  align-items: center;
  justify-items: center;
  gap: var(--f360-space-md);
  border: 1px solid var(--f360-color-border);
  border-radius: var(--f360-radius-button);
  padding: 0 14px;
  background: var(--f360-color-surface);
  color: var(--f360-color-text-primary);
  text-decoration: none;
  text-align: center;
  font-size: 13px;
  line-height: 17px;
  font-weight: 400;
}

.f360-social-button svg {
  width: 20px;
  height: 20px;
  justify-self: start;
}

.f360-social-button::after {
  content: "";
}

.f360-otp-input {
  min-height: 54px;
  text-align: center;
  font-size: 23px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0.34em;
}

.f360-verified-note {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 30px;
  border-radius: var(--f360-radius-control);
  padding: 0 12px;
  background: var(--f360-gradient-brand-soft);
  color: var(--f360-color-text-primary);
  font-size: 11px;
  line-height: 15px;
  font-weight: 300;
}

.f360-divider-label {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--f360-space-md);
  margin: var(--f360-space-xl) 0;
  color: var(--f360-color-text-muted);
  font-size: 11px;
  line-height: 15px;
  font-weight: 300;
}

.f360-divider-label::before,
.f360-divider-label::after {
  content: "";
  height: 1px;
  background: var(--f360-color-border);
}

.f360-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--f360-space-sm);
  margin-top: var(--f360-space-lg);
}

.f360-inline-actions .f360-button {
  width: auto;
  min-height: var(--f360-touch-target-min);
  padding: 0 14px;
}

.f360-card-stack {
  display: grid;
  gap: var(--f360-space-md);
}

.f360-list {
  display: grid;
  gap: var(--f360-space-sm);
}

.f360-list-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: var(--f360-space-md);
  padding: var(--f360-space-lg);
  color: inherit;
  text-decoration: none;
}

.f360-list-item--plain {
  grid-template-columns: 1fr auto;
}

.f360-list-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--f360-radius-control);
  background: var(--f360-gradient-brand-soft);
  color: var(--f360-color-blue);
}

.f360-list-icon svg {
  width: 18px;
  height: 18px;
}

.f360-list-title {
  margin: 0;
  color: var(--f360-color-text-primary);
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
}

.f360-list-copy {
  margin: var(--f360-space-2xs) 0 0;
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 17px;
  font-weight: 300;
}

.f360-list-copy--rich {
  font-size: 13px;
  line-height: 21px;
}

.f360-meta {
  color: var(--f360-color-text-muted);
  font-size: 11px;
  line-height: 15px;
  font-weight: 300;
  white-space: nowrap;
}

.f360-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--f360-space-xs);
}

.f360-chip {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: var(--f360-space-xs);
  border: 1px solid var(--f360-color-border);
  border-radius: var(--f360-radius-control);
  padding: 0 10px;
  background: var(--f360-color-surface);
  color: var(--f360-color-text-secondary);
  font-size: 11px;
  line-height: 14px;
  font-weight: 300;
}

.f360-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: var(--f360-radius-pill);
  background: var(--f360-color-blue);
}

.f360-chip--mint::before {
  background: var(--f360-color-mint);
}

.f360-chip--warning::before {
  background: var(--f360-color-warning);
}

.f360-chip--danger::before {
  background: var(--f360-color-danger);
}

.f360-chip--plain::before {
  display: none;
}

.f360-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--f360-space-sm);
}

.f360-metric {
  min-height: 84px;
  padding: var(--f360-space-lg);
}

.f360-metric-value {
  display: block;
  color: var(--f360-color-text-primary);
  font-size: 22px;
  line-height: 27px;
  font-weight: 400;
}

.f360-metric-label {
  display: block;
  margin-top: var(--f360-space-2xs);
  color: var(--f360-color-text-muted);
  font-size: 11px;
  line-height: 16px;
  font-weight: 300;
}

.f360-form {
  display: grid;
  gap: var(--f360-space-md);
}

.f360-field {
  display: grid;
  gap: var(--f360-space-xs);
}

.f360-field label {
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 300;
}

.f360-input,
.f360-select,
.f360-textarea {
  width: 100%;
  border: 1px solid var(--f360-color-border);
  border-radius: var(--f360-radius-control);
  background: var(--f360-color-surface);
  color: var(--f360-color-text-primary);
  font-size: 13px;
  line-height: 18px;
  font-weight: 300;
}

.f360-input,
.f360-select {
  min-height: 46px;
  padding: 0 13px;
}

.f360-select {
  appearance: none;
  padding-right: 42px;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 8 4 4 4-4' fill='none' stroke='%23748197' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 13px center / 18px 18px no-repeat,
    linear-gradient(180deg, #ffffff, #fbfcfe);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.f360-textarea {
  min-height: 110px;
  padding: 12px 13px;
  resize: vertical;
}

.f360-check-row {
  display: flex;
  align-items: flex-start;
  gap: var(--f360-space-sm);
  color: var(--f360-color-text-secondary);
  font-size: 11.5px;
  line-height: 17px;
  font-weight: 300;
}

.f360-check-row input {
  margin-top: 2px;
  accent-color: var(--f360-color-blue);
}

.f360-availability-list {
  display: grid;
  border-top: 1px solid var(--f360-color-border-soft);
}

.f360-availability-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--f360-touch-target-min);
  align-items: center;
  gap: var(--f360-space-sm);
  min-height: 56px;
  border-bottom: 1px solid var(--f360-color-border-soft);
}

.f360-availability-row strong,
.f360-availability-row small {
  display: block;
}

.f360-availability-row strong {
  color: var(--f360-color-text-primary);
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
}

.f360-availability-row small {
  margin-top: 2px;
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 300;
}

.f360-row-action {
  width: var(--f360-touch-target-min);
  height: var(--f360-touch-target-min);
  display: grid;
  place-items: center;
  justify-self: end;
  border: 0;
  border-radius: var(--f360-radius-control);
  padding: 0;
  background: transparent;
  color: var(--f360-color-text-quiet);
  cursor: pointer;
  text-decoration: none;
}

.f360-row-action svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.7;
}

.f360-add-row {
  min-height: var(--f360-touch-target-min);
  display: inline-flex;
  align-items: center;
  gap: var(--f360-space-xs);
  width: fit-content;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--f360-color-blue);
  cursor: pointer;
  text-decoration: none;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}

.f360-add-row svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.9;
}

.f360-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--f360-space-sm);
}

.f360-option-grid--stack {
  grid-template-columns: minmax(0, 1fr);
}

.f360-option-tile {
  min-height: var(--f360-touch-target-min);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--f360-space-sm);
  border: 1px solid var(--f360-color-border);
  border-radius: var(--f360-radius-control);
  padding: 0 11px;
  background: var(--f360-color-surface);
  color: var(--f360-color-text-secondary);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 300;
}

.f360-option-tile--rich {
  min-height: 62px;
  padding: var(--f360-space-sm) 12px;
}

.f360-option-tile--rich > span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.f360-option-tile--rich strong {
  color: var(--f360-color-text-primary);
  font-size: 12.5px;
  line-height: 17px;
  font-weight: 400;
}

.f360-option-tile--rich small {
  color: var(--f360-color-text-muted);
  font-size: 11px;
  line-height: 16px;
  font-weight: 300;
}

.f360-option-tile--plan {
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 14px;
  padding: var(--f360-space-sm) 12px;
}

.f360-option-tile--plan > span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.f360-option-tile--plan strong {
  color: var(--f360-color-text-primary);
  font-size: 12.5px;
  line-height: 17px;
  font-weight: 400;
}

.f360-option-tile--plan small {
  color: var(--f360-color-text-muted);
  font-size: 10.8px;
  line-height: 15px;
  font-weight: 300;
}

.f360-option-tile--plan b {
  color: var(--f360-color-text-primary);
  font-size: 12px;
  line-height: 17px;
  font-weight: 400;
  white-space: nowrap;
}

.f360-option-tile input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.f360-option-tile::after {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border: 1px solid var(--f360-color-border);
  border-radius: var(--f360-radius-pill);
  background: var(--f360-color-surface);
}

.f360-option-tile.is-selected {
  border-color: rgba(74, 125, 232, 0.2);
  background: linear-gradient(135deg, rgba(74, 125, 232, 0.07), rgba(92, 203, 155, 0.08));
  color: var(--f360-color-text-primary);
  font-weight: 300;
}

.f360-option-tile.is-selected::after {
  border-color: transparent;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m4 8.2 2.3 2.3L12 5' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 10px 10px no-repeat,
    var(--f360-gradient-brand);
}

.f360-segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--f360-space-xs);
  padding: var(--f360-space-xs);
  border: 1px solid var(--f360-color-border);
  border-radius: var(--f360-radius-card);
  background: var(--f360-color-surface);
}

.f360-segmented a,
.f360-segmented span {
  min-height: var(--f360-touch-target-min);
  display: grid;
  place-items: center;
  border-radius: var(--f360-radius-control);
  color: var(--f360-color-text-muted);
  text-decoration: none;
  font-size: 11px;
  line-height: 14px;
  font-weight: 300;
}

.f360-segmented .is-active {
  background: var(--f360-gradient-brand-soft);
  color: var(--f360-color-text-primary);
  font-weight: 400;
}

.f360-segmented--plain {
  display: flex;
  grid-template-columns: none;
  gap: var(--f360-space-xl);
  margin-bottom: var(--f360-space-3xl);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.f360-segmented--plain a,
.f360-segmented--plain span {
  position: relative;
  min-height: var(--f360-touch-target-min);
  display: inline-flex;
  align-items: center;
  border-radius: 0;
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 16px;
}

.f360-segmented--plain .is-active {
  background: transparent;
  color: var(--f360-color-text-primary);
}

.f360-segmented--plain .is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: var(--f360-radius-pill);
  background: var(--f360-color-blue);
}

.f360-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--f360-space-sm);
}

.f360-photo-tile {
  min-height: 126px;
  overflow: hidden;
  border-radius: var(--f360-radius-card);
  background: var(--f360-color-blue-soft);
}

.f360-photo-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.f360-photo-tips {
  margin-bottom: var(--f360-space-3xl);
}

.f360-photo-guide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--f360-space-sm);
}

.f360-photo-guide-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--f360-space-md);
}

.f360-photo-guide-head span {
  color: var(--f360-color-text-muted);
  font-size: 11px;
  line-height: 15px;
  font-weight: 300;
  white-space: nowrap;
}

.f360-photo-group-label {
  grid-column: 1 / -1;
  margin: var(--f360-space-xs) 0 0;
  color: var(--f360-color-text-muted);
  font-size: 11px;
  line-height: 15px;
  font-weight: 300;
}

.f360-photo-requirement {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  gap: var(--f360-space-xs);
}

.f360-photo-requirement.is-complete {
  grid-template-columns: minmax(0, 1fr);
}

.f360-photo-requirement img,
.f360-photo-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  border: 1px solid rgba(74, 125, 232, 0.06);
  border-radius: var(--f360-radius-control);
  object-fit: cover;
  color: var(--f360-color-blue);
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(74, 125, 232, 0.045), rgba(92, 203, 155, 0.04)),
    var(--f360-color-surface-subtle);
}

.f360-photo-placeholder svg {
  width: 30px;
  height: 30px;
  padding: var(--f360-space-xs);
  border: 1px solid rgba(74, 125, 232, 0.13);
  border-radius: var(--f360-radius-pill);
  background: rgba(255, 255, 255, 0.68);
  stroke-width: 2;
}

.f360-photo-requirement > span:not(.f360-photo-placeholder) {
  display: block;
  padding: 0 var(--f360-space-2xs);
  min-width: 0;
}

.f360-photo-requirement strong {
  display: block;
  color: var(--f360-color-text-primary);
  font-size: 12.5px;
  line-height: 17px;
  font-weight: 400;
}

.f360-photo-requirement small {
  display: block;
  margin-top: 2px;
  color: var(--f360-color-text-muted);
  font-size: 10.8px;
  line-height: 15px;
  font-weight: 300;
}

.f360-photo-action {
  width: var(--f360-touch-target-min);
  height: var(--f360-touch-target-min);
  position: relative;
  display: grid;
  place-items: center;
  border-radius: var(--f360-radius-pill);
  text-decoration: none;
}

.f360-photo-action svg {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  stroke-width: 1.75;
}

.f360-photo-action--delete {
  position: absolute;
  top: -6px;
  right: -6px;
  color: var(--f360-color-text-muted);
}

.f360-photo-action--delete::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: var(--f360-radius-pill);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(10px);
}

.f360-photo-action--delete:hover {
  color: var(--f360-color-text-secondary);
}

.f360-photo-action--delete:hover::before {
  background: var(--f360-color-surface-subtle);
}

.f360-hero-photo {
  height: 178px;
  overflow: hidden;
  border-radius: var(--f360-radius-card-lg);
}

.f360-hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.f360-divider {
  height: 1px;
  margin: var(--f360-space-lg) 0;
  background: var(--f360-color-border);
}

.f360-empty {
  padding: var(--f360-space-xl);
  text-align: left;
}

.f360-price-panel {
  display: grid;
  gap: var(--f360-space-xl);
}

.f360-price-hero {
  display: grid;
  gap: var(--f360-space-2xs);
  padding: 0 var(--f360-space-2xs);
}

.f360-price-hero small {
  margin: 0;
  color: var(--f360-color-text-muted);
  font-size: 11.5px;
  line-height: 16px;
  font-weight: 300;
}

.f360-price-hero strong {
  color: var(--f360-color-text-primary);
  font-size: 38px;
  line-height: 44px;
  font-weight: 400;
  letter-spacing: 0;
}

.f360-price-map {
  position: relative;
  display: grid;
  gap: var(--f360-space-sm);
  padding-top: 42px;
}

.f360-price-marker {
  position: absolute;
  top: 0;
  left: 62.5%;
  display: grid;
  justify-items: center;
  gap: var(--f360-space-2xs);
  transform: translateX(-50%);
}

.f360-price-marker span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--f360-radius-pill);
  padding: 0 10px;
  background: var(--f360-color-blue);
  color: var(--f360-color-text-inverse);
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(74, 125, 232, 0.18);
}

.f360-price-marker::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid var(--f360-color-blue);
}

.f360-price-line {
  height: 8px;
  border-radius: var(--f360-radius-pill);
  background:
    linear-gradient(90deg, rgba(92, 203, 155, 0.55) 0%, rgba(74, 125, 232, 0.95) 62.5%, rgba(160, 170, 187, 0.28) 100%);
}

.f360-price-labels {
  padding: 0 var(--f360-space-2xs);
}

.f360-price-guidance {
  display: grid;
  gap: var(--f360-space-sm);
}

.f360-price-guidance p {
  position: relative;
  margin: 0;
  padding-left: 16px;
}

.f360-price-guidance p::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: var(--f360-radius-pill);
  background: var(--f360-color-border);
}

.f360-price-guidance p:nth-child(1)::before {
  background: var(--f360-color-mint);
}

.f360-price-guidance p:nth-child(2)::before {
  background: var(--f360-color-blue);
}

.f360-price-guidance p:nth-child(3)::before {
  background: var(--f360-color-text-quiet);
}

.f360-price-guidance strong,
.f360-price-guidance span {
  display: block;
}

.f360-price-guidance strong {
  color: var(--f360-color-text-primary);
  font-size: 12px;
  line-height: 17px;
  font-weight: 400;
}

.f360-price-guidance span {
  margin-top: 1px;
  color: var(--f360-color-text-muted);
  font-size: 11.2px;
  line-height: 17px;
  font-weight: 300;
}

.f360-admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  background: var(--f360-color-bg);
}

.f360-admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 26px 18px;
  background: #0f2343;
  color: rgba(255, 255, 255, 0.72);
}

.f360-admin-brand {
  display: flex;
  align-items: center;
  gap: var(--f360-space-sm);
  margin-bottom: 34px;
}

.f360-admin-brand img {
  width: 132px;
  height: auto;
  padding: 8px 10px;
  border-radius: var(--f360-radius-control);
  background: #ffffff;
}

.f360-admin-nav {
  display: grid;
  gap: var(--f360-space-xs);
}

.f360-admin-nav a {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: var(--f360-space-sm);
  border-radius: var(--f360-radius-control);
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 13px;
  line-height: 17px;
  font-weight: 300;
}

.f360-admin-nav a::before {
  content: "";
  width: 16px;
  height: 16px;
  display: none;
  flex: 0 0 16px;
  background: currentColor;
  opacity: 0.86;
  -webkit-mask: var(--f360-admin-icon) center / contain no-repeat;
  mask: var(--f360-admin-icon) center / contain no-repeat;
}

.f360-admin-nav a[href$="index.html"] {
  --f360-admin-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='7' height='8' rx='1' fill='none' stroke='black' stroke-width='2'/%3E%3Crect x='14' y='3' width='7' height='5' rx='1' fill='none' stroke='black' stroke-width='2'/%3E%3Crect x='14' y='12' width='7' height='9' rx='1' fill='none' stroke='black' stroke-width='2'/%3E%3Crect x='3' y='15' width='7' height='6' rx='1' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
}

.f360-admin-nav a[href$="leads.html"] {
  --f360-admin-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='7' r='4' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2M23 21v-2a4 4 0 0 0-3-3.87' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.f360-admin-nav a[href$="agenda.html"] {
  --f360-admin-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 2v4M16 2v4M3 10h18' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Crect x='3' y='4' width='18' height='18' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
}

.f360-admin-nav a[href$="viviendas.html"] {
  --f360-admin-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 21V9l8-6 8 6v12h-6v-7h-4v7H4Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.f360-admin-nav a[href$="publicaciones.html"] {
  --f360-admin-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12h16M12 4v16M5 5l14 14M19 5 5 19' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.f360-admin-nav a[href$="propietarios.html"] {
  --f360-admin-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 21a8 8 0 1 0-16 0' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='7' r='4' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
}

.f360-admin-nav a[href$="servicios.html"] {
  --f360-admin-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3 4 7v6c0 5 3.5 8 8 8s8-3 8-8V7l-8-4Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='m9 12 2 2 4-5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.f360-admin-nav a[href$="pagos.html"] {
  --f360-admin-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='5' width='20' height='14' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M2 10h20M6 15h4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.f360-admin-nav a[href$="index.html"]::before,
.f360-admin-nav a[href$="leads.html"]::before,
.f360-admin-nav a[href$="agenda.html"]::before,
.f360-admin-nav a[href$="viviendas.html"]::before,
.f360-admin-nav a[href$="publicaciones.html"]::before,
.f360-admin-nav a[href$="propietarios.html"]::before,
.f360-admin-nav a[href$="servicios.html"]::before,
.f360-admin-nav a[href$="pagos.html"]::before {
  display: block;
}

.f360-admin-nav a.is-active,
.f360-admin-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.f360-admin-nav svg {
  width: 16px;
  height: 16px;
  color: var(--f360-color-mint);
}

.f360-admin-main {
  min-width: 0;
  padding: 30px 34px 44px;
}

.f360-admin-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--f360-space-xl);
  margin-bottom: 24px;
}

.f360-admin-kicker {
  margin: 0 0 var(--f360-space-xs);
  color: var(--f360-color-text-muted);
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
}

.f360-admin-title {
  margin: 0;
  color: var(--f360-color-text-primary);
  font-size: 28px;
  line-height: 34px;
  font-weight: 300;
}

.f360-admin-actions {
  display: flex;
  gap: var(--f360-space-sm);
  align-items: center;
}

.f360-admin-actions .f360-button {
  width: auto;
  min-height: 38px;
  padding: 0 14px;
}

.f360-admin-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--f360-space-lg);
}

.f360-admin-card {
  border: 1px solid var(--f360-color-border-soft);
  border-radius: var(--f360-radius-card);
  background: var(--f360-color-surface);
  box-shadow: var(--f360-shadow-card);
}

.f360-admin-card--pad {
  padding: var(--f360-space-xl);
}

.f360-admin-login-card {
  width: min(420px, 100%);
}

.f360-admin-grid--spaced {
  margin-top: 18px;
}

.f360-span-3 {
  grid-column: span 3;
}

.f360-span-4 {
  grid-column: span 4;
}

.f360-span-5 {
  grid-column: span 5;
}

.f360-span-6 {
  grid-column: span 6;
}

.f360-span-7 {
  grid-column: span 7;
}

.f360-span-8 {
  grid-column: span 8;
}

.f360-span-12 {
  grid-column: span 12;
}

.f360-admin-card-title {
  margin: 0 0 var(--f360-space-md);
  color: var(--f360-color-text-primary);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.f360-admin-stat {
  display: grid;
  gap: var(--f360-space-xs);
}

.f360-admin-stat strong {
  color: var(--f360-color-text-primary);
  font-size: 26px;
  line-height: 32px;
  font-weight: 400;
}

.f360-admin-stat span {
  color: var(--f360-color-text-muted);
  font-size: 12px;
  line-height: 17px;
  font-weight: 300;
}

.f360-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--f360-space-sm);
  margin-bottom: var(--f360-space-lg);
}

.f360-filter-bar .f360-chip {
  min-height: 34px;
  background: #ffffff;
}

.f360-table {
  width: 100%;
  border-collapse: collapse;
}

.f360-table th,
.f360-table td {
  border-bottom: 1px solid var(--f360-color-border);
  padding: 13px 14px;
  text-align: left;
  vertical-align: middle;
  font-size: 12px;
  line-height: 17px;
}

.f360-table th {
  color: var(--f360-color-text-muted);
  font-weight: 400;
}

.f360-table td {
  color: var(--f360-color-text-secondary);
  font-weight: 300;
}

.f360-table a {
  color: var(--f360-color-blue);
  text-decoration: none;
  font-weight: 400;
}

.f360-admin-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: var(--f360-space-lg);
}

.f360-timeline {
  display: grid;
  gap: var(--f360-space-md);
}

.f360-timeline-item {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: var(--f360-space-sm);
}

.f360-timeline-item::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: var(--f360-radius-pill);
  background: var(--f360-gradient-brand);
}

.f360-hub {
  width: min(1120px, 100%);
  display: grid;
  gap: var(--f360-space-3xl);
}

.f360-hub-header {
  display: grid;
  gap: var(--f360-space-md);
  padding: 20px 0;
}

.f360-hub-logo {
  width: 150px;
  height: auto;
}

.f360-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--f360-space-lg);
}

.f360-hub-card {
  padding: var(--f360-space-xl);
  color: inherit;
  text-decoration: none;
}

.f360-hub-card h2 {
  margin: 0 0 var(--f360-space-xs);
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}

.f360-hub-card p {
  margin: 0;
  color: var(--f360-color-text-muted);
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
}

@media (max-width: 980px) {
  .f360-admin-shell {
    grid-template-columns: 1fr;
  }

  .f360-admin-sidebar {
    position: static;
    height: auto;
  }

  .f360-admin-grid,
  .f360-admin-two-col,
  .f360-hub-grid {
    grid-template-columns: 1fr;
  }

  .f360-span-3,
  .f360-span-4,
  .f360-span-5,
  .f360-span-6,
  .f360-span-7,
  .f360-span-8,
  .f360-span-12 {
    grid-column: auto;
  }
}

@media (max-width: 430px) {
  body {
    overflow: hidden;
  }

  .f360-page {
    width: 100vw;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: 0;
    overflow: hidden;
    padding: 0;
  }

  .f360-phone {
    width: 100vw;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100svh;
    max-height: 100dvh;
    border: 0;
    border-radius: 0;
  }
}

@supports (-webkit-touch-callout: none) {
  @media (max-width: 430px) {
    html,
    body,
    .f360-page,
    .f360-phone {
      height: -webkit-fill-available;
    }
  }
}
